aboutsummaryrefslogtreecommitdiff
path: root/vendor/gif/Changes.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/gif/Changes.md
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/gif/Changes.md')
-rw-r--r--vendor/gif/Changes.md60
1 files changed, 0 insertions, 60 deletions
diff --git a/vendor/gif/Changes.md b/vendor/gif/Changes.md
deleted file mode 100644
index 19efbd5..0000000
--- a/vendor/gif/Changes.md
+++ /dev/null
@@ -1,60 +0,0 @@
-# v0.12.0
-
-Features:
-- Add compression of pre-compressed frame data, via `Encoder::write_lzw_pre_encoded_frame`.
-- The `color_quant` dependency is now optional. Turning it off disables some
- interfaces that would internally build quantization tables. The generic
- implementation of creating such tables can be prohibitively costly compared
- to specialized algorithms in some use cases.
-
-Optimization:
-- Avoid some allocations in by replacing `flat_map` argument with arrays
-
-# v0.11.4
-
-Bufixes:
-- Fix decoding confusing superfluous image data from previous frames with
- current frame data.
-- Bump minimum required version of `weezl`.
-
-Features:
-- Add `Encoder::{get_ref, get_mut, into_inner}` to access underlying stream.
-
-# v0.11.3
-
-Bugfixes:
-- Fix panic while decoding some images, has no precise cause in the file.
-- Warn about `set_extensions` being unimplemented...
-
-Features:
-- Added `StreamingDecoder::version` to query the precise version of the
- standard used for encoding the file. This is merely a hint.
-- Added `DecodeOptions::allow_unknown_blocks` to skip over unknown or
- unspecified block kinds.
-
-Optimization:
-- `Frame::from_rgba` now recognizes when less than 256 colors are being used,
- dynamically skipping the quantization phase.
-- Encoding image chunks is faster and simpler
-
-
-# v0.11.2
-
-- Fix panic when LZW code size is invalid
-- Added option to omit check for lzw end code
-
-# v0.11.1
-
-- Frames out-of-bounds of the screen descriptor are again accepted by default.
-- Added `DecodeOptions::check_frame_consistency` to turn this validation on.
-
-# v0.11
-
-- Rename `Reader` to `Decoder`.
-- Reworked `Decoder` into `DecodeOptions`.
-- The decoding error is now opaque and no longer allocates a string. Adding
- more information or more error conditions is forward compatible.
-- Replace the lzw decoder with `weezl`, up to +350% throughput.
-- The dysfunctional C-API has been (temporarily?) removed
- - It may get reintroduced as a separate crate at some point
-- Added a `std` feature. It must be active for now.