From f90cb3dbab8bf1db418fb43082f098d02d2cc294 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 7 Dec 2025 22:19:02 -0700 Subject: [PATCH] Version bump for initial release and fix the forgejo release URL --- module.json | 4 ++-- scripts/createForgejoRelease.mjs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/module.json b/module.json index 2c0b651..86fedc1 100644 --- a/module.json +++ b/module.json @@ -1,13 +1,13 @@ { "id": "oft", "title": "Oliver's Foundry Tweaks", - "version": "0.0.0", + "version": "1.0.0", "authors": [ { "name": "Oliver" } ], "download": "", "manifest": "", - "url": "", + "url": "https://git.varify.ca/Foundry/oft", "compatibility": { "minimum": 13, "verified": 13, diff --git a/scripts/createForgejoRelease.mjs b/scripts/createForgejoRelease.mjs index 67a8629..df4c82f 100644 --- a/scripts/createForgejoRelease.mjs +++ b/scripts/createForgejoRelease.mjs @@ -33,7 +33,7 @@ async function main() { tag_name: TAG, draft: true, hide_archive_links: true, - body: ``, + body: ``, }, { headers: { Authorization: `token ${TOKEN}` }, @@ -42,7 +42,7 @@ async function main() { try { await addReleaseAsset(release.data.id, `release.zip`); - await addReleaseAsset(release.data.id, `system.json`); + await addReleaseAsset(release.data.id, `module.json`); } catch (e) { console.error(`Failed to add assets to the release`); process.exit(1);