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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable WIMF changes are recorded here. The project follows semantic versioning for the Python package; container compatibility is documented separately.

## 2.2.3 - 2026-08-25

- Fixed the root cause of the chroma artifacts reported in 2.2.2:
green-differencing decorrelation is now restricted to lossless mode.
Quantization errors in the mod-256 residual planes were being
amplified by the undo pass in dark areas, producing blue/red/cyan
pixel artifacts. Lossy tiles code raw RGB directly.
## 2.2.2 - 2026-08-25

- Reverted the default quality ladder scale from 2.5 to 1.5 (divisor stays
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "wimf"
version = "2.2.2"
version = "2.2.3"
authors = [
{ name="BenchWare", email="ivanm12453@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion wimf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

_register_pillow_plugin()

__version__ = "2.2.2"
__version__ = "2.2.3"
__all__ = [
"WIMFImage",
"WIMFDecoder",
Expand Down
Loading