Skip to content

Commit

Permalink
v0.14.3 - fix preview for pal16 and pal32
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomiejduda committed Mar 2, 2025
1 parent 32a24b7 commit 7022879
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ cx-Freeze==7.2.10
Pillow==10.4.0
pre-commit==4.0.1
pytest==8.3.3
ReverseBox==0.26.1
ReverseBox==0.26.2
tkhtmlview==0.3.1
1 change: 0 additions & 1 deletion src/Image/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ class RotateType:
ImageFormats.GST222,
ImageFormats.GST821,
ImageFormats.GST822,
ImageFormats.PAL16,
]

SUPPORTED_PIXEL_FORMATS: list[PixelFormat] = [
Expand Down
1 change: 1 addition & 0 deletions src/Image/heatimage.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ def _image_decode(self) -> bool:
elif image_format in (ImageFormats.PAL4,
ImageFormats.PAL8,
ImageFormats.PAL16,
ImageFormats.PAL32,
ImageFormats.PAL_I8A8
):

Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from src.GUI.gui_main import ImageHeatGUI

VERSION_NUM: Final[str] = "v0.14.2"
VERSION_NUM: Final[str] = "v0.14.3"

logger = get_logger("main")

Expand Down

0 comments on commit 7022879

Please sign in to comment.