summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--src/list.c2
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 32a2266..0849fbb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,14 @@
-git HEAD
+Sun, 17 May 2015 20:40:36 +0200 Daniel Friesel <derf+feh@finalrewind.org>
* print --verbose output to stderr
+ * Show progress when using --verbose and --loadable / --unloadable
* ~/.fehbg is now a shell script and can be executed directly
(sourcing it still works)
* --max-dimension: ignore width/height limit of 0 pixels
+ * Do not re-render images when toggling keep_zoom_vp
* feh/themes: Support quoting with '' too (previously, only "" worked)
+ * Fix potential out of bounds array access in EXIF code
+ (when built with exif=1)
Wed, 08 Apr 2015 11:18:41 +0200 Daniel Friesel <derf+feh@finalrewind.org>
@@ -15,7 +19,7 @@ Wed, 08 Apr 2015 11:18:41 +0200 Daniel Friesel <derf+feh@finalrewind.org>
Thu, 15 May 2014 23:41:07 +0200 Daniel Friesel <derf+feh@finalrewind.org>
-* Releasev v2.12
+* Release v2.12
* feh-cam and gen-cam-menu are no longer installed by default. Use
'make install cam=1' to install them or 'make uninstall cam=1 && make
install cam=0' to remove them permanently
@@ -29,7 +33,7 @@ Thu, 15 May 2014 23:41:07 +0200 Daniel Friesel <derf+feh@finalrewind.org>
* Fix a buffer overflow in the printf implementation when handling unknown
format specifiers (affects --action, --customlist, --index-info, --info,
--thumb-title and --title)
- * Update help (if built with help=1)
+ * Update help (when built with help=1)
Sun, 27 Apr 2014 20:28:02 +0200 Daniel Friesel <derf+feh@finalrewind.org>
diff --git a/src/list.c b/src/list.c
index 53fdb36..fcb41ac 100644
--- a/src/list.c
+++ b/src/list.c
@@ -110,7 +110,7 @@ void real_loadables_mode(int loadable)
}
else {
if (opt.verbose)
- feh_display_status('.');
+ feh_display_status('s');
ret = 1;
}
}