From aa4ab4ec7f516910f073667c1c6db87f693bbb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Vieira=20Porto?= Date: Sun, 20 Jan 2019 23:04:19 -0200 Subject: [PATCH 1/3] Adds .gitignore for Adventure Game Studio Projects --- AGS.gitignore | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 AGS.gitignore diff --git a/AGS.gitignore b/AGS.gitignore new file mode 100644 index 00000000..c1eec3bb --- /dev/null +++ b/AGS.gitignore @@ -0,0 +1,26 @@ +# Adventure Game Studio git ignore +# -------------------------------- +# Built things +_Debug/ +_Release/ +Compiled/ +*.exe + +#Audio Cache can be rebuilt from sources +AudioCache/ + +# User +_OpenInEditor.lock +Game.agf.user + +# backups +Game.agf.bak +backup_acsprset.spr + +# memory dumps +*.dmp + +# temporary files +~aclzw.tmp +game28.dta +warnings.log From 1e4fbb60d1bda7dbd8f0054ab9235fbe34f3ad71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Vieira=20Porto?= Date: Mon, 21 Jan 2019 07:18:59 -0200 Subject: [PATCH 2/3] Removed _Release folder and added more things - Removed non-standard `_Release` folder; - Added per room settings for next ags `*.crm.user`; - Reorganized the lines in some categories with more comments. --- AGS.gitignore | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/AGS.gitignore b/AGS.gitignore index c1eec3bb..e381672e 100644 --- a/AGS.gitignore +++ b/AGS.gitignore @@ -1,26 +1,34 @@ # Adventure Game Studio git ignore # -------------------------------- + # Built things _Debug/ -_Release/ Compiled/ -*.exe -#Audio Cache can be rebuilt from sources +# AudioCache can be rebuilt from sources AudioCache/ -# User +# Lockfile _OpenInEditor.lock -Game.agf.user -# backups +# User settings +Game.agf.user +*.crm.user + +# Backups Game.agf.bak backup_acsprset.spr -# memory dumps +# Memory dumps *.dmp -# temporary files +# Temporary files +# temporarily created during sprite or room background compression ~aclzw.tmp +# temporary, main game data, before getting packed into exe game28.dta +# temporary build of the game before being moved to Compiled/ folder +*.exe + +# Log files warnings.log From 4d956021fafc69bda558a7ed5c8b8809ac2d7e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Vieira=20Porto?= Date: Sun, 17 Feb 2019 12:50:49 -0300 Subject: [PATCH 3/3] renamed to AdventureGameStudio.gitignore and removed header --- AGS.gitignore => AdventureGameStudio.gitignore | 3 --- 1 file changed, 3 deletions(-) rename AGS.gitignore => AdventureGameStudio.gitignore (87%) diff --git a/AGS.gitignore b/AdventureGameStudio.gitignore similarity index 87% rename from AGS.gitignore rename to AdventureGameStudio.gitignore index e381672e..27a089f4 100644 --- a/AGS.gitignore +++ b/AdventureGameStudio.gitignore @@ -1,6 +1,3 @@ -# Adventure Game Studio git ignore -# -------------------------------- - # Built things _Debug/ Compiled/