From 7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3 Mon Sep 17 00:00:00 2001
From: Henrique Alves <henriquelalves@gmail.com>
Date: Sun, 17 Jul 2022 15:21:20 -0300
Subject: exporter

---
 Assets/Environment/turn-icon.ico | Bin 0 -> 16958 bytes
 export_presets.cfg               |  66 +++++++++++++++++++++++++++++++++++++++
 makefile                         |  16 +++++++++-
 3 files changed, 81 insertions(+), 1 deletion(-)
 create mode 100644 Assets/Environment/turn-icon.ico

diff --git a/Assets/Environment/turn-icon.ico b/Assets/Environment/turn-icon.ico
new file mode 100644
index 0000000..8aafa62
Binary files /dev/null and b/Assets/Environment/turn-icon.ico differ
diff --git a/export_presets.cfg b/export_presets.cfg
index 851b336..4fbb154 100644
--- a/export_presets.cfg
+++ b/export_presets.cfg
@@ -32,3 +32,69 @@ progressive_web_app/icon_144x144=""
 progressive_web_app/icon_180x180=""
 progressive_web_app/icon_512x512=""
 progressive_web_app/background_color=Color( 0, 0, 0, 1 )
+
+[preset.1]
+
+name="WindowsDesktop"
+platform="Windows Desktop"
+runnable=true
+custom_features=""
+export_filter="all_resources"
+include_filter=""
+exclude_filter=""
+export_path=""
+script_export_mode=1
+script_encryption_key=""
+
+[preset.1.options]
+
+custom_template/debug=""
+custom_template/release=""
+binary_format/64_bits=true
+binary_format/embed_pck=false
+texture_format/bptc=false
+texture_format/s3tc=true
+texture_format/etc=false
+texture_format/etc2=false
+texture_format/no_bptc_fallbacks=true
+codesign/enable=false
+codesign/identity=""
+codesign/password=""
+codesign/timestamp=true
+codesign/timestamp_server_url=""
+codesign/digest_algorithm=1
+codesign/description=""
+codesign/custom_options=PoolStringArray(  )
+application/icon="res://Assets/Environment/turn-icon.ico"
+application/file_version=""
+application/product_version=""
+application/company_name=""
+application/product_name="Dungeons and Dice"
+application/file_description="Very good game plz play"
+application/copyright=""
+application/trademarks=""
+
+[preset.2]
+
+name="LinuxX11"
+platform="Linux/X11"
+runnable=true
+custom_features=""
+export_filter="all_resources"
+include_filter=""
+exclude_filter=""
+export_path=""
+script_export_mode=1
+script_encryption_key=""
+
+[preset.2.options]
+
+custom_template/debug=""
+custom_template/release=""
+binary_format/64_bits=true
+binary_format/embed_pck=false
+texture_format/bptc=false
+texture_format/s3tc=true
+texture_format/etc=false
+texture_format/etc2=false
+texture_format/no_bptc_fallbacks=true
diff --git a/makefile b/makefile
index 5eb2d00..30a7165 100644
--- a/makefile
+++ b/makefile
@@ -4,6 +4,20 @@ deploy:
 	godot --export "HTML5" ./build/build.html
 	mv ./build/build.html ./build/index.html
 	zip -r -j build.zip ./build/*
-	butler push ./build.zip perons/gmtk2022:html5
+	butler push ./build.zip perons/dungeonsanddice:html5
+	rm -rf ./build/
+	rm ./build.zip
+
+	mkdir -p ./build/
+	godot --export "WindowsDesktop" ./build/DungeonsAndDice.exe
+	zip -r -j build.zip ./build/*
+	butler push ./build.zip perons/dungeonsanddice:windows
+	rm -rf ./build/
+	rm ./build.zip
+
+	mkdir -p ./build/
+	godot --export "LinuxX11" ./build/DungeonsAndDice
+	zip -r -j build.zip ./build/*
+	butler push ./build.zip perons/dungeonsanddice:linux
 	rm -rf ./build/
 	rm ./build.zip
-- 
cgit v1.2.3