Skip to content

Commit

Permalink
Pre-release changes (#1470)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsujan authored Nov 5, 2021
1 parent 3cb8ed5 commit 227a775
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
pcmanfm-qt-1.0.0 / 2021-11-04
==============================
* Better text colors in inactive frame of split view.
* Fixed inconsistent item selection with transient filter-bar.
* Allow recursive customization of folders.
* Added an action to remove settings of nonexistent folders.
* Toggle visibility of directory tree's hidden folders from view's context menu.
* Updated README.md.
* Don't save/read custom positions of desktop items constantly.
* Added per-folder settings actions to current tab context menu.
* Allow creating of launchers with slash in their names.
* Keep custom position of desktop item on inline renaming.
* Added option to make desktop items sticky by default.
* Reversed an old workaround for automount freeze (it wasn't needed after a recent change in libfm-qt).
* Disable tab DND under Wayland.
* Added and changed accelerators for view settings.
* Added a nullity check to "view.cpp".
* Add new tab on double clicking empty space of tabbar.
* Never close file operation dialog on closing window.
* Added option to disable smooth scrolling in list and compact modes.

pcmanfm-qt-0.17.0 / 2021-04-15
==============================
* Close a file tooltip on key pressing or changing directory/filter/sorting.
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
project(pcmanfm-qt)

# PcmanFm-Qt Version
set(PCMANFM_QT_VERSION_MAJOR 0)
set(PCMANFM_QT_VERSION_MINOR 17)
set(PCMANFM_QT_VERSION_MAJOR 1)
set(PCMANFM_QT_VERSION_MINOR 0)
set(PCMANFM_QT_VERSION_PATCH 0)

set(PCMANFM_QT_VERSION ${PCMANFM_QT_VERSION_MAJOR}.${PCMANFM_QT_VERSION_MINOR}.${PCMANFM_QT_VERSION_PATCH})

# Minimum versions
set(LIBFMQT_MINIMUM_VERSION "0.17.0")
set(LXQTBT_MINIMUM_VERSION "0.9.0")
set(LIBFMQT_MINIMUM_VERSION "1.0.0")
set(LXQTBT_MINIMUM_VERSION "0.10.0")
set(QT_MINIMUM_VERSION "5.15.0")

list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
Expand Down

0 comments on commit 227a775

Please sign in to comment.