From d8e62098406cefd56911b310b6b148f7c562852b Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Thu, 8 Jun 2023 11:31:03 +0200 Subject: [PATCH] chore: update repo --- .reuse/dep5 | 2 +- README.md | 2 +- module.json | 14 +++++++------- package.json | 8 ++++---- tools/bump-version.mjs | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.reuse/dep5 b/.reuse/dep5 index 69bb751..78c656e 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: darkness-dependent-vision Upstream-Contact: Johannes Loher -Source: https://git.f3l.de/ghost/darkness-dependent-vision +Source: https://git.f3l.de/saluu/darkness-dependent-vision Files: .yarn/** Copyright: Copyright (c) 2016-present, Yarn Contributors. All rights reserved. diff --git a/README.md b/README.md index 8ce5e60..c9c97ec 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To install and use the Darkness Dependent Vision module for Foundry Virtual Tabletop, simply paste the following URL into the **Install Module** dialog on the Setup menu of the application. -https://git.f3l.de/ghost/darkness-dependent-vision/-/raw/latest/src/module.json?inline=false +https://git.f3l.de/saluu/darkness-dependent-vision/-/raw/latest/src/module.json?inline=false ### libWrapper diff --git a/module.json b/module.json index f128e2a..4c8a3da 100644 --- a/module.json +++ b/module.json @@ -31,11 +31,11 @@ "path": "lang/en.json" } ], - "url": "https://git.f3l.de/ghost/darkness-dependent-vision", - "manifest": "https://git.f3l.de/api/v4/projects/ghost%2Fdarkness-dependent-vision/packages/generic/darkness-dependent-vision/latest/module.json", - "download": "https://git.f3l.de/ghost/darkness-dependent-vision/-/releases/0.3.9/downloads/darkness-dependent-vision.zip", - "bugs": "https://git.f3l.de/ghost/darkness-dependent-vision/-/issues", - "changelog": "https://git.f3l.de/ghost/darkness-dependent-vision/-/releases/0.3.9", - "readme": "https://git.f3l.de/ghost/darkness-dependent-vision/-/raw/0.3.9/README.md", - "license": "https://git.f3l.de/ghost/darkness-dependent-vision/-/raw/0.3.9/LICENSE.md" + "url": "https://git.f3l.de/saluu/darkness-dependent-vision", + "manifest": "https://git.f3l.de/api/v4/projects/saluu%2Fdarkness-dependent-vision/packages/generic/darkness-dependent-vision/latest/module.json", + "download": "https://git.f3l.de/saluu/darkness-dependent-vision/-/releases/0.3.9/downloads/darkness-dependent-vision.zip", + "bugs": "https://git.f3l.de/saluu/darkness-dependent-vision/-/issues", + "changelog": "https://git.f3l.de/saluu/darkness-dependent-vision/-/releases/0.3.9", + "readme": "https://git.f3l.de/saluu/darkness-dependent-vision/-/raw/0.3.9/README.md", + "license": "https://git.f3l.de/saluu/darkness-dependent-vision/-/raw/0.3.9/LICENSE.md" } diff --git a/package.json b/package.json index 54f6671..d91c46b 100644 --- a/package.json +++ b/package.json @@ -3,14 +3,14 @@ "name": "darkness-dependent-vision", "version": "0.3.9", "description": "A module for Foundry Virtual Tabletop that provides functionality to make the dim and bright vision of tokens depend on the scene's darkness level.", - "license": "https://git.f3l.de/ghost/darkness-dependent-vision#licensing", - "homepage": "https://git.f3l.de/ghost/darkness-dependent-vision", + "license": "https://git.f3l.de/saluu/darkness-dependent-vision#licensing", + "homepage": "https://git.f3l.de/saluu/darkness-dependent-vision", "repository": { "type": "git", - "url": "https://git.f3l.de/ghost/darkness-dependent-vision" + "url": "https://git.f3l.de/saluu/darkness-dependent-vision" }, "bugs": { - "url": "https://git.f3l.de/ghost/darkness-dependent-vision/-/issues" + "url": "https://git.f3l.de/saluu/darkness-dependent-vision/-/issues" }, "contributors": [ { diff --git a/tools/bump-version.mjs b/tools/bump-version.mjs index cd475a2..db13605 100644 --- a/tools/bump-version.mjs +++ b/tools/bump-version.mjs @@ -7,7 +7,7 @@ import semver from 'semver'; import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; -const repository = 'ghost/darkness-dependent-vision'; +const repository = 'saluu/darkness-dependent-vision'; const gitlabURL = 'https://git.f3l.de'; const getLicenseURL = (version) => `${gitlabURL}/${repository}/-/raw/${version}/LICENSE.md`;