0.4.0
This commit is contained in:
parent
0ecdc7f3d1
commit
ac17371c10
2
dub.json
2
dub.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "dfmt",
|
"name": "dfmt",
|
||||||
"description": "Dfmt is a formatter for D source code",
|
"description": "Dfmt is a formatter for D source code",
|
||||||
"version": "0.4.0-beta",
|
"version": "0.4.0",
|
||||||
"targetType": "executable",
|
"targetType": "executable",
|
||||||
"license": "BSL-1.0",
|
"license": "BSL-1.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
|
|
||||||
module dfmt.main;
|
module dfmt.main;
|
||||||
|
|
||||||
|
enum VERSION = "0.4.0";
|
||||||
|
|
||||||
version (NoMain)
|
version (NoMain)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -24,6 +26,7 @@ else
|
||||||
Config optConfig;
|
Config optConfig;
|
||||||
optConfig.pattern = "*.d";
|
optConfig.pattern = "*.d";
|
||||||
bool showHelp;
|
bool showHelp;
|
||||||
|
bool showVersion;
|
||||||
|
|
||||||
void handleBooleans(string option, string value)
|
void handleBooleans(string option, string value)
|
||||||
{
|
{
|
||||||
|
@ -58,6 +61,7 @@ else
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
getopt(args,
|
getopt(args,
|
||||||
|
"version", &showVersion,
|
||||||
"align_switch_statements", &handleBooleans,
|
"align_switch_statements", &handleBooleans,
|
||||||
"brace_style", &optConfig.dfmt_brace_style,
|
"brace_style", &optConfig.dfmt_brace_style,
|
||||||
"end_of_line", &optConfig.end_of_line,
|
"end_of_line", &optConfig.end_of_line,
|
||||||
|
@ -80,6 +84,12 @@ else
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (showVersion)
|
||||||
|
{
|
||||||
|
writeln(VERSION);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (showHelp)
|
if (showHelp)
|
||||||
{
|
{
|
||||||
printHelp();
|
printHelp();
|
||||||
|
@ -149,11 +159,13 @@ else
|
||||||
|
|
||||||
private void printHelp()
|
private void printHelp()
|
||||||
{
|
{
|
||||||
writeln(`dfmt 0.4.0-beta
|
writeln(`dfmt `, VERSION, `
|
||||||
|
https://github.com/Hackerpilot/dfmt
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
--help | -h Print this help message
|
--help | -h Print this help message
|
||||||
--inplace Edit files in place
|
--inplace Edit files in place
|
||||||
|
--version Print the version number and then exit
|
||||||
|
|
||||||
Formatting Options:
|
Formatting Options:
|
||||||
--align_switch_statements
|
--align_switch_statements
|
||||||
|
|
Loading…
Reference in New Issue