mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[SabreTools] Update help
This commit is contained in:
@@ -1098,7 +1098,7 @@ Options:
|
||||
This sets an output folder to be used when the files are created. If a path
|
||||
is not defined, the application directory is used instead.
|
||||
|
||||
-ip, --inplace Enable overwriting in the source file
|
||||
-ip, --inplace Enable overwriting of source files (update, cascade only)
|
||||
This will overwrite the source files instead of writing them out to the runtime folder
|
||||
by default (or the output folder if overridden). Note that this only works for
|
||||
regular updates and cascaded diffs due to how file are expected to be written.
|
||||
|
||||
@@ -1110,11 +1110,6 @@ namespace SabreTools
|
||||
"Enable cascaded diffing",
|
||||
FeatureType.Flag,
|
||||
null));
|
||||
update["diff"]["cascade"].AddFeature("inplace", new Feature(
|
||||
new List<string>() { "-ip", "--inplace" },
|
||||
"Enable inplace, cascaded diff",
|
||||
FeatureType.Flag,
|
||||
null));
|
||||
update["diff"]["cascade"].AddFeature("skip", new Feature(
|
||||
new List<string>() { "-sf", "--skip" },
|
||||
"Skip output of first DAT",
|
||||
@@ -1125,11 +1120,6 @@ namespace SabreTools
|
||||
"Enable reverse cascaded diffing",
|
||||
FeatureType.Flag,
|
||||
null));
|
||||
update["diff"]["rev-cascade"].AddFeature("inplace", new Feature(
|
||||
new List<string>() { "-ip", "--inplace" },
|
||||
"Enable inplace, cascaded diff",
|
||||
FeatureType.Flag,
|
||||
null));
|
||||
update["diff"]["rev-cascade"].AddFeature("skip", new Feature(
|
||||
new List<string>() { "-sf", "--skip" },
|
||||
"Skip output of first DAT",
|
||||
@@ -1326,6 +1316,11 @@ namespace SabreTools
|
||||
"Output directory (overridden by --inplace)",
|
||||
FeatureType.String,
|
||||
null));
|
||||
update.AddFeature("inplace", new Feature(
|
||||
new List<string>() { "-ip", "--inplace" },
|
||||
"Enable overwriting of source files (update, cascade only)",
|
||||
FeatureType.Flag,
|
||||
null));
|
||||
update.AddFeature("mt", new Feature(
|
||||
new List<string>() { "-mt", "--mt" },
|
||||
"Amount of threads to use (default 4, -1 unlimited)",
|
||||
|
||||
Reference in New Issue
Block a user