diff --git a/CHANGELOG.md b/CHANGELOG.md index 58007ad5..bb0b5d9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Version 0.3.4 +- fixes "undefined undefined" when using consumables [merge](https://github.com/EndlesNights/dnd4eBeta/pull/242) from [draconas1](https://github.com/draconas1) +- Effects would not set for the first combatent [merge](https://github.com/EndlesNights/dnd4eBeta/pull/242) from [draconas1](https://github.com/draconas1) +- Heal dialog menu now displays surge value [merge](https://github.com/EndlesNights/dnd4eBeta/pull/242) from [draconas1](https://github.com/draconas1) +- changelog updated to fix spelling and fix mis-attributed changeset [merge](https://github.com/EndlesNights/dnd4eBeta/pull/242) from [draconas1](https://github.com/draconas1) +- Resetting Resources [merge](https://github.com/EndlesNights/dnd4eBeta/pull/240) from [kyleady](https://github.com/kyleady) +- minor css fixes + ## Version 0.3.3 - Custom Effects Fixes [merge](https://github.com/EndlesNights/dnd4eBeta/pull/239) from [draconas1](https://github.com/draconas1) diff --git a/module/chat.js b/module/chat.js index 01a69e35..8e6ea25c 100644 --- a/module/chat.js +++ b/module/chat.js @@ -109,7 +109,7 @@ export const addChatMessageContextOptions = function(html, options) { }, { name: game.i18n.localize("DND4EBETA.ChatContextTempHp"), - icon: '', + icon: '', condition: canApply, callback: li => applyChatCardTempHp(li) }, @@ -127,7 +127,7 @@ export const addChatMessageContextOptions = function(html, options) { }, { name: game.i18n.localize("DND4EBETA.ChatContextTrueDamage"), - icon: '', + icon: '', condition: canApply, callback: li => applyChatCardDamage(li, 1, true) } diff --git a/styles/dnd4eBeta.css b/styles/dnd4eBeta.css index 92305fd0..41895147 100644 --- a/styles/dnd4eBeta.css +++ b/styles/dnd4eBeta.css @@ -2223,6 +2223,7 @@ font-size: 12px; } .dnd4eBeta.chat-card .card-content { margin: 5px 0; + background: linear-gradient(90deg, #c3c2b7, #c3c2b718); } .dnd4eBeta.chat-card .card-content h3 { font-size: 12px; diff --git a/system.json b/system.json index 18080ada..dedfcf6d 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "id": "dnd4e", "title": "DnD 4th Edition", "description": "An implementation of Dungeons & Dragons 4th Edition game system for Foundry Virtual Tabletop.", - "version": "0.3.3", + "version": "0.3.4", "compatibility":{ "minimum": 10, "verified": 10, @@ -140,5 +140,5 @@ "secondaryTokenAttribute": "attributes.temphp", "url": "https://github.com/EndlesNights/dnd4eBeta", "manifest": "https://raw.githubusercontent.com/EndlesNights/dnd4eBeta/main/system.json", - "download": "https://github.com/EndlesNights/dnd4eBeta/archive/0.3.3.zip" + "download": "https://github.com/EndlesNights/dnd4eBeta/archive/0.3.4.zip" } diff --git a/templates/chat/roll-template-single.html b/templates/chat/roll-template-single.html index 26f8e2d1..193d99de 100644 --- a/templates/chat/roll-template-single.html +++ b/templates/chat/roll-template-single.html @@ -21,7 +21,7 @@

{{total}}

{{ localize "DND4EBETA.ChatContextHalfDamage" }} {{else if hitTypeHealing}} {{ localize "DND4EBETA.ChatContextHealing" }} - {{ localize "DND4EBETA.ChatContextTempHp" }} + {{ localize "DND4EBETA.ChatContextTempHp" }} {{/if}}