This repository holds all the data used to generate a manifest of gw2load compatible addons for the GW2 Addon Manager. The manifest is generated using gw2load/generate-manifest-action and available at https://gw2load.github.io/manifest/manifest.json.
If your addon is compatible with gw2load (or ArcDPS) and you would like it to be available through the Addon Manager, follow these steps:
-
Fork this repository.
-
Add a new
.tomlfile in the addons directory using this schema:# General information about your addon [package] id = "<unique id of your addon>" name = "<name of your addon>" description = "<description of your addon>" tooltip = "<tooltip of your addon>" website = "<website of your addon>" developer = "<developer of your addon>" issue_tracker = "<optional issue tracker of your addon>" vcs = "<optional source repository url of your addon>" # Dependency information dependencies = ["<optional array of required dependency addons>"] optional_dependencies = ["<optional array of optional dependency addons>"] conflicts = ["<optional array of known addon conflicts>"] # Hosting configuration used to automatically update your addon # Choose either `host.github` or `host.standalone` [host.github] url = "<org/repo>" [host.standalone] url = "<url of your addon dll>" version_url = "<url returning your current version>" prerelease_url = "<optional url of your prerelease addon dll>" prerelease_version_url = "<optional url returning your current prerelease version>" # Installation mode [installation] mode = "gw2load" # for addons natively loaded by gw2load mode = "arc" # for addons loaded through ArcDPS
-
Submit a Pull Request.
Licensed under the MIT License.