export_presets.cfg 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. [preset.0]
  2. name="Nucleagacy"
  3. platform="Windows Desktop"
  4. runnable=true
  5. dedicated_server=false
  6. custom_features=""
  7. export_filter="all_resources"
  8. include_filter=""
  9. exclude_filter=""
  10. export_path="../TestBuilds/Nucleagacy_alpha2_dev.exe"
  11. encryption_include_filters=""
  12. encryption_exclude_filters=""
  13. encrypt_pck=false
  14. encrypt_directory=false
  15. script_encryption_key=""
  16. [preset.0.options]
  17. custom_template/debug=""
  18. custom_template/release=""
  19. debug/export_console_script=1
  20. binary_format/embed_pck=true
  21. texture_format/bptc=false
  22. texture_format/s3tc=true
  23. texture_format/etc=false
  24. texture_format/etc2=false
  25. texture_format/no_bptc_fallbacks=true
  26. binary_format/architecture="x86_64"
  27. codesign/enable=false
  28. codesign/identity_type=0
  29. codesign/identity=""
  30. codesign/password=""
  31. codesign/timestamp=true
  32. codesign/timestamp_server_url=""
  33. codesign/digest_algorithm=1
  34. codesign/description=""
  35. codesign/custom_options=PackedStringArray()
  36. application/modify_resources=true
  37. application/icon=""
  38. application/console_wrapper_icon=""
  39. application/icon_interpolation=4
  40. application/file_version=""
  41. application/product_version=""
  42. application/company_name=""
  43. application/product_name="Nucleagacy"
  44. application/file_description=""
  45. application/copyright=""
  46. application/trademarks=""
  47. ssh_remote_deploy/enabled=false
  48. ssh_remote_deploy/host="user@host_ip"
  49. ssh_remote_deploy/port="22"
  50. ssh_remote_deploy/extra_args_ssh=""
  51. ssh_remote_deploy/extra_args_scp=""
  52. ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
  53. $action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
  54. $trigger = New-ScheduledTaskTrigger -Once -At 00:00
  55. $settings = New-ScheduledTaskSettingsSet
  56. $task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
  57. Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
  58. Start-ScheduledTask -TaskName godot_remote_debug
  59. while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
  60. Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
  61. ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
  62. Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
  63. Remove-Item -Recurse -Force '{temp_dir}'"
  64. [preset.1]
  65. name="Nucleagacy"
  66. platform="Linux/X11"
  67. runnable=true
  68. dedicated_server=false
  69. custom_features=""
  70. export_filter="all_resources"
  71. include_filter=""
  72. exclude_filter=""
  73. export_path="../TestBuilds/Nucleagacy_alpha2_dev.x86_32.x86_64"
  74. encryption_include_filters=""
  75. encryption_exclude_filters=""
  76. encrypt_pck=false
  77. encrypt_directory=false
  78. script_encryption_key=""
  79. [preset.1.options]
  80. custom_template/debug=""
  81. custom_template/release=""
  82. debug/export_console_script=1
  83. binary_format/embed_pck=true
  84. texture_format/bptc=false
  85. texture_format/s3tc=true
  86. texture_format/etc=false
  87. texture_format/etc2=false
  88. texture_format/no_bptc_fallbacks=true
  89. binary_format/architecture="x86_64"
  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="#!/usr/bin/env bash
  96. export DISPLAY=:0
  97. unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
  98. \"{temp_dir}/{exe_name}\" {cmd_args}"
  99. ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
  100. kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\")
  101. rm -rf \"{temp_dir}\""