Blame


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