Skip to content

Commit 92a1f30

Browse files
authored
Pre-release changes (#847)
1 parent 088426f commit 92a1f30

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
libfm-qt-1.2.0 / 2022-11-05
2+
============================
3+
* Support adding of pattern lists to entries of search dialog (such lists are used by `pcmanfm-qt` for having a search history).
4+
* Fixed crash with empty URI scheme of folder path.
5+
* Silenced compilation warnings about deprecated GLib functions.
6+
* Don't show a deletion prompt without a selection.
7+
* Fixed infinite loop if a symlink that is created by DND overwrites a non-empty directory.
8+
* Allow remembering the result of execution prompt for multiple files.
9+
* Added `Ctrl+D` to LXQt file dialog for deselecting all items.
10+
* Allow selection by dragging mouse cursor inside non-name columns in the detailed list mode.
11+
* Corrected the position of drop menu under Wayland.
12+
* Fixed crash with DND into side-pane under Wayland.
13+
* Added nullity checks to `XdndWorkaround`.
14+
115
libfm-qt-1.1.0 / 2022-04-15
216
============================
317
* Prepared libfm-qt for implementing "Recent Files".

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project(libfm-qt)
99
set(LIBFM_QT_LIBRARY_NAME "fm-qt" CACHE STRING "fm-qt")
1010

1111
set(LIBFM_QT_API_VERSION_MAJOR 1)
12-
set(LIBFM_QT_API_VERSION_MINOR 1)
12+
set(LIBFM_QT_API_VERSION_MINOR 2)
1313
set(LIBFM_QT_API_VERSION_PATCH 0)
1414
set(LIBFM_QT_API_VERSION ${LIBFM_QT_API_VERSION_MAJOR}.${LIBFM_QT_API_VERSION_MINOR}.${LIBFM_QT_API_VERSION_PATCH})
1515

@@ -23,12 +23,12 @@ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
2323
# universal way to translate a libtool version-info to a cmake version.
2424
# We use "(current-age).age.revision" as the cmake version.
2525
# current: 6, revision: 0, age: 0 => version: 6.0.0
26-
set(LIBFM_QT_ABI_VERSION "11.0.0")
27-
set(LIBFM_QT_SOVERSION "11")
26+
set(LIBFM_QT_ABI_VERSION "12.0.0")
27+
set(LIBFM_QT_SOVERSION "12")
2828

2929
set(GLIB_MINIMUM_VERSION "2.50.0")
3030
set(LIBMENUCACHE_MINIMUM_VERSION "1.1.0")
31-
set(LXQTBT_MINIMUM_VERSION "0.11.0")
31+
set(LXQTBT_MINIMUM_VERSION "0.12.0")
3232
set(QT_MINIMUM_VERSION "5.15.0")
3333

3434
find_package(Qt5Widgets "${QT_MINIMUM_VERSION}" REQUIRED)

0 commit comments

Comments
 (0)