Skip to content

Commit

Permalink
Pre-release changes (#1098)
Browse files Browse the repository at this point in the history
Should be merged only after libfm-qt's pre-release changes are merged.
  • Loading branch information
tsujan authored Apr 23, 2020
1 parent 4df37c0 commit 8947db9
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 5 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
pcmanfm-qt-0.15.0 / 2020-04-21
==============================
* Keep original extensions in bulk renaming.
* Open selected files by pressing Enter.
* Update desktop on setting wallpaper with commandline.
* Removed WM menu from desktop.
* Remove unneeded Qt version check.
* Clear filter text on pressing Esc.
* Enhanced wallpaper browsing dialog.
* Restore sorting on removing folder customization.
* Take all standard config paths into account.
* Added deletion time to Trash.
* Added option to transform jpeg wallpapers based on EXIF info.
* Set text and icon of delete action of Edit menu on startup.
* Respect full file name setting on desktop too.
* Added Alt+Enter in addition to Alt+Return for properties.
* Added menu item to toggle showing of thumbnails on the fly.
* More compact and tidy Desktop preferences dialog.
* Always show display names on Desktop.
* Respect view setting when showing selected file name on status bar.
* Follow DE click setting if single-click is not chosen.
* More stable position for sticky Desktop Trash.
* Added context menu item to create launchers on Desktop.
* An option to show folder context menu with Ctrl + right click.
* Do not show trash path in trashed file names.
* Use file launcher to open a folder in new tab to guarantee it is always opened correctly.
* Added "Hidden Last" to Sorting submenu.
* Multimonitor wallpaper support.
* Choose an appropriate name for root bookmarks (like SMB).
* Use "edit name" in bulk renaming.
* Use QString multi-arg.
* Disable Create New in File menu when not possible.
* Focus side-pane with `Ctrl+Esc`.
* Added Hidden Shortcuts dialog.
* Try to have a "current item" inside view as far as possible. This guarantees a correct behavior for keys like `End`, `PgDn` and `Right`.
* Select first item on filtering if nothing is selected.
* Added an option for single window mode.

pcmanfm-qt-0.14.1 / 2019-02-24
==============================

Expand Down
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ project(pcmanfm-qt)

# PcmanFm-Qt Version
set(PCMANFM_QT_VERSION_MAJOR 0)
set(PCMANFM_QT_VERSION_MINOR 14)
set(PCMANFM_QT_VERSION_PATCH 1)
set(PCMANFM_QT_VERSION_MINOR 15)
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.14.1")
set(LXQTBT_MINIMUM_VERSION "0.6.0")
set(QT_MINIMUM_VERSION "5.7.1")
set(LIBFMQT_MINIMUM_VERSION "0.15.0")
set(LXQTBT_MINIMUM_VERSION "0.7.0")
set(QT_MINIMUM_VERSION "5.10.0")

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

Expand Down

0 comments on commit 8947db9

Please sign in to comment.