File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
15
libfm-qt-1.1.0 / 2022-04-15
2
16
============================
3
17
* Prepared libfm-qt for implementing "Recent Files".
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ project(libfm-qt)
9
9
set (LIBFM_QT_LIBRARY_NAME "fm-qt" CACHE STRING "fm-qt" )
10
10
11
11
set (LIBFM_QT_API_VERSION_MAJOR 1 )
12
- set (LIBFM_QT_API_VERSION_MINOR 1 )
12
+ set (LIBFM_QT_API_VERSION_MINOR 2 )
13
13
set (LIBFM_QT_API_VERSION_PATCH 0 )
14
14
set (LIBFM_QT_API_VERSION ${LIBFM_QT_API_VERSION_MAJOR} .${LIBFM_QT_API_VERSION_MINOR}.${LIBFM_QT_API_VERSION_PATCH} )
15
15
@@ -23,12 +23,12 @@ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
23
23
# universal way to translate a libtool version-info to a cmake version.
24
24
# We use "(current-age).age.revision" as the cmake version.
25
25
# 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 " )
28
28
29
29
set (GLIB_MINIMUM_VERSION "2.50.0" )
30
30
set (LIBMENUCACHE_MINIMUM_VERSION "1.1.0" )
31
- set (LXQTBT_MINIMUM_VERSION "0.11 .0" )
31
+ set (LXQTBT_MINIMUM_VERSION "0.12 .0" )
32
32
set (QT_MINIMUM_VERSION "5.15.0" )
33
33
34
34
find_package (Qt5Widgets "${QT_MINIMUM_VERSION} " REQUIRED )
You can’t perform that action at this time.
0 commit comments