Skip to content

Commit

Permalink
Hotfix for dsa5/tde5 version 6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
coffiarts committed Oct 6, 2024
1 parent 3c1b5b7 commit 774681e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
with:
allowUpdates: true
name: Release ${{ steps.get-version.outputs.version }}
draft: true
draft: false
prerelease: false
token: ${{secrets.GITHUB_TOKEN}}
artifacts: './module.zip, ./src/lock-the-sheets/module.json, ./README.md, ./CHANGELOG.md'
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
The **major** version number in my modules (like "12") always reflects the
Foundry VTT **core** version it is compatible with (and recommended for).

## 12.?.?
### 2024-??-?? - ?
- ?
## 12.0.1
### 2024-10-06 - Hotfix for dsa5/tde5 version 6.x
- Game system dsa5/tde5 (Das Schwarze Auge/The Black Eye) seems to have changed its handling of active effects in latest version 6.x. That was causing a breaking bug in this mod, blocking certain rolls for actors in scene. This is the fix for it.

## 12.0.0
### 2024-06-06 - v12 compatibility
Expand Down
4 changes: 2 additions & 2 deletions src/lock-the-sheets/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "lock-the-sheets",
"title": "Lock The Sheets!",
"description": "Oh Game Master, thou shalt be the gatekeeper! Lock and unlock all your players' character sheets at once with just one click. May you never ever again watch them accidentally delete that beloved item from their inventory (\"Uuuugh... NOOOOO!\")... or let those nasty cheaters among them mess around secretly with their hitpoints (\"AAAAArrrrgh!\").",
"version": "12.?.?",
"version": "12.0.1",
"url": "https://github.com/coffiarts/FoundryVTT-lock-the-sheets",
"manifest": "https://github.com/coffiarts/FoundryVTT-lock-the-sheets/releases/download/latest/module.json",
"download": "https://github.com/coffiarts/FoundryVTT-lock-the-sheets/releases/download/latest/module.zip",
Expand Down Expand Up @@ -36,7 +36,7 @@
"type": "module",
"manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-socketlib/master/module.json",
"compatibility": {
"verified": "1.0.13"
"verified": "1.1.0"
}
}
]
Expand Down
3 changes: 3 additions & 0 deletions src/lock-the-sheets/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@ async function renderTokenOverlays() {
flags: {
core: {
overlay: true
},
dsa5: { // a dummy flag required by game system dsa5/tde5 as of version 6.x for handling status effects correctly
value: null
}
},
duration: {
Expand Down

0 comments on commit 774681e

Please sign in to comment.