0.16.0
Backwards Compatibility Notes
Support for Python 3.5 has been dropped. Python 3.6 is now the minimum required Python version.
Changes
Bundled zstd library upgraded from 1.4.8 to 1.5.0.
manylinux2014_aarch64 wheels are now being produced for CPython 3.6+.
Wheels are now being produced for CPython 3.10.
Arguments to ZstdCompressor() and ZstdDecompressor() are now all optional in the C backend and an explicit None value is accepted. Before, the C backend wouldn't accept an explicit None value (but the CFFI backend would). The new behavior should be consistent between the backends
v3.1.10
Add skip existing when publishing to PyPi
v3.1.9
Revert to using created release events
v3.1.8
Update github actions trigger to use published release
v3.1.7
Update github actions trigger
v3.1.6
Trigger github actions on a release being made.
v3.1.5
Remove the push requirement for triggering PyPi pushes of artifacts.
v3.1.4
Shift wheel building to github actions
Disable Travis and Appveyor building
Disable Windows wheel builds which are failing with memory allocation problems with 64 bit on the github actions runners
Disable Aarch64 builds which are failing somewhere in the stream bindings tests
LZ4FrameFile.write()/LZ4FrameDecompressor.decompress() handle buffer protocol correctly
Pass source_size kwarg through from frame.open to LZ4FrameFile instance
Add readall to LZ4FrameFile and use it on python 3.10
The Unarchiver is an archive unpacker program with support for lots of
archive formats including ZIP, RAR, 7z, tar, gzip, bzip2, LZMA, XZ,
CAB, MSI, NSIS, EXE, ISO, BIN, split file formats, as well as the old
Stuffit, Stuffit X, DiskDouble, Compact Pro, Packit, cpio, compress
(.Z), ARJ, ARC, PAK, ACE, ZOO, LZH, ADF, DMS, LZX, PowerPacker, LBR,
Squeeze, Crunch, and other old/obscure formats.
It can also handle filenames in foreign character sets, created with
non-English versions of some operating systems, and is particularly
useful for processing CJK archives correctly.
This package contains command-line tools for The Unarchiver, namely
lsar and unar.
1.0.1 (2021-11-13)
* Fix a buffer overflow error in XZ::Stream (PR Quintus#17 by genail)
* Fix an issue with transcode_options that was introduced by Ruby 3 (PR
win93#1 by Alex Gittemeier)
* Update project README, gemspec, and other metadata to reflect a change in
maintainership. All prior releases were released by Marvin Gülker.
Changelog from AN-2021-09-01:
- tartest: Added support for gettext() based translations
The string "Jörg Schilling" is now separate and in a gettext() call.
Major changes in 0.4.1:
* Fix regression of extraction in symlinked locations (Ondrej Holy)
* Handle passphrase prompt cancellation to prevent showing error dialogs (Ondrej Holy)
* Downgrade meson dependency to 0.56.0 (Felipe Borges, Ondrej Holy)
Major changes in 0.4.0:
* Port to meson build system (Iñigo Martínez, Peter Keresztes Schmidt)
* Add support for creation of password-protected archives (Ondrej Holy)
* Fix extraction of archives with absolute paths (Ondrej Holy)
Major changes in 0.3.3:
* extractor: Fix extraction of one file archives (Ondrej Holy)
* compressor: Fix usage of uninitialized value (Ondrej Holy)
V0.9.0
--------
-Show childless directories whose names contain the filtering string.
-Fixed viewing or removing of files that have wildcard characters in their names
with bsdtar (by escaping some wildcard characters that come after "--include").
-Better smooth scrolling from inside the view (especially with touchpad).
-Added read-only support for AppImage bundle through 7z.
-When viewing a file in a password protected archive, ask the password again if
a nonempty, wrong password is entered.
-When viewing files, warn the user of links without targets instead of trying to
open them.
# 2.2.0
* Header values (of version made by and external attributes) are now
correctly read and written on big-endian systems (#68).
* `zip_list()` now also returns `crc32` and `offset` (#74, @jefferis).
2.3.2 (2021-07-05)
* A "dummy" release to warn about breaking changes coming in version
3.0. This updated version uses the Gem post_install_message instead of
printing to STDERR.
* 2.3.1 (2021-07-03) A "dummy" release to warn about breaking changes coming
in version 3.0.
Changelog from AN-2021-07-29:
- star: A single Linux xattr entry with a zero length value did disable
all Linux xattrs for the related file. This is now handled correctly.
Note that setfattr(1) on some Linux versions does not support to set
empty xattr entries, but star on the same system can extract files
with empty xattr entries.
Thanks to a report from Dennis Katsonis
- star: star -version now prints a new version date
Main changes:
-Now it's possible to drag all selected items, including directories.
-Added an option for only expanding top level directories when loading archives.
-Whether the option "Fit first column into available width" is checked or not,
the first header column is expanded to fill the available width.
-Added a workaround for Qt's problem with scrolling to deep non-expanded tree
items.
-Don't show the header without content.
-Resize columns appropriately on expanding/collapsing a directory item.
-Added application/x-xz, application/x-bzip and application/zstd to the
supported extractions by using 7z.
-Show the compressed size prefixed by ≥ if the file size is missing.
-Added cmake support (in addition to qmake).
Add one post-release patch.
1.8.0 [2021-06-18]
==================
* Add support for zstd (Zstandard) compression.
* Add support for lzma (ID 14) compression.
* Add `zip_source_window_create()`.
* Add `zip_source_zip_create()` variant to `zip_source_zip()`.
* Allow method specific `comp_flags` in `zip_set_file_compression()`.
* Allow `zip_source_tell()` on sources that don't support seeking and `zip_ftell()` on compressed data.
* Provide more details for consistency check errors.
* Improve output of `zipcmp`.
* In `zipcmp`, don’t ignore empty directories when comparing directory listing.
* Treat empty string as no password given in `zip_file_set_encryption()`, `zip_fopen_encrypted()`, and `zip_set_default_password()`.
Major changes in 0.3.2:
* compressor: Fix hardlink handling for new cpio format (Ondrej Holy)
* compressor: Fix hardlink detection for remote files (Ondrej Holy)
* extractor: Fix extraction of readonly folders (Ondrej Holy)