diff --git a/docs/Changelog.md b/docs/Changelog.md index 6c886959..bdf48b1a 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,3 +1,12 @@ +v2.6.3 (April 12th 2022) +=== + +* **Bugfix**: Fix parsing of the initiative modifier after DDB character sheet update on April 12th (by [@Aeristoka](https://github.com/Aeristoka)) +* **Bugfix**: Fix some missing data from rolls sent to the game log which caused issues with the DDB mobile app +* **Bugfix**: Remove decimal value of initiative rolls with tie breaker from rolls sent to the game log which caused issues with the DDB mobile app +* **Bugfix**: *FVTT*: Fix support for attaching rolls to the new ChatMessage API in Foundry VTT v10 +* **Misc**: Update the Dread Ambusher option title and description + v2.6.2 (March 30th 2022) === diff --git a/docs/release_notes.md b/docs/release_notes.md index 53195483..c20f2bab 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -1,3 +1,16 @@ +2.6.3 (April 12th 2022) +=== + +Hi everyone, + +Today (April 12th), D&D Beyond updated their character sheet, which broke the parsing of the Initiative modifier. Due to that breaking change, we're releasing yet another small bugfix update to your favorite extension. + +We also fixed a couple of issues that might have affected the DDB mobile app parsing of the game log when rolling from Beyond20, and added support for Foundry VTT's upcoming v10 release. + +As usual, thank you to all my [Patrons](https://patreon.com/kakaroto) and [Ko-fi/Github](/rations) supporters, who are making this possible. + +Happy rolling! + 2.6.2 (March 30th 2022) === diff --git a/docs/update.md b/docs/update.md index b75ab188..e436bf29 100644 --- a/docs/update.md +++ b/docs/update.md @@ -17,11 +17,11 @@ Thank you all for your support! # Release Notes -Hi again, we're releasing another small bugfix release today for your favorite extension. +Hi everyone, -This update had to be quickly released as there were two breaking changes that happened this week, one change in the D&D Beyond character sheet which caused some issues with the character specific settings not working properly, and also a change in the Roll20 website which caused HP syncing to stop working in most situations. +Today (April 12th), D&D Beyond updated their character sheet, which broke the parsing of the Initiative modifier. Due to that breaking change, we're releasing yet another small bugfix update to your favorite extension. -This release also adds a couple of other small but important bug fixes and features as well. See the short [Changelog](#changelog) below for more details. +We also fixed a couple of issues that might have affected the DDB mobile app parsing of the game log when rolling from Beyond20, and added support for Foundry VTT's upcoming v10 release. As usual, thank you to all my [Patrons](https://patreon.com/kakaroto) and [Ko-fi/Github](/rations) supporters, who are making this possible. @@ -33,18 +33,14 @@ Click [here](/release_notes) for the full release notes from previous versions. # Changelog -v2.6.2 (March 30th 2022) +v2.6.3 (April 12th 2022) === -* **Feature**: Add support for rolling the right hemodice for Blood Curse of the Eyeless (by [@Aeristoka](https://github.com/Aeristoka)) -* **Feature**: *Roll20*: Display the advantage/disadvantage indicator (greying out dropped dice) when rolling with digital dice (by [@Cube-o](https://github.com/Cube-o)) -* **Bugfix**: Fix issue detecting a character sheet's ID due to a sheet change, causing character settings to not work properly -* **Bugfix**: *Roll20*: Fix HP syncing due to a Roll20 change to their API -* **Bugfix**: *FVTT*: Fix rolling Death saving throws when digital dice is disabled -* **Bugfix**: *Roll20*: Fix support for Diamond Soul (by [@Aeristoka](https://github.com/Aeristoka)) -* **Bugfix**: Fix display corruption of the Adventure flowchart in the call of the Netherdeep (due to dice formula replacement in embedded style/script tags) -* **Bugfix**: Fix issue with looping notification about class features being parsed when two sheets are open, caused by the character sheet's ID not being detected properly -* **Bugfix**: Fix display of the 'class features detected' notification not displaying properly +* **Bugfix**: Fix parsing of the initiative modifier after DDB character sheet update on April 12th (by [@Aeristoka](https://github.com/Aeristoka)) +* **Bugfix**: Fix some missing data from rolls sent to the game log which caused issues with the DDB mobile app +* **Bugfix**: Remove decimal value of initiative rolls with tie breaker from rolls sent to the game log which caused issues with the DDB mobile app +* **Bugfix**: *FVTT*: Fix support for attaching rolls to the new ChatMessage API in Foundry VTT v10 +* **Misc**: Update the Dread Ambusher option title and description --- diff --git a/manifest.json b/manifest.json index ea68065b..695c2c68 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name": "Beyond 20", - "version": "2.6.2", + "version": "2.6.3", "manifest_version": 2, "description": "Integrates the D&D Beyond Character Sheets with Roll20 and Foundry VTT.", "permissions": [ diff --git a/manifest_ff.json b/manifest_ff.json index e4e0b10c..a69693f2 100644 --- a/manifest_ff.json +++ b/manifest_ff.json @@ -1,6 +1,6 @@ { "name": "Beyond 20", - "version": "2.6.2", + "version": "2.6.3", "manifest_version": 2, "description": "Integrates the D&D Beyond Character Sheets with Roll20 and Foundry VTT.", "permissions": [ diff --git a/package.json b/package.json index 328b3f67..10968dbb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "beyond20", - "version": "2.6.2", + "version": "2.6.3", "description": "Beyond20: D&D Beyond & Roll20/Foundry VTT Integration", "directories": { "doc": "docs"