From 6b998c6b7e020633a36b14d35462b5c16788a46e Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 10 Dec 2023 16:31:01 +0100 Subject: [PATCH] Adds basic Foundry-VTT module setup --- LICENSE.txt | 21 +++++++++++++++++++++ on-site-vtt/lang/de.json | 3 +++ on-site-vtt/lang/en.json | 3 +++ on-site-vtt/module.json | 38 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 65 insertions(+) create mode 100644 LICENSE.txt create mode 100644 on-site-vtt/lang/de.json create mode 100644 on-site-vtt/lang/en.json create mode 100644 on-site-vtt/module.json diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..d3b47bc --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Alexander Weleczka + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/on-site-vtt/lang/de.json b/on-site-vtt/lang/de.json new file mode 100644 index 0000000..1a18d46 --- /dev/null +++ b/on-site-vtt/lang/de.json @@ -0,0 +1,3 @@ +{ + "on-site-vtt.title": "On-Site VTT" +} \ No newline at end of file diff --git a/on-site-vtt/lang/en.json b/on-site-vtt/lang/en.json new file mode 100644 index 0000000..1a18d46 --- /dev/null +++ b/on-site-vtt/lang/en.json @@ -0,0 +1,3 @@ +{ + "on-site-vtt.title": "On-Site VTT" +} \ No newline at end of file diff --git a/on-site-vtt/module.json b/on-site-vtt/module.json new file mode 100644 index 0000000..5f29f3b --- /dev/null +++ b/on-site-vtt/module.json @@ -0,0 +1,38 @@ +{ + "id": "on-site-vtt", + "title": "On-Site VTT - Virtual Tabletop, now with less virtual", + "description": "A simple module adding functionality to improve playability for multiple players on a single screen/digital map.", + "version": "0.0.1", + "compatibility": { + "minimum": "10", + "verified": "11" + }, + "authors": [ + { + "name": "Alexander Weleczka", + "url": "https://aweleczka.de/" + } + ], + "languages": [ + { + "lang": "en", + "name": "English", + "path": "./lang/en.json" + }, + { + "lang": "de", + "name": "Deutsch", + "path": "./lang/de.json" + } + ], + "url": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT", + "manifest": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/main/on-site-vtt/module.json", + "download": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/packages", + "bugs": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/issues", + "readme": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/main/README.md", + "license" :"https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/main/LICENSE.txt", + "flags": { + "allowBugReporter": true + } + + } \ No newline at end of file