You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
776 B
22 lines
776 B
From 112aa06a6db85bb1d8dd00530e7a8e0808bcbeb0 Mon Sep 17 00:00:00 2001
|
|
From: Andrew <andrew@digerati.co.nz>
|
|
Date: Sat, 30 Nov 2024 21:16:36 +1300
|
|
Subject: [PATCH] Fix manpage for `--zi`
|
|
|
|
---
|
|
src/cli.rs | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/cli.rs b/src/cli.rs
|
|
index cc861650..373d4141 100644
|
|
--- a/src/cli.rs
|
|
+++ b/src/cli.rs
|
|
@@ -344,6 +344,7 @@ Recommended use is with '-o max' and '--fast'.")
|
|
Set the number of iterations to use for Zopfli compression. Using fewer iterations may \
|
|
speed up compression for large files. This option requires '--zopfli' to be set.")
|
|
.long("zi")
|
|
+ .value_name("iterations")
|
|
.default_value("15")
|
|
.value_parser(1..=255)
|
|
.requires("zopfli"),
|