From fc79caaa8e3eb8dd4338942a738fb9ea41b372aa Mon Sep 17 00:00:00 2001 From: tsujan Date: Mon, 2 Jan 2023 13:27:18 +0330 Subject: [PATCH] Pre-release changes (#869) --- CHANGELOG | 13 +++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index cc1d0343..1dd8367d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +libfm-qt-1.2.1 / 2023-01-02 +============================ + * Specified the parents of context menus for use on Wayland. + * Fixed launching XWayland apps under Wayland. + * appchooserdialog: do not disable the OK button when Custom Command page is shown. + * Increased the minimum width of name column in detailed list view. + * Fixed the DND menu position under Wayland. + * Fixed crash with DND from outside app under Wayland. + * Fixed unresponsive DND menu under Wayland. + * Workaround for DND keyboard modifiers under Wayland. + * Check mime data of clipboard for nullity (for Wayland). + * Fixed drawing of selection rectangle under Wayland. + libfm-qt-1.2.0 / 2022-11-05 ============================ * Support adding of pattern lists to entries of search dialog (such lists are used by `pcmanfm-qt` for having a search history). diff --git a/CMakeLists.txt b/CMakeLists.txt index 27c8f899..480b65aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ set(LIBFM_QT_LIBRARY_NAME "fm-qt" CACHE STRING "fm-qt") set(LIBFM_QT_API_VERSION_MAJOR 1) set(LIBFM_QT_API_VERSION_MINOR 2) -set(LIBFM_QT_API_VERSION_PATCH 0) +set(LIBFM_QT_API_VERSION_PATCH 1) set(LIBFM_QT_API_VERSION ${LIBFM_QT_API_VERSION_MAJOR}.${LIBFM_QT_API_VERSION_MINOR}.${LIBFM_QT_API_VERSION_PATCH}) list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")