diff --git a/SabreTools/Partials/SabreTools.Help.cs b/SabreTools/Partials/SabreTools.Help.cs index 4443f9e2..ff14a505 100644 --- a/SabreTools/Partials/SabreTools.Help.cs +++ b/SabreTools/Partials/SabreTools.Help.cs @@ -690,14 +690,36 @@ namespace SabreTools "Put double-quotes around each item", FeatureType.Flag, null)); - /* - helptext.Add(" -ae=, --add-ext= Add an extension to each item"); - helptext.Add(" -rep=, --rep-ext= Replace all extensions with specified"); - helptext.Add(" -rme, --rem-ext Remove all extensions from each item"); - helptext.Add(" -ro, --romba Output in Romba format (requires SHA-1)"); - helptext.Add(" -tsv, --tsv Output in Tab-Separated Value format"); - helptext.Add(" -csv, --csv Output in Comma-Separated Value format"); - */ + update["output-miss"].AddFeature("add-ext", new Feature( + new List() { "-ae", "--add-ext" }, + "Add an extension to each item", + FeatureType.String, + null)); + update["output-miss"].AddFeature("rep-ext", new Feature( + new List() { "-rep", "--rep-ext" }, + "Replace all extensions with specified", + FeatureType.String, + null)); + update["output-miss"].AddFeature("rem-ext", new Feature( + new List() { "-rme", "--rem-ext" }, + "Remove all extensions from each item", + FeatureType.String, + null)); + update["output-miss"].AddFeature("romba", new Feature( + new List() { "-ro", "--romba" }, + "Output in Romba format (requires SHA-1)", + FeatureType.Flag, + null)); + update["output-miss"].AddFeature("tsv", new Feature( + new List() { "-tsv", "--tsv" }, + "Output in Tab-Separated Value format", + FeatureType.Flag, + null)); + update["output-miss"].AddFeature("csv", new Feature( + new List() { "-csv", "--csv" }, + "Output in Comma-Separated Value format", + FeatureType.Flag, + null)); update.AddFeature("output-md5", new Feature( new List() { "-oa", "--output-md5" }, "Output in MD5 format",