为启动参数添加了大量 aliases

This commit is contained in:
A.C.Sukazyo Eyre 2022-05-17 15:08:56 +08:00
parent ecd4902dbe
commit 9bfa35710f
Signed by: Eyre_S
GPG Key ID: EFB47D98FE082FAD
3 changed files with 19 additions and 10 deletions

View File

@ -1,6 +1,6 @@
## Core
VERSION = 0.6.5.0
VERSION = 0.6.5.1
# dependencies

View File

@ -4,6 +4,6 @@ package cc.sukazyo.cono.morny;
* the final field that will be updated by gradle automatically.
*/
public class GradleProjectConfigures {
public static final String VERSION = "0.6.5.0";
public static final long COMPILE_TIMESTAMP = 1652768698515L;
public static final String VERSION = "0.6.5.1";
public static final long COMPILE_TIMESTAMP = 1652771241057L;
}

View File

@ -53,6 +53,9 @@ public class ServerMain {
* 赋值为程序启动的时间从而造成阻挡程序启动之前的消息事件处理效果
* </li>
* <li>
* {@code --auto-cmd} (下面两个)选项 {@code --auto-cmd-list} {@code --auto-cmd-remove} 的合并版本
* </li>
* <li>
* {@code --auto-cmd-list} 使 morny 在启动时自动依据程序本体更新登录 bot 的命令列表
* </li>
* <li>
@ -92,11 +95,11 @@ public class ServerMain {
outdatedBlock = true;
continue;
}
case "--no-hello", "-hf" -> {
case "--no-hello", "-hf", "--quiet", "-q" -> {
showWelcome = false;
continue;
}
case "--only-hello", "-o" -> {
case "--only-hello", "-ho", "-o", "-hi" -> {
welcomeEchoMode = true;
continue;
}
@ -104,31 +107,37 @@ public class ServerMain {
versionEchoMode = true;
continue;
}
case "--token" -> {
case "--token", "-t" -> {
i++;
key = args[i];
continue;
}
case "--username" -> {
case "--username", "-u" -> {
i++;
username = args[i];
continue;
}
case "--master" -> {
case "--master", "-mm" -> {
i++;
master = Long.parseLong(args[i]);
continue;
}
case "--trusted-chat" -> {
case "--trusted-chat", "-trs" -> {
i++;
trustedChat = Long.parseLong(args[i]);
continue;
}
case "--trusted-reader-dinner" -> {
//noinspection SpellCheckingInspection
case "--trusted-reader-dinner", "-trsd" -> {
i++;
trustedReadersOfDinner.add(Long.parseLong(args[i]));
continue;
}
case "--auto-cmd", "-cmd", "-c" -> {
autoCmdList = true;
autoCmdRemove = true;
continue;
}
case "--auto-cmd-list", "-ca" -> {
autoCmdList = true;
continue;