diff --git a/SabreTools.Helper/README.1ST b/SabreTools.Helper/README.1ST index 9b5f85c9..a0b3e1f0 100644 --- a/SabreTools.Helper/README.1ST +++ b/SabreTools.Helper/README.1ST @@ -159,17 +159,17 @@ Options: This allows the user to skip calculating the SHA-1 for each of the files which will speed up the creation of the DAT. - -ns256, --noSHA256 Don't include SHA-256 in output - This allows the user to skip calculating the SHA-256 for each of the files which will - speed up the creation of the DAT. + -ns256, --noSHA256 Include SHA-256 in output + This allows the user to include calculating the SHA-256 for each of the files which will + speed up the creation of the DAT. (Will be inverted later) - -ns384, --noSHA384 Don't include SHA-384 in output - This allows the user to skip calculating the SHA-384 for each of the files which will - speed up the creation of the DAT. + -ns384, --noSHA384 Include SHA-384 in output + This allows the user to include calculating the SHA-384 for each of the files which will + speed up the creation of the DAT. (Will be inverted later) - -ns512, --noSHA512 Don't include SHA-512 in output - This allows the user to skip calculating the SHA-512 for each of the files which will - speed up the creation of the DAT. + -ns512, --noSHA512 Include SHA-512 in output + This allows the user to include calculating the SHA-512 for each of the files which will + speed up the creation of the DAT. (Will be inverted later) -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 diff --git a/SabreTools/Partials/SabreTools.Help.cs b/SabreTools/Partials/SabreTools.Help.cs index fb2b6656..1b9a7e57 100644 --- a/SabreTools/Partials/SabreTools.Help.cs +++ b/SabreTools/Partials/SabreTools.Help.cs @@ -54,17 +54,17 @@ namespace SabreTools null)); datFromDir.AddFeature("noSHA256", new Feature( new List() { "-ns256", "--noSHA256" }, - "Don't include SHA-256 in output", + "Include SHA-256 in output", // TODO: Invert this later FeatureType.Flag, null)); datFromDir.AddFeature("noSHA384", new Feature( new List() { "-ns384", "--noSHA384" }, - "Don't include SHA-384 in output", + "Include SHA-384 in output", // TODO: Invert this later FeatureType.Flag, null)); datFromDir.AddFeature("noSHA512", new Feature( new List() { "-ns512", "--noSHA512" }, - "Don't include SHA-512 in output", + "Include SHA-512 in output", // TODO: Invert this later FeatureType.Flag, null)); datFromDir.AddFeature("bare", new Feature(