Skip to content

Commit

Permalink
Pre-release changes (#847)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsujan authored Nov 5, 2022
1 parent 088426f commit 92a1f30
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
libfm-qt-1.2.0 / 2022-11-05
============================
* Support adding of pattern lists to entries of search dialog (such lists are used by `pcmanfm-qt` for having a search history).
* Fixed crash with empty URI scheme of folder path.
* Silenced compilation warnings about deprecated GLib functions.
* Don't show a deletion prompt without a selection.
* Fixed infinite loop if a symlink that is created by DND overwrites a non-empty directory.
* Allow remembering the result of execution prompt for multiple files.
* Added `Ctrl+D` to LXQt file dialog for deselecting all items.
* Allow selection by dragging mouse cursor inside non-name columns in the detailed list mode.
* Corrected the position of drop menu under Wayland.
* Fixed crash with DND into side-pane under Wayland.
* Added nullity checks to `XdndWorkaround`.

libfm-qt-1.1.0 / 2022-04-15
============================
* Prepared libfm-qt for implementing "Recent Files".
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 1)
set(LIBFM_QT_API_VERSION_MINOR 2)
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})

Expand All @@ -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 "11.0.0")
set(LIBFM_QT_SOVERSION "11")
set(LIBFM_QT_ABI_VERSION "12.0.0")
set(LIBFM_QT_SOVERSION "12")

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

find_package(Qt5Widgets "${QT_MINIMUM_VERSION}" REQUIRED)
Expand Down

0 comments on commit 92a1f30

Please sign in to comment.