5.0.0 Release version support

This commit is contained in:
xeon 2024-08-27 00:25:36 +03:00
parent 9c4489fa17
commit 92c687cae2
4 changed files with 57980 additions and 57912 deletions

View file

@ -1,5 +1,5 @@
# MualaniImpact # MualaniImpact
### Current game version: 4.8.50 ### Current game version: 5.0.0
![screenshot](https://git.xeondev.com/ReversedRooms/MualaniImpact/raw/branch/master/screenshot.png) ![screenshot](https://git.xeondev.com/ReversedRooms/MualaniImpact/raw/branch/master/screenshot.png)
@ -67,11 +67,11 @@ inner_ip = "127.0.0.1:22002"
The data files: TSV tables (`data/txt`) and JSON configs (`data/json`) are included in this repository. Keep in mind that you need to have the `data` subdirectory in current working directory. The data files: TSV tables (`data/txt`) and JSON configs (`data/json`) are included in this repository. Keep in mind that you need to have the `data` subdirectory in current working directory.
#### Connecting #### Connecting
You have to download client of **current supported game version** (at this moment it's 4.8.50, you can [get it here](https://git.xeondev.com/xeon/3/raw/branch/3/hk4e_oscbwin4.8.50_reversedrooms.torrent)), and apply the [encryption patch](https://git.xeondev.com/reversedrooms/hk4e-patch/releases). You have to download client of **current supported game version** (at this moment it's 5.0.0, you can [get it here](https://git.xeondev.com/YYHEggEgg/GI-Download-Library/src/branch/main/GenshinImpact/Client/5.0.0.md)), and apply the [encryption patch](https://git.xeondev.com/reversedrooms/hk4e-patch/releases).
##### NOTE: once you got all services up and running, you have to create game account.<br>By default, you can do so at http://127.0.0.1:21000/account/register ##### NOTE: once you got all services up and running, you have to create game account.<br>By default, you can do so at http://127.0.0.1:21000/account/register
### Troubleshooting ### Troubleshooting
[Visit our discord](https://discord.gg/reversedrooms) if you have any questions/issues [Visit our discord](https://discord.gg/reversedrooms) if you have any questions/issues
### Support ### Support
If you want to support this project, feel free to [send a tip via boosty](https://boosty.to/xeondev/donate) If you want to support this project, feel free to [send a tip via boosty](https://boosty.to/xeondev/donate)

View file

@ -28,7 +28,7 @@ CREATE TABLE t_client_config (
); );
INSERT INTO t_client_config VALUES INSERT INTO t_client_config VALUES
(1, 'OSCBWin4.8.50', '', '', '{\"codeSwitch\":[4334],\"sdkenv\":2,\"checkdevice\":false,\"loadPatch\":false,\"showexception\":false,\"regionConfig\":\"pm|fk|add\",\"downloadMode\":0}', ''); (1, 'OSRELWin5.0.0', '', '', '{\"codeSwitch\":[4334],\"sdkenv\":2,\"checkdevice\":false,\"loadPatch\":false,\"showexception\":false,\"regionConfig\":\"pm|fk|add\",\"downloadMode\":0}', '');
CREATE TABLE t_region_config ( CREATE TABLE t_region_config (
id bigint primary key, id bigint primary key,
@ -54,7 +54,7 @@ CREATE TABLE t_bind_config (
); );
INSERT INTO t_bind_config VALUES INSERT INTO t_bind_config VALUES
(1, 'OSCBWin4.8.50', 'dev_mualani', 1); (1, 'OSRELWin5.0.0', 'dev_mualani', 1);
CREATE TABLE t_channel_id_config ( CREATE TABLE t_channel_id_config (
id bigint primary key, id bigint primary key,
@ -73,7 +73,7 @@ CREATE TABLE t_client_region_config (
); );
INSERT INTO t_client_region_config VALUES INSERT INTO t_client_region_config VALUES
(1, 'OSCBWin4.8.50', 'dev_mualani', ''); (1, 'OSRELWin5.0.0', 'dev_mualani', '');
CREATE TABLE t_rsakey_config ( CREATE TABLE t_rsakey_config (
id bigint primary key, id bigint primary key,

View file

@ -14,7 +14,7 @@ pub fn main() {
]; ];
for proto_file in &proto_files { for proto_file in &proto_files {
if Path::new(proto_file).exists() { if Path::new(&format!("{proto_file}.proto")).exists() {
println!("cargo:rerun-if-changed={proto_file}.proto"); println!("cargo:rerun-if-changed={proto_file}.proto");
prost_build::Config::new() prost_build::Config::new()

File diff suppressed because it is too large Load diff