From c14adf6071195a3e91def6af81572465cd8815fd Mon Sep 17 00:00:00 2001 From: Tsu Jan Date: Sun, 6 Apr 2025 12:43:34 +0330 Subject: [PATCH] Pre-release changes --- CHANGELOG | 7 +++++++ CMakeLists.txt | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 55a6de4..46ed63e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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). diff --git a/CMakeLists.txt b/CMakeLists.txt index 1100d90..d21c5fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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")