diff options
-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)\" |