mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[SabreTools, README] Explicitly mention inverted flags
This commit is contained in:
@@ -159,17 +159,17 @@ Options:
|
|||||||
This allows the user to skip calculating the SHA-1 for each of the files which will
|
This allows the user to skip calculating the SHA-1 for each of the files which will
|
||||||
speed up the creation of the DAT.
|
speed up the creation of the DAT.
|
||||||
|
|
||||||
-ns256, --noSHA256 Don't include SHA-256 in output
|
-ns256, --noSHA256 Include SHA-256 in output
|
||||||
This allows the user to skip calculating the SHA-256 for each of the files which will
|
This allows the user to include calculating the SHA-256 for each of the files which will
|
||||||
speed up the creation of the DAT.
|
speed up the creation of the DAT. (Will be inverted later)
|
||||||
|
|
||||||
-ns384, --noSHA384 Don't include SHA-384 in output
|
-ns384, --noSHA384 Include SHA-384 in output
|
||||||
This allows the user to skip calculating the SHA-384 for each of the files which will
|
This allows the user to include calculating the SHA-384 for each of the files which will
|
||||||
speed up the creation of the DAT.
|
speed up the creation of the DAT. (Will be inverted later)
|
||||||
|
|
||||||
-ns512, --noSHA512 Don't include SHA-512 in output
|
-ns512, --noSHA512 Include SHA-512 in output
|
||||||
This allows the user to skip calculating the SHA-512 for each of the files which will
|
This allows the user to include calculating the SHA-512 for each of the files which will
|
||||||
speed up the creation of the DAT.
|
speed up the creation of the DAT. (Will be inverted later)
|
||||||
|
|
||||||
-b, --bare Don't include date in file name
|
-b, --bare Don't include date in file name
|
||||||
Normally, the DAT will be created with the date in the file name. This flag removes
|
Normally, the DAT will be created with the date in the file name. This flag removes
|
||||||
|
|||||||
@@ -54,17 +54,17 @@ namespace SabreTools
|
|||||||
null));
|
null));
|
||||||
datFromDir.AddFeature("noSHA256", new Feature(
|
datFromDir.AddFeature("noSHA256", new Feature(
|
||||||
new List<string>() { "-ns256", "--noSHA256" },
|
new List<string>() { "-ns256", "--noSHA256" },
|
||||||
"Don't include SHA-256 in output",
|
"Include SHA-256 in output", // TODO: Invert this later
|
||||||
FeatureType.Flag,
|
FeatureType.Flag,
|
||||||
null));
|
null));
|
||||||
datFromDir.AddFeature("noSHA384", new Feature(
|
datFromDir.AddFeature("noSHA384", new Feature(
|
||||||
new List<string>() { "-ns384", "--noSHA384" },
|
new List<string>() { "-ns384", "--noSHA384" },
|
||||||
"Don't include SHA-384 in output",
|
"Include SHA-384 in output", // TODO: Invert this later
|
||||||
FeatureType.Flag,
|
FeatureType.Flag,
|
||||||
null));
|
null));
|
||||||
datFromDir.AddFeature("noSHA512", new Feature(
|
datFromDir.AddFeature("noSHA512", new Feature(
|
||||||
new List<string>() { "-ns512", "--noSHA512" },
|
new List<string>() { "-ns512", "--noSHA512" },
|
||||||
"Don't include SHA-512 in output",
|
"Include SHA-512 in output", // TODO: Invert this later
|
||||||
FeatureType.Flag,
|
FeatureType.Flag,
|
||||||
null));
|
null));
|
||||||
datFromDir.AddFeature("bare", new Feature(
|
datFromDir.AddFeature("bare", new Feature(
|
||||||
|
|||||||
Reference in New Issue
Block a user