From f21483384aea340ec86c5c0f215342f42aaecbb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Mon, 26 Jun 2023 21:33:05 +0200 Subject: [PATCH] Release v1.1.0 --- CHANGELOG.md | 11 +++++++++++ module.json | 4 ++-- rust/Cargo.lock | 2 +- rust/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8e4d8d..cd1d3d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 1.1.0 +### Performance +- Increased the speed of the gridless pathfinder (thanks to MavethGH for suggesting this improved algorithm!) + +### Compatibility +- Removed the deprecation warnings in Foundry v11. This breaks v10 compatibility. + +### New features +- There is now a hidden setting called `gridlessTokenSizeRatio` which gives control over how far a token must stay away from walls in gridless mode + + ## 1.0.8 ### Bugfixes - Fixed a bug that caused pathfinding to crash when reaching the lower right edge of the map (thanks seanpg71!) diff --git a/module.json b/module.json index ad5ef54..6b0f1db 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "id": "routinglib", "title": "routinglib", "description": "A library module to calculate a path between two points", - "version": "1.0.8", + "version": "1.1.0", "compatibility": { "minimum": "11", "verified": "11" @@ -16,7 +16,7 @@ ], "esmodules": ["js/main.js"], "url": "https://github.com/manuelVo/foundryvtt-routinglib", - "download": "https://github.com/manuelVo/foundryvtt-routinglib/releases/download/v1.0.8/routinglib-1.0.8.zip", + "download": "https://github.com/manuelVo/foundryvtt-routinglib/releases/download/v1.1.0/routinglib-1.1.0.zip", "manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-routinglib/master/module.json", "readme": "https://github.com/manuelVo/foundryvtt-routinglib/blob/master/README.md", "changelog": "https://github.com/manuelVo/foundryvtt-routinglib/blob/master/CHANGELOG.md", diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 17ad5c5..e6bf44c 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -26,7 +26,7 @@ dependencies = [ [[package]] name = "gridless-pathfinding" -version = "1.0.8" +version = "1.1.0" dependencies = [ "console_error_panic_hook", "js-sys", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index a110745..4daeee1 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gridless-pathfinding" -version = "1.0.8" +version = "1.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html