summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-05-24 20:45:13 +0200
committerhut <hut@lavabit.com>2013-05-24 20:45:13 +0200
commit1419d7e7a842f95b074bae1de6292b09f2e492fd (patch)
treee0971f772d9c7a30326fe2d0b3cf73d4304d59a2
parentbd8ca128ac81c0fca1490136e50038bfa2cf2a0e (diff)
RANGER! RANGER! HIGH VOLTAGE!v1.6.1
-rw-r--r--CHANGELOG8
-rw-r--r--README2
-rw-r--r--doc/ranger.12
-rw-r--r--doc/rifle.12
-rw-r--r--ranger/__init__.py4
-rwxr-xr-xranger/ext/rifle.py2
6 files changed, 14 insertions, 6 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 48651d77..c5237279 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,13 @@
This log documents changes between stable versions.
+2013-05-24: Version 1.6.1
+* Added support for version control systems, see:
+ http://lists.nongnu.org/archive/html/ranger-users/2013-03/msg00007.html
+* Added :scout command as a unified backend to :find, :search, etc
+* Added "open_all_images" setting to remove the need for external scripts
+ to handle opening of all images in a directory at once.
+* Now previewing with "i" uses the whole available width.
+
2013-02-22: Version 1.6.0
* Overhauled all config files. Please update them or use the --clean switch
* Added "examples/" directory to source code which contains sample programs or
diff --git a/README b/README
index 5588d0c0..aa16ad03 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-ranger v.1.6.0
+ranger v.1.6.1
==============
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 75757963..d2a25aaa 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -124,7 +124,7 @@
.\" ========================================================================
.\"
.IX Title "RANGER 1"
-.TH RANGER 1 "ranger-1.6.0" "04/30/2013" "ranger manual"
+.TH RANGER 1 "ranger-1.6.1" "05/24/2013" "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 87578c4c..bf6885a3 100644
--- a/doc/rifle.1
+++ b/doc/rifle.1
@@ -124,7 +124,7 @@
.\" ========================================================================
.\"
.IX Title "RIFLE 1"
-.TH RIFLE 1 "rifle-1.6.0" "03/01/2013" "rifle manual"
+.TH RIFLE 1 "rifle-1.6.1" "05/24/2013" "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 5dc1c433..f6370efb 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -13,7 +13,7 @@ import os
# Information
__license__ = 'GPL3'
-__version__ = '1.6.0'
+__version__ = '1.6.1'
__author__ = __maintainer__ = 'Roman Zimbelmann'
__email__ = 'hut@lavabit.com'
@@ -26,7 +26,7 @@ MACRO_DELIMITER = '%'
DEFAULT_PAGER = 'less'
LOGFILE = '/tmp/ranger_errorlog'
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 61961c16..054491ac 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.6.0'
+__version__ = 'rifle 1.6.1'
# Options and constants that a user might want to change:
DEFAULT_PAGER = 'less'