diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2016-02-08 11:02:29 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2016-02-08 11:02:29 +0000 |
commit | bc90a0adcc5b22d2bf0158333eb6dfb34c402d48 (patch) | |
tree | e0e0ba4e213d289da1eb06541eaec717c70aaa95 | |
parent | b7e12de49095abcb1e970526d0d4978994e3e391 (diff) | |
download | imv-bc90a0adcc5b22d2bf0158333eb6dfb34c402d48.tar.gz |
Release imv v2.0.0
-rw-r--r-- | CHANGELOG | 23 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 24 insertions, 1 deletions
@@ -1,7 +1,30 @@ imv Changelog ============= +v2.0.0 - 2016-02-08 +------------------- + +BREAKING CHANGE: +* When no arguments given, read paths from stdin +* When '-' given as an argument, read file data from stdin + + +* Use 'Monospace' as default font +* Fixed some types of animated gifs that did not display correctly +* Added third scaling mode: 'best fit' where images will be scaled down to fit, + but *not* scaled up to fill the window +* Trimmed output of '-h', making the manpage the single source of truth +* Improvements to documentation +* Improved portability across platforms +* Allow non-integral slideshow times +* Improved test coverage +* Various improvements to the build + - `uninstall` target added to Makefile + - `V` option added to Makefile + - Respect `PREFIX`, `CFLAGS`, and `LDFLAGS` + v1.2.0 - 2015-12-11 +------------------- * Added a text overlay (-d to enable, 'd' to toggle) - Font used is configurable with -e option @@ -20,7 +20,7 @@ SOURCES := $(wildcard src/*.c) OBJECTS := $(patsubst src/%.c,$(BUILDDIR)/%.o,$(SOURCES)) TESTS := $(patsubst test/%.c,$(BUILDDIR)/test_%,$(wildcard test/*.c)) -VERSION = "v1.2.0" +VERSION = "v2.0.0" CFLAGS += -DIMV_VERSION=\"$(VERSION)\" |