v10.1 (#769)
This commit is contained in:
parent
ff168f5d2d
commit
d54e7c04ea
4 changed files with 14 additions and 5 deletions
|
|
@ -1,3 +1,9 @@
|
|||
## Version 10.1.0
|
||||
|
||||
- [Feature] Add `--json` option for machine-readable output.
|
||||
- [Improvement] New default output with file counter and summary. (Use an extra `-v` flag to get the same output as before.)
|
||||
- [Bugfix] Fix fast mode sometimes giving suboptimal results for small, indexed images.
|
||||
|
||||
## Version 10.0.0
|
||||
|
||||
- [Breaking] CLI: Change short zopfli flag from `-Z` to `-z`.
|
||||
|
|
|
|||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -395,7 +395,7 @@ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|||
|
||||
[[package]]
|
||||
name = "oxipng"
|
||||
version = "10.0.0"
|
||||
version = "10.1.0"
|
||||
dependencies = [
|
||||
"bitvec",
|
||||
"clap",
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ homepage = "https://github.com/oxipng/oxipng"
|
|||
license = "MIT"
|
||||
name = "oxipng"
|
||||
repository = "https://github.com/oxipng/oxipng"
|
||||
version = "10.0.0"
|
||||
version = "10.1.0"
|
||||
rust-version = "1.85.1"
|
||||
|
||||
[badges]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
oxipng 10.0.0
|
||||
oxipng 10.1.0
|
||||
Losslessly improve compression of PNG files
|
||||
|
||||
Usage: oxipng [OPTIONS] <files>...
|
||||
|
|
@ -105,10 +105,13 @@ Options:
|
|||
losslessly.
|
||||
|
||||
-v, --verbose...
|
||||
Run in verbose mode (use twice to increase verbosity)
|
||||
Show per-file info (use multiple times for more detail)
|
||||
|
||||
-q, --quiet
|
||||
Run in quiet mode
|
||||
Suppress all output messages
|
||||
|
||||
-j, --json
|
||||
Print results as JSON
|
||||
|
||||
-f, --filters <list>
|
||||
Perform compression trials with each of the given filter types. You can specify a
|
||||
|
|
|
|||
Loading…
Reference in a new issue