Skip to content

Commit 954c016

Browse files
authored
Pre-release changes (#898)
* Pre-release changes * Fixed a typo. * Update
1 parent f6092ce commit 954c016

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

CHANGELOG

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
libfm-qt-1.3.0 / 2023-04-15
2+
============================
3+
* Fixed the thumbnail/icon rectangle in list views.
4+
* Allowed typing of text tab with inline renaming.
5+
* Open non-executable files that have executable file type (like non-executable scripts with root executable flag).
6+
* Allowed disabling of smooth scrolling in all view modes.
7+
* File dialog: Add extension on saving only if it makes sense.
8+
* Go to name start/end with Home/End keys during inline renaming.
9+
* Keep selection and tree expansion in app chooser dialog when menu-cached reloads the apps tree.
10+
* Fixed pressing of ENTER in the file dialog, especially in the file-saving dialog.
11+
* Ensure `Escape` closes the popup of path-edit completer.
12+
* Treat zero-sized files based on their extensions.
13+
* Use "New file" as the default name for new files (especially after GLib 2.75.1).
14+
* Ensure toolbar background is shown behind path-bar.
15+
* Prevent long content search texts from widening search dialog.
16+
117
libfm-qt-1.2.1 / 2023-01-02
218
============================
319
* Specified the parents of context menus for use on Wayland.

CMakeLists.txt

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

1111
set(LIBFM_QT_API_VERSION_MAJOR 1)
12-
set(LIBFM_QT_API_VERSION_MINOR 2)
13-
set(LIBFM_QT_API_VERSION_PATCH 1)
12+
set(LIBFM_QT_API_VERSION_MINOR 3)
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,12 +23,12 @@ 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 "12.0.0")
27-
set(LIBFM_QT_SOVERSION "12")
26+
set(LIBFM_QT_ABI_VERSION "13.0.0")
27+
set(LIBFM_QT_SOVERSION "13")
2828

2929
set(GLIB_MINIMUM_VERSION "2.50.0")
3030
set(LIBMENUCACHE_MINIMUM_VERSION "1.1.0")
31-
set(LXQTBT_MINIMUM_VERSION "0.12.0")
31+
set(LXQTBT_MINIMUM_VERSION "0.13.0")
3232
set(QT_MINIMUM_VERSION "5.15.0")
3333

3434
find_package(Qt5Widgets "${QT_MINIMUM_VERSION}" REQUIRED)

0 commit comments

Comments
 (0)