From aefd8048d2b246c0111ac1227ade2a9a9d38c35c Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 9 Jun 2010 13:11:06 +0200 Subject: renamed "--fail-if-run" to the more accurate "--fail-unless-cd" The old name, --fail-if-run, is still valid and working. --- doc/ranger.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/ranger.1') diff --git a/doc/ranger.1 b/doc/ranger.1 index b197d774..39c33973 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -33,9 +33,9 @@ Activate the clean mode: Ranger will not access or create any configuration files nor will it leave any traces on your system. This is useful when your configuration is broken, when you want to avoid clutter, etc. .TP ---fail-if-run +--fail-unless-cd Return the exit code 1 if ranger is used to run a file, for example with -`ranger --fail-if-run filename`. This can be useful for scripts. +`ranger --fail-unless-cd filename`. This can be useful for scripts. .TP -r \fIdir\fR, --confdir=\fIdir\fR Define a different configuration directory. The default is $HOME/.ranger. @@ -176,7 +176,7 @@ of your parent shell after exiting ranger: .nf ranger() { - command ranger --fail-if-run $@ && + command ranger --fail-unless-cd $@ && cd "$(grep \\^\\' ~/.ranger/bookmarks | cut -b3-)" } .\"----------------------------------------- -- cgit 1.4.1-2-gfad0 From acf16d12e99a2543ef9f87c0bd9c9a7c77c0f90b Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 9 Jun 2010 13:23:08 +0200 Subject: updated manpage --- doc/ranger.1 | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'doc/ranger.1') diff --git a/doc/ranger.1 b/doc/ranger.1 index 39c33973..0e25a7cc 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -185,9 +185,8 @@ The files in .B ranger/defaults/ can be copied into your configuration directory (by default, this is $HOME/.ranger) and customized according to your wishes. -.B ranger/defaults/options.py -doesn't have to be copied completely though: Just define those settings -you want to change and they will override the default values. +Most files don't have to be copied completely though: Just define those +settings you want to add or change and they will override the defauls. Colorschemes can be placed in $HOME/.ranger/colorschemes. .P All configuration is done in Python. @@ -214,7 +213,7 @@ The mailing list: .RB < http://savannah.nongnu.org/mail/?group=ranger > .\"----------------------------------------- .SH BUGS -Since Chuck Norris, the Texas Ranger, watches over this project, there ought -to be no bugs. If you think otherwise, please report them here: +Please report them here and include as much relevant information +as possible: .P .RB < http://savannah.nongnu.org/bugs/?group=ranger > -- cgit 1.4.1-2-gfad0 From e74222ee48435895a636812f908c862f3fb7acb6 Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 9 Jun 2010 13:48:14 +0200 Subject: new stable version --- README | 4 ++-- doc/pydoc/ranger.html | 4 ++-- doc/ranger.1 | 2 +- ranger/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/ranger.1') diff --git a/README b/README index ea9eb521..fb1f4d8b 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Ranger v.1.0.4 +Ranger v.1.1.0 ============== 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.0.4 +* Version: 1.1.0 * 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.html b/doc/pydoc/ranger.html index b8e4e198..a0bc2cc6 100644 --- a/doc/pydoc/ranger.html +++ b/doc/pydoc/ranger.html @@ -6,7 +6,7 @@  
ranger (version 1.1.0)
 
- 
ranger (version 1.0.4)
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.0.4'
+__version__ = '1.1.0'
arg = {'debug': False, 'flags': '', 'mode': 0, 'clean': False, 'confdir': '~/.ranger', 'targets': []}

diff --git a/doc/ranger.1 b/doc/ranger.1 index 0e25a7cc..ee94e1fd 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -1,4 +1,4 @@ -.TH RANGER 1 ranger-1.0.4 +.TH RANGER 1 ranger-1.1.0 .SH NAME ranger - visual file manager .\"----------------------------------------- diff --git a/ranger/__init__.py b/ranger/__init__.py index f46a1e76..2f8b2572 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.0.4' +__version__ = '1.1.0' __credits__ = 'Roman Zimbelmann' __author__ = 'Roman Zimbelmann' __maintainer__ = 'Roman Zimbelmann' -- cgit 1.4.1-2-gfad0