Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Moerill committed May 28, 2020
1 parent f1d6cc8 commit 5ce1440
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.5.1
<ul>
<li>Fixed error when trying to throw damage for actors with "Damage Bonus" defined in "Special Traits".</li>
</ul>

# v0.5
* Fixed module.json not having updated compatibleCoreVersion
* Accidently jumped from 0.4 to 0.5 ....
Expand Down
4 changes: 2 additions & 2 deletions dist/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mess",
"title": "Mess - Moerills enhancing super-suit(e)",
"description": "This module is a mix of QoL changes, enhancements for my game and stuff i play around with. For a complete feature list check the URL down below.",
"version": "0.5.0",
"version": "0.5.1",
"minimumCoreVersion": "0.6.0",
"compatibleCoreVersion": "0.6.0",
"author": "Moerill",
Expand All @@ -28,5 +28,5 @@
],
"manifest": "https://raw.githubusercontent.com/Moerill/mess/master/src/module.json",
"url": "https://github.com/Moerill/mess",
"download": "https://github.com/Moerill/mess/releases/download/v0.5.0/mess.zip"
"download": "https://github.com/Moerill/mess/releases/download/v0.5.1/mess.zip"
}
2 changes: 1 addition & 1 deletion dist/scripts/index.js

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

2 changes: 1 addition & 1 deletion dist/scripts/index.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/templates/welcome-screen.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ <h2></h2>
<p style="display: flex; flex-flow: row nowrap; align-items: center; justify-content: flex-start;"><input type="checkbox" class='show-again' id="welcome-screen-show-again"/> <label for="welcome-screen-show-again">Don't show this screen again until next update.</label></p>
<p style="text-align: right">Want to support development? <a href="https://github.com/Moerill/token-mold#support-the-development">Click here</a></p>
<h2></h2>
<h1>Changelog v0.5.1</h1>
<ul>
<li>Fixed error when trying to throw damage for actors with "Damage Bonus" defined in "Special Traits".</li>
</ul>
<h1>Changelog v0.4.0</h1>
<ul>
<li>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "module-template",
"version": "0.5.0",
"version": "0.5.1",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
4 changes: 2 additions & 2 deletions src/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mess",
"title": "Mess - Moerills enhancing super-suit(e)",
"description": "This module is a mix of QoL changes, enhancements for my game and stuff i play around with. For a complete feature list check the URL down below.",
"version": "0.5.0",
"version": "0.5.1",
"minimumCoreVersion": "0.6.0",
"compatibleCoreVersion": "0.6.0",
"author": "Moerill",
Expand All @@ -28,5 +28,5 @@
],
"manifest": "https://raw.githubusercontent.com/Moerill/mess/master/src/module.json",
"url": "https://github.com/Moerill/mess",
"download": "https://github.com/Moerill/mess/releases/download/v0.5.0/mess.zip"
"download": "https://github.com/Moerill/mess/releases/download/v0.5.1/mess.zip"
}
2 changes: 1 addition & 1 deletion src/scripts/rolls/dice.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export async function getDmgData({actor, item, spellLevel = null}) {

const actorBonus = actorData.bonuses[itemData.actionType] || {};
if (actorBonus.damage && parseInt(actorBonus.damage ) !== 0) {
parts[0][0] += "+@dmg";
rollData.parts[0][0] += "+@dmg";
rollData["dmg"] = actorBonus.damage;
}

Expand Down
4 changes: 4 additions & 0 deletions src/templates/welcome-screen.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ <h2></h2>
<p style="display: flex; flex-flow: row nowrap; align-items: center; justify-content: flex-start;"><input type="checkbox" class='show-again' id="welcome-screen-show-again"/> <label for="welcome-screen-show-again">Don't show this screen again until next update.</label></p>
<p style="text-align: right">Want to support development? <a href="https://github.com/Moerill/token-mold#support-the-development">Click here</a></p>
<h2></h2>
<h1>Changelog v0.5.1</h1>
<ul>
<li>Fixed error when trying to throw damage for actors with "Damage Bonus" defined in "Special Traits".</li>
</ul>
<h1>Changelog v0.4.0</h1>
<ul>
<li>
Expand Down

0 comments on commit 5ce1440

Please sign in to comment.