Skip to content

Commit df4c515

Browse files
committed
Release v1.12.3
1 parent 02dfd8d commit df4c515

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

Diff for: CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 1.12.3
2+
### Bugfixes
3+
- Fixed a bug that could cause foundry to freeze indefinitely when trying to pathfind to an unreachalbe location (thanks to JDCalvert)
4+
- Fixed a bug that caused the pathfinder to route through one-directional walls from the wrong direction (thanks to JDCalvert)
5+
- Fixed a bug that could cause Drag Ruler to write errors into the JS console during regular usage
6+
7+
### Compatibility
8+
- Drag Ruler's generic speed provider is now aware of good defaults for DnD 4th Edition
9+
- Drag Ruler's pathfinder should now be compatible with the Wall Height and Levels modules (thanks to JDCalvert)
10+
11+
112
## 1.12.2
213
### Bugfixes
314
- Fixed a bug where the pathfinder on gridless scenes sometimes wasn't able to find a way around corners with specific angles

Diff for: module.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "drag-ruler",
33
"title": "Drag Ruler",
44
"description": "When dragging a token displays a ruler showing how far you've moved that token.",
5-
"version": "1.12.2",
5+
"version": "1.12.3",
66
"minimumCoreVersion" : "9.245",
77
"compatibleCoreVersion" : "9",
88
"authors": [
@@ -65,7 +65,7 @@
6565
],
6666
"socket": true,
6767
"url": "https://github.com/manuelVo/foundryvtt-drag-ruler",
68-
"download": "https://github.com/manuelVo/foundryvtt-drag-ruler/releases/download/v1.12.2/drag-ruler-1.12.2.zip",
68+
"download": "https://github.com/manuelVo/foundryvtt-drag-ruler/releases/download/v1.12.3/drag-ruler-1.12.3.zip",
6969
"manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-drag-ruler/master/module.json",
7070
"readme": "https://github.com/manuelVo/foundryvtt-drag-ruler/blob/master/README.md",
7171
"changelog": "https://github.com/manuelVo/foundryvtt-drag-ruler/blob/master/CHANGELOG.md",

Diff for: rust/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gridless-pathfinding"
3-
version = "1.12.2"
3+
version = "1.12.3"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)