Skip to content

Pre-release changes #711

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
lximage-qt-2.2.0 / 2025-04-17
==============================
* Used the device pixel ratio of the window on Wayland.
* Fixes and workarounds for multi-screen scaling issues on Wayland.
* Fixed an old issue in showing GIF animations with pixel ratios > 1.
* Commented out "RememberWindowSize" from settings because it was never used (but might be used later).

lximage-qt-2.1.1 / 2025-01-29
==============================
* Don't set a limit for image size (Qt6 had set an allocation limit of 256 MiB).
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ project(lximage-qt)
include(GNUInstallDirs)

set(MAJOR_VERSION 2)
set(MINOR_VERSION 1)
set(PATCH_VERSION 1)
set(MINOR_VERSION 2)
set(PATCH_VERSION 0)
set(LXIMAGE_VERSION ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION})

set(LXQTBT_MINIMUM_VERSION "2.1.0")
set(LIBFMQT_MINIMUM_VERSION "2.1.0")
set(LXQTBT_MINIMUM_VERSION "2.2.0")
set(LIBFMQT_MINIMUM_VERSION "2.2.0")
set(QT_MINIMUM_VERSION "6.6.0")


Expand Down