Fix some bugs by pull requests
authorvunhat_minh <vunhat_minh@dwango.co.jp>
Tue, 9 Feb 2016 04:53:47 +0000 (13:53 +0900)
committervunhat_minh <vunhat_minh@dwango.co.jp>
Tue, 9 Feb 2016 04:53:47 +0000 (13:53 +0900)
docs/conf.py
docs/index.rst
rainbowstream/rainbow.py
setup.py

index 124de0c8e2675047a5e928b414dee0a37f5ad2c3..ca3e0e7b82e8e255ed1853e152f7be87d82b05f3 100644 (file)
@@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh'
 # built documents.
 #
 # The short X.Y version.
-version = '1.3.1'
+version = '1.3.2'
 # The full version, including alpha/beta/rc tags.
-release = '1.3.1'
+release = '1.3.2'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
index 348d1a1566c178b4381cbbaa5d814b4e020928ea..93f0399937e80fcf3cca9b396cf563c1551f961b 100644 (file)
@@ -132,6 +132,8 @@ Here is full list of supported command:
 \r
 -  ``home`` will show your timeline. ``home 10`` will print exactly 10 tweets.\r
 \r
+-  ``me`` will show your latest tweets. ``me 2`` will show your last 2 tweets.\r
+\r
 -  ``notification`` will show your notification from the time you started RainbowStream.\r
 \r
 -  ``mentions`` will show mentions timeline. ``mentions 7`` will show 7 mention tweets.\r
index bb34bdbe36e28c27a4c98672bf8e42fbf0e5fb05..3a55c18ab5a6c06e058e021133a26654f292ea37 100644 (file)
@@ -239,11 +239,8 @@ def init(args):
     c['message_dict'] = []
     # Image on term
     c['IMAGE_ON_TERM'] = args.image_on_term
-    set_config('IMAGE_ON_TERM', str(c['IMAGE_ON_TERM']))
     # Use 24 bit color
     c['24BIT'] = args.color_24bit
-    # Resize images based on the current terminal size
-    set_config('IMAGE_RESIZE_TO_FIT', str(c.get('IMAGE_RESIZE_TO_FIT', False)))
     # Check type of ONLY_LIST and IGNORE_LIST
     if not isinstance(c['ONLY_LIST'], list):
         printNicely(red('ONLY_LIST is not a valid list value.'))
index b04ce8e6159a29433ca16fc5dd64af4a81f0c289..26b4e98e149ce22223bfc6a2b05c95097e9f4013 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 import os.path
 
 # Bumped version
-version = '1.3.1'
+version = '1.3.2'
 
 # Require
 install_requires = [