-
Notifications
You must be signed in to change notification settings - Fork 44
refactor: ♻️ 4.1 support #508
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
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
8b91d99
Remove type hint for for...in variable
Alexejhero 4200f7b
Remove another typed for...in variable
Alexejhero aff755a
Fix production_no_workshop.tres format
Alexejhero dbecbe4
Fix production_workshop.tres format
Alexejhero 2596a70
Use custom function instead of type_string
Alexejhero 81a6bf2
Merge branch '4.x' into 4.x
Alexejhero eb69985
Merge branch '4.x' into 4.x
KANAjetzt 8db5051
keep type in `load_mods()`
KANAjetzt be75360
refactor: :recycle: `fix_method_super()` use `erase` `insert` instead…
KANAjetzt 186b3c5
refactor: :recycle: remove inline type in for
KANAjetzt 1751d69
style: :fire: remove white space
KANAjetzt 7e3b543
refactor: :recycle: engine version check
KANAjetzt 3e0b834
fix: :pencil2: fix typo
KANAjetzt ab6e522
refactor: :recycle: engine_version as int
KANAjetzt 5c74a36
refactor: :recycle: use version hex and link to PR
KANAjetzt 21bbb91
fix: :bug: fixed type
KANAjetzt e76336d
refactor: :recycle: use RegEx.sub() and add back text
KANAjetzt 5c69c8a
Merge branch '4.x' into refactor_4.1_support
KANAjetzt 49ef9ce
Update addons/mod_loader/internal/mod_hook_preprocessor.gd
KANAjetzt 7639bb3
Update addons/mod_loader/internal/mod_hook_preprocessor.gd
KANAjetzt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
addons/mod_loader/options/profiles/production_no_workshop.tres
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,19 @@ | ||
| [gd_resource type="Resource" script_class="ModLoaderOptionsProfile" load_steps=2 format=4 uid="uid://bodsw0jyh6rn5"] | ||
| [gd_resource type="Resource" script_class="ModLoaderOptionsProfile" load_steps=2 format=3 uid="uid://bodsw0jyh6rn5"] | ||
|
|
||
| [ext_resource type="Script" path="res://addons/mod_loader/resources/options_profile.gd" id="1"] | ||
|
|
||
| [resource] | ||
| script = ExtResource("1") | ||
| enable_mods = true | ||
| locked_mods = Array[String]([]) | ||
| locked_mods = [] | ||
| log_level = 2 | ||
| disabled_mods = Array[String]([]) | ||
| disabled_mods = [] | ||
| allow_modloader_autoloads_anywhere = false | ||
| steam_id = 0 | ||
| override_path_to_mods = "" | ||
| override_path_to_configs = "" | ||
| override_path_to_workshop = "" | ||
| ignore_deprecated_errors = false | ||
| ignored_mod_names_in_log = Array[String]([]) | ||
| ignored_mod_names_in_log = [] | ||
| load_from_steam_workshop = false | ||
| load_from_local = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,19 @@ | ||
| [gd_resource type="Resource" script_class="ModLoaderOptionsProfile" load_steps=2 format=4 uid="uid://cg0vv5k4o71rv"] | ||
| [gd_resource type="Resource" script_class="ModLoaderOptionsProfile" load_steps=2 format=3 uid="uid://cg0vv5k4o71rv"] | ||
|
|
||
| [ext_resource type="Script" path="res://addons/mod_loader/resources/options_profile.gd" id="1"] | ||
|
|
||
| [resource] | ||
| script = ExtResource("1") | ||
| enable_mods = true | ||
| locked_mods = Array[String]([]) | ||
| locked_mods = [] | ||
| log_level = 2 | ||
| disabled_mods = Array[String]([]) | ||
| disabled_mods = [] | ||
| allow_modloader_autoloads_anywhere = false | ||
| steam_id = 0 | ||
| override_path_to_mods = "" | ||
| override_path_to_configs = "" | ||
| override_path_to_workshop = "" | ||
| ignore_deprecated_errors = false | ||
| ignored_mod_names_in_log = Array[String]([]) | ||
| ignored_mod_names_in_log = [] | ||
| load_from_steam_workshop = true | ||
| load_from_local = true |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.