From d5821aa753394939bfaf272a664758656775dc2d Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Tue, 4 Feb 2025 20:36:08 -0600 Subject: [PATCH] Add download and manifest URLs to module.json Included `download` and `manifest` URLs pointing to the module's release files in the `module.json` file. This facilitates automated updates and direct downloads of the module from the specified repository. Fix download URL version format in module.json Updated the `download` URL in `module.json` to include the correct version prefix (`v0.1.0`) for consistency with the release naming convention. --- src/module.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/module.json b/src/module.json index d28f2e3..d5845a6 100644 --- a/src/module.json +++ b/src/module.json @@ -2,6 +2,8 @@ "id": "asc-starwars-style-journal", "title": "Star Wars Style Journal", "version": "0.1.0", + "download": "https://gitea.ascorrea.com/asc/asc-starwars-style-journal/releases/download/v0.1.0/module.zip", + "manifest": "https://gitea.ascorrea.com/asc/asc-starwars-style-journal/releases/download/latest/module.json", "compatibility": { "minimum": "12", "verified": "12" @@ -11,4 +13,5 @@ "styles/asc-ffg-starwars.css", "styles/asc-starwars-journal.css" ] + } \ No newline at end of file