diff options
| author | N-R-K <79544946+N-R-K@users.noreply.github.com> | 2022-03-03 12:31:33 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-03 12:31:33 +0000 | 
| commit | 231b317578cedfcca2d25b7d9861b080a37b102d (patch) | |
| tree | 90830146d4b2cd812901f6b9f6f638e46cc57d0c | |
| parent | 700d9f46c7725159a56b87d0b391a5967cfb081a (diff) | |
Release version 29
| -rw-r--r-- | CHANGELOG.md | 30 | ||||
| -rw-r--r-- | CONTRIBUTING.md | 2 | ||||
| -rw-r--r-- | 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 <kbd>z</kbd> 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. @@ -1,7 +1,7 @@  .POSIX:  # nsxiv version -VERSION = 28 +VERSION = 29  # PREFIX for install  PREFIX = /usr/local | 
