Skip to content

Commit b929719

Browse files
authored
Prerelease changes (#798)
1 parent fa53a54 commit b929719

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

CHANGELOG

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
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+
117
libfm-qt-1.0.0 / 2021-11-04
218
============================
319
* Added mount, unmount and eject actions to file context menu where possible.

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 0)
12+
set(LIBFM_QT_API_VERSION_MINOR 1)
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 "10.0.0")
27-
set(LIBFM_QT_SOVERSION "10")
26+
set(LIBFM_QT_ABI_VERSION "11.0.0")
27+
set(LIBFM_QT_SOVERSION "11")
2828

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

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

0 commit comments

Comments
 (0)