Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git

Remove Boolean label, name image arguments consistently

AuthorDaveJarvis <email>
Date2022-01-05 23:02:48 GMT-0800
Commitfdd7c9fb8d86a8263b04fecff0f25d46d7cdca15
Parent22a0b19
Delta4 lines added, 7 lines removed, 3-line decrease
src/main/java/com/keenwrite/cmdline/Arguments.java
description =
"Concatenate files before processing (${DEFAULT-VALUE})",
- paramLabel = "Boolean",
defaultValue = "false"
)
private boolean mConcatenate;
@CommandLine.Option(
names = {"--keep-files"},
description =
"Retain temporary build files (${DEFAULT-VALUE})",
- paramLabel = "Boolean",
defaultValue = "false"
)
private boolean mKeepFiles;
@CommandLine.Option(
names = {"--curl-quotes"},
description =
- "Replace straight quotes with curly quotes",
- paramLabel = "Boolean",
+ "Replace straight quotes with curly quotes (${DEFAULT-VALUE})",
defaultValue = "true"
)
@CommandLine.Option(
- names = {"--images-dir"},
+ names = {"--image-dir"},
description =
"Directory containing images",
@CommandLine.Option(
- names = {"--images-server"},
+ names = {"--image-server"},
description =
"SVG diagram rendering service (${DEFAULT-VALUE})",
names = {"--theme-dir"},
description =
- "Absolute path to theme directory",
+ "Theme directory",
paramLabel = "DIR"
)