summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-12-22 02:55:02 +0100
committerhut <hut@lavabit.com>2010-12-22 03:37:42 +0100
commitef2b1e374359aec59199c7e8d9334fe2aefed153 (patch)
tree771ff3359ce1dd0da55c6942b945b6395a77dac4
parent37460239b221f57e29020439b4a0d1bbe75637df (diff)
downloadranger-1.4.0.tar.gz
We are not authorized to disclose the commit message v1.4.0
-rw-r--r--CHANGELOG23
-rw-r--r--README2
-rw-r--r--doc/ranger.12
-rw-r--r--ranger/__init__.py2
4 files changed, 23 insertions, 6 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 98f79991..9cf031cf 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,24 @@
 NOTE: This log only documents changes between stable versions.
+Stable versions are identifiable (since 1.2) through their even minor
+version number, like 1.2.x, 1.4.x, etc.  Odd minor version numbers
+are used for rolling-release git snapshots.
+
+2010-12-22: Version 1.4.0
+* Added option to use any external scripts for previews (see scope.sh)
+* Added key: zv to toggle the use of the external script
+* Added indicator for the used filter (type "zf")
+* Added option padding_right to remove whitespace if theres no preview
+* Added command :search_inc for incremental search
+* Added commands :save_copy_buffer and :load_copy_buffer to share
+  the copied files between ranger instances
+* Added mimeopen as a fallback if no useful application can be found
+* Added natural sort, sorts 1foo before 10foo. (type "on")
+* Added keys: yp, yd and yb to copy path, dirname or basename to seleciton
+* Let open_with use the selection, not just one file
+* Run files with right mouse click
+* Implemented copying via coreutils rather than internal python code
+* Improved handling of unicode
+* Some restructuration of the source code
 
 2010-12-13: Version 1.2.3
 * Enable binding to alt-keys
@@ -31,9 +51,6 @@ NOTE: This log only documents changes between stable versions.
 * Use the file ~/.mime.types for mime type detection
 * Several clean-ups and fixes
 
-NOTE: From 1.2 on, odd minor version numbers (1.3, 1.5, 1.7,..) are assigned to
-the fresh git snapshots while stable versions will have even minor numbers.
-
 2010-07-17: Version 1.1.2
 * Fix crash when using scrollwheel to scroll down in some cases
 * The command "ranger dir1 dir2 ..." opens multiple directories in tabs
diff --git a/README b/README
index bbf4c926..b410e2f1 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Ranger v.1.3.1
+Ranger v.1.4.0
 ==============
 
 Ranger is a free console file manager that gives you greater flexibility
diff --git a/doc/ranger.1 b/doc/ranger.1
index 8eee794c..2e4092f9 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -1,4 +1,4 @@
-.TH RANGER 1 ranger-1.3.1
+.TH RANGER 1 ranger-1.4.0
 .SH NAME
 ranger - visual file manager
 .\"-----------------------------------------
diff --git a/ranger/__init__.py b/ranger/__init__.py
index 3f7339f1..a5fa1643 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -29,7 +29,7 @@ from ranger.core.main import main
 
 # Information
 __license__ = 'GPL3'
-__version__ = '1.3.1'
+__version__ = '1.4.0'
 __author__ = __maintainer__ = 'Roman Zimbelmann'
 __email__ = 'romanz@lavabit.com'