mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ALL] Fix CMP parsing again, add NotNodump option for filter
This commit is contained in:
@@ -226,7 +226,7 @@ namespace SabreTools.Helper
|
||||
helptext.Add(" -sha1=, --sha1= Filter by SHA-1 hash");
|
||||
helptext.Add(" -is=, --status= Include only items with a given status");
|
||||
helptext.Add(" Supported values are:");
|
||||
helptext.Add(" None, Good, BadDump, Nodump, Verified");
|
||||
helptext.Add(" None, Good, BadDump, Nodump, Verified, NotNodump");
|
||||
helptext.Add(" -out= Output directory (overridden by --inplace)");
|
||||
helptext.Add("");
|
||||
helptext.Add("Filenames and directories can't start with a reserved string");
|
||||
|
||||
@@ -88,12 +88,13 @@
|
||||
/// </summary>
|
||||
public enum ItemStatus
|
||||
{
|
||||
NULL = -1,
|
||||
NULL = -1, // This is a fake flag that is used for filter only
|
||||
None = 0,
|
||||
Good = 1,
|
||||
BadDump = 2,
|
||||
Nodump = 3,
|
||||
Verified = 4,
|
||||
NotNodump = 5, // This is a fake flag that is used for filter only
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user