Skip to content

docs: update wiki URLs in code #413

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 1 commit into from
Sep 17, 2024
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
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ ModLoaderLog.info(

## Documentation

The documentation for this project is located in the repository's wiki. Please make sure to update the relevant documentation pages when making changes to the code. If you're not sure what needs to be updated, please ask in your pull request or issue.
*Note that you will mostly edit the [Upcoming Features](https://github.com/GodotModding/godot-mod-loader/wiki/Upcoming-Features) page, where all changes to the dev branch are documented until they become part of the next major update.*
The documentation for this project is located at [GMLUncyclo](https://github.com/GodotModding/gmlwiki). Please make sure to update the relevant documentation pages when making changes to the code. If you're not sure what needs to be updated, please ask in your pull request or issue.
*Note that you will mostly edit the [Upcoming Features](https://wiki.godotmodding.com/#/misc/upcoming_features) page, where all changes to the dev branch are documented until they become part of the next major update.*

## Communicating over Discord
We use Discord for communication and collaboration. You can join our Discord server at [discord.godotmodding.com](https://discord.godotmodding.com). Please use appropriate channels for your discussions and keep conversations respectful and on-topic.
Expand All @@ -61,4 +61,4 @@ All contributions must be licensed under the same license as the project. By con

## Thank you!

We appreciate your contributions and look forward to working with you.
We appreciate your contributions and look forward to working with you.
2 changes: 1 addition & 1 deletion addons/mod_loader/internal/file.gd
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static func _get_json_string_as_dict(string: String) -> Dictionary:

# Load the mod ZIP from the provided directory
static func load_zips_in_folder(folder_path: String) -> Dictionary:
var URL_MOD_STRUCTURE_DOCS := "https://github.com/GodotModding/godot-mod-loader/wiki/Mod-Structure"
var URL_MOD_STRUCTURE_DOCS := "https://wiki.godotmodding.com/#/guides/modding/mod_structure"
var zip_data := {}

var mod_dir := Directory.new()
Expand Down
2 changes: 1 addition & 1 deletion addons/mod_loader/resources/mod_manifest.gd
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func _generate_default_config_from_schema(property: Dictionary, current_prop :=

# Handles deprecation of the single string value in the compatible_mod_loader_version.
func _handle_compatible_mod_loader_version(mod_id: String, godot_details: Dictionary) -> Array:
var link_manifest_docs := "https://github.com/GodotModding/godot-mod-loader/wiki/Mod-Files#manifestjson"
var link_manifest_docs := "https://wiki.godotmodding.com/#/guides/modding/mod_files?id=manifestjson"
var array_value := ModLoaderUtils.get_array_from_dict(godot_details, "compatible_mod_loader_version")

# If there are array values
Expand Down