Add version parameter

This commit is contained in:
2022-04-19 21:03:14 +02:00
parent a606c50637
commit bfb6cab62c
6 changed files with 38 additions and 13 deletions

View File

@@ -9,7 +9,8 @@ public enum ConfigProperty {
MKV_TOOL_NIX("mkvtoolnix", "Path to mkv tool nix installation"),
FORCED_KEYWORDS("forcedKeywords", "Additional keywords to identify forced tracks, combines with config file"),
EXCLUDE_DIRECTORY("exclude-directories", "Directories to be excluded, combines with config file"),
HELP("help", "\"for help this is\" - Yoda");
HELP("help", "\"for help this is\" - Yoda"),
VERSION("version", "Display version");
private final String property;
private final String description;