From 82f2cae0f64de7c3bef2c438a18c8f4a9675e08b Mon Sep 17 00:00:00 2001 From: Sara Date: Mon, 23 Jun 2025 21:13:38 +0200 Subject: [PATCH 1/3] fix: added .cache and build artifacts to gitignore --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index b8680775..3035daa0 100644 --- a/.gitignore +++ b/.gitignore @@ -6,9 +6,15 @@ config.log .sconf_temp +# build artifacts +*.o +compile_commands.json engine/.github project/.godot build/PROJECT.pck build/PROJECT.x86_64 build/PROJECT.exe build.zip + +# general-purpose cache folder (used by e.g clangd) +.cache -- 2.47.2 From 7a771b99a815f7ae9d15a0d33bcae358738a94b1 Mon Sep 17 00:00:00 2001 From: Sara Date: Wed, 3 Sep 2025 21:35:48 +0200 Subject: [PATCH 2/3] fix: added '-i' flag to the `sed ./justfile` --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index ad0c5d09..771b7564 100644 --- a/justfile +++ b/justfile @@ -37,7 +37,7 @@ release-windows: build initialize-template projectname: # Initializing Template {{projectname}} sed -i -e "s/PROJECT/{{projectname}}/g" ./modules/PROJECT/register_types.h ./modules/PROJECT/register_types.cpp ./project/project.godot ./project/export_presets.cfg .gitignore - sed "s/change_me/{{projectname}}/" ./justfile + sed -i "s/mygame/{{projectname}}/" ./justfile mv ./modules/PROJECT ./modules/{{projectname}} # Done Initializing, you will still have to update BUILD_NAME in your justfile -- 2.47.2 From a8288441a5a8c677117963c8fd99212aba23a484 Mon Sep 17 00:00:00 2001 From: Sara Date: Wed, 3 Sep 2025 21:38:55 +0200 Subject: [PATCH 3/3] fix: forgor to revert change_me from test data --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 771b7564..3f26fb2c 100644 --- a/justfile +++ b/justfile @@ -37,7 +37,7 @@ release-windows: build initialize-template projectname: # Initializing Template {{projectname}} sed -i -e "s/PROJECT/{{projectname}}/g" ./modules/PROJECT/register_types.h ./modules/PROJECT/register_types.cpp ./project/project.godot ./project/export_presets.cfg .gitignore - sed -i "s/mygame/{{projectname}}/" ./justfile + sed -i "s/change_me/{{projectname}}/" ./justfile mv ./modules/PROJECT ./modules/{{projectname}} # Done Initializing, you will still have to update BUILD_NAME in your justfile -- 2.47.2