Blame


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