diff --git a/README.md b/README.md index db28b60f..abe7a20f 100644 --- a/README.md +++ b/README.md @@ -4,21 +4,22 @@ SPDX-FileCopyrightText: 2022 Ethaks SPDX-License-Identifier: EUPL-1.2 --> -
-

Spheres for Pathfinder 1e

- Gitlab pipeline status - coverage report - Supported Foundry Versions -
+
+ GitHub Workflow Status + + Downloads + Forge Install % +
Foundry Hub Endorsements + Supported Foundry Versions
-This module for the [Pathfinder 1e game system](https://gitlab.com/Furyspark/foundryvtt-pathfinder1) for [Foundry Virtual Tabletop](http://foundryvtt.com/) provides additional functionality and support for the rule sets [Spheres of Power](https://www.dropdeadstudios.com/spheres-of-power) and [Spheres of Might](https://www.dropdeadstudios.com/spheres-of-might) from [Drop Dead Studios](https://www.dropdeadstudios.com/). +This module for the [Pathfinder 1e game system](https://gitlab.com/foundryvtt_pathfinder1e/foundryvtt-pathfinder1) for [Foundry Virtual Tabletop](http://foundryvtt.com/) provides additional functionality and support for the rule sets [Spheres of Power](https://www.dropdeadstudios.com/spheres-of-power) and [Spheres of Might](https://www.dropdeadstudios.com/spheres-of-might) from [Drop Dead Studios](https://www.dropdeadstudios.com/). As the module is still heavily in development, the best source for available features and notable changes is its [changelog](CHANGELOG.md). @@ -26,7 +27,7 @@ As the module is still heavily in development, the best source for available fea To install the module navigate to Foundry's _Add-on Modules_ tab in the Setup menu and paste the following link in the **Install Module** dialog: -[https://gitlab.com/ethaks-fvtt/foundryvtt-pf1-spheres/-/releases/permalink/latest/downloads/module.json](https://gitlab.com/ethaks-fvtt/foundryvtt-pf1-spheres/-/releases/permalink/latest/downloads/module.json) +[https://github.com/ethaks/pf1spheres/releases/latest/downloads/module.json](https://github.com/ethaks/pf1spheres/releases/latest/downloads/module.json) The module can also be installed manually by downloading a zip archive from the Releases Page and extracting it to Foundry's `Data/modules/pf1spheres` directory. diff --git a/tools/manifest-updater.cjs b/tools/manifest-updater.cjs index 7e1374ff..ea934c15 100644 --- a/tools/manifest-updater.cjs +++ b/tools/manifest-updater.cjs @@ -11,7 +11,7 @@ module.exports.readVersion = function (contents) { module.exports.writeVersion = function (contents, version) { const json = JSON.parse(contents); json.version = version; - json.download = `https://gitlab.com/Ethaks/foundryvtt-pf1-spheres/-/releases/v${version}/downloads/pf1spheres.zip`; + json.download = `https://github.com/Ethaks/pf1spheres/releases/download/v${version}/module.zip`; const manifestString = JSON.stringify(json); return manifestString; };