diff --git a/CHANGELOG.md b/CHANGELOG.md index e73e10e..b6124f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Middle Kingdom - v10 -> main branch +### 2.16.0 - October 20, 2024 - Token HUD light source tooltips +- [FEATURE] Tooltips for the light sources are now much easier to read (and they don't disappear altogether in v13 proto 1. Now using standard Foundry tooltips.) +- [INTERNAL] This module appears to work fine in v13.332, but is likely to break and need adjustment when Token HUD becomes a v2 app later in the v13 development cycle. The maximum version has been set accordingly. + ### 2.15.1 - September 2, 2024 - Better error message for missing user sources file - [BUGFIX] The error message for a missing user sources file was cryptic - now just tells you - [BUGFIX] The fallbacks for lights as object to array and for missing states property weren't working diff --git a/module.json b/module.json index d2d7778..c4e2462 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "id": "torch", "title": "Torch", "description": "Torch HUD Controls", - "version": "2.15.1", + "version": "2.16.0", "authors": [ { "name": "Deuce", @@ -77,11 +77,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.15.1/torch-v2.15.1.zip", + "download": "https://github.com/League-of-Foundry-Developers/torch/releases/download/v2.16.0/torch-v2.16.0.zip", "url": "https://github.com/League-of-Foundry-Developers/torch", "compatibility": { "minimum": "10", "verified": "12.331", - "maximum": "12" + "maximum": "13.332" } } diff --git a/package.json b/package.json index c787e86..d8836f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "torch", - "version": "2.15.1", + "version": "2.16.0", "description": "Torch HUD Controls", "main": "src/torch.js", diff --git a/src/hud.mjs b/src/hud.mjs index 6fab014..61c8fb9 100644 --- a/src/hud.mjs +++ b/src/hud.mjs @@ -1,10 +1,10 @@ -const BUTTON_HTML = `
`; +const BUTTON_HTML = `
`; const QUERY_BUTTON_HTML = `
`; const DISABLED_ICON_HTML = ``; const SOURCE_MENU = `
`; const SOURCE_MENU_ITEM = (img, tooltip) => { - return ``; };