aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2015-11-14 23:30:01 +0000
committerHarry Jeffery <harry@exec64.co.uk>2015-11-14 23:30:01 +0000
commit4d1a6d581b70b25d9533c5c788aab6900ebf82bb (patch)
tree6018da9b0c31c448048169638fe14b5f199e2a82
parent8e316dba37be19523039c0c7b449ac6f0202ceb1 (diff)
downloadimv-4d1a6d581b70b25d9533c5c788aab6900ebf82bb.tar.gz
Release v1.1.0
-rw-r--r--CHANGELOG19
-rw-r--r--Makefile2
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 0851c1b..9a7389f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,25 @@
imv Changelog
=============
+v1.1.0 - 2015-11-14
+-------------------
+
+* Relicensed to GPL
+* Added support for transparency
+* Added 'p' hotkey to print the current image's path to stdout
+* Added '-n' option to start at a specific image
+* Added '-b' option to set the background
+* Added '-u' option to set resampling to nearest-neighbour
+* Changed '-i' option to '-' for reading paths from stdin
+* Added a .desktop file, for xdg-open support
+* Fixed compilation on Fedora 22
+* Fixed crash when using SDL's software renderer
+* Fixed bug where single frame gifs would not be rendered
+* Fixed animated gif playback speed for some unusual gifs
+* Fixed slow zoom speed on large images
+* Fixed a memory leak
+* Added a FreeImage copyright notice for GPL compliance
+
v1.0.0 - 2015-11-11
-------------------
Intitial release
diff --git a/Makefile b/Makefile
index 98e976a..60ccf75 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ BUILDDIR = build
SOURCES = $(wildcard src/*.c)
OBJECTS = $(patsubst src/%.c,$(BUILDDIR)/%.o,$(SOURCES))
-VERSION = "v1.0.0"
+VERSION = "v1.1.0"
CFLAGS += -DIMV_VERSION=\"$(VERSION)\"