All Versions
22
Latest Version
Avg Release Cycle
21 days
Latest Release
-

Changelog History
Page 2

  • v0.8.2 Changes

    • ➕ Added probe features
  • v0.8.1 Changes

    • ⚡️ Update raster demo to use new JuicyPixels-3.2 API
  • v0.8 Changes

    • ⚡️ Update to transformers-0.4.1 and mtl-2.2.1

      • Changed decode-related types to accomodate deprecation of the Error class. This means that if you want to initialize decoders in your own transformer stack that has a MonadError instance, you will need to use the variants with names suffixed by a "T" (for transformer).
    • ⚡️ Update to ffmpeg 2.3

      • Address deprecation warning

      Using AVStream.codec.time_base as a timebase hint to the muxer is deprecated. Set AVStream.time_base instead.

      • Address "non-strictly-monotonic PTS" warning
    • Rasterific bump

      • Rasterific exports its own linear algebra types as of 0.3
  • v0.7.1 Changes

    • ⬆️ Bumped transformers dependency

    Note: The use of mtl still triggers deprecation warnings from transformers.

    • 🛠 Fixed bug with changing source pixel format from RGB during encoding.

    • ➕ Added BGRA pixel format

  • v0.7 Changes

    • Simplified top-level API to focus on JuicyPixels-based interface
  • v0.6 Changes

    • Cleaned the API of detritus. Use the image* functions.
  • v0.5 Changes

    • Juiced the Encode and Decode APIs.

    Using imageWriter and imageReader provides a degree of pixel format polymorphism based on JuicyPixels pixel types.

  • v0.4 Changes

    • 🛠 Fixed corrupted output of palettized animated GIFs.

    • ➕ Added palettization options

      • Using avPixFmtRgb8 results in a small file
      • Using the default pixel format (avPixFmtPal8) results in a good-looking, fairly large file thanks to JuicyPixels's palettize function.
      • Setting the epPreset field of the EncodingParams value passed to frameWriter to "dither" results in an even prettier, even larger GIF file (again, thanks to JuicyPixels's palettize function).
      • See the demo/Raster.hs for examples.
  • v0.3.1 Changes

    • Automatically palettize RGB24 to RGB8 for GIF output.

    • ➕ Add a Rasterific demo program that records an animation.

  • v0.3 Changes

    • 👌 Support for GIF encoding (and other palletized formats).