mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[SabreTools, README.1ST] I just said all archives are treated the same
This commit is contained in:
@@ -573,8 +573,8 @@ Options:
|
||||
one that matches.
|
||||
|
||||
-7z={1} Set scanning level for 7z archives
|
||||
-gz={2} Set scanning level for GZip archives
|
||||
-rar={2} Set scanning level for RAR archives
|
||||
-gz={1} Set scanning level for GZip archives
|
||||
-rar={1} Set scanning level for RAR archives
|
||||
-zip={1} Set scanning level for ZIP archives
|
||||
For each of the major archive types recognized by the libraries used
|
||||
by this program, scan the archive in one of the following ways:
|
||||
|
||||
@@ -485,12 +485,12 @@ namespace SabreTools
|
||||
null));
|
||||
sort.AddFeature("gz", new Feature(
|
||||
new List<string>() { "-gz", "--gz" },
|
||||
"Set scanning level for GZip archives (default 2)",
|
||||
"Set scanning level for GZip archives (default 1)",
|
||||
FeatureType.String,
|
||||
null));
|
||||
sort.AddFeature("rar", new Feature(
|
||||
new List<string>() { "-rar", "--rar" },
|
||||
"Set scanning level for RAR archives (default 2)",
|
||||
"Set scanning level for RAR archives (default 1)",
|
||||
FeatureType.String,
|
||||
null));
|
||||
sort.AddFeature("zip", new Feature(
|
||||
|
||||
@@ -131,8 +131,8 @@ namespace SabreTools
|
||||
UpdateMode updateMode = UpdateMode.None;
|
||||
|
||||
// User inputs
|
||||
int gz = 2,
|
||||
rar = 2,
|
||||
int gz = 1,
|
||||
rar = 1,
|
||||
sevenzip = 1,
|
||||
zip = 1;
|
||||
string addext = "",
|
||||
|
||||
Reference in New Issue
Block a user