From 0bddbb3863ea89d477cb386e2ff12c63950427da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1chym=20Tou=C5=A1ek?= Date: Fri, 19 Apr 2019 06:53:44 +0200 Subject: [PATCH] Rename archives --- README.md | 6 ++++-- compileall.sh | 14 +++++++------- src/main.rs | 2 +- versions.sh | 28 ++++++++++++++-------------- 4 files changed, 26 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index d61002d..555f163 100644 --- a/README.md +++ b/README.md @@ -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 +cargo run ``` `` is simply `onikakushi`, `watanagashi` and so on. -`` is `win` or `mac`. For tatarigoroshi platform can also be `win-mg` and `mac-mg`. +`` is `steam`, `mg` or `gog`. + +`` 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). diff --git a/compileall.sh b/compileall.sh index 72bbffb..63e0f5d 100644 --- a/compileall.sh +++ b/compileall.sh @@ -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 diff --git a/src/main.rs b/src/main.rs index cfa9088..d8a5d59 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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"); diff --git a/versions.sh b/versions.sh index 2d0eb94..b7ee2e3 100644 --- a/versions.sh +++ b/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