Skip to content

Commit eb4e23f

Browse files
authored
Pre-release changes (#458)
1 parent 63eb62c commit eb4e23f

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
lxqt-archiver-1.3.0 / 2025-11-05
2+
===================================
3+
* Fixed handling of wrong passwords with 7z.
4+
* Fixed "Re-create folders" on extraction.
5+
* Fixed crash in parsing `lha` list output.
6+
* Added LZ4 support.
7+
* Set the enabled states of delete and view actions appropriately.
8+
* Fixed an imminent crash with Clang's optimizations by checking `QPointer<QDrag>` for nullity before calling `deleteLater()` on it.
9+
* Fixed an uninitialized variable.
10+
* Fixed going back to the root dir after adding/deleting file.
11+
* Clear selection in directory list appropriately.
12+
* Minor improvement in core code.
13+
* Enable the Stop action only when something is in progress.
14+
115
lxqt-archiver-1.2.0 / 2025-04-17
216
===================================
317
* Building is done with 7zip by default.

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ if(USE_7Z)
1414
endif()
1515

1616
set(GLIB_MINIMUM_VERSION "2.50.0")
17-
set(LIBFMQT_MINIMUM_VERSION "2.2.0")
18-
set(LXQTBT_MINIMUM_VERSION "2.2.0")
17+
set(LIBFMQT_MINIMUM_VERSION "2.3.0")
18+
set(LXQTBT_MINIMUM_VERSION "2.3.0")
1919
set(QT_MINIMUM_VERSION "6.6.0")
2020

2121
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
@@ -43,7 +43,7 @@ pkg_check_modules(
4343
)
4444

4545
set(LXQT_ARCHIVER_MAJOR_VERSION 1)
46-
set(LXQT_ARCHIVER_MINOR_VERSION 2)
46+
set(LXQT_ARCHIVER_MINOR_VERSION 3)
4747
set(LXQT_ARCHIVER_PATCH_VERSION 0)
4848
set(LXQT_ARCHIVER_VERSION ${LXQT_ARCHIVER_MAJOR_VERSION}.${LXQT_ARCHIVER_MINOR_VERSION}.${LXQT_ARCHIVER_PATCH_VERSION})
4949
add_definitions("-DLXQT_ARCHIVER_VERSION=\"${LXQT_ARCHIVER_VERSION}\"")

0 commit comments

Comments
 (0)