File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change
1
+ libfm-qt-1.1.0 / 2022-04-15
2
+ ============================
3
+ * Prepared libfm-qt for implementing "Recent Files".
4
+ * Silenced Valgrind about an uninitialized value.
5
+ * Corrected a typo that could have caused crash.
6
+ * Prevented memory leak in `fm_search_to_gfile()`.
7
+ * Made `selectFiles()` return bool in FolderView.
8
+ * Fixed "Move Bookmark Down" in bookmark context menu.
9
+ * Added some icons to bookmark context menu.
10
+ * Fixed file association with empty `XDG_CURRENT_DESKTOP`.
11
+ * Do not add (null) to terminal command (with terminal emulators like Kitty, that don't have a special option for execution).
12
+ * Added protected API to get the internal dialog of `FileDialog`.
13
+ * Fixed the file count in the properties dialog of the search folder and removed critical GLib errors in special cases of searching.
14
+ * Fixed MIME types cbz, cbr and rar in `archivers.list`.
15
+ * A small cleanup for `Fm::Folder`.
16
+
1
17
libfm-qt-1.0.0 / 2021-11-04
2
18
============================
3
19
* Added mount, unmount and eject actions to file context menu where possible.
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 0 )
12
+ set (LIBFM_QT_API_VERSION_MINOR 1 )
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 "10 .0.0" )
27
- set (LIBFM_QT_SOVERSION "10 " )
26
+ set (LIBFM_QT_ABI_VERSION "11 .0.0" )
27
+ set (LIBFM_QT_SOVERSION "11 " )
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.10 .0" )
31
+ set (LXQTBT_MINIMUM_VERSION "0.11 .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