diff options
-rw-r--r-- | CHANGELOG | 12 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 13 insertions, 1 deletions
@@ -1,6 +1,18 @@ imv Changelog ============= +v1.2.0 - 2015-12-11 + +* Added a text overlay (-d to enable, 'd' to toggle) + - Font used is configurable with -e option +* Added slideshow support (-t option) +* Added -l option to list all open images on exit +* Automatically reload images if they change on disk +* Moved image loading into background thread to improve UI responsiveness +* Auto hide the mouse when appropriate +* Added support for upper and lower case hex in the -b option. +* Fixed a couple of crashes + v1.1.0 - 2015-11-14 ------------------- @@ -12,7 +12,7 @@ SOURCES = $(wildcard src/*.c) OBJECTS = $(patsubst src/%.c,$(BUILDDIR)/%.o,$(SOURCES)) TESTS = $(patsubst test/%.c,test_%,$(wildcard test/*.c)) -VERSION = "v1.1.0" +VERSION = "v1.2.0" CFLAGS += -DIMV_VERSION=\"$(VERSION)\" |