diff --git a/CHANGELOG.md b/CHANGELOG.md index aae4c09..7ecca06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.2.2 + +### Bug Fixes + +* Fixes a bug where `textarea` elements were adding unnecessary whitespace. +* Exposes system setting to choose which edition of Mythic's rules for the Strong Back ability to use. + ## 0.2.1 ### Bug Fixes diff --git a/mythic.js b/mythic.js index fae8ea2..3ec59d1 100644 --- a/mythic.js +++ b/mythic.js @@ -55,7 +55,7 @@ function registerSystemSettings() { config: false, scope: "world", type: String, - default: "0.2.1" + default: "0.2.2" }); // Critical Failure Threshold @@ -88,18 +88,18 @@ function registerSystemSettings() { default: "special" }); - // Strong Back Version (set config to true & default to v45 on release of 4.5) + // Strong Back Version game.settings.register("mythic", "strongBackVersion", { - config: false, + config: true, scope: "world", name: "SETTINGS.strongBackVersion.name", hint: "SETTINGS.strongBackVersion.label", type: String, choices: { "v40": "Mythic 4.0", - "v45": "Mythic 4.5" + "v45": "Mythic 4.5+" }, - default: "v40" + default: "v45" }); // Flood Contamination Level diff --git a/system.json b/system.json index 64b92d3..dab56dd 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "name": "mythic", "title": "Mythic 5.0", "description": "An unofficial system implementation for playing the fan-made Halo: Mythic game on Foundry Virtual Tabletop.", - "version": "0.2.1", + "version": "0.2.2", "author": "Tyler Baum", "authors": [ { diff --git a/templates/partials/character-sheet-abilities.hbs b/templates/partials/character-sheet-abilities.hbs index 59841b6..a8230b9 100644 --- a/templates/partials/character-sheet-abilities.hbs +++ b/templates/partials/character-sheet-abilities.hbs @@ -95,6 +95,4 @@ +>{{data.data.abilityNotes}} diff --git a/templates/partials/character-sheet-educations.hbs b/templates/partials/character-sheet-educations.hbs index 21b53c2..3ceb077 100644 --- a/templates/partials/character-sheet-educations.hbs +++ b/templates/partials/character-sheet-educations.hbs @@ -100,9 +100,7 @@ + >{{data.data.educations.notes}} diff --git a/templates/partials/character-sheet-experience.hbs b/templates/partials/character-sheet-experience.hbs index da59a20..58ce2b8 100644 --- a/templates/partials/character-sheet-experience.hbs +++ b/templates/partials/character-sheet-experience.hbs @@ -53,9 +53,7 @@ + >{{data.data.experience.notes}}