Skip to content

Commit

Permalink
0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
EndlesNights committed Sep 25, 2022
1 parent 9cd762a commit 00cebd8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions module/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const addChatMessageContextOptions = function(html, options) {
},
{
name: game.i18n.localize("DND4EBETA.ChatContextTempHp"),
icon: '<i class="fas fa-user-plus"></i>',
icon: '<i class="fas fa-user-clock fa-fw"></i>',
condition: canApply,
callback: li => applyChatCardTempHp(li)
},
Expand All @@ -127,7 +127,7 @@ export const addChatMessageContextOptions = function(html, options) {
},
{
name: game.i18n.localize("DND4EBETA.ChatContextTrueDamage"),
icon: '<i class="fas fa-user-shield"></i>',
icon: '<i class="fa-light fa-user-shield"></i>',
condition: canApply,
callback: li => applyChatCardDamage(li, 1, true)
}
Expand Down
1 change: 1 addition & 0 deletions styles/dnd4eBeta.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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"
}
2 changes: 1 addition & 1 deletion templates/chat/roll-template-single.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4 class="dice-total">{{total}}</h4>
<a class="fakechatbutton chat-damage-button" title="{{ localize "DND4EBETA.ChatContextButtonTitle" }}" data-action="HalfDamage"><i class="fas fa-user-shield"></i>{{ localize "DND4EBETA.ChatContextHalfDamage" }}</a>
{{else if hitTypeHealing}}
<a class="fakechatbutton chat-damage-button" title="{{ localize "DND4EBETA.ChatContextButtonTitle" }}" data-action="Heal"><i class="fas fa-user-plus fa-fw"></i>{{ localize "DND4EBETA.ChatContextHealing" }}</a>
<a class="fakechatbutton chat-damage-button" title="{{ localize "DND4EBETA.ChatContextButtonTitle" }}" data-action="TempHeal"><i class="fas fa-user-plus fa-fw"></i>{{ localize "DND4EBETA.ChatContextTempHp" }}</a>
<a class="fakechatbutton chat-damage-button" title="{{ localize "DND4EBETA.ChatContextButtonTitle" }}" data-action="TempHeal"><i class="fas fa-user-clock fa-fw"></i>{{ localize "DND4EBETA.ChatContextTempHp" }}</a>
{{/if}}
</div>
<script>
Expand Down

0 comments on commit 00cebd8

Please sign in to comment.