Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelVo committed Jun 26, 2023
1 parent 23fe795 commit f214833
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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!)
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit f214833

Please sign in to comment.