diff --git a/README.md b/README.md index e126044..f9a2f50 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,6 @@ Android port of OMORI RPG game * Get original assets from [OneLoader](https://github.com/rphsoftware/OneLoader) (`www/audio`, `www/image`, `www/movies`) * Put original assets to folders -* Run `python3 replace_special_symbols.py` * Install cordova * `cordova platform add android` * `debug-run.sh` or `build-apk.sh` diff --git a/build-apk.sh b/build-apk.sh index e8b4994..f158c5d 100755 --- a/build-apk.sh +++ b/build-apk.sh @@ -58,8 +58,8 @@ build_variant() { if [[ "$1" != "eng" ]]; then cp -rf www.$1/* www fi - python3 replace_special_symbols.py - python3 create_listing.py + python3 scripts/replace_special_symbols.py + python3 scripts/create_listing.py echo "* Building $1 version..." cordova build android --prod --release mv platforms/android/app/build/outputs/apk/release/app-release.apk output/app-release-$1.apk diff --git a/debug-run.sh b/debug-run.sh index 2ade6bf..9c8d10d 100755 --- a/debug-run.sh +++ b/debug-run.sh @@ -59,13 +59,13 @@ build_variant() { if [[ "$1" != "eng" ]]; then cp -rf www.$1/* www fi - python3 replace_special_symbols.py - python3 create_listing.py + python3 scripts/replace_special_symbols.py + python3 scripts/create_listing.py echo "* Building $1 version..." cordova build android } -VARIANT="eng" # eng/rus/br +VARIANT="br" # eng/rus/br build_variant $VARIANT diff --git a/create_listing.py b/scripts/create_listing.py similarity index 100% rename from create_listing.py rename to scripts/create_listing.py diff --git a/generate_icons.py b/scripts/generate_icons.py similarity index 100% rename from generate_icons.py rename to scripts/generate_icons.py diff --git a/replace_special_symbols.py b/scripts/replace_special_symbols.py similarity index 100% rename from replace_special_symbols.py rename to scripts/replace_special_symbols.py