Fix filter list input flag description

This commit is contained in:
Matt Nadareski
2025-01-27 22:12:38 -05:00
parent c857679b0d
commit 6ef2cb0297
2 changed files with 4 additions and 4 deletions

View File

@@ -397,7 +397,7 @@ Features and Options:
-fi=, --filter= Filter a game/rom field with the given value(s) -fi=, --filter= Filter a game/rom field with the given value(s)
Filter any valid item or machine field from inputs. Filters are input Filter any valid item or machine field from inputs. Filters are input
in the form 'key:value' or '!key:value', where the '!' signifies 'not in the form 'key=value' or 'key!=value', where the '!' signifies 'not
matching'. Numeric values may also prefix the 'value' with '>', '<', or matching'. Numeric values may also prefix the 'value' with '>', '<', or
'=' accordingly. Key examples include: romof, category, and game. '=' accordingly. Key examples include: romof, category, and game.
Additionally, the user can specify an exact match or full C#-style Additionally, the user can specify an exact match or full C#-style
@@ -1094,7 +1094,7 @@ Features and Options:
-fi=, --filter= Filter a game/rom field with the given value(s) -fi=, --filter= Filter a game/rom field with the given value(s)
Filter any valid item or machine field from inputs. Filters are input Filter any valid item or machine field from inputs. Filters are input
in the form 'key:value' or '!key:value', where the '!' signifies 'not in the form 'key=value' or 'key!=value', where the '!' signifies 'not
matching'. Numeric values may also prefix the 'value' with '>', '<', or matching'. Numeric values may also prefix the 'value' with '>', '<', or
'=' accordingly. Key examples include: romof, category, and game. '=' accordingly. Key examples include: romof, category, and game.
Additionally, the user can specify an exact match or full C#-style Additionally, the user can specify an exact match or full C#-style
@@ -1212,7 +1212,7 @@ Features and Options:
-fi=, --filter= Filter a game/rom field with the given value(s) -fi=, --filter= Filter a game/rom field with the given value(s)
Filter any valid item or machine field from inputs. Filters are input Filter any valid item or machine field from inputs. Filters are input
in the form 'key:value' or '!key:value', where the '!' signifies 'not in the form 'key=value' or 'key!=value', where the '!' signifies 'not
matching'. Numeric values may also prefix the 'value' with '>', '<', or matching'. Numeric values may also prefix the 'value' with '>', '<', or
'=' accordingly. Key examples include: romof, category, and game. '=' accordingly. Key examples include: romof, category, and game.
Additionally, the user can specify an exact match or full C#-style Additionally, the user can specify an exact match or full C#-style

View File

@@ -1314,7 +1314,7 @@ namespace SabreTools.Features
new List<string>() { "-fi", "--filter" }, new List<string>() { "-fi", "--filter" },
"Filter a game/rom field with the given value(s)", "Filter a game/rom field with the given value(s)",
ParameterType.List, ParameterType.List,
longDescription: "Filter any valid item or machine field from inputs. Filters are input in the form 'key:value' or '!key:value', where the '!' signifies 'not matching'. Numeric values may also prefix the 'value' with '>', '<', or '=' accordingly. Key examples include: romof, category, and game. Additionally, the user can specify an exact match or full C#-style regex for pattern matching. Multiple instances of this flag are allowed."); longDescription: "Filter any valid item or machine field from inputs. Filters are input in the form 'key=value' or 'key!=value', where the '!' signifies 'not matching'. Numeric values may also prefix the 'value' with '>', '<', or '=' accordingly. Key examples include: romof, category, and game. Additionally, the user can specify an exact match or full C#-style regex for pattern matching. Multiple instances of this flag are allowed.");
} }
} }