Blob


1 # Change Log
3 ## [0.4.1] - 2016-01-03
5 ### New Features
7 - Add `--save-marks` option to save pathname of marked entries upon exit.
8 - Add option to use a shell to launch external programs more flexibly.
9 - e.g. `PAGER="less 2> /dev/null -N" rover`
11 ### Bug Fixes
13 - Fix file operations on symbolic links.
14 - Don't dereference symlinks when copying.
15 - Don't dereference symlinks to directories during batch operations.
16 - Fix build error on platforms that disable SIGWINCH in the name of POSIX.
18 ## [0.4.0] - 2015-08-21
20 ### Important changes in default configuration
22 - The key for "delete selected file or (empty) directory" is now 'D'.
23 - The old key ('x') was too similar to "delete all marked entries" ('X').
24 - The keys for "refresh listing" & "rename" were swapped to 'r' & 'R', resp.
25 - This is more consistent, keeping file operations on uppercase keys.
27 ### New Features
29 - Considerably improved status messages.
30 - "Moving..." (or similar) instead of "Processing...".
31 - ""foo.txt" already exists" (or similar) instead if "File already exists.".
32 - Show progress during batch processing (e.g. "Moving...63%").
33 - Update directory listing as it is affected by batch operations.
34 - Add optional alert to inform that a batch operation has finished.
35 - Support color customization of other kinds of files.
36 - Each file type described in stat(2) can now have its own color.
37 - Executable files can also have their own color.
39 ### Bug Fixes
41 - Check if directory is accessible before changing the current path.
42 - Fix crash on long path names.
43 - Show long status messages partially, instead of nothing at all.
44 - Fix some scrollbar-related issues.
46 ## [0.3.0] - 2015-06-21
48 ### New Features
50 - Unicode support.
51 - New commands 'g' & 'G' to jump to top & bottom of listing.
52 - New option `--save-cwd` to save last visited path to a file before exiting.
53 - New helper script `rover.sh` to use Rover as "interactive cd".
55 ### Bug Fixes
57 - Handle symbolic links to directories as such, rather than regular files.
58 - Add missing make target for uninstalling Rover.
59 - Fix unsafe behavior on terminal resizing.
61 ## [0.2.0] - 2015-06-03
63 ### New Features
65 - Better line editing (for search, rename, etc):
66 - Allow cursor movement, insertion and deletion.
67 - Horizontal scrolling for long lines in small terminals.
68 - New command 'R' to refresh directory listing.
69 - New command 'x' to delete selected file or (empty) directory.
70 - Show file sizes in human readable format ("1.4 K" instead of "1394").
71 - Set environment variable $RVSEL to selection before running a subprocess.
73 ## [0.1.1] - 2015-04-17
75 ### Bug Fixes
77 - Fix flashing on slow terminals.
78 - Fix crash on terminal resizing during subprocess execution.
79 - Accept relative paths as arguments.
80 - Don't overwrite default background color.
81 - When listing symbolic links, show link size instead of target size.
82 - Remove possible buffer overflows.
84 ## [0.1.0] - 2015-03-07
86 First version.