mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[SabreTools] Need the 'd'
This commit is contained in:
@@ -315,10 +315,10 @@ namespace SabreTools.Helper.Data
|
|||||||
helptext.Add(" -xof, --exclude-of Exclude romof, cloneof, sampleof tags");
|
helptext.Add(" -xof, --exclude-of Exclude romof, cloneof, sampleof tags");
|
||||||
helptext.Add(" -clean Clean game names according to WoD standards");
|
helptext.Add(" -clean Clean game names according to WoD standards");
|
||||||
helptext.Add(" -sl, --softlist Use Software List name instead of description");
|
helptext.Add(" -sl, --softlist Use Software List name instead of description");
|
||||||
helptext.Add(" -dm, --dat-merge Create merged sets in the output DAT");
|
helptext.Add(" -dm, --dat-merged Create merged sets");
|
||||||
helptext.Add(" -ds, --dat-split Create split sets in the output DAT");
|
helptext.Add(" -ds, --dat-split Create split sets");
|
||||||
helptext.Add(" -dnm, --dat-nonmerge Create non-merged sets in the output DAT");
|
helptext.Add(" -dnm, --dat-nonmerged Create non-merged sets");
|
||||||
helptext.Add(" -df, --dat-fullnonmerge Create fully non-merged sets in the output");
|
helptext.Add(" -df, --dat-fullnonmerged Create fully non-merged sets");
|
||||||
helptext.Add(" -trim Trim file names to fit NTFS length");
|
helptext.Add(" -trim Trim file names to fit NTFS length");
|
||||||
helptext.Add(" -rd=, --root-dir= Set the root directory for calc");
|
helptext.Add(" -rd=, --root-dir= Set the root directory for calc");
|
||||||
helptext.Add(" -si, --single All game names replaced by '!'");
|
helptext.Add(" -si, --single All game names replaced by '!'");
|
||||||
|
|||||||
@@ -730,7 +730,7 @@ Options:
|
|||||||
Enabling this flag allows for the original name to be preserved and keeping
|
Enabling this flag allows for the original name to be preserved and keeping
|
||||||
the description as just a description.
|
the description as just a description.
|
||||||
|
|
||||||
-dm, --dat-merge Create merged sets in the output DAT
|
-dm, --dat-merged Create merged sets in the output DAT
|
||||||
Preprocess the DAT to have parent sets contain all items from the children based
|
Preprocess the DAT to have parent sets contain all items from the children based
|
||||||
on the cloneof tag. This is incompatible with the other --dat-X flags.
|
on the cloneof tag. This is incompatible with the other --dat-X flags.
|
||||||
|
|
||||||
@@ -738,11 +738,11 @@ Options:
|
|||||||
Preprocess the DAT to remove redundant files between parents and children based
|
Preprocess the DAT to remove redundant files between parents and children based
|
||||||
on the romof and cloneof tags. This is incompatible with the other --dat-X flags.
|
on the romof and cloneof tags. This is incompatible with the other --dat-X flags.
|
||||||
|
|
||||||
-dnm, --dat-nonmerge Create non-merged sets in the output DAT
|
-dnm, --dat-nonmerged Create non-merged sets in the output DAT
|
||||||
Preprocess the DAT to have child sets contain all items from the parent set based
|
Preprocess the DAT to have child sets contain all items from the parent set based
|
||||||
on the cloneof tag. This is incompatible with the other --dat-X flags.
|
on the cloneof tag. This is incompatible with the other --dat-X flags.
|
||||||
|
|
||||||
-df, --dat-fullnonmerge Create fully non-merged sets in the output DAT
|
-df, --dat-fullnonmerged Create fully non-merged sets in the output DAT
|
||||||
Preprocess the DAT to have child sets contain all items from the parent sets based
|
Preprocess the DAT to have child sets contain all items from the parent sets based
|
||||||
on the cloneof and romof tags as well as device references. This is incompatible with
|
on the cloneof and romof tags as well as device references. This is incompatible with
|
||||||
the other --dat-X flags.
|
the other --dat-X flags.
|
||||||
|
|||||||
@@ -257,7 +257,7 @@ namespace SabreTools
|
|||||||
delete = true;
|
delete = true;
|
||||||
break;
|
break;
|
||||||
case "-df":
|
case "-df":
|
||||||
case "--dat-fullnonmerge":
|
case "--dat-fullnonmerged":
|
||||||
splitType = SplitType.FullNonMerged;
|
splitType = SplitType.FullNonMerged;
|
||||||
break;
|
break;
|
||||||
case "-di":
|
case "-di":
|
||||||
@@ -277,11 +277,11 @@ namespace SabreTools
|
|||||||
diffMode |= DiffMode.NoDupes;
|
diffMode |= DiffMode.NoDupes;
|
||||||
break;
|
break;
|
||||||
case "-dm":
|
case "-dm":
|
||||||
case "--dat-merge":
|
case "--dat-merged":
|
||||||
splitType = SplitType.Merged;
|
splitType = SplitType.Merged;
|
||||||
break;
|
break;
|
||||||
case "-dnm":
|
case "-dnm":
|
||||||
case "--dat-nonmerge":
|
case "--dat-nonmerged":
|
||||||
splitType = SplitType.NonMerged;
|
splitType = SplitType.NonMerged;
|
||||||
break;
|
break;
|
||||||
case "-ds":
|
case "-ds":
|
||||||
|
|||||||
Reference in New Issue
Block a user