From 699befb0cc47063b548888faab6a38383847439e Mon Sep 17 00:00:00 2001 From: tsujan Date: Sun, 5 Nov 2023 14:49:34 +0330 Subject: [PATCH] Pre-release changes (#1825) --- CHANGELOG | 10 ++++++++++ CMakeLists.txt | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 47c83a6b..e5da3cfb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +pcmanfm-qt-1.4.0 / 2023-11-05 +============================== + * Check if wallpaper cache is up-to-date on reading Desktop settings (needed when the wallpaper is changed but its path and name are not). + * Added an SVG app icon. + * Fixed the tab order in dialogs. + * Prevent invisible bulk renaming dialog dialog under Wayland. + * Include the state of split view on restoring tabs of the last window. The credit goes to @riverbl for the main idea. + * Allow users to add terminal commands. + * Fixed `--wallpaper-mode` command-line option. + pcmanfm-qt-1.3.0 / 2023-04-15 ============================== * Don't try to activate windows under Wayland (it isn't possible). diff --git a/CMakeLists.txt b/CMakeLists.txt index faa694c2..24d7e3a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,13 +8,13 @@ project(pcmanfm-qt) # PcmanFm-Qt Version set(PCMANFM_QT_VERSION_MAJOR 1) -set(PCMANFM_QT_VERSION_MINOR 3) +set(PCMANFM_QT_VERSION_MINOR 4) set(PCMANFM_QT_VERSION_PATCH 0) set(PCMANFM_QT_VERSION ${PCMANFM_QT_VERSION_MAJOR}.${PCMANFM_QT_VERSION_MINOR}.${PCMANFM_QT_VERSION_PATCH}) # Minimum versions -set(LIBFMQT_MINIMUM_VERSION "1.3.0") +set(LIBFMQT_MINIMUM_VERSION "1.4.0") set(LXQTBT_MINIMUM_VERSION "0.13.0") set(QT_MINIMUM_VERSION "5.15.0")