From b16bd97d3303035dd048afe882ad9a92cdccd1df Mon Sep 17 00:00:00 2001 From: Michael Yick Date: Fri, 11 Oct 2024 15:03:13 -0500 Subject: [PATCH 1/2] Debloated builds and include renconstruct An option in the options.rpy made it so renconstruct.toml wasn't shipped with the game AND the lack of an option made the game compile with the dist/ folder being exported, meaning that the game would ship with an android build unnecessarily. Fixes: #239 Fixes: #240 --- game/options.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/options.rpy b/game/options.rpy index 52e93df..e993b4f 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -235,7 +235,7 @@ init python: build.classify('game/mods_example/.**', None) build.classify('README.md', None) - build.classify('renconstruct.toml', None) + build.classify('dist/', None) build.classify('bundle.keystore', None) build.classify('android.keystore', None) build.classify('bundle.keystore.original', None) From 6377fffba02517b8203dc7f9a03e296b49a0436f Mon Sep 17 00:00:00 2001 From: Michael Yick Date: Fri, 11 Oct 2024 15:45:32 -0500 Subject: [PATCH 2/2] Remove renconstruct from build --- game/options.rpy | 1 + 1 file changed, 1 insertion(+) diff --git a/game/options.rpy b/game/options.rpy index e993b4f..cea8070 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -235,6 +235,7 @@ init python: build.classify('game/mods_example/.**', None) build.classify('README.md', None) + build.classify('renconstruct.toml', None) build.classify('dist/', None) build.classify('bundle.keystore', None) build.classify('android.keystore', None)