Skip to content

Commit

Permalink
v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MrVauxs committed Apr 19, 2023
1 parent eac54fd commit 7aa35a5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion data/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,12 @@
"ver": "0.8.0",
"title": "Quesadilla Day",
"date": "2023-04-19",
"txt": "- Added Treasure Vault\n- Removed Fluff and Books\n- Added support for direct Item Category parsing in Text Converter\n- (Typos/Tags)\n- (Thanks to @Jnosh for the following!)\n- Added the following sources:\n - Beginner Box\n - A Fistful of Flowers\n - Torment and Legacy\n - Pathfinder One-Shot: Sundered Waves\n - Threshold of Knowledge\n- Fixed creature scaler being run when disabled, leading to erroneous stats.\n- Minor improvements to creature statblock rendering:\n - show notes on individual skills\n - fix display of multiple ACs and AC abilities\n - show ability cost entries\n - support ability entries on individual saving throws\n - add skills notes & languages notes to add non-standard entries to the respective lists\n - Allow activity entries for creature attacks again to enable the rare case of attacks that take multiple actions.\n - show creature ability prerequisites\n - improve support for multiple HP entries on creatures (e.g. Hydra) and add support for HP notes\n - add support for a note property on creature spellcasting entries (e.g. Manticore Paaridar)\n - add support for a note property on creature abilities (e.g. Mafika Ayuwari)\n - add support for troop thresholds on creatures\n _copy improvements:\n - Extend property path support to additional _copy modifier modes\n - add a new _copy mode that sets object properties\n - add ability to apply Weak/Elite adjustment to creatures during _copy\n- add text converter support for:\n - creature skill notes\n - language notes\n - per saving throw abilities\n - troop thresholds\n- (And I mean a **lot** of Typos/Tags)"
"txt": "- Added Treasure Vault\n- Removed Fluff and Books\n- Added support for direct Item Category parsing in Text Converter\n- (Typos/Tags)\n- (Thanks to @Jnosh for the following!)\n- Added the following sources:\n - Beginner Box\n - A Fistful of Flowers\n - Torment and Legacy\n - Pathfinder One-Shot: Sundered Waves\n - Threshold of Knowledge\n- Fixed creature scaler being run when disabled, leading to erroneous stats.\n- Minor improvements to creature statblock rendering:\n - show notes on individual skills\n - fix display of multiple ACs and AC abilities\n - show ability cost entries\n - support ability entries on individual saving throws\n - add skills notes & languages notes to add non-standard entries to the respective lists\n - Allow activity entries for creature attacks again to enable the rare case of attacks that take multiple actions.\n - show creature ability prerequisites\n - improve support for multiple HP entries on creatures (e.g. Hydra) and add support for HP notes\n - add support for a note property on creature spellcasting entries (e.g. Manticore Paaridar)\n - add support for a note property on creature abilities (e.g. Mafika Ayuwari)\n - add support for troop thresholds on creatures\n- _copy improvements:\n - Extend property path support to additional _copy modifier modes\n - add a new _copy mode that sets object properties\n - add ability to apply Weak/Elite adjustment to creatures during _copy\n- add text converter support for:\n - creature skill notes\n - language notes\n - per saving throw abilities\n - troop thresholds\n- (And I mean a **lot** of Typos/Tags)"
},
{
"ver": "0.8.1",
"date": "2023-04-20",
"txt": "- Fixed a rendering bug related to spellcasting notes in creatures"
}
]
}
2 changes: 1 addition & 1 deletion js/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -4506,7 +4506,7 @@ Renderer.creature = {
let spells = []
for (let spell of sc.entry["constant"][clvl].spells) {
let bracket = ""
if (spell.notes.length) {
if (spell?.notes?.length) {
bracket = ` (${spell.notes.join(", ")})`
}
spells.push(`{@spell ${spell.name}|${spell.source || SRC_CRB}|${spell.name}}${bracket}`)
Expand Down
2 changes: 1 addition & 1 deletion js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if (typeof module !== "undefined") require("./parser.js");

// in deployment, `IS_DEPLOYED = "<version number>";` should be set below.
IS_DEPLOYED = undefined;
VERSION_NUMBER = /* PF2ETOOLS_VERSION__OPEN */"0.8.0"/* PF2ETOOLS_VERSION__CLOSE */;
VERSION_NUMBER = /* PF2ETOOLS_VERSION__OPEN */"0.8.1"/* PF2ETOOLS_VERSION__CLOSE */;
DEPLOYED_STATIC_ROOT = ""; // ""; // FIXME re-enable this when we have a CDN again
IS_VTT = false;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pf2etools",
"author": "Pf2eTools",
"version": "0.8.0",
"version": "0.8.1",
"license": "MIT",
"description": "A site dedicated to making playing games with your friends as easy as possible.",
"scripts": {
Expand Down

0 comments on commit 7aa35a5

Please sign in to comment.