diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | doc/pydoc/ranger.html | 4 | ||||
-rw-r--r-- | ranger/__init__.py | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile index 83ba7ca0..96be5b71 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME = ranger -VERSION = 1.0.3 +VERSION = 1.0.4 PYTHON ?= python DOCDIR ?= doc/pydoc PREFIX ?= /usr/local diff --git a/README b/README index 24760f36..b97b5ed7 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Ranger v.1.0.3 +Ranger v.1.0.4 ============== Ranger @@ -27,7 +27,7 @@ About * Author: Roman Zimbelmann * Email: romanz@lavabit.com * Git repo: http://git.savannah.gnu.org/cgit/ranger.git -* Version: 1.0.3 +* Version: 1.0.4 Features diff --git a/doc/pydoc/ranger.html b/doc/pydoc/ranger.html index 8a51d877..cba764cb 100644 --- a/doc/pydoc/ranger.html +++ b/doc/pydoc/ranger.html @@ -6,7 +6,7 @@ <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading"> <tr bgcolor="#7799ee"> <td valign=bottom> <br> -<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong>ranger</strong></big></big> (version 1.0.3)</font></td +<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong>ranger</strong></big></big> (version 1.0.4)</font></td ><td align=right valign=bottom ><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/hut/ranger/ranger/__init__.py">/home/hut/ranger/ranger/__init__.py</a></font></td></tr></table> <p><tt>Ranger - file browser for the unix terminal</tt></p> @@ -56,7 +56,7 @@ Has the same arguments as print() in python3. <strong>__email__</strong> = 'romanz@lavabit.com'<br> <strong>__license__</strong> = 'GPL3'<br> <strong>__maintainer__</strong> = 'Roman Zimbelmann'<br> -<strong>__version__</strong> = '1.0.3'<br> +<strong>__version__</strong> = '1.0.4'<br> <strong>arg</strong> = {'cd_after_exit': False, 'debug': False, 'flags'...n': False, 'confdir': '~/.ranger', 'targets': []}</td></tr></table><p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> <tr bgcolor="#7799ee"> diff --git a/ranger/__init__.py b/ranger/__init__.py index 21825ea8..e2a4983d 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -20,7 +20,7 @@ import sys from ranger.ext.openstruct import OpenStruct __license__ = 'GPL3' -__version__ = '1.0.3' +__version__ = '1.0.4' __credits__ = 'Roman Zimbelmann' __author__ = 'Roman Zimbelmann' __maintainer__ = 'Roman Zimbelmann' |