Skip to content

Commit dc9e890

Browse files
authored
Pre-release changes (#1082)
1 parent 337b4c1 commit dc9e890

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
libfm-qt-2.3.0 / 2025-11-05
2+
============================
3+
* Added "Safely Remove" to side-pane context menu when possible.
4+
* Workaround for GLib's problem with moving directory over directory.
5+
* Used `--extract-here` for "Extract Here" with lxqt-archiver.
6+
* Updated mime types of lxqt-archiver and arqiver.
7+
* Fixed building with Qt 6.10.
8+
* Added parent window to some dialogs.
9+
110
libfm-qt-2.2.0 / 2025-04-17
211
============================
312
* Modernized string literals.

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project(libfm-qt)
99
set(LIBFM_QT_LIBRARY_NAME "fm-qt6" CACHE STRING "fm-qt6")
1010

1111
set(LIBFM_QT_API_VERSION_MAJOR 2)
12-
set(LIBFM_QT_API_VERSION_MINOR 2)
12+
set(LIBFM_QT_API_VERSION_MINOR 3)
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,13 +23,13 @@ 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 "16.0.0")
27-
set(LIBFM_QT_SOVERSION "16")
26+
set(LIBFM_QT_ABI_VERSION "17.0.0")
27+
set(LIBFM_QT_SOVERSION "17")
2828

2929
set(GLIB_MINIMUM_VERSION "2.50.0")
3030
set(LIBMENUCACHE_MINIMUM_VERSION "1.1.0")
31-
set(LXQTMENUDATA_MINIMUM_VERSION "2.2.0")
32-
set(LXQTBT_MINIMUM_VERSION "2.2.0")
31+
set(LXQTMENUDATA_MINIMUM_VERSION "2.3.0")
32+
set(LXQTBT_MINIMUM_VERSION "2.3.0")
3333
set(QT_MINIMUM_VERSION "6.6.0")
3434

3535
find_package(Qt6Widgets "${QT_MINIMUM_VERSION}" REQUIRED)

0 commit comments

Comments
 (0)