Skip to content

Commit 8dff570

Browse files
committed
Adjusted export_presets.cfg for 4.0
1 parent a2c72f6 commit 8dff570

File tree

1 file changed

+90
-45
lines changed

1 file changed

+90
-45
lines changed

export_presets.cfg

Lines changed: 90 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,145 @@
11
[preset.0]
22

3-
name="html5"
4-
platform="HTML5"
5-
runnable=true
6-
custom_features=""
7-
export_filter="all_resources"
8-
include_filter=""
9-
exclude_filter="build/*, build.sh, README.md, readme-assets/*"
10-
export_path="build/html5/index.html"
11-
script_export_mode=1
12-
script_encryption_key=""
13-
14-
[preset.0.options]
15-
16-
custom_template/debug=""
17-
custom_template/release=""
18-
variant/export_type=0
19-
vram_texture_compression/for_desktop=true
20-
vram_texture_compression/for_mobile=false
21-
html/export_icon=true
22-
html/custom_html_shell=""
23-
html/head_include=""
24-
html/canvas_resize_policy=2
25-
html/focus_canvas_on_start=true
26-
html/experimental_virtual_keyboard=false
27-
progressive_web_app/enabled=false
28-
progressive_web_app/offline_page=""
29-
progressive_web_app/display=1
30-
progressive_web_app/orientation=0
31-
progressive_web_app/icon_144x144=""
32-
progressive_web_app/icon_180x180=""
33-
progressive_web_app/icon_512x512=""
34-
progressive_web_app/background_color=Color( 0, 0, 0, 1 )
35-
36-
[preset.1]
37-
383
name="linux"
394
platform="Linux/X11"
405
runnable=true
6+
dedicated_server=false
417
custom_features=""
428
export_filter="all_resources"
439
include_filter=""
4410
exclude_filter="build/*, build.sh, README.md, readme-assets/*"
4511
export_path="build/linux/n64-style-demo.x86_64"
46-
script_export_mode=1
12+
encryption_include_filters=""
13+
encryption_exclude_filters=""
14+
encrypt_pck=false
15+
encrypt_directory=false
4716
script_encryption_key=""
4817

49-
[preset.1.options]
18+
[preset.0.options]
5019

5120
custom_template/debug=""
5221
custom_template/release=""
53-
binary_format/64_bits=true
22+
debug/export_console_script=1
5423
binary_format/embed_pck=false
5524
texture_format/bptc=false
5625
texture_format/s3tc=true
5726
texture_format/etc=false
5827
texture_format/etc2=false
59-
texture_format/no_bptc_fallbacks=true
28+
binary_format/architecture="x86_64"
29+
ssh_remote_deploy/enabled=false
30+
ssh_remote_deploy/host="user@host_ip"
31+
ssh_remote_deploy/port="22"
32+
ssh_remote_deploy/extra_args_ssh=""
33+
ssh_remote_deploy/extra_args_scp=""
34+
ssh_remote_deploy/run_script="#!/usr/bin/env bash
35+
export DISPLAY=:0
36+
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
37+
\"{temp_dir}/{exe_name}\" {cmd_args}"
38+
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
39+
kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\")
40+
rm -rf \"{temp_dir}\""
6041

61-
[preset.2]
42+
[preset.1]
6243

6344
name="windows"
6445
platform="Windows Desktop"
6546
runnable=true
47+
dedicated_server=false
6648
custom_features=""
6749
export_filter="all_resources"
6850
include_filter=""
6951
exclude_filter="build/*, build.sh, README.md, readme-assets/*"
7052
export_path="build/windows/n64-style-demo.exe"
71-
script_export_mode=1
53+
encryption_include_filters=""
54+
encryption_exclude_filters=""
55+
encrypt_pck=false
56+
encrypt_directory=false
7257
script_encryption_key=""
7358

74-
[preset.2.options]
59+
[preset.1.options]
7560

7661
custom_template/debug=""
7762
custom_template/release=""
78-
binary_format/64_bits=true
63+
debug/export_console_script=1
7964
binary_format/embed_pck=false
8065
texture_format/bptc=false
8166
texture_format/s3tc=true
8267
texture_format/etc=false
8368
texture_format/etc2=false
84-
texture_format/no_bptc_fallbacks=true
69+
binary_format/architecture="x86_64"
8570
codesign/enable=false
71+
codesign/identity_type=0
8672
codesign/identity=""
8773
codesign/password=""
8874
codesign/timestamp=true
8975
codesign/timestamp_server_url=""
9076
codesign/digest_algorithm=1
9177
codesign/description=""
92-
codesign/custom_options=PoolStringArray( )
78+
codesign/custom_options=PackedStringArray()
79+
application/modify_resources=true
9380
application/icon=""
81+
application/console_wrapper_icon=""
82+
application/icon_interpolation=4
9483
application/file_version=""
9584
application/product_version=""
9685
application/company_name=""
9786
application/product_name=""
9887
application/file_description=""
9988
application/copyright=""
10089
application/trademarks=""
90+
ssh_remote_deploy/enabled=false
91+
ssh_remote_deploy/host="user@host_ip"
92+
ssh_remote_deploy/port="22"
93+
ssh_remote_deploy/extra_args_ssh=""
94+
ssh_remote_deploy/extra_args_scp=""
95+
ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
96+
$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
97+
$trigger = New-ScheduledTaskTrigger -Once -At 00:00
98+
$settings = New-ScheduledTaskSettingsSet
99+
$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
100+
Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
101+
Start-ScheduledTask -TaskName godot_remote_debug
102+
while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
103+
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
104+
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
105+
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
106+
Remove-Item -Recurse -Force '{temp_dir}'"
107+
108+
[preset.2]
109+
110+
name="html5"
111+
platform="Web"
112+
runnable=true
113+
dedicated_server=false
114+
custom_features=""
115+
export_filter="all_resources"
116+
include_filter=""
117+
exclude_filter=""
118+
export_path="build/html5/index.html"
119+
encryption_include_filters=""
120+
encryption_exclude_filters=""
121+
encrypt_pck=false
122+
encrypt_directory=false
123+
script_encryption_key=""
124+
125+
[preset.2.options]
126+
127+
custom_template/debug=""
128+
custom_template/release=""
129+
variant/extensions_support=false
130+
vram_texture_compression/for_desktop=true
131+
vram_texture_compression/for_mobile=false
132+
html/export_icon=true
133+
html/custom_html_shell=""
134+
html/head_include=""
135+
html/canvas_resize_policy=2
136+
html/focus_canvas_on_start=true
137+
html/experimental_virtual_keyboard=false
138+
progressive_web_app/enabled=false
139+
progressive_web_app/offline_page=""
140+
progressive_web_app/display=1
141+
progressive_web_app/orientation=0
142+
progressive_web_app/icon_144x144=""
143+
progressive_web_app/icon_180x180=""
144+
progressive_web_app/icon_512x512=""
145+
progressive_web_app/background_color=Color(0, 0, 0, 1)

0 commit comments

Comments
 (0)