summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-10-10 03:20:45 +0200
committerhut <hut@lavabit.com>2010-10-10 03:20:45 +0200
commitcbcd332596c53b43c06206a35b7830223a0bf411 (patch)
tree847f90613348a7940800c6a33d40e47ffd75842c
parent5dbaad4db675802d6021cfdcb176b3ad10451e3b (diff)
Tea, Earl Grey, Hot.v1.2.2
-rw-r--r--CHANGELOG24
-rw-r--r--README2
-rw-r--r--doc/ranger.12
-rw-r--r--ranger/__init__.py2
4 files changed, 19 insertions, 11 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 8078305d..5ce768b3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,12 +1,17 @@
-This log only documents changes between stable versions.
+NOTE: This log only documents changes between stable versions.
-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-10-10: Version 1.2.2
+* Prevent currently used directories from being garbage collected
+* Disable mouse buttons when console is open
+* Fixed :cd command: Without arguments, cd's into $HOME
+* Fixed bug which prevented pydoc to work on some config files
+* Fixed some bugs in "snow" and "jungle" colorschemes
+* Several other clean-ups and fixes
-1.2 -> 1.2.1:
+2010-09-16: Version 1.2.1
* Fixed yy/pp bug when yanking multiple directories
-1.1.2 -> 1.2:
+2010-09-13: Version 1.2.0
* !!! Changed the default configuration directory to ~/.config/ranger !!!
* Removed "Console Modes", each old mode is now a simple command
* Disabled file previews by default if ranger is used by root
@@ -19,18 +24,21 @@ fresh git snapshots while stable versions will have even minor numbers.
* Use the file ~/.mime.types for mime type detection
* Several clean-ups and fixes
-1.1.1 -> 1.1.2:
+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
* Removed pydoc html documentation by default, re-create it with "make doc"
* Minor fixes
-1.1.0 -> 1.1.1:
+2010-06-18: Version 1.1.1
* New install script, "setup.py"
* New flag for running programs: "w" (waits for enter press)
* Minor fixes
-1.0.4 -> 1.1.0:
+2010-06-09: Version 1.1.0
* Added a man page
* Tab support
* Improved directory loading performance
diff --git a/README b/README
index f0ee7a06..6f7357e8 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Ranger v.1.2.1
+Ranger v.1.2.2
==============
Ranger is a free console file manager that gives you greater flexibility
diff --git a/doc/ranger.1 b/doc/ranger.1
index 03cc3d56..0eff60d8 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -1,4 +1,4 @@
-.TH RANGER 1 ranger-1.2.1
+.TH RANGER 1 ranger-1.2.2
.SH NAME
ranger - visual file manager
.\"-----------------------------------------
diff --git a/ranger/__init__.py b/ranger/__init__.py
index 4f223b7d..3553441a 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.1'
+__version__ = '1.2.2'
__credits__ = 'Roman Zimbelmann'
__author__ = 'Roman Zimbelmann'
__maintainer__ = 'Roman Zimbelmann'