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.
|
one that matches.
|
||||||
|
|
||||||
-7z={1} Set scanning level for 7z archives
|
-7z={1} Set scanning level for 7z archives
|
||||||
-gz={2} Set scanning level for GZip archives
|
-gz={1} Set scanning level for GZip archives
|
||||||
-rar={2} Set scanning level for RAR archives
|
-rar={1} Set scanning level for RAR archives
|
||||||
-zip={1} Set scanning level for ZIP archives
|
-zip={1} Set scanning level for ZIP archives
|
||||||
For each of the major archive types recognized by the libraries used
|
For each of the major archive types recognized by the libraries used
|
||||||
by this program, scan the archive in one of the following ways:
|
by this program, scan the archive in one of the following ways:
|
||||||
|
|||||||
@@ -485,12 +485,12 @@ namespace SabreTools
|
|||||||
null));
|
null));
|
||||||
sort.AddFeature("gz", new Feature(
|
sort.AddFeature("gz", new Feature(
|
||||||
new List<string>() { "-gz", "--gz" },
|
new List<string>() { "-gz", "--gz" },
|
||||||
"Set scanning level for GZip archives (default 2)",
|
"Set scanning level for GZip archives (default 1)",
|
||||||
FeatureType.String,
|
FeatureType.String,
|
||||||
null));
|
null));
|
||||||
sort.AddFeature("rar", new Feature(
|
sort.AddFeature("rar", new Feature(
|
||||||
new List<string>() { "-rar", "--rar" },
|
new List<string>() { "-rar", "--rar" },
|
||||||
"Set scanning level for RAR archives (default 2)",
|
"Set scanning level for RAR archives (default 1)",
|
||||||
FeatureType.String,
|
FeatureType.String,
|
||||||
null));
|
null));
|
||||||
sort.AddFeature("zip", new Feature(
|
sort.AddFeature("zip", new Feature(
|
||||||
|
|||||||
@@ -131,8 +131,8 @@ namespace SabreTools
|
|||||||
UpdateMode updateMode = UpdateMode.None;
|
UpdateMode updateMode = UpdateMode.None;
|
||||||
|
|
||||||
// User inputs
|
// User inputs
|
||||||
int gz = 2,
|
int gz = 1,
|
||||||
rar = 2,
|
rar = 1,
|
||||||
sevenzip = 1,
|
sevenzip = 1,
|
||||||
zip = 1;
|
zip = 1;
|
||||||
string addext = "",
|
string addext = "",
|
||||||
|
|||||||
Reference in New Issue
Block a user