From 2c168202d6799f06503d915cc3db3b00a7e11bf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Fri, 21 Oct 2022 11:07:31 +0200 Subject: [PATCH] Release v1.0.6 --- CHANGELOG.md | 5 +++++ module.json | 4 ++-- rust/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63600ae..395069c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.6 +### Algorithm changes +- On griddles scenes, when starting a path on a grid cell which has a wall through its dead-center, the pathfinder will now return that no path exists. This prevents it from suggesting a path that would require to move through that wall. + + ## 1.0.5 ### Performance - The gridless pathfinder is now twice as fast on scenes with many walls diff --git a/module.json b/module.json index a5e8d67..ac6d2f8 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.5", + "version": "1.0.6", "compatibility": { "minimum": "10", "verified": "10" @@ -18,7 +18,7 @@ "js/main.js" ], "url": "https://github.com/manuelVo/foundryvtt-routinglib", - "download": "https://github.com/manuelVo/foundryvtt-routinglib/releases/download/v1.0.5/routinglib-1.0.5.zip", + "download": "https://github.com/manuelVo/foundryvtt-routinglib/releases/download/v1.0.6/routinglib-1.0.6.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.toml b/rust/Cargo.toml index a1bbcb2..05a9d85 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gridless-pathfinding" -version = "1.0.5" +version = "1.0.6" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html