[SabreTools, README.1ST] I just said all archives are treated the same

This commit is contained in:
Matt Nadareski
2017-10-31 16:52:14 -07:00
parent edce69eb35
commit 7a7e06dae0
3 changed files with 6 additions and 6 deletions

View File

@@ -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:

View File

@@ -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(

View File

@@ -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 = "",