From 1ac495884bc91b23b5a9654b33460f327a4cf0fd Mon Sep 17 00:00:00 2001 From: Blair McMillan Date: Sun, 11 Jun 2023 17:25:43 +1000 Subject: [PATCH] v2.1.7 --- .github/workflows/main.yml | 4 ++-- README.md | 2 +- changelog.md | 6 ++++++ module.json | 6 +++--- scripts/core.js | 2 +- 5 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b9043a7..4e40a9f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,6 @@ name: Release Creation -on: +on: release: types: [published] @@ -23,7 +23,7 @@ jobs: download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip # Create a zip file with all files required by the module to add to the release - - run: zip -r ./module.zip module.json styles/ scripts/ templates/ languages/ + - run: zip -r ./module.zip module.json README.md changelog.md styles/ scripts/ templates/ languages/ # Create a release for this specific version - name: Update Release with Files diff --git a/README.md b/README.md index fe58b70..4abe526 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ **NOTE** This is an unofficial forked version of the module maintained by the League of Foundry Developers to provide module continuity while Forien is unavailable. -**[Compatibility]**: *FoundryVTT* 0.6.0 - 10.0+ +**[Compatibility]**: *FoundryVTT* 0.6.0 - 11.0+ **[Systems]**: *any* diff --git a/changelog.md b/changelog.md index 5277c2f..3c98942 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## v2.1.7 + +- Mark compatible with v11. +- Append world name to the generated settings file on export. +- Added Portuguese by vithort + ## v2.1.6 - Exclude invalid settings from export [#35](https://github.com/League-of-Foundry-Developers/foundryvtt-forien-copy-environment/issues/35) diff --git a/module.json b/module.json index 0be8430..ce38e11 100644 --- a/module.json +++ b/module.json @@ -22,12 +22,12 @@ "flags": { "allowBugReporter": true }, - "version": "2.1.6", + "version": "2.1.7", "minimumCoreVersion": "0.6.0", - "compatibleCoreVersion": "10", + "compatibleCoreVersion": "11", "compatibility": { "minimum": "0.6.0", - "verified": "10.288" + "verified": "11.301" }, "scripts": [], "esmodules": [ diff --git a/scripts/core.js b/scripts/core.js index 33ce6c6..f2c56d5 100755 --- a/scripts/core.js +++ b/scripts/core.js @@ -484,7 +484,7 @@ export default class Core extends FormApplication { const hh = Core.padNumber(now.getHours()); const mm = Core.padNumber(now.getMinutes()); const ss = Core.padNumber(now.getSeconds()); - return `${filename}-${yyyy}-${MM}-${dd}-${hh}-${mm}-${ss}.json`; + return `${filename}-${yyyy}-${MM}-${dd}-${hh}-${mm}-${ss}-${game.world.id}.json`; } static importGameSettingsQuick() {