diff options
author | leo-arch <leonardoabramovich2@gmail.com> | 2023-09-20 19:44:44 -0300 |
---|---|---|
committer | leo-arch <leonardoabramovich2@gmail.com> | 2023-09-20 19:44:44 -0300 |
commit | 5de756b7e173551d69dec49b23435673e6e10ca2 (patch) | |
tree | 0a81ff39b19dc8103af9643781b4c33a0057bc08 | |
parent | 7e77dc93f42709c02beb13913b5b75374f93f870 (diff) |
Update CHANGELOG filev1.14.6
-rw-r--r-- | CHANGELOG | 13 | ||||
-rw-r--r-- | src/helpers.h | 2 | ||||
-rw-r--r-- | src/main.c | 2 |
3 files changed, 15 insertions, 2 deletions
@@ -1,3 +1,16 @@ +1.14.6 + +Bug fixes +* "CMD1 2" not expanding ELNs (1 and 2). +* Crash with Ctrl-Alt-u keybinding. +* Wrongly attempting to remove the selections file when running 't sel' and there are no selected files. +* Wrong alignment for big file sizes in long view (sizes in bytes only). +* Haiku: infinite "sel *" loop after keybind. +* Crash when running with --list-and-quit and no parameter is provided. + +New features/improvements +* Properly right-pad dash for unknown file sizes (in bytes) in long view mode. + 1.14.5 Bug fixes diff --git a/src/helpers.h b/src/helpers.h index 37d46f43..263475c4 100644 --- a/src/helpers.h +++ b/src/helpers.h @@ -29,7 +29,7 @@ #define PROGRAM_NAME "clifm" #define PROGRAM_DESC "The command line file manager" #define VERSION "1.14.6" -#define DATE "Sep 18, 2023" +#define DATE "Sep 20, 2023" #define AUTHOR "L. Abramovich" #define CONTACT "https://github.com/leo-arch/clifm" #define LICENSE "GPL2+" @@ -1188,7 +1188,7 @@ main(int argc, char *argv[]) if (xargs.list_and_quit == 1) { list_files(); - exit(EXIT_SUCCESS); + exit(EXIT_SUCCESS); /* Never reached */ } set_sel_file(); |