Skip to content

Releases: tfuxu/dither-go

Dither Go! v0.4.0

26 Dec 21:22
0884713
Compare
Choose a tag to compare

This release contains bindings for dither v2.4.0, which fixes long-standing memory issues in the library, allowing it to be used in batch processing applications.

It also fixes a missing simple_parsing dependency, which should now install automatically during library update.

Full Changelog: v0.3.0...v0.4.0

Dither Go! v0.3.0

09 Sep 14:44
68f4844
Compare
Choose a tag to compare

Dither Go! v0.3.0

This release adds a new MatrixUtils helper class with generate_matrices_list() method for use when a list of dither algorithms display names and matrix objects is needed (eg. when creating a selection dialog with available algorithms).

Full Changelog: v0.2.1...v0.3.0

Dither Go! v0.2.1

05 Sep 21:01
2d166d6
Compare
Choose a tag to compare

Dither Go! v0.2.1

This is a PyPI release, it doesn't functionally differ from 0.2.0.

What's Changed

  • Add PyPI uploading to workflow by @tfuxu in #6

Full Changelog: v0.2.0...v0.2.1

Dither Go! v0.2.0

04 Sep 16:26
58be810
Compare
Choose a tag to compare

Dither Go! v0.2.0

This release contains a simpler interface for creating custom color palettes using create_palette function. Now you can use either a list of RGBA color channels or hexadecimal color codes to represent colors used in dithered images (you can also mix formats).

Example:

palette = dither_go.create_palette([
    "#000000",  # Standard hex code
    [255, 255, 255, 255],  # RGB list with fourth alpha channel
    "#FF0000FF",  # Extended hex code
])

Supported color formats:

  • RGBA:
    • 3-channel list: [64, 128, 255]
    • 4-channel list: [12, 24, 36, 48]
  • Hexadecimal color code:
    • Small form: #128
    • Normal form: #adfbea
    • Extended form: #deadbeef

What's Changed

  • Fix compilation issues in build_wheel workflow by @tfuxu in #4
  • Simplify color palette creation by @tfuxu in #5

New Contributors

  • @tfuxu made their first contribution in #4

Full Changelog: https://github.com/tfuxu/dither-go/commits/v0.2.0