diff options
author | hut <hut@lepus.uberspace.de> | 2015-10-04 01:40:34 +0200 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2015-10-04 01:46:45 +0200 |
commit | a0b6b9e0b155631866fbb7681dac2cdb577db415 (patch) | |
tree | 289b14ef9331d4761dd7e50bc3679aecad6731b1 /ranger | |
parent | 28f9187f6f08a5b09293d44f1928a7da85c2a7b7 (diff) | |
download | ranger-a0b6b9e0b155631866fbb7681dac2cdb577db415.tar.gz |
Fixed that rare bug with the fireballs and explosions v1.7.2
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/__init__.py | 4 | ||||
-rwxr-xr-x | ranger/ext/rifle.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ranger/__init__.py b/ranger/__init__.py index 8a1e7459..2d3f04d6 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -14,7 +14,7 @@ import tempfile # Information __license__ = 'GPL3' -__version__ = '1.7.1' +__version__ = '1.7.2' __author__ = __maintainer__ = 'Roman Zimbelmann' __email__ = 'hut@hut.pm' @@ -28,7 +28,7 @@ DEFAULT_PAGER = 'less' LOGFILE = tempfile.gettempdir()+'/ranger_errorlog' CACHEDIR = os.path.expanduser("~/.cache/ranger") USAGE = '%prog [options] [path]' -VERSION = 'ranger-master %s\n\nPython %s' % (__version__, sys.version) +VERSION = 'ranger-stable %s\n\nPython %s' % (__version__, sys.version) # If the environment variable XDG_CONFIG_HOME is non-empty, CONFDIR is ignored # and the configuration directory will be $XDG_CONFIG_HOME/ranger instead. diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py index 4f1ef1b9..504851b1 100755 --- a/ranger/ext/rifle.py +++ b/ranger/ext/rifle.py @@ -19,7 +19,7 @@ import re from subprocess import Popen, PIPE import sys -__version__ = 'rifle 1.7.1' +__version__ = 'rifle 1.7.2' # Options and constants that a user might want to change: DEFAULT_PAGER = 'less' |