File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 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+
115lxqt-archiver-1.2.0 / 2025-04-17
216===================================
317 * Building is done with 7zip by default.
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ if(USE_7Z)
1414endif ()
1515
1616set (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" )
1919set (QT_MINIMUM_VERSION "6.6.0" )
2020
2121list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" )
@@ -43,7 +43,7 @@ pkg_check_modules(
4343)
4444
4545set (LXQT_ARCHIVER_MAJOR_VERSION 1)
46- set (LXQT_ARCHIVER_MINOR_VERSION 2 )
46+ set (LXQT_ARCHIVER_MINOR_VERSION 3 )
4747set (LXQT_ARCHIVER_PATCH_VERSION 0)
4848set (LXQT_ARCHIVER_VERSION ${LXQT_ARCHIVER_MAJOR_VERSION} .${LXQT_ARCHIVER_MINOR_VERSION} .${LXQT_ARCHIVER_PATCH_VERSION} )
4949add_definitions ("-DLXQT_ARCHIVER_VERSION=\" ${LXQT_ARCHIVER_VERSION} \" " )
You can’t perform that action at this time.
0 commit comments