diff options
-rw-r--r-- | CHANGELOG | 14 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | doc/ranger.1 | 2 | ||||
-rw-r--r-- | doc/rifle.1 | 4 | ||||
-rw-r--r-- | ranger/__init__.py | 4 | ||||
-rwxr-xr-x | ranger/ext/rifle.py | 2 |
6 files changed, 21 insertions, 7 deletions
diff --git a/CHANGELOG b/CHANGELOG index 28bcfda6..207e311f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,19 @@ This log documents changes between stable versions. +2015-10-04: version 1.7.2 +* Fixed file name arguments passed to "sxiv" and "feh" when using ":flat" +* Fixed removal of empty directories when using ":rename" +* Fixed free disk space display on Mac OS X +* Fixed `examples/vim_file_chooser` to work with gvim too +* Fixed some other rare crashes and bugs +* Fixed downward mouse wheel scrolling +* Fixed warning about regex splits being drawin in title bar since python3.5 +* Really fixed "S" key binding not working when SHELL=fish +* Improved doc/cheatsheet.svg +* Added some entries to rifle.conf +* Added key bindings pO and pP which work like po and pp but queue the operation + in a first-in-first-out order. + 2015-05-04: version 1.7.1 * Added doc/cheatsheet.svg * Added examples/rc_emacs.conf, a config file adding emacs-like key bindings diff --git a/README.md b/README.md index 2ee3bcd6..f0d3ca25 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -ranger v.1.7.1 +ranger v.1.7.2 ============== ranger is a console file manager with VI key bindings. It provides a minimalistic and nice curses interface with a view on the directory hierarchy. diff --git a/doc/ranger.1 b/doc/ranger.1 index ea720903..f426d5c6 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RANGER 1" -.TH RANGER 1 "ranger-1.7.1" "07/15/2015" "ranger manual" +.TH RANGER 1 "ranger-1.7.2" "10/04/2015" "ranger manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/doc/rifle.1 b/doc/rifle.1 index 3bb74dd8..32501ee0 100644 --- a/doc/rifle.1 +++ b/doc/rifle.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) +.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.29) .\" .\" Standard preamble: .\" ======================================================================== @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RIFLE 1" -.TH RIFLE 1 "rifle-1.7.1" "05/04/2015" "rifle manual" +.TH RIFLE 1 "rifle-1.7.2" "10/04/2015" "rifle manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l 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' |