From ae08ab316a180a38d7b958a1c223b7082d5d31db Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 27 Mar 2024 01:12:50 -0500 Subject: [PATCH 1/3] Update linux distribution script. --- distribute.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/distribute.sh b/distribute.sh index 3c574847..3da5c64a 100755 --- a/distribute.sh +++ b/distribute.sh @@ -15,6 +15,10 @@ cp -R "Adventures in Lestoria/assets/themes" release/assets cp -R "Adventures in Lestoria/assets/gamepack.pak" release/assets cp -R "Adventures in Lestoria/assets/*.ttf" release/assets cp -R "Adventures in Lestoria/controller_config" release +mkdir "release/Adventures in Lestoria" +mv release/bin/*.so "release/Adventures in Lestoria" +rm release/*.pdb -rm release/*.pdb \ No newline at end of file +touch release/runGame.sh +echo "bin/AdventuresInLestoria" > release/runGame.sh \ No newline at end of file From a3fe98f54233851499dd020c9173ce474665a764 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 27 Mar 2024 01:20:38 -0500 Subject: [PATCH 2/3] Stupid Linux. --- Adventures in Lestoria/Tutorial.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Adventures in Lestoria/Tutorial.h b/Adventures in Lestoria/Tutorial.h index 5213fc14..6a885d02 100644 --- a/Adventures in Lestoria/Tutorial.h +++ b/Adventures in Lestoria/Tutorial.h @@ -44,6 +44,7 @@ All rights reserved. #undef KEY_UP #undef KEY_RIGHT #undef KEY_DOWN +#undef KEY_MENU #include "AdventuresInLestoria.h" From d24df058b11517640144458f514ed709db3b8cfc Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 27 Mar 2024 01:22:37 -0500 Subject: [PATCH 3/3] Release script needs to deposit the static libs into the Adventures in Lestoria folder instead. --- distribute.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribute.sh b/distribute.sh index 3da5c64a..6f9ca992 100755 --- a/distribute.sh +++ b/distribute.sh @@ -16,7 +16,7 @@ cp -R "Adventures in Lestoria/assets/gamepack.pak" release/assets cp -R "Adventures in Lestoria/assets/*.ttf" release/assets cp -R "Adventures in Lestoria/controller_config" release mkdir "release/Adventures in Lestoria" -mv release/bin/*.so "release/Adventures in Lestoria" +cp "Adventures in Lestoria/Adventures in Lestoria/*.so" "release/Adventures in Lestoria" rm release/*.pdb