Skip to content

Commit a3a392a

Browse files
committed
Update version to 0.3.4 in Cargo.toml and Cargo.lock
1 parent 0ed339b commit a3a392a

File tree

6 files changed

+11
-20
lines changed

6 files changed

+11
-20
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "majsoul_max_rs"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2021"
55

66
[lib]

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
1. 启动程序,直接运行可执行文件
4747
2. 关闭程序,修改配置
4848
- 根据程序提示和自身需求修改
49+
- 在liqi_config/settings.json可以设置通用设置,包括Helper和Mod的开关——"modSwitch"与"helperSwitch",0为关1为开
50+
- 在liqi_config/settings.mod.json可以设置Mod专有设置
4951
3. 再次启动程序
5052
4. 启动游戏,分为网页版和客户端/Steam端。
5153
- 如果要启动网页版:

liqi_config/settings.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"proxyAddr": "127.0.0.1:23410",
3434
"apiUrl": "https://localhost:12121/",
3535
"helperSwitch": 1,
36-
"modSwitch": 1,
36+
"modSwitch": 0,
3737
"autoUpdate": 1,
3838
"liqiVersion": "v0.11.36.w"
39-
}
39+
}

liqi_config/settings.mod.json

+4-15
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,13 @@
33
"characters": {},
44
"nickname": "",
55
"starCharacter": [],
6-
"hintSwitch": 0,
6+
"hintSwitch": 1,
77
"title": 0,
88
"loadingBg": [],
99
"emojiSwitch": 0,
10-
"views": [
11-
[],
12-
[],
13-
[],
14-
[],
15-
[],
16-
[],
17-
[],
18-
[],
19-
[],
20-
[]
21-
],
10+
"views": [[], [], [], [], [], [], [], [], [], []],
2211
"view": 0,
23-
"showServer": 0,
12+
"showServer": 1,
2413
"autoUpdate": 1,
2514
"version": "v0.11.39.w"
26-
}
15+
}

src/settings.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ impl Default for ModSettings {
273273
characters: HashMap::new(),
274274
nickname: String::new(),
275275
star_character: Vec::new(),
276-
hint_switch: 0,
276+
hint_switch: 1,
277277
title: 0,
278278
loading_bg: Vec::new(),
279279
emoji_switch: 0,

0 commit comments

Comments
 (0)