Skip to content

Commit

Permalink
Update version to 0.3.4 in Cargo.toml and Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
Xerxes-2 committed Apr 27, 2024
1 parent 0ed339b commit a3a392a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "majsoul_max_rs"
version = "0.3.3"
version = "0.3.4"
edition = "2021"

[lib]
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
1. 启动程序,直接运行可执行文件
2. 关闭程序,修改配置
- 根据程序提示和自身需求修改
- 在liqi_config/settings.json可以设置通用设置,包括Helper和Mod的开关——"modSwitch"与"helperSwitch",0为关1为开
- 在liqi_config/settings.mod.json可以设置Mod专有设置
3. 再次启动程序
4. 启动游戏,分为网页版和客户端/Steam端。
- 如果要启动网页版:
Expand Down
4 changes: 2 additions & 2 deletions liqi_config/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"proxyAddr": "127.0.0.1:23410",
"apiUrl": "https://localhost:12121/",
"helperSwitch": 1,
"modSwitch": 1,
"modSwitch": 0,
"autoUpdate": 1,
"liqiVersion": "v0.11.36.w"
}
}
19 changes: 4 additions & 15 deletions liqi_config/settings.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,13 @@
"characters": {},
"nickname": "",
"starCharacter": [],
"hintSwitch": 0,
"hintSwitch": 1,
"title": 0,
"loadingBg": [],
"emojiSwitch": 0,
"views": [
[],
[],
[],
[],
[],
[],
[],
[],
[],
[]
],
"views": [[], [], [], [], [], [], [], [], [], []],
"view": 0,
"showServer": 0,
"showServer": 1,
"autoUpdate": 1,
"version": "v0.11.39.w"
}
}
2 changes: 1 addition & 1 deletion src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ impl Default for ModSettings {
characters: HashMap::new(),
nickname: String::new(),
star_character: Vec::new(),
hint_switch: 0,
hint_switch: 1,
title: 0,
loading_bg: Vec::new(),
emoji_switch: 0,
Expand Down

0 comments on commit a3a392a

Please sign in to comment.