Skip to content

Commit

Permalink
Pre-release changes (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsujan authored Nov 5, 2021
1 parent 8d36ea4 commit 5475455
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
lxqt-archiver-0.5.0 / 2021-11-04
===================================
* Bumped minimum required Qt version to 5.15.
* Show password prompt for archives with encrypted lists.
* Added milliseconds to name of temporary extraction folder.
* Removed a duplicate assignment.
* Fixed listing RAR archive contents with encrypted file list.

lxqt-archiver-0.4.0 / 2021-04-15
===================================
* Support opening and extracting of disk images.
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" O


set(GLIB_MINIMUM_VERSION "2.50.0")
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 "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
Expand Down Expand Up @@ -40,7 +40,7 @@ pkg_check_modules(
)

set(LXQT_ARCHIVER_MAJOR_VERSION 0)
set(LXQT_ARCHIVER_MINOR_VERSION 4)
set(LXQT_ARCHIVER_MINOR_VERSION 5)
set(LXQT_ARCHIVER_PATCH_VERSION 0)
set(LXQT_ARCHIVER_VERSION ${LXQT_ARCHIVER_MAJOR_VERSION}.${LXQT_ARCHIVER_MINOR_VERSION}.${LXQT_ARCHIVER_PATCH_VERSION})
add_definitions("-DLXQT_ARCHIVER_VERSION=\"${LXQT_ARCHIVER_VERSION}\"")
Expand Down

0 comments on commit 5475455

Please sign in to comment.