Skip to content

Commit

Permalink
DAS-2280: Tweak CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
flamingbear committed Dec 19, 2024
1 parent 0d66d86 commit 78ee92c
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,26 @@ Changelog](http://keepachangelog.com/en/1.0.0/).
### Changed

* NODATA and TRANSPARENT values are merged. [[#41](https://github.com/nasa/harmony-browse-image-generator/pull/41)]
- The user visible change is that now a paletted output PNG will have up to 254 color values and a 255th value that is transparent.
- Internally, the code change removes `TRANSPARENT_IDX` (254) and uses `NODATA_IDX` in its stead. A color of (0,0,0,0) was already set to both of the indexes in the ouput PNGs. This ensures the roundtrip from single band to RGBA to Paletted PNG is consistent.
- User visible change: paletted PNG outupt images will have up to 254 color
values and a 255th value that is transparent.
- Internal code changes: removes `TRANSPARENT_IDX` (254) and uses
`NODATA_IDX` (255) in its stead. A color of (0,0,0,0) was previosly set to
both the indexes (254 and 255) in the ouput PNGs and now only 255 will have
this value. This change ensures the roundtrip from single band to RGBA to
Paletted PNG is consistent.

## [v2.1.0] - 2024-12-13

### Changed

* Input GeoTIFF RGB[A] images are **no longer palettized** when converted to a PNG. The new resulting output browse images are now 3 or 4 band PNG retaining the color information of the input image.[#39](https://github.com/nasa/harmony-browse-image-generator/pull/39)
* Changed pre-commit configuration to remove `black-jupyter` dependency [#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)
* Updates service image's python to 3.12 [#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)
* Simplifies test scripts to run with pytest and pytest plugins [#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)
* Input GeoTIFF RGB[A] images are **no longer palettized** when converted to a PNG. The new resulting output browse images are now 3 or 4 band PNG retaining the color information of the input image.[[#39](https://github.com/nasa/harmony-browse-image-generator/pull/39)]
* Changed pre-commit configuration to remove `black-jupyter` dependency [[#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)]
* Updates service image's python to 3.12 [[#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)]
* Simplifies test scripts to run with pytest and pytest plugins [[#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)]

### Removed

* Removes `test_code_format.py` in favor of `ruff` pre-commit configuration [#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)
* Removes `test_code_format.py` in favor of `ruff` pre-commit configuration [[#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)]


## [v2.0.2] - 2024-10-15
Expand Down

0 comments on commit 78ee92c

Please sign in to comment.