summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWojciech Siewierski <wojciech.siewierski@onet.pl>2018-02-22 14:19:28 +0100
committerWojciech Siewierski <wojciech.siewierski@onet.pl>2018-02-22 14:19:28 +0100
commitd2b3c17578b70b1ab0bdbc7eb70046fa2e17a434 (patch)
treea36b8e6e251e3d57732c9117d630c0ee39fdfd42
parentaf0ef6a233744121307fba3b11089f05e9369782 (diff)
Please do not turn off your phone while upgrading...v1.9.1
-rw-r--r--CHANGELOG.md11
-rw-r--r--README.md2
-rw-r--r--doc/ranger.16
-rw-r--r--doc/rifle.14
-rw-r--r--ranger/__init__.py2
-rwxr-xr-xranger/ext/rifle.py2
6 files changed, 19 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e7becb27..346b18dd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
This log documents changes between stable versions.
+# 2018-02-22: version 1.9.1
+* Fixed the rifle config backwards compatibility (regression in 1.9.0)
+* Fixed the POSIX compatibility of `Makefile`
+* Fixed `--choosefile`, `--choosefiles` and `--choosedir` so they work
+ with the process substitution (`>(...)` in Bash)
+* Changed the default `gt` binding to `gp` due to a conflict
+* Changed the help message for `--choosefile`, `--choosefiles` and
+ `--choosedir` to avoid confusion
+* Changed the behavior of `:reset` to reload the tags too
+* Added `geeqie` to the default `rifle.conf`
+
# 2018-01-25: version 1.9.0
* Fixed memory leak in w3m image preview
* Fixed `Q` binding, map it to `quitall` instead of `quit!`
diff --git a/README.md b/README.md
index ca181b95..ef644ae6 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-ranger 1.9.0
+ranger 1.9.1
============
[![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 f4bdc02f..fca30604 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -1,4 +1,4 @@
-.\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35)
+.\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32)
.\"
.\" Standard preamble:
.\" ========================================================================
@@ -129,7 +129,7 @@
.\" ========================================================================
.\"
.IX Title "RANGER 1"
-.TH RANGER 1 "ranger-1.9.0" "2018-02-05" "ranger manual"
+.TH RANGER 1 "ranger-1.9.1" "02/22/2018" "ranger manual"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
@@ -599,7 +599,7 @@ Toggle the mark-status of all files
.IP "V" 14
.IX Item "V"
Starts the visual mode, which selects all files between the starting point and
-the cursor until you press \s-1ESC.\s0 To unselect files in the same way, use \*(L"uV\*(R".
+the cursor until you press \s-1ESC. \s0 To unselect files in the same way, use \*(L"uV\*(R".
.IP "/" 14
Search for files in the current directory.
.IP ":" 14
diff --git a/doc/rifle.1 b/doc/rifle.1
index 755ac959..9e439c35 100644
--- a/doc/rifle.1
+++ b/doc/rifle.1
@@ -1,4 +1,4 @@
-.\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35)
+.\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32)
.\"
.\" Standard preamble:
.\" ========================================================================
@@ -129,7 +129,7 @@
.\" ========================================================================
.\"
.IX Title "RIFLE 1"
-.TH RIFLE 1 "rifle-1.9.0" "2018-01-25" "rifle manual"
+.TH RIFLE 1 "rifle-1.9.1" "02/22/2018" "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 60a536a0..0d7c8fdc 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -14,7 +14,7 @@ import os
# Information
__license__ = 'GPL3'
-__version__ = '1.9.0'
+__version__ = '1.9.1'
__author__ = __maintainer__ = 'Roman Zimbelmann'
__email__ = 'hut@hut.pm'
diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py
index 8f28cef8..70215039 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.0'
+__version__ = 'rifle 1.9.1'
# Options and constants that a user might want to change:
DEFAULT_PAGER = 'less'