mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
TODO cleanup, fix Logiqx, INI parser for RC
This commit is contained in:
@@ -875,7 +875,7 @@ namespace SabreTools
|
||||
return new Feature(
|
||||
SkipRipeMd160Value,
|
||||
new List<string>() { "-nr160", "--skip-ripemd160" },
|
||||
"Include RIPEMD160 in output", // TODO: Invert this later
|
||||
"Include RIPEMD160 in output", // TODO: This needs to be inverted later
|
||||
FeatureType.Flag,
|
||||
longDescription: "This allows the user to skip calculating the RIPEMD160 for each of the files which will speed up the creation of the DAT.");
|
||||
}
|
||||
@@ -903,7 +903,7 @@ namespace SabreTools
|
||||
return new Feature(
|
||||
SkipSha256Value,
|
||||
new List<string>() { "-ns256", "--skip-sha256" },
|
||||
"Include SHA-256 in output", // TODO: Invert this later
|
||||
"Include SHA-256 in output", // TODO: This needs to be inverted later
|
||||
FeatureType.Flag,
|
||||
longDescription: "This allows the user to skip calculating the SHA-256 for each of the files which will speed up the creation of the DAT.");
|
||||
}
|
||||
@@ -917,7 +917,7 @@ namespace SabreTools
|
||||
return new Feature(
|
||||
SkipSha384Value,
|
||||
new List<string>() { "-ns384", "--skip-sha384" },
|
||||
"Include SHA-384 in output", // TODO: Invert this later
|
||||
"Include SHA-384 in output", // TODO: This needs to be inverted later
|
||||
FeatureType.Flag,
|
||||
longDescription: "This allows the user to skip calculating the SHA-384 for each of the files which will speed up the creation of the DAT.");
|
||||
}
|
||||
@@ -931,7 +931,7 @@ namespace SabreTools
|
||||
return new Feature(
|
||||
SkipSha512Value,
|
||||
new List<string>() { "-ns512", "--skip-sha512" },
|
||||
"Include SHA-512 in output", // TODO: Invert this later
|
||||
"Include SHA-512 in output", // TODO: This needs to be inverted later
|
||||
FeatureType.Flag,
|
||||
longDescription: "This allows the user to skip calculating the SHA-512 for each of the files which will speed up the creation of the DAT.");
|
||||
}
|
||||
|
||||
@@ -9,7 +9,6 @@ namespace SabreTools
|
||||
/// <summary>
|
||||
/// Entry class for the DATabase application
|
||||
/// </summary>
|
||||
/// TODO: Look into async read/write to make things quicker. Ask edc for help?
|
||||
public partial class SabreTools
|
||||
{
|
||||
// Private required variables
|
||||
|
||||
Reference in New Issue
Block a user