diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a95813..9aba7bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Middle Kingdom - v10 -> main branch +### 2.12.0 - April 20, 2024 +- [FEATURE] Verified on V12 developer release but still works fine in V11. +- [BUGFIX] Cleaned up V12 deprecation on Dancing Lights implementation. + ### 2.11.1 - February 3, 2024 - [BUGFIX] (StormDarkwood) Fixed Dragonbane lighting *back* to what it should be. (It's in meters, not grids.) - [BUGFIX] (spikedshrike) Flashlight angle on SWADE was bugged - 3 degrees shipped should be 6 degrees (for 10:1 beam) or possible 53 degrees (for cone) - seeking clarification. diff --git a/module.json b/module.json index e1e020d..528b7f0 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "id": "torch", "title": "Torch", "description": "Torch HUD Controls", - "version": "2.11.1", + "version": "2.12.0", "authors": [ { "name": "Deuce", @@ -71,11 +71,11 @@ "torch.css" ], "manifest": "https://raw.githubusercontent.com/League-of-Foundry-Developers/torch/main/module.json", - "download": "https://github.com/League-of-Foundry-Developers/torch/releases/download/v2.11.1/torch-v2.11.1.zip", + "download": "https://github.com/League-of-Foundry-Developers/torch/releases/download/v2.12.0/torch-v2.12.0.zip", "url": "https://github.com/League-of-Foundry-Developers/torch", "compatibility": { "minimum": "10", - "verified": "11.315", - "maximum": "11" + "verified": "12.319", + "maximum": "12" } } diff --git a/package.json b/package.json index df812e9..8379976 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "torch", - "version": "2.11.1", + "version": "2.12.0", "description": "Torch HUD Controls", "main": "src/torch.js", diff --git a/src/request.mjs b/src/request.mjs index 82079e6..b614e4b 100644 --- a/src/request.mjs +++ b/src/request.mjs @@ -77,7 +77,6 @@ export default class TorchRequest { Object.assign({ x: c.x, y: c.y }, dancingLight), ]; await scene.createEmbeddedDocuments("Token", tokens, { - temporary: false, renderSheet: false, }); }