Skip to content

Commit

Permalink
v0.9.5 - add support for pal_i8a8
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomiejduda committed Jan 23, 2025
1 parent a20836d commit bb62cfd
Show file tree
Hide file tree
Showing 3 changed files with 4 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.5
Pillow==10.4.0
pre-commit==4.0.1
pytest==8.3.3
ReverseBox==0.25.0
ReverseBox==0.25.1
tkhtmlview==0.3.1
3 changes: 2 additions & 1 deletion src/Image/heatimage.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ def _image_decode(self) -> bool:
ImageFormats.PAL16_IA8,
ImageFormats.PAL16_RGB565,
ImageFormats.PAL16_RGB5A3,
ImageFormats.PAL16_RGBA8888
ImageFormats.PAL16_RGBA8888,
ImageFormats.PAL_I8A8_BGRA8888
):

if (self.gui_params.palette_loadfrom_value == 1 and self.gui_params.img_file_path is not None) \
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.9.4"
VERSION_NUM: Final[str] = "v0.9.5"

logger = get_logger("main")

Expand Down

0 comments on commit bb62cfd

Please sign in to comment.