Skip to content

Commit 8f6447d

Browse files
committed
Fix main menu never appearing if we skipped welcome screen
Fixes #1266
1 parent 1d702a4 commit 8f6447d

3 files changed

Lines changed: 192 additions & 182 deletions

File tree

export_presets.cfg

Lines changed: 181 additions & 181 deletions
Original file line numberDiff line numberDiff line change
@@ -1,185 +1,5 @@
11
[preset.0]
22

3-
name="Linux"
4-
platform="Linux"
5-
runnable=false
6-
dedicated_server=false
7-
custom_features=""
8-
export_filter="all_resources"
9-
include_filter="*.lgd, *.bbcode"
10-
exclude_filter=""
11-
export_path="build/linux/learn_to_code.x86_64"
12-
patches=PackedStringArray()
13-
patch_delta_encoding=false
14-
patch_delta_compression_level_zstd=19
15-
patch_delta_min_reduction=0.1
16-
patch_delta_include_filters="*"
17-
patch_delta_exclude_filters=""
18-
encryption_include_filters=""
19-
encryption_exclude_filters=""
20-
seed=0
21-
encrypt_pck=false
22-
encrypt_directory=false
23-
script_export_mode=1
24-
25-
[preset.0.options]
26-
27-
custom_template/debug="templates/godot.linuxbsd.template_debug.x86_64"
28-
custom_template/release="templates/godot.linuxbsd.template_debug.x86_64"
29-
debug/export_console_wrapper=1
30-
binary_format/embed_pck=false
31-
texture_format/s3tc_bptc=true
32-
texture_format/etc2_astc=false
33-
shader_baker/enabled=false
34-
binary_format/architecture="x86_64"
35-
ssh_remote_deploy/enabled=false
36-
ssh_remote_deploy/host="user@host_ip"
37-
ssh_remote_deploy/port="22"
38-
ssh_remote_deploy/extra_args_ssh=""
39-
ssh_remote_deploy/extra_args_scp=""
40-
ssh_remote_deploy/run_script="#!/usr/bin/env bash
41-
export DISPLAY=:0
42-
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
43-
\"{temp_dir}/{exe_name}\" {cmd_args}"
44-
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
45-
pkill -x -f \"{temp_dir}/{exe_name} {cmd_args}\"
46-
rm -rf \"{temp_dir}\""
47-
texture_format/bptc=false
48-
texture_format/s3tc=true
49-
texture_format/etc=false
50-
texture_format/etc2=false
51-
texture_format/no_bptc_fallbacks=true
52-
53-
[preset.1]
54-
55-
name="Windows Desktop"
56-
platform="Windows Desktop"
57-
runnable=true
58-
dedicated_server=false
59-
custom_features=""
60-
export_filter="all_resources"
61-
include_filter="*.lgd, *.bbcode"
62-
exclude_filter=""
63-
export_path="build/windows/learn_to_code.exe"
64-
patches=PackedStringArray()
65-
patch_delta_encoding=false
66-
patch_delta_compression_level_zstd=19
67-
patch_delta_min_reduction=0.1
68-
patch_delta_include_filters="*"
69-
patch_delta_exclude_filters=""
70-
encryption_include_filters=""
71-
encryption_exclude_filters=""
72-
seed=0
73-
encrypt_pck=false
74-
encrypt_directory=false
75-
script_export_mode=1
76-
77-
[preset.1.options]
78-
79-
custom_template/debug="templates/godot.windows.template_debug.x86_64.exe"
80-
custom_template/release="templates/godot.windows.template_debug.x86_64.exe"
81-
debug/export_console_wrapper=1
82-
binary_format/embed_pck=false
83-
texture_format/s3tc_bptc=true
84-
texture_format/etc2_astc=false
85-
shader_baker/enabled=false
86-
binary_format/architecture="x86_64"
87-
codesign/enable=false
88-
codesign/timestamp=true
89-
codesign/timestamp_server_url=""
90-
codesign/digest_algorithm=1
91-
codesign/description=""
92-
codesign/custom_options=PackedStringArray()
93-
application/modify_resources=true
94-
application/icon=""
95-
application/console_wrapper_icon=""
96-
application/icon_interpolation=4
97-
application/file_version=""
98-
application/product_version=""
99-
application/company_name=""
100-
application/product_name=""
101-
application/file_description=""
102-
application/copyright=""
103-
application/trademarks=""
104-
application/export_angle=0
105-
application/export_d3d12=0
106-
application/d3d12_agility_sdk_multiarch=true
107-
ssh_remote_deploy/enabled=false
108-
ssh_remote_deploy/host="user@host_ip"
109-
ssh_remote_deploy/port="22"
110-
ssh_remote_deploy/extra_args_ssh=""
111-
ssh_remote_deploy/extra_args_scp=""
112-
ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
113-
$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
114-
$trigger = New-ScheduledTaskTrigger -Once -At 00:00
115-
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries
116-
$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
117-
Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
118-
Start-ScheduledTask -TaskName godot_remote_debug
119-
while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
120-
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
121-
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
122-
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
123-
Remove-Item -Recurse -Force '{temp_dir}'"
124-
binary_format/64_bits=true
125-
texture_format/bptc=false
126-
texture_format/s3tc=true
127-
texture_format/etc=false
128-
texture_format/etc2=false
129-
texture_format/no_bptc_fallbacks=true
130-
131-
[preset.2]
132-
133-
name="Web"
134-
platform="Web"
135-
runnable=true
136-
dedicated_server=false
137-
custom_features=""
138-
export_filter="all_resources"
139-
include_filter="*.lgd, *.bbcode"
140-
exclude_filter=""
141-
export_path="build/index.html"
142-
patches=PackedStringArray()
143-
patch_delta_encoding=false
144-
patch_delta_compression_level_zstd=19
145-
patch_delta_min_reduction=0.1
146-
patch_delta_include_filters="*"
147-
patch_delta_exclude_filters=""
148-
encryption_include_filters=""
149-
encryption_exclude_filters=""
150-
seed=0
151-
encrypt_pck=false
152-
encrypt_directory=false
153-
script_export_mode=2
154-
155-
[preset.2.options]
156-
157-
custom_template/debug="templates/godot.web.template_debug.wasm32.nothreads.zip"
158-
custom_template/release="templates/godot.web.template_debug.wasm32.nothreads.zip"
159-
variant/extensions_support=false
160-
variant/thread_support=false
161-
vram_texture_compression/for_desktop=true
162-
vram_texture_compression/for_mobile=false
163-
html/export_icon=true
164-
html/custom_html_shell="res://html_export/index_template.html"
165-
html/head_include=""
166-
html/canvas_resize_policy=2
167-
html/focus_canvas_on_start=true
168-
html/experimental_virtual_keyboard=false
169-
progressive_web_app/enabled=false
170-
progressive_web_app/ensure_cross_origin_isolation_headers=true
171-
progressive_web_app/offline_page=""
172-
progressive_web_app/display=1
173-
progressive_web_app/orientation=0
174-
progressive_web_app/icon_144x144=""
175-
progressive_web_app/icon_180x180=""
176-
progressive_web_app/icon_512x512=""
177-
progressive_web_app/background_color=Color(0, 0, 0, 1)
178-
threads/emscripten_pool_size=8
179-
threads/godot_pool_size=4
180-
181-
[preset.3]
182-
1833
name="macOS"
1844
platform="macOS"
1855
runnable=true
@@ -202,7 +22,7 @@ encrypt_pck=false
20222
encrypt_directory=false
20323
script_export_mode=2
20424

205-
[preset.3.options]
25+
[preset.0.options]
20626

20727
export/distribution_type=1
20828
binary_format/architecture="universal"
@@ -437,3 +257,183 @@ open \"{temp_dir}/{exe_name}.app\" --args {cmd_args}"
437257
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
438258
pkill -x -f \"{temp_dir}/{exe_name}.app/Contents/MacOS/{exe_name} {cmd_args}\"
439259
rm -rf \"{temp_dir}\""
260+
261+
[preset.1]
262+
263+
name="Windows Desktop"
264+
platform="Windows Desktop"
265+
runnable=true
266+
dedicated_server=false
267+
custom_features=""
268+
export_filter="all_resources"
269+
include_filter="*.lgd, *.bbcode"
270+
exclude_filter=""
271+
export_path="build/windows/learn_to_code.exe"
272+
patches=PackedStringArray()
273+
patch_delta_encoding=false
274+
patch_delta_compression_level_zstd=19
275+
patch_delta_min_reduction=0.1
276+
patch_delta_include_filters="*"
277+
patch_delta_exclude_filters=""
278+
encryption_include_filters=""
279+
encryption_exclude_filters=""
280+
seed=0
281+
encrypt_pck=false
282+
encrypt_directory=false
283+
script_export_mode=1
284+
285+
[preset.1.options]
286+
287+
custom_template/debug="templates/godot.windows.template_debug.x86_64.exe"
288+
custom_template/release="templates/godot.windows.template_debug.x86_64.exe"
289+
debug/export_console_wrapper=1
290+
binary_format/embed_pck=false
291+
texture_format/s3tc_bptc=true
292+
texture_format/etc2_astc=false
293+
shader_baker/enabled=false
294+
binary_format/architecture="x86_64"
295+
codesign/enable=false
296+
codesign/timestamp=true
297+
codesign/timestamp_server_url=""
298+
codesign/digest_algorithm=1
299+
codesign/description=""
300+
codesign/custom_options=PackedStringArray()
301+
application/modify_resources=true
302+
application/icon=""
303+
application/console_wrapper_icon=""
304+
application/icon_interpolation=4
305+
application/file_version=""
306+
application/product_version=""
307+
application/company_name=""
308+
application/product_name=""
309+
application/file_description=""
310+
application/copyright=""
311+
application/trademarks=""
312+
application/export_angle=0
313+
application/export_d3d12=0
314+
application/d3d12_agility_sdk_multiarch=true
315+
ssh_remote_deploy/enabled=false
316+
ssh_remote_deploy/host="user@host_ip"
317+
ssh_remote_deploy/port="22"
318+
ssh_remote_deploy/extra_args_ssh=""
319+
ssh_remote_deploy/extra_args_scp=""
320+
ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
321+
$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
322+
$trigger = New-ScheduledTaskTrigger -Once -At 00:00
323+
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries
324+
$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
325+
Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
326+
Start-ScheduledTask -TaskName godot_remote_debug
327+
while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
328+
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
329+
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
330+
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
331+
Remove-Item -Recurse -Force '{temp_dir}'"
332+
binary_format/64_bits=true
333+
texture_format/bptc=false
334+
texture_format/s3tc=true
335+
texture_format/etc=false
336+
texture_format/etc2=false
337+
texture_format/no_bptc_fallbacks=true
338+
339+
[preset.2]
340+
341+
name="Linux"
342+
platform="Linux"
343+
runnable=false
344+
dedicated_server=false
345+
custom_features=""
346+
export_filter="all_resources"
347+
include_filter="*.lgd, *.bbcode"
348+
exclude_filter=""
349+
export_path="build/linux/learn_to_code.x86_64"
350+
patches=PackedStringArray()
351+
patch_delta_encoding=false
352+
patch_delta_compression_level_zstd=19
353+
patch_delta_min_reduction=0.1
354+
patch_delta_include_filters="*"
355+
patch_delta_exclude_filters=""
356+
encryption_include_filters=""
357+
encryption_exclude_filters=""
358+
seed=0
359+
encrypt_pck=false
360+
encrypt_directory=false
361+
script_export_mode=1
362+
363+
[preset.2.options]
364+
365+
custom_template/debug="templates/godot.linuxbsd.template_debug.x86_64"
366+
custom_template/release="templates/godot.linuxbsd.template_debug.x86_64"
367+
debug/export_console_wrapper=1
368+
binary_format/embed_pck=false
369+
texture_format/s3tc_bptc=true
370+
texture_format/etc2_astc=false
371+
shader_baker/enabled=false
372+
binary_format/architecture="x86_64"
373+
ssh_remote_deploy/enabled=false
374+
ssh_remote_deploy/host="user@host_ip"
375+
ssh_remote_deploy/port="22"
376+
ssh_remote_deploy/extra_args_ssh=""
377+
ssh_remote_deploy/extra_args_scp=""
378+
ssh_remote_deploy/run_script="#!/usr/bin/env bash
379+
export DISPLAY=:0
380+
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
381+
\"{temp_dir}/{exe_name}\" {cmd_args}"
382+
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
383+
pkill -x -f \"{temp_dir}/{exe_name} {cmd_args}\"
384+
rm -rf \"{temp_dir}\""
385+
texture_format/bptc=false
386+
texture_format/s3tc=true
387+
texture_format/etc=false
388+
texture_format/etc2=false
389+
texture_format/no_bptc_fallbacks=true
390+
391+
[preset.3]
392+
393+
name="Web"
394+
platform="Web"
395+
runnable=true
396+
dedicated_server=false
397+
custom_features=""
398+
export_filter="all_resources"
399+
include_filter="*.lgd, *.bbcode"
400+
exclude_filter=""
401+
export_path="build/index.html"
402+
patches=PackedStringArray()
403+
patch_delta_encoding=false
404+
patch_delta_compression_level_zstd=19
405+
patch_delta_min_reduction=0.1
406+
patch_delta_include_filters="*"
407+
patch_delta_exclude_filters=""
408+
encryption_include_filters=""
409+
encryption_exclude_filters=""
410+
seed=0
411+
encrypt_pck=false
412+
encrypt_directory=false
413+
script_export_mode=2
414+
415+
[preset.3.options]
416+
417+
custom_template/debug="templates/godot.web.template_debug.wasm32.nothreads.zip"
418+
custom_template/release="templates/godot.web.template_debug.wasm32.nothreads.zip"
419+
variant/extensions_support=false
420+
variant/thread_support=false
421+
vram_texture_compression/for_desktop=true
422+
vram_texture_compression/for_mobile=false
423+
html/export_icon=true
424+
html/custom_html_shell="res://html_export/index_template.html"
425+
html/head_include=""
426+
html/canvas_resize_policy=2
427+
html/focus_canvas_on_start=true
428+
html/experimental_virtual_keyboard=false
429+
progressive_web_app/enabled=false
430+
progressive_web_app/ensure_cross_origin_isolation_headers=true
431+
progressive_web_app/offline_page=""
432+
progressive_web_app/display=1
433+
progressive_web_app/orientation=0
434+
progressive_web_app/icon_144x144=""
435+
progressive_web_app/icon_180x180=""
436+
progressive_web_app/icon_512x512=""
437+
progressive_web_app/background_color=Color(0, 0, 0, 1)
438+
threads/emscripten_pool_size=8
439+
threads/godot_pool_size=4

0 commit comments

Comments
 (0)