Skip to content

Commit

Permalink
Pre-release changes (#898)
Browse files Browse the repository at this point in the history
* Pre-release changes

* Fixed a typo.

* Update
  • Loading branch information
tsujan authored Apr 15, 2023
1 parent f6092ce commit 954c016
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
libfm-qt-1.3.0 / 2023-04-15
============================
* Fixed the thumbnail/icon rectangle in list views.
* Allowed typing of text tab with inline renaming.
* Open non-executable files that have executable file type (like non-executable scripts with root executable flag).
* Allowed disabling of smooth scrolling in all view modes.
* File dialog: Add extension on saving only if it makes sense.
* Go to name start/end with Home/End keys during inline renaming.
* Keep selection and tree expansion in app chooser dialog when menu-cached reloads the apps tree.
* Fixed pressing of ENTER in the file dialog, especially in the file-saving dialog.
* Ensure `Escape` closes the popup of path-edit completer.
* Treat zero-sized files based on their extensions.
* Use "New file" as the default name for new files (especially after GLib 2.75.1).
* Ensure toolbar background is shown behind path-bar.
* Prevent long content search texts from widening search dialog.

libfm-qt-1.2.1 / 2023-01-02
============================
* Specified the parents of context menus for use on Wayland.
Expand Down
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ 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 2)
set(LIBFM_QT_API_VERSION_PATCH 1)
set(LIBFM_QT_API_VERSION_MINOR 3)
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})

list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
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 "12.0.0")
set(LIBFM_QT_SOVERSION "12")
set(LIBFM_QT_ABI_VERSION "13.0.0")
set(LIBFM_QT_SOVERSION "13")

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

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

0 comments on commit 954c016

Please sign in to comment.