diff --git a/CHANGELOG b/CHANGELOG index 24fdfae8..3885e8d3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/CMakeLists.txt b/CMakeLists.txt index 2713fa90..8d164f74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)