Skip to content

Commit 19c4962

Browse files
authored
Pre-release changes (#1022)
1 parent 330c613 commit 19c4962

File tree

2 files changed

+31
-6
lines changed

2 files changed

+31
-6
lines changed

CHANGELOG

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
libfm-qt-2.1.0 / 2024-11-05
2+
============================
3+
* Add 6 menu icons.
4+
* Updated mime_types of lxqt-archiver in `archivers.list`.
5+
* Allow paths in name entry of file dialog.
6+
* Select name without extension in overwrite prompts.
7+
* Disable access control of root files in properties dialog.
8+
* Workaround for side-pane text color with Qt6's style change.
9+
* Give parent to File Properties dialog from context menu.
10+
* Check real file name for filtering in file dialog.
11+
* Fixed creating of web shortcuts by drag-and-drop.
12+
* Fixed a vulnerability about trusted locations.
13+
* Prevent truncated labels in prompt for executing.
14+
* Prevent truncated labels in file properties dialog.
15+
* Removed debug messages for external thumbnails.
16+
* Removed debug messages on launching.
17+
* Fixed external thumbnails of relative symlinks.
18+
* Added a nullity check to `ThumbnailJob`.
19+
* Removed "Invert Selection" from folder context menu.
20+
* Detect remote and read-only file systems.
21+
* Enhanced the detection of changes in folder config.
22+
* Fixed the scaled pixmap of `Fm::IconEngine`.
23+
* Silenced a compilation warning about `GDestroyNotify`.
24+
* Allow relative paths for folder icons.
25+
126
libfm-qt-2.0.2 / 2024-05-08
227
============================
328
* Fixed a regression in running executable files in terminal.

CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ 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 0)
13-
set(LIBFM_QT_API_VERSION_PATCH 2)
12+
set(LIBFM_QT_API_VERSION_MINOR 1)
13+
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

1616
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
@@ -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 "14.0.0")
27-
set(LIBFM_QT_SOVERSION "14")
26+
set(LIBFM_QT_ABI_VERSION "15.0.0")
27+
set(LIBFM_QT_SOVERSION "15")
2828

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

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

0 commit comments

Comments
 (0)