diff --git a/CHANGELOG b/CHANGELOG index 7cbaf52a..a46d9fbd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,18 @@ +pcmanfm-qt-1.1.0 / 2022-04-15 +============================== + * Added "Recent Files" to File menu. + * Initialized three Boolean variables in `settings.cpp`. + * Removed hard-coded link style in About dialog. + * Fixed DND and keyboard navigation on RTL desktops. + * Fixed a rare issue in selection of new files. + * Added "Open in Terminal" to the top of folder context menu. + * Implemented `org.freedesktop.FileManager1` (for apps that call the default file manager to show files inside a directory or to do other jobs). + * Added page names to the descriptions of pref command-line options. + * Corrected a condition for transient filter-bar. + * Fixed an issue in positioning of sticky items on Desktop. + * Preselect based on starting characters with transient filter bar. + * Respect real/display name setting when filtering. + pcmanfm-qt-1.0.0 / 2021-11-04 ============================== * Better text colors in inactive frame of split view. diff --git a/CMakeLists.txt b/CMakeLists.txt index 3aba97fa..71c1499d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,14 +8,14 @@ project(pcmanfm-qt) # PcmanFm-Qt Version set(PCMANFM_QT_VERSION_MAJOR 1) -set(PCMANFM_QT_VERSION_MINOR 0) +set(PCMANFM_QT_VERSION_MINOR 1) 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 "1.0.0") -set(LXQTBT_MINIMUM_VERSION "0.10.0") +set(LIBFMQT_MINIMUM_VERSION "1.1.0") +set(LXQTBT_MINIMUM_VERSION "0.11.0") set(QT_MINIMUM_VERSION "5.15.0") list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")