summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-12-13 18:39:50 +0100
committerhut <hut@lavabit.com>2010-12-13 18:55:25 +0100
commitefd7c0c16203cdeafcd58201d509325129397a67 (patch)
treed09314b03e296fd44829ab64785f9bf998abbd21
parent77611f38dcea220ac431d4e9c3c40515003500de (diff)
HOW DO I TURN OFF CAPS LOCK?v1.2.3
-rw-r--r--CHANGELOG7
-rw-r--r--README2
-rw-r--r--doc/ranger.12
-rw-r--r--ranger/__init__.py2
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'