diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2019-12-21 22:54:04 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2019-12-21 22:54:26 +0000 |
commit | a222f6475b905bdd0f55752e1539ed17bcad0a77 (patch) | |
tree | 67885c56aa97cf23c66e983fc4a09e4722ebfbf9 | |
parent | 18f139c3716b3fa0724430a01b896343292a849d (diff) | |
download | imv-a222f6475b905bdd0f55752e1539ed17bcad0a77.tar.gz |
Release v4.1.0
-rw-r--r-- | CHANGELOG | 14 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 15 insertions, 1 deletions
@@ -1,6 +1,20 @@ imv Changelog ============= +v4.1.0 - 2019-12-21 + +* Added libsngif backend +* Added command history to console +* Added proper UTF-8 support to the console +* Fixed name of libjpeg-turbo backend +* Fixed reading images from stdin +* Increased maximum supported PNG file size +* Added Keywords to imv.desktop +* Set NoDisplay in imv.desktop +* Simplified async logic in backends +* Fixed typo in manpages +* Fixed name of the LGPL + v4.0.1 - 2019-08-28 * Documented default binds in man page @@ -105,7 +105,7 @@ MSG_OBJECTS := $(patsubst src/%.c,$(BUILDDIR)/%.o,$(MSG_SOURCES)) TESTS := $(patsubst test/%.c,$(BUILDDIR)/test_%,$(TEST_SOURCES)) -VERSION != git describe --dirty --always --tags 2> /dev/null || echo v4.0.1 +VERSION != git describe --dirty --always --tags 2> /dev/null || echo v4.1.0 override CPPFLAGS += -DIMV_VERSION=\""$(VERSION)"\" |