Blob


1 # Change Log
3 ## [1.0.0] - 2017-05-07
5 ### New Features
7 - Add 'y' & 'p' to copy & paste location.
8 - Use `$CLIP` file as clipboard, when defined.
9 - Add 'E' command to toggle execute permission of file.
10 - Allow user to set Rover-specific programs, e.g. `$ROVER_SHELL`.
11 - Refresh directory listing on `SIGUSR1` signal.
12 - Show directory path while loading.
14 ### Bug Fixes
16 - Fix bug that prevented opening file with space in its name.
17 - Fix file mode of installed manpage.
19 ## [0.4.2] - 2016-06-04
21 **Note**: The helper script `rover.sh` has been removed in this
22 release. Its contents were included in the new `FAQ.md` file, along
23 with an explanation.
25 ### New Features
27 - Add 'o' to open file with `$ROVER_OPEN`.
28 - Add 't' to navigate to link target.
30 ### Bug Fixes
32 - Honor `LDFLAGS` in Makefile.
34 ## [0.4.1] - 2016-01-03
36 ### New Features
38 - Add `--save-marks` option to save pathname of marked entries upon exit.
39 - Add option to use a shell to launch external programs more flexibly.
40 - e.g. `PAGER="less 2> /dev/null -N" rover`
42 ### Bug Fixes
44 - Fix file operations on symbolic links.
45 - Don't dereference symlinks when copying.
46 - Don't dereference symlinks to directories during batch operations.
47 - Fix build error on platforms that disable SIGWINCH in the name of POSIX.
49 ## [0.4.0] - 2015-08-21
51 ### Important changes in default configuration
53 - The key for "delete selected file or (empty) directory" is now 'D'.
54 - The old key ('x') was too similar to "delete all marked entries" ('X').
55 - The keys for "refresh listing" & "rename" were swapped to 'r' & 'R', resp.
56 - This is more consistent, keeping file operations on uppercase keys.
58 ### New Features
60 - Considerably improved status messages.
61 - "Moving..." (or similar) instead of "Processing...".
62 - ""foo.txt" already exists" (or similar) instead if "File already exists.".
63 - Show progress during batch processing (e.g. "Moving...63%").
64 - Update directory listing as it is affected by batch operations.
65 - Add optional alert to inform that a batch operation has finished.
66 - Support color customization of other kinds of files.
67 - Each file type described in stat(2) can now have its own color.
68 - Executable files can also have their own color.
70 ### Bug Fixes
72 - Check if directory is accessible before changing the current path.
73 - Fix crash on long path names.
74 - Show long status messages partially, instead of nothing at all.
75 - Fix some scrollbar-related issues.
77 ## [0.3.0] - 2015-06-21
79 ### New Features
81 - Unicode support.
82 - New commands 'g' & 'G' to jump to top & bottom of listing.
83 - New option `--save-cwd` to save last visited path to a file before exiting.
84 - New helper script `rover.sh` to use Rover as "interactive cd".
86 ### Bug Fixes
88 - Handle symbolic links to directories as such, rather than regular files.
89 - Add missing make target for uninstalling Rover.
90 - Fix unsafe behavior on terminal resizing.
92 ## [0.2.0] - 2015-06-03
94 ### New Features
96 - Better line editing (for search, rename, etc):
97 - Allow cursor movement, insertion and deletion.
98 - Horizontal scrolling for long lines in small terminals.
99 - New command 'R' to refresh directory listing.
100 - New command 'x' to delete selected file or (empty) directory.
101 - Show file sizes in human readable format ("1.4 K" instead of "1394").
102 - Set environment variable $RVSEL to selection before running a subprocess.
104 ## [0.1.1] - 2015-04-17
106 ### Bug Fixes
108 - Fix flashing on slow terminals.
109 - Fix crash on terminal resizing during subprocess execution.
110 - Accept relative paths as arguments.
111 - Don't overwrite default background color.
112 - When listing symbolic links, show link size instead of target size.
113 - Remove possible buffer overflows.
115 ## [0.1.0] - 2015-03-07
117 First version.