diff options
-rw-r--r-- | CHANGELOG | 7 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | doc/ranger.1 | 2 | ||||
-rw-r--r-- | ranger/__init__.py | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG index 5ce768b3..98f79991 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,12 @@ NOTE: This log only documents changes between stable versions. +2010-12-13: Version 1.2.3 +* Enable binding to alt-keys +* Fixed memory leak in garbage collecting of old, unused directory objects +* Fixed python3 incompatibilities +* Fixed problems with identifying changes of files +* Fixed lazy lookup of some FSObject attributes + 2010-10-10: Version 1.2.2 * Prevent currently used directories from being garbage collected * Disable mouse buttons when console is open diff --git a/README b/README index 6fb83dad..79b3a767 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Ranger v.1.2.2 +Ranger v.1.2.3 ============== Ranger is a free console file manager that gives you greater flexibility diff --git a/doc/ranger.1 b/doc/ranger.1 index 0eff60d8..e098c2b0 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -1,4 +1,4 @@ -.TH RANGER 1 ranger-1.2.2 +.TH RANGER 1 ranger-1.2.3 .SH NAME ranger - visual file manager .\"----------------------------------------- diff --git a/ranger/__init__.py b/ranger/__init__.py index 3553441a..e0a4f4e0 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -20,7 +20,7 @@ import sys from ranger.ext.openstruct import OpenStruct __license__ = 'GPL3' -__version__ = '1.2.2' +__version__ = '1.2.3' __credits__ = 'Roman Zimbelmann' __author__ = 'Roman Zimbelmann' __maintainer__ = 'Roman Zimbelmann' |