From 79bba4bf2cd1cbed4a32f8c6a09e99ff7faff3db Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Mon, 17 Jun 2019 20:36:48 +0100 Subject: Release v3.1.0 --- CHANGELOG | 16 ++++++++++++++++ Makefile | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index a4cc4b7..74147ec 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,22 @@ imv Changelog ============= +v3.1.0 - 2019-06-17 + +* Added support for multiple image loaders, allowing imv to use libraries other + than FreeImage. This adds support for SVGs, and in the future, other formats + as required. +* Loaders added for libpng, libtiff, librsvg, libturbojpeg. +* Added support for binding multiple commands to a single key +* Support for hidpi rendering with SDL >= 2.0.10 +* Added -v flag to show version number +* Allow 'Escape' to be bound, changing bind abort sequence to 2x'Escape' +* Fixed bug where path list from stdin would sometime be truncated +* New releases only published under the MIT license, with FreeImage optionally + used under the FIPL +* Fixed several memory leaks +* Miscellaneous code cleanup and documentation fixes + v3.0.0 - 2018-05-08 BREAKING CHANGES: diff --git a/Makefile b/Makefile index 2946535..67221b6 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ TEST_SOURCES := test/list.c test/navigator.c OBJECTS := $(patsubst src/%.c,$(BUILDDIR)/%.o,$(SOURCES)) TESTS := $(patsubst test/%.c,$(BUILDDIR)/test_%,$(TEST_SOURCES)) -VERSION != git describe --dirty --always --tags 2> /dev/null || echo v3.0.0 +VERSION != git describe --dirty --always --tags 2> /dev/null || echo v3.1.0 override CPPFLAGS += -DIMV_VERSION=\""$(VERSION)"\" -- cgit v1.2.3