Release v4.4.0

This commit is contained in:
Harry Jeffery 2023-01-18 22:20:35 +00:00
parent 2de91b2f48
commit 885e17397a
3 changed files with 34 additions and 1 deletions

View file

@ -1,7 +1,29 @@
imv Changelog
=============
v4.4.0 - 2023-01-18
-------------------
* Fixed critical error "wl_window: fix buffer size not divisible by scale"
* Added libgrapheme 2.0.0 as an alternative to icu
* Added '-w' option to specify window title at startup
* Added background rectangle behind the (possibly multiline) overlay text
* Changed chequered pattern to only over the image area for transparent images not the whole viewport
* Renamed imv-folder to imv-dir
* Fixed slideshow not always pausing correctly
* Fixed imv-dir showing as a duplicate imv in its desktop file
* Fixed whitespace bug in expanded title text
* Made imv-dir fall back to imv behaviour when given too many arguments
* Improved handling of paths from stdin
* Minor documentation and changelog improvements
v4.3.1 - 2021-12-14
-------------------
* Fix segfault when used with latest wlroots
v4.3.0 - 2021-08-05
-------------------
* Give freeimage backend preceedence over libjpeg
* Fix lack of X11 window deletion event handling
@ -19,6 +41,7 @@ v4.3.0 - 2021-08-05
* Fix flickering bug in high-DPI wayland
v4.2.0 - 2020-12-17
-------------------
* Switched to meson build system
* Added HEIF backend
@ -32,6 +55,7 @@ v4.2.0 - 2020-12-17
* Fixed bug when selecting first/last image
v4.1.0 - 2019-12-21
-------------------
* Added libsngif backend
* Added command history to console
@ -46,6 +70,7 @@ v4.1.0 - 2019-12-21
* Fixed name of the LGPL
v4.0.1 - 2019-08-28
-------------------
* Documented default binds in man page
* Added icon to imv.desktop
@ -53,6 +78,7 @@ v4.0.1 - 2019-08-28
* Added warning when legacy bind syntax is detected
v4.0.0 - 2019-08-27
-------------------
BREAKING CHANGES:
* Fixed keyboard layout handling, changing bind syntax
@ -84,14 +110,17 @@ BREAKING CHANGES:
* Fixed several memory leaks
v3.1.2 - 2019-06-24
-------------------
* Fix manpage packaging regression introduced in v3.1.1
v3.1.1 - 2019-06-22
-------------------
* Adjusted Makefile to improve packaging on BSDs
v3.1.0 - 2019-06-17
-------------------
* Added support for multiple image loaders, allowing imv to use libraries other
than FreeImage. This adds support for SVGs, and in the future, other formats
@ -108,6 +137,7 @@ v3.1.0 - 2019-06-17
* Miscellaneous code cleanup and documentation fixes
v3.0.0 - 2018-05-08
-------------------
BREAKING CHANGES:
* Change a,s,S flags to -s <mode> syntax
@ -125,6 +155,7 @@ BREAKING CHANGES:
* Fix bug where slideshow timer is not reset when an image is closed
v2.1.3 - 2016-10-22
-------------------
* Fix various resource leaks
* Fix a bug where imv would to try and catch up on long periods of lost gif

View file

@ -6,6 +6,8 @@ imv - X11/Wayland Image Viewer
[Project home](https://sr.ht/~exec64/imv/)
imv is currently seeking a new maintainer to adopt it. Please email the author if interested.
Features
--------

View file

@ -1,7 +1,7 @@
project(
'imv',
['c'],
version: '4.3.0',
version: '4.4.0',
license: 'MIT',
meson_version: '>= 0.47',
default_options: ['buildtype=debugoptimized', 'c_std=c99'],