From 231b317578cedfcca2d25b7d9861b080a37b102d Mon Sep 17 00:00:00 2001 From: N-R-K <79544946+N-R-K@users.noreply.github.com> Date: Thu, 3 Mar 2022 12:31:33 +0000 Subject: [PATCH] Release version 29 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ CONTRIBUTING.md | 2 +- Makefile | 2 +- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57d5975..96cad92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,36 @@ there may be more changes. Please use `git log` to view them. - - - +**[v29](https://github.com/nsxiv/nsxiv/archive/v29.tar.gz)** +*(March 03, 2022)* + +* Changes: + + * Window title is now customizeable via `win-title`, cli flag `-T` and related + config.h options are removed. See `WINDOW TITLE` section of the manpage for + more info. (#213) + * Imlib2 cache size is now set based on total memory percentage, by default + set to 3%. (#184) + * Removed some non-POSIX extensions in the Makefile. (#225) + +* Added: + + * Ability to customize thumbnail mode mouse-bindings via `config.h`. (#167) + * Option to set statusbar position to top via `config.h`. (#231) + * New keybinding z to scroll to center. (#203) + +* Fixes: + + * Manpage cleanup: avoid confusing wording and document thumbnail mode + mouse-bindings. (#186) + * Wrong jpeg exif orientation with Imlib2 v1.7.5 (and above). (#188) + * Animation slowdown when zoomed in. (#200) + * Reset statusbar after failed keyhandler. (#191) + * Window title not working on certain WMs. (#234) + * Various compiler warnings. (#197) + +- - - + **[v28](https://github.com/nsxiv/nsxiv/archive/v28.tar.gz)** *(December 12, 2021)* diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0aede37..05331c3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,7 +59,7 @@ For releases, the process is the following: * Tag the release with a "vN" tag, where N is the version number. Also set the commit message and tag description for the release commit to "Release - version N". + version N". Make sure to use an annotated tag. * Update `VERSION` macro in the `Makefile`. * Update the changelog (`CHANGELOG.md`): * Include link to the release tarball and add the release date. diff --git a/Makefile b/Makefile index be194f7..e33f0c9 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .POSIX: # nsxiv version -VERSION = 28 +VERSION = 29 # PREFIX for install PREFIX = /usr/local