Skip to content

Add offline script verifying support using custom build of Godot #469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ExportGodot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- staging

env:
GODOT_VERSION: 3.4.1
GODOT_VERSION: 3.4.4
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
ITCHIO_USERNAME: ${{ secrets.ITCHIO_USERNAME }}
ITCHIO_GAME: ${{ secrets.ITCHIO_GAME }}
Expand All @@ -20,7 +20,7 @@ jobs:
export-linux:
name: Linux Export
runs-on: ubuntu-latest
container: barichello/godot-ci:3.4.1
container: barichello/godot-ci:3.4.4
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -46,7 +46,7 @@ jobs:
export-win:
name: Windows Export
runs-on: ubuntu-latest
container: barichello/godot-ci:3.4.1
container: barichello/godot-ci:3.4.4
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -72,7 +72,7 @@ jobs:
export-osx:
name: OSX Export
runs-on: ubuntu-latest
container: barichello/godot-ci:3.4.1
container: barichello/godot-ci:3.4.4
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -99,7 +99,7 @@ jobs:
export-web:
name: Web Export
runs-on: ubuntu-latest
container: barichello/godot-ci:3.4.1
container: barichello/godot-ci:3.4.4
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
164 changes: 0 additions & 164 deletions autoload/ConnectionChecker.gd

This file was deleted.

2 changes: 1 addition & 1 deletion autoload/GDScriptErrorDatabase.gd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
extends Node

const DATABASE_SOURCE := "res://lsp/error_database.csv"
const DATABASE_SOURCE := "res://script_checking/error_database.csv"

const CSV_DELIMITER := ","
const CSV_IDENTIFIER_FIELD := "error_code"
Expand Down
2 changes: 1 addition & 1 deletion autoload/MessageBus.gd
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func replace_script(script_file_name: String, script_text: String) -> String:
return lines.join("\n")


func print_lsp_error(error: LanguageServerError, script_file_name := "") -> void:
func print_script_error(error: ScriptError, script_file_name := "") -> void:
MessageBus.print_error(
error.message,
script_file_name,
Expand Down
16 changes: 8 additions & 8 deletions export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ script_encryption_key=""

[preset.0.options]

custom_template/debug=""
custom_template/release=""
custom_template/debug="templates/344custom-linux_x11_64_debug"
custom_template/release="templates/344custom-linux_x11_64_release"
binary_format/64_bits=true
binary_format/embed_pck=false
texture_format/bptc=false
Expand All @@ -38,8 +38,8 @@ script_encryption_key=""

[preset.1.options]

custom_template/debug=""
custom_template/release=""
custom_template/debug="templates/344custom-webassembly_debug.zip"
custom_template/release="templates/344custom-webassembly_release.zip"
variant/export_type=0
vram_texture_compression/for_desktop=true
vram_texture_compression/for_mobile=false
Expand Down Expand Up @@ -73,8 +73,8 @@ script_encryption_key=""

[preset.2.options]

custom_template/debug=""
custom_template/release=""
custom_template/debug="templates/344custom-windows_64_debug.exe"
custom_template/release="templates/344custom-windows_64_release.exe"
binary_format/64_bits=true
binary_format/embed_pck=false
texture_format/bptc=false
Expand Down Expand Up @@ -114,8 +114,8 @@ script_encryption_key=""

[preset.3.options]

custom_template/debug=""
custom_template/release=""
custom_template/debug="templates/344custom-osx.zip"
custom_template/release="templates/344custom-osx.zip"
application/name="Learn To Code With Godot"
application/info="Made with Godot Engine"
application/icon=""
Expand Down
11 changes: 0 additions & 11 deletions lsp/GDQuestCodes.gd

This file was deleted.

Loading