Skip to content

Commit

Permalink
version 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
p4535992 committed Jul 17, 2023
1 parent 0150169 commit f891492
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CHANGELOG
### 2.3.0 [BREAKING CHANGES]
### 2.3.0-1 [BREAKING CHANGES]

- Beta Release for v11

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "arms-reach",
"title": "FoundryVTT Arms Reach",
"description": "Allows the GM to limit the distance that a player can interacted with a placeable object like door, journal, stairway, token, ecc..",
"version": "2.3.0",
"version": "2.3.1",
"main": "module.js",
"license": "SEE LICENSE IN LICENSE",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Hooks.once("ready", () => {
error(`The '${CONSTANTS.MODULE_ID}' module requires to install and activate the 'libWrapper' module.`, true);
return;
}
if (!game.modules.get("foundryvtt-arms-reach")?.active && game.user?.isGM) {
if (game.modules.get("foundryvtt-arms-reach")?.active && game.user?.isGM) {
error(
`Attention in version 11 the module id of "foundryvtt-arms-reach" has become "arms-reach". If present uninstall the "foundryvtt-arms-reach" version.`,
true
Expand Down
10 changes: 5 additions & 5 deletions src/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "arms-reach",
"title": "Arms Reach",
"description": "Allows the GM to limit the distance that a player can interacted with a placeable object like door, journal, stairway, token, ecc..",
"version": "2.3.0",
"version": "2.3.1",
"authors": [
{
"name": "Psyny"
Expand Down Expand Up @@ -91,10 +91,10 @@
},
"manifestPlusVersion": "1.2.1",
"url": "https://github.com/p4535992/foundryvtt-arms-reach",
"manifest": "https://github.com/p4535992/foundryvtt-arms-reach/releases/download/v2.3.0/module.json",
"download": "https://github.com/p4535992/foundryvtt-arms-reach/releases/download/v2.3.0/module.zip",
"readme": "https://github.com/p4535992/foundryvtt-arms-reach/blob/v2.3.0/README.md",
"changelog": "https://github.com/p4535992/foundryvtt-arms-reach/blob/v2.3.0/changelog.md",
"manifest": "https://github.com/p4535992/foundryvtt-arms-reach/releases/download/v2.3.1/module.json",
"download": "https://github.com/p4535992/foundryvtt-arms-reach/releases/download/v2.3.1/module.zip",
"readme": "https://github.com/p4535992/foundryvtt-arms-reach/blob/v2.3.1/README.md",
"changelog": "https://github.com/p4535992/foundryvtt-arms-reach/blob/v2.3.1/changelog.md",
"bugs": "https://github.com/p4535992/foundryvtt-arms-reach/issues",
"allowBugReporter": true,
"relationships": {
Expand Down

0 comments on commit f891492

Please sign in to comment.