diff --git a/CHANGELOG.md b/CHANGELOG.md index 27aba04..eb9b4f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 1.13.0 +### Breaking changes +- Drag Ruler's pathfinder has been extracted into a dedicated library module. If you'd like to continue to use Drag Ruler's pathfinding feature, please install [routinglib](https://foundryvtt.com/packages/routinglib) alongside Drag Ruler. +- Drag Ruler's API no longer supports the function `getCostForStep`. Instead, module authors are asked to use [Enhanced Terrain Layer's game system integration API](https://github.com/ironmonk88/enhanced-terrain-layer/blob/main/README.md#integrating-game-system-rules) to introduce game system specific terrain rules. + +### New features +- Drag Ruler's pathfinding will now be running as a background task. This means that Foundry will no longer freeze while Drag Ruler is calculating a path. +- Drag Ruler's pathfinding will now take difficult terrain into account on griddes scenes + +### Bug fixes +- Fixed a bug that would cause gridless snapping to snap slightly below the allowed range + +### Compatibility +- Drag Ruler is now compatible with Foundry VTT v10 +- Drag Ruler's compatibility with the Wall Height module is restored + + ## 1.12.8 ### Bugfixes - Fixed a bug that could cause grid cells to be highlighted in the wrong color diff --git a/module.json b/module.json index 15f8b8b..be5f2df 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "id": "drag-ruler", "title": "Drag Ruler", "description": "When dragging a token displays a ruler showing how far you've moved that token.", - "version": "1.12.8", + "version": "1.13.0", "compatibility": { "minimum": "10", "verified": "10" @@ -70,7 +70,7 @@ }, "socket": true, "url": "https://github.com/manuelVo/foundryvtt-drag-ruler", - "download": "https://github.com/manuelVo/foundryvtt-drag-ruler/releases/download/v1.12.8/drag-ruler-1.12.8.zip", + "download": "https://github.com/manuelVo/foundryvtt-drag-ruler/archive/v1.13.0.zip", "manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-drag-ruler/master/module.json", "readme": "https://github.com/manuelVo/foundryvtt-drag-ruler/blob/master/README.md", "changelog": "https://github.com/manuelVo/foundryvtt-drag-ruler/blob/master/CHANGELOG.md",