Skip to content

Commit

Permalink
feat: use release instead of nightly build by default
Browse files Browse the repository at this point in the history
  • Loading branch information
smartcmd committed Dec 22, 2024
1 parent 3f529a7 commit d16b6bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ allay
This is equal to:

```bash
allay --run --update --nightly
allay --run --update
```

Allows concatenation of single-character arguments:

```bash
allay -run
allay -ru
```

Available options:
Expand All @@ -60,13 +60,13 @@ Pass custom parameters to the JVM, such as memory limits:
> The "-" before the parameter will be automatically added.
```bash
allay -run --args Xms1G Xmx4G
allay -ru --args Xms1G Xmx4G
```

Start the server in daemon mode:

```bash
allay -rund
allay -rud
```

Start the server, but do not check for update:
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ auto parse_arguments(int argc, char* argv[]) {
_args args;
args.m_run = true;
args.m_update = true;
args.m_use_nightly = true;
args.m_use_nightly = false;
args.m_deamon = false;
return args;
}
Expand Down
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ target('allay')
add_files('src/**.cpp')
add_includedirs('src')
add_includedirs('build/config')
set_version("1.0.0")
set_version("1.0.1")

add_packages(
'argparse',
Expand Down

0 comments on commit d16b6bb

Please sign in to comment.