Rename archives
This commit is contained in:
@@ -12,12 +12,14 @@ You'll also need UABE 2.2 stable or newer (or 2.2 beta4 with [this patch applied
|
||||
Then simply run this:
|
||||
|
||||
```
|
||||
cargo run <chapter> <platform>
|
||||
cargo run <chapter> <platform> <system>
|
||||
```
|
||||
|
||||
`<chapter>` is simply `onikakushi`, `watanagashi` and so on.
|
||||
|
||||
`<platform>` is `win` or `mac`. For tatarigoroshi platform can also be `win-mg` and `mac-mg`.
|
||||
`<platform>` is `steam`, `mg` or `gog`.
|
||||
|
||||
`<system>` is `win` or `unix`.
|
||||
|
||||
Documentation for the underlying python scripts can be found [here](https://github.com/07th-mod/higurashi-dev-guides/wiki/UI-editing-scripts).
|
||||
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
cargo run onikakushi steam win
|
||||
cargo run onikakushi steam mac
|
||||
cargo run onikakushi steam unix
|
||||
cargo run watanagashi steam win
|
||||
cargo run watanagashi steam mac
|
||||
cargo run watanagashi steam unix
|
||||
cargo run tatarigoroshi steam win
|
||||
cargo run tatarigoroshi steam mac
|
||||
cargo run tatarigoroshi steam unix
|
||||
cargo run tatarigoroshi mg win
|
||||
cargo run tatarigoroshi mg mac
|
||||
cargo run tatarigoroshi mg unix
|
||||
cargo run himatsubushi steam win
|
||||
cargo run himatsubushi steam mac
|
||||
cargo run himatsubushi steam unix
|
||||
cargo run meakashi steam win
|
||||
cargo run meakashi steam mac
|
||||
cargo run meakashi steam unix
|
||||
cargo run meakashi gog win
|
||||
cargo run tsumihoroboshi steam win
|
||||
cargo run tsumihoroboshi steam mac
|
||||
cargo run tsumihoroboshi steam unix
|
||||
|
||||
@@ -33,7 +33,7 @@ fn main() {
|
||||
let directory_assets = "output/assets";
|
||||
let directory_data = format!("output/HigurashiEp{:02}_Data", arc_number);
|
||||
let emip = format!("{}/{}_{}_{}.emip", &directory_data, &chapter, &platform, &system);
|
||||
let archive = format!("{}_{}_{}.7z", &chapter.to_title_case(), &platform, &system);
|
||||
let archive = format!("{}-UI_{}_{}.7z", &chapter.to_title_case(), &platform, &system);
|
||||
|
||||
if Path::new(&emip).exists() {
|
||||
fs::remove_file(&emip).expect("Failed to remove file");
|
||||
|
||||
28
versions.sh
28
versions.sh
@@ -1,30 +1,30 @@
|
||||
echo -n "Onikakushi win: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/onikakushi/steam/win
|
||||
echo -n "Onikakushi mac: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/onikakushi/steam/mac
|
||||
echo -n "Onikakushi unix: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/onikakushi/steam/unix
|
||||
echo -n "Watanagashi win: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/watanagashi/steam/win
|
||||
echo -n "Watanagashi mac: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/watanagashi/steam/mac
|
||||
echo -n "Watanagashi unix: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/watanagashi/steam/unix
|
||||
echo -n "Tatarigoroshi win: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tatarigoroshi/steam/win
|
||||
echo -n "Tatarigoroshi mac: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tatarigoroshi/steam/mac
|
||||
echo -n "Tatarigoroshi unix: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tatarigoroshi/steam/unix
|
||||
echo -n "Tatarigoroshi win MG: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tatarigoroshi/mg/win
|
||||
echo -n "Tatarigoroshi mac MG: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tatarigoroshi/mg/mac
|
||||
echo -n "Tatarigoroshi unix MG: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tatarigoroshi/mg/unix
|
||||
echo -n "Himatsubushi win: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/himatsubushi/steam/win
|
||||
echo -n "Himatsubushi mac: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/himatsubushi/steam/mac
|
||||
echo -n "Himatsubushi unix: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/himatsubushi/steam/unix
|
||||
echo -n "Meakashi win: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/meakashi/steam/win
|
||||
echo -n "Meakashi mac: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/meakashi/steam/mac
|
||||
echo -n "Meakashi unix: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/meakashi/steam/unix
|
||||
echo -n "Meakashi win GOG: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/meakashi/gog/win
|
||||
echo -n "Tsumihoroboshi win: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tsumihoroboshi/steam/win
|
||||
echo -n "Tsumihoroboshi mac: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tsumihoroboshi/steam/mac
|
||||
echo -n "Tsumihoroboshi unix: "
|
||||
py ./scripts/AssetVersion.py ./assets/vanilla/tsumihoroboshi/steam/unix
|
||||
|
||||
Reference in New Issue
Block a user