summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2018-09-09 21:18:12 +0200
committertoonn <toonn@toonn.io>2018-09-09 21:51:55 +0200
commitd8047529f0ea0df007007ab5b3ef19363a6491e6 (patch)
treefdf84f686d74e3630745a3030c76b3b09e0e7376
parentae1ef141b5dedf1296a8c163e5a1f9f5ec6f4f9e (diff)
If you can read this on Debian, you're living in the futurev1.9.2
-rw-r--r--CHANGELOG.md39
-rw-r--r--README.md2
-rw-r--r--doc/ranger.15
-rw-r--r--doc/rifle.12
-rw-r--r--ranger/__init__.py4
-rwxr-xr-xranger/ext/rifle.py2
6 files changed, 48 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 346b18dd..e8eb913c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,44 @@
This log documents changes between stable versions.
+# 2018-09-09: version 1.9.2
+* Added a `hint_collapse_threshold` setting
+* Added a `traverse_backwards` command analogous to `traverse`
+* Added a command to shift tabs
+* Added a normal mode mapping to quickly enter the console and scroll through
+ the history `C-p`
+* Added a section to `scope.sh` for image previews of archives
+* Added an avfs plugin
+* Added an option to the move command to enable launching the selected file
+ instead of the marked files
+* Added filtering functionality inspired by dired's filter stack, `.n, .| ...`
+* Added image preview method for Kitty
+* Added option to disable the display of free space for high latency situations
+* Added section to `scope.sh` for pdf previews with mutool
+* Added several emacs/readline-inspired keybindings, `C-g` for `ESC`, `alt-f/b`
+* Added systemwide `rc.conf` and `commands.py` in `/etc/ranger`
+* Added the `%any_path` macro to allow bookmarks to be used with commands that
+ need a path and are unaware of bookmarks
+* Added versioning logic to include extra info in unreleased versions
+* Change tab saving to save all tabs, not just the active tab
+* Changed `draw_borders` setting to enable drawing only borders or seperators
+* Changed behavior of positional arguments to the ranger command, if you
+ specify a path to a file ranger will open with that file selected
+* Changed the `tilde_in_titlebar` setting to influence the window titlebar too
+* Changed the default colorscheme to work properly in terminals that don't
+ equate bold and bright
+* Fixed StopIteration errors
+* Fixed embedded null errors
+* Fixed issues reported by coverity scan
+* Fixed running ranger as root on Mac OS
+* Fixed unicode issue for python2
+* Fixed w3m preview issues with black stripes
+* Improved PEP8 adherence
+* Improved VCS symbols
+* Improved `--cmd` functionality
+* Improved file encoding detection by using chardet if it's available
+* Rifle's flag t should now work with more terminals than xterm and urxvt
+* Update colorscheme documentation
+
# 2018-02-22: version 1.9.1
* Fixed the rifle config backwards compatibility (regression in 1.9.0)
* Fixed the POSIX compatibility of `Makefile`
diff --git a/README.md b/README.md
index e14bab46..d7ca0493 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-ranger 1.9.1
+ranger 1.9.2
============
[![Build Status](https://travis-ci.org/ranger/ranger.svg?branch=master)](https://travis-ci.org/ranger/ranger)
diff --git a/doc/ranger.1 b/doc/ranger.1
index acf3f29a..a33252e2 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -133,7 +133,7 @@
.\" ========================================================================
.\"
.IX Title "RANGER 1"
-.TH RANGER 1 "ranger-1.9.1" "2018-09-08" "ranger manual"
+.TH RANGER 1 "ranger-1.9.2" "2018-09-09" "ranger manual"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
@@ -667,6 +667,9 @@ the current directory. For a more permanent solution, use the command
.IP ".n" 14
.IX Item ".n"
Apply a new filename filter.
+.IP ".m" 14
+.IX Item ".m"
+Apply a new mimetype filter.
.IP ".d" 14
.IX Item ".d"
Apply the typefilter \*(L"directory\*(R".
diff --git a/doc/rifle.1 b/doc/rifle.1
index be605753..9ed1a145 100644
--- a/doc/rifle.1
+++ b/doc/rifle.1
@@ -133,7 +133,7 @@
.\" ========================================================================
.\"
.IX Title "RIFLE 1"
-.TH RIFLE 1 "rifle-1.9.1" "2018-09-08" "rifle manual"
+.TH RIFLE 1 "rifle-1.9.2" "2018-09-09" "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 ae1ecc48..b3bf61b2 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -32,8 +32,8 @@ def version_helper():
# Information
__license__ = 'GPL3'
-__version__ = '1.9.1'
-__release__ = False
+__version__ = '1.9.2'
+__release__ = True
__author__ = __maintainer__ = 'Roman Zimbelmann'
__email__ = 'hut@hut.pm'
diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py
index 6832e2cf..ee156d9a 100755
--- a/ranger/ext/rifle.py
+++ b/ranger/ext/rifle.py
@@ -21,7 +21,7 @@ import re
from subprocess import Popen, PIPE
import sys
-__version__ = 'rifle 1.9.1'
+__version__ = 'rifle 1.9.2'
# Options and constants that a user might want to change:
DEFAULT_PAGER = 'less'