From 95e021ae1dfb5878691459e3d132ee4ccb40daf8 Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 18 Jun 2010 20:21:08 +0200 Subject: added CHANGELOG --- CHANGELOG | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 CHANGELOG (limited to 'CHANGELOG') diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 00000000..20943f97 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,21 @@ +1.1.0 -> 1.1.1: +* New install script, "setup.py" +* New flag for running programs: "w" (waits for enter press) + +1.0.4 -> 1.1.0: +* Added a man page +* Tab support +* Improved directory loading performance +* Commands are definable in ~/.ranger/commands.py +* Case insensitive sorting (type zs) +* Better UTF support +* Possibility to turn off previews (zp and zP) +* Changing options with :set (e.g. :set column_ratios=1,2,3,4) +* Ask for confirmation when using :delete +* New invocation flag: --fail-unless-cd +* New hotkeys, commands, options. +* New syntax for ~/.ranger/keys.py +* Several user contributions +* And tons of general improvements + +NOTE: The syntax for configuration is still subject to change. -- cgit 1.4.1-2-gfad0 From c928a9ebd2dc11142f5a7d5b1e6be5cff0183e96 Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 18 Jun 2010 20:36:07 +0200 Subject: version = version + 1 --- CHANGELOG | 1 + README | 4 ++-- doc/pydoc/ranger.__main__.html | 5 +++-- doc/pydoc/ranger.gui.widgets.console.html | 2 +- doc/pydoc/ranger.html | 4 ++-- doc/ranger.1 | 2 +- ranger/__init__.py | 2 +- 7 files changed, 11 insertions(+), 9 deletions(-) (limited to 'CHANGELOG') diff --git a/CHANGELOG b/CHANGELOG index 20943f97..578717d4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ 1.1.0 -> 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: * Added a man page diff --git a/README b/README index fb1f4d8b..562dfbdf 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Ranger v.1.1.0 +Ranger v.1.1.1 ============== Ranger is a free console file manager that gives you greater flexibility @@ -19,7 +19,7 @@ About * Author: Roman Zimbelmann * Website: http://savannah.nongnu.org/projects/ranger * License: GNU General Public License Version 3 -* Version: 1.1.0 +* Version: 1.1.1 * Download URL of the newest stable version: http://git.savannah.gnu.org/cgit/ranger.git/snapshot/ranger-stable.tar.gz diff --git a/doc/pydoc/ranger.__main__.html b/doc/pydoc/ranger.__main__.html index a30e6ffa..950e6b05 100644 --- a/doc/pydoc/ranger.__main__.html +++ b/doc/pydoc/ranger.__main__.html @@ -32,9 +32,10 @@ Modules         -
os
+
locale
+
os
sys
-

+

-
 
diff --git a/doc/pydoc/ranger.gui.widgets.console.html b/doc/pydoc/ranger.gui.widgets.console.html index 107ed09b..74825037 100644 --- a/doc/pydoc/ranger.gui.widgets.console.html +++ b/doc/pydoc/ranger.gui.widgets.console.html @@ -1145,7 +1145,7 @@ Data and other attributes inherited from Data
       ALLOWED_FLAGS = 'sdpSDP'
+
ALLOWED_FLAGS = 'sdpwSDPW'
DEFAULT_HISTORY = 0
OPEN_HISTORY = 3
QUICKOPEN_HISTORY = 2
diff --git a/doc/pydoc/ranger.html b/doc/pydoc/ranger.html index a0bc2cc6..d3a160e6 100644 --- a/doc/pydoc/ranger.html +++ b/doc/pydoc/ranger.html @@ -6,7 +6,7 @@  
ranger (version 1.1.1)
 
- 
ranger (version 1.1.0)
index
/home/hut/code/ranger/ranger/__init__.py

Ranger - file browser for the unix terminal

@@ -56,7 +56,7 @@ Has the same arguments as print() in python3. __email__ = 'romanz@lavabit.com'
__license__ = 'GPL3'
__maintainer__ = 'Roman Zimbelmann'
-__version__ = '1.1.0'
+__version__ = '1.1.1'
arg = {'debug': False, 'flags': '', 'mode': 0, 'clean': False, 'confdir': '~/.ranger', 'targets': []}

diff --git a/doc/ranger.1 b/doc/ranger.1 index ee94e1fd..dd343f28 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -1,4 +1,4 @@ -.TH RANGER 1 ranger-1.1.0 +.TH RANGER 1 ranger-1.1.1 .SH NAME ranger - visual file manager .\"----------------------------------------- diff --git a/ranger/__init__.py b/ranger/__init__.py index 2f8b2572..4fcc2ecf 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.1.0' +__version__ = '1.1.1' __credits__ = 'Roman Zimbelmann' __author__ = 'Roman Zimbelmann' __maintainer__ = 'Roman Zimbelmann' -- cgit 1.4.1-2-gfad0 From 9001827456388e40f36393a9f44d6361e53210ed Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 12 Jul 2010 20:09:58 +0200 Subject: Why did the astrophysicist order three hamburgers? --- CHANGELOG | 6 ++++++ README | 2 +- doc/ranger.1 | 2 +- ranger/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) (limited to 'CHANGELOG') diff --git a/CHANGELOG b/CHANGELOG index 578717d4..3b2ee97a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +1.1.1 -> 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: * New install script, "setup.py" * New flag for running programs: "w" (waits for enter press) diff --git a/README b/README index 120e7860..dad70262 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Ranger v.1.1.1 +Ranger v.1.1.2 ============== Ranger is a free console file manager that gives you greater flexibility diff --git a/doc/ranger.1 b/doc/ranger.1 index dd343f28..3db90285 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -1,4 +1,4 @@ -.TH RANGER 1 ranger-1.1.1 +.TH RANGER 1 ranger-1.1.2 .SH NAME ranger - visual file manager .\"----------------------------------------- diff --git a/ranger/__init__.py b/ranger/__init__.py index 4fcc2ecf..e0e8e1bf 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.1.1' +__version__ = '1.1.2' __credits__ = 'Roman Zimbelmann' __author__ = 'Roman Zimbelmann' __maintainer__ = 'Roman Zimbelmann' -- cgit 1.4.1-2-gfad0 From 81f5ac9e8b9dbcbccbd01ad8f046ccf26fb53430 Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 13 Sep 2010 13:06:48 +0200 Subject: Beware of low-flying butterflies --- CHANGELOG | 18 ++++++++++++++++++ README | 2 +- doc/ranger.1 | 2 +- ranger/__init__.py | 2 +- ranger/__main__.py | 5 ++++- 5 files changed, 25 insertions(+), 4 deletions(-) (limited to 'CHANGELOG') diff --git a/CHANGELOG b/CHANGELOG index 3b2ee97a..f1417fee 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,21 @@ +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. + +1.1.2 -> 1.2: +* !!! 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 +* Allow to jump to specific help sections by typing two numbers, e.g. 13? +* Added keys: da, dr, ya, yr for adding and removing files from copy buffer +* Added keys: gl and gL to resolve links, see 11? +* Added key: pL to create a relative symlink +* Added % and % macros for the console, see 33? +* Fixed ansi codes for colors in the pager +* Use the file ~/.mime.types for mime type detection +* Several clean-ups and fixes + 1.1.1 -> 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 4fd9876f..85b7e857 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Ranger v.1.1.2 +Ranger v.1.2.0 ============== Ranger is a free console file manager that gives you greater flexibility diff --git a/doc/ranger.1 b/doc/ranger.1 index fab42496..d81db6d4 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -1,4 +1,4 @@ -.TH RANGER 1 ranger-1.1.2 +.TH RANGER 1 ranger-1.2.0 .SH NAME ranger - visual file manager .\"----------------------------------------- diff --git a/ranger/__init__.py b/ranger/__init__.py index 57e0e5a2..c2a695c9 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.1.2' +__version__ = '1.2.0' __credits__ = 'Roman Zimbelmann' __author__ = 'Roman Zimbelmann' __maintainer__ = 'Roman Zimbelmann' diff --git a/ranger/__main__.py b/ranger/__main__.py index 7db82a57..0ded8c95 100644 --- a/ranger/__main__.py +++ b/ranger/__main__.py @@ -35,7 +35,10 @@ def parse_arguments(): if '.' in minor_version: minor_version = minor_version[:minor_version.find('.')] version_tag = ' (stable)' if int(minor_version) % 2 == 0 else ' (testing)' - version_string = 'ranger ' + __version__ + version_tag + if __version__.endswith('.0'): + version_string = 'ranger ' + __version__[:-2] + version_tag + else: + version_string = 'ranger ' + __version__ + version_tag parser = OptionParser(usage=USAGE, version=version_string) -- cgit 1.4.1-2-gfad0