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