Skip to content

Commit

Permalink
Prerelease changes (#798)
Browse files Browse the repository at this point in the history
tsujan authored Apr 16, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent fa53a54 commit b929719
Showing 2 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
libfm-qt-1.1.0 / 2022-04-15
============================
* Prepared libfm-qt for implementing "Recent Files".
* Silenced Valgrind about an uninitialized value.
* Corrected a typo that could have caused crash.
* Prevented memory leak in `fm_search_to_gfile()`.
* Made `selectFiles()` return bool in FolderView.
* Fixed "Move Bookmark Down" in bookmark context menu.
* Added some icons to bookmark context menu.
* Fixed file association with empty `XDG_CURRENT_DESKTOP`.
* Do not add (null) to terminal command (with terminal emulators like Kitty, that don't have a special option for execution).
* Added protected API to get the internal dialog of `FileDialog`.
* Fixed the file count in the properties dialog of the search folder and removed critical GLib errors in special cases of searching.
* Fixed MIME types cbz, cbr and rar in `archivers.list`.
* A small cleanup for `Fm::Folder`.

libfm-qt-1.0.0 / 2021-11-04
============================
* Added mount, unmount and eject actions to file context menu where possible.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ project(libfm-qt)
set(LIBFM_QT_LIBRARY_NAME "fm-qt" CACHE STRING "fm-qt")

set(LIBFM_QT_API_VERSION_MAJOR 1)
set(LIBFM_QT_API_VERSION_MINOR 0)
set(LIBFM_QT_API_VERSION_MINOR 1)
set(LIBFM_QT_API_VERSION_PATCH 0)
set(LIBFM_QT_API_VERSION ${LIBFM_QT_API_VERSION_MAJOR}.${LIBFM_QT_API_VERSION_MINOR}.${LIBFM_QT_API_VERSION_PATCH})

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

set(GLIB_MINIMUM_VERSION "2.50.0")
set(LIBMENUCACHE_MINIMUM_VERSION "1.1.0")
set(LXQTBT_MINIMUM_VERSION "0.10.0")
set(LXQTBT_MINIMUM_VERSION "0.11.0")
set(QT_MINIMUM_VERSION "5.15.0")

find_package(Qt5Widgets "${QT_MINIMUM_VERSION}" REQUIRED)

0 comments on commit b929719

Please sign in to comment.