From 2c309379ac09dabb8b1043ae0ad652dc47657649 Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 1 Apr 2011 23:04:24 +0200 Subject: Improved manpage --- doc/ranger.1 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'doc/ranger.1') diff --git a/doc/ranger.1 b/doc/ranger.1 index c2a8e243..beb580c6 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -86,14 +86,15 @@ S Open a shell in the current directory .TP yy -Yank the selection. (mark the files as copied) +Yank the selection to the "copy" buffer and mark them as to be copied .TP dd -Cut the selection +Cut the selection to the "copy" buffer and mark them as to be moved .TP pp -Paste the copied/cut files. By default, this will not overwrite existing -files. To overwrite them, use \fBpo\fR. +Paste the files from the "copy" buffer here (by moving or copying, depending +on how they are marked.) By default, this will not overwrite existing files. +To overwrite them, use \fBpo\fR. .TP m\fIX\fR Create a bookmark with the name \fIX\fR -- cgit 1.4.1-2-gfad0 From 2ed2d4f79238ce505724fc5873c6a912e19be305 Mon Sep 17 00:00:00 2001 From: hut Date: Tue, 5 Apr 2011 17:07:29 +0200 Subject: This gonna be cool once it's finished --- CHANGELOG | 5 +++++ README | 2 +- doc/ranger.1 | 2 +- ranger/__init__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) (limited to 'doc/ranger.1') diff --git a/CHANGELOG b/CHANGELOG index 7661ca1e..f934591d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,11 @@ Stable versions are identifiable (since 1.2) through their even minor version number, like 1.2.x, 1.4.x, etc. Odd minor version numbers are used for rolling-release git snapshots. +2011-04-05: Version 1.4.3 +* Fixed mimetype checking when invoking ranger with a filename +* Fixed loss of bookmarks when disk is full +* Minor improvements + 2011-03-05: Version 1.4.2 * Added --choosefile and --choosedir flag * Added use of bookmarks in tab completion of the :cd command diff --git a/README b/README index 5221574c..0f43f6bd 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Ranger v.1.4.2 +Ranger v.1.4.3 ============== Ranger is a free console file manager that gives you greater flexibility diff --git a/doc/ranger.1 b/doc/ranger.1 index beb580c6..5b9d9df8 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -1,4 +1,4 @@ -.TH RANGER 1 ranger-1.4.2 +.TH RANGER 1 ranger-1.4.3 .SH NAME ranger - visual file manager .\"----------------------------------------- diff --git a/ranger/__init__.py b/ranger/__init__.py index 88117f6c..03a1d2da 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -29,7 +29,7 @@ from ranger.core.main import main # Information __license__ = 'GPL3' -__version__ = '1.4.2' +__version__ = '1.4.3' __author__ = __maintainer__ = 'Roman Zimbelmann' __email__ = 'romanz@lavabit.com' -- cgit 1.4.1-2-gfad0