Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
lxqt-archiver-1.3.0 / 2025-11-05
===================================
* Fixed handling of wrong passwords with 7z.
* Fixed "Re-create folders" on extraction.
* Fixed crash in parsing `lha` list output.
* Added LZ4 support.
* Set the enabled states of delete and view actions appropriately.
* Fixed an imminent crash with Clang's optimizations by checking `QPointer<QDrag>` for nullity before calling `deleteLater()` on it.
* Fixed an uninitialized variable.
* Fixed going back to the root dir after adding/deleting file.
* Clear selection in directory list appropriately.
* Minor improvement in core code.
* Enable the Stop action only when something is in progress.

lxqt-archiver-1.2.0 / 2025-04-17
===================================
* Building is done with 7zip by default.
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ if(USE_7Z)
endif()

set(GLIB_MINIMUM_VERSION "2.50.0")
set(LIBFMQT_MINIMUM_VERSION "2.2.0")
set(LXQTBT_MINIMUM_VERSION "2.2.0")
set(LIBFMQT_MINIMUM_VERSION "2.3.0")
set(LXQTBT_MINIMUM_VERSION "2.3.0")
set(QT_MINIMUM_VERSION "6.6.0")

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
Expand Down Expand Up @@ -43,7 +43,7 @@ pkg_check_modules(
)

set(LXQT_ARCHIVER_MAJOR_VERSION 1)
set(LXQT_ARCHIVER_MINOR_VERSION 2)
set(LXQT_ARCHIVER_MINOR_VERSION 3)
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