Skip to content

Commit 5475455

Browse files
authored
Pre-release changes (#268)
1 parent 8d36ea4 commit 5475455

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
lxqt-archiver-0.5.0 / 2021-11-04
2+
===================================
3+
* Bumped minimum required Qt version to 5.15.
4+
* Show password prompt for archives with encrypted lists.
5+
* Added milliseconds to name of temporary extraction folder.
6+
* Removed a duplicate assignment.
7+
* Fixed listing RAR archive contents with encrypted file list.
8+
19
lxqt-archiver-0.4.0 / 2021-04-15
210
===================================
311
* Support opening and extracting of disk images.

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" O
1010

1111

1212
set(GLIB_MINIMUM_VERSION "2.50.0")
13-
set(LIBFMQT_MINIMUM_VERSION "0.17.0")
14-
set(LXQTBT_MINIMUM_VERSION "0.9.0")
13+
set(LIBFMQT_MINIMUM_VERSION "1.0.0")
14+
set(LXQTBT_MINIMUM_VERSION "0.10.0")
1515
set(QT_MINIMUM_VERSION "5.15.0")
1616

1717
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
@@ -40,7 +40,7 @@ pkg_check_modules(
4040
)
4141

4242
set(LXQT_ARCHIVER_MAJOR_VERSION 0)
43-
set(LXQT_ARCHIVER_MINOR_VERSION 4)
43+
set(LXQT_ARCHIVER_MINOR_VERSION 5)
4444
set(LXQT_ARCHIVER_PATCH_VERSION 0)
4545
set(LXQT_ARCHIVER_VERSION ${LXQT_ARCHIVER_MAJOR_VERSION}.${LXQT_ARCHIVER_MINOR_VERSION}.${LXQT_ARCHIVER_PATCH_VERSION})
4646
add_definitions("-DLXQT_ARCHIVER_VERSION=\"${LXQT_ARCHIVER_VERSION}\"")

0 commit comments

Comments
 (0)