Skip to content

Commit

Permalink
12.02 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ironmonk88 committed Aug 5, 2024
1 parent c14ffbd commit 1ad565d
Show file tree
Hide file tree
Showing 8 changed files with 911 additions and 218 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
## Version 12.02

Allowing rotation action to pick Ambient lights

Fixing issues Foundry introduced with changing colour from a string to an Object.

Fixing issues with referencing Permission constants instead of Ownership constants.

Allowing Roll Table quantity to use Handlebar notation.

Allow open journal to set the ownership of the journal

Fixed setting permissions for a user to include players that aren't logged in.

Fixed setting a scene's background action to actually set the background image.

Fixed set tile image to allow using `1-4` notation

Fixed Dialog so that it can use html files again.

Fixed scene preload action

Added trigger caching, so instead of having to search through all tiles every time a trigger is requested, the tiles are already cached and the trigger knows exactly which tiles would apply.

Added a new trigger, when lighting change animates

Fixed issue with rotating an ambient Light

Fixed issue with temporary Images

Updated the Region Trigger to allow triggering the tile with appropriate data filled in.

Fixed issue with adding an item to a character that D&D 5e introduced.

Fixed issue with tile history not being recorded properly.

Fixed issues with Burning Wheel system

Fixed issue with Tile image when dropping an item on the canvas.

Fixed issue with door trigger when turning into a secret door

## Version 12.01

v12 compatibility
Expand Down
377 changes: 209 additions & 168 deletions actions.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/monks-active-tiles.css
Original file line number Diff line number Diff line change
Expand Up @@ -540,5 +540,5 @@ body.system-CoC7 .multiple-dropdown .multiple-dropdown-option {
}

#trigger-action .small-field {
flex: 0 0 75px;
flex: 0 0 150px;
}
13 changes: 12 additions & 1 deletion lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
"MonksActiveTiles.ctrl.loop": "Loop",
"MonksActiveTiles.ctrl.audiotype": "Audio Type",
"MonksActiveTiles.ctrl.activate": "Activate",
"MonksActiveTiles.ctrl.usepermission": "Check Permission",
"MonksActiveTiles.ctrl.usepermission": "Permissions",
"MonksActiveTiles.ctrl.distance": "Distance",
"MonksActiveTiles.ctrl.name": "Name",
"MonksActiveTiles.ctrl.chatbubble": "Chat Bubble",
Expand Down Expand Up @@ -322,6 +322,7 @@
"MonksActiveTiles.mode.create": "Token Create",
"MonksActiveTiles.mode.door": "Door Trigger",
"MonksActiveTiles.mode.darkness": "Lighting Change",
"MonksActiveTiles.mode.darknesschange": "Lighting Animation",
"MonksActiveTiles.mode.time": "Time Change",

"MonksActiveTiles.restrict.all": "Allow All Tokens",
Expand Down Expand Up @@ -459,6 +460,12 @@
"MonksActiveTiles.resettype.everything": "Everything",
"MonksActiveTiles.resettype.token": "Token",

"MonksActiveTiles.permission.check": "Check Permission",
"MonksActiveTiles.permission.ignore": "Ignore Permissions",
"MonksActiveTiles.permission.limited": "Assign Limited Permission",
"MonksActiveTiles.permission.observer": "Assign Observer Permission",
"MonksActiveTiles.permission.owner": "Assign Owner Permission",

"MonksActiveTiles.msg.prevent-teleport": "Teleporting off the map has been prevented",
"MonksActiveTiles.msg.prevent-movement": "Moving off the map has been prevented",
"MonksActiveTiles.msg.invalid-entity": "Invalid Entity Type",
Expand Down Expand Up @@ -552,6 +559,10 @@
"uuid": {
"label": "Tile",
"hint": "Tile to trigger"
},
"usetiletrigger": {
"label": "Trigger using event",
"hint": "Trigger the tile using the region event data"
}
}
}
Expand Down
499 changes: 499 additions & 0 deletions lang/pt-BR.json

Large diffs are not rendered by default.

16 changes: 10 additions & 6 deletions module.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"title": "Monk's Active Tile Triggers",
"description": "Want to teleport, or open doors, or hide characters, or display a message, or play a sound, or change a token's elevation when a token walks over a tile... now you can",
"version": "12.01",
"version": "12.02",
"authors": [
{
"name": "IronMonk",
Expand Down Expand Up @@ -34,6 +34,11 @@
"lang": "pl",
"name": "polski",
"path": "lang/pl.json"
},
{
"lang": "pt-BR",
"name": "Português",
"path": "lang/pt-BR.json"
}
],
"packs": [
Expand All @@ -56,21 +61,20 @@
"css/monks-active-tiles.css"
],
"url": "https://github.com/ironmonk88/monks-active-tiles",
"download": "https://github.com/ironmonk88/monks-active-tiles/archive/12.01.zip",
"download": "https://github.com/ironmonk88/monks-active-tiles/archive/12.02.zip",
"manifest": "https://github.com/ironmonk88/monks-active-tiles/releases/latest/download/module.json",
"bugs": "https://github.com/ironmonk88/monks-active-tiles/issues",
"allowBugReporter": true,
"id": "monks-active-tiles",
"compatibility": {
"minimum": "12",
"verified": "12"
},
"name": "monks-active-tiles",
"minimumCoreVersion": "12",
"compatibleCoreVersion": "12",
"documentTypes": {
"RegionBehavior": {
"triggerTile": {}
}
},
"flags": {
"allowBugReporter": true
}
}
Loading

0 comments on commit 1ad565d

Please sign in to comment.