Skip to content

Commit 6f69812

Browse files
committed
v0.10.1
1 parent 55d0f15 commit 6f69812

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

data/changelog.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,11 @@
359359
"title": "By Request",
360360
"date": "2025-09-28",
361361
"txt": "- Catching up on the book releases...\n - <i>Claws of the Tyrant</i> (@Spappz)\n - <i>Lost Omens: Shining Kingdoms</i> (@Spappz)\n - <i>Myth-Speaker Player's Guide</i> (@Spappz)\n - <i>Rise of the Runelords Player's Guide</i>, sans mythic callings (@Spappz)\n - <i>Stolen Fate #1: The Choosing</i> (@Spappz)\n - <i>Stolen Fate #2: The Destiny War</i> (@izzalizard, @Spappz)\n - <i>Stolen Fate #3: Worst of All Possible Worlds</i> (@izzalizard, @Spappz)\n- Some new features...\n - Add Familiar Abilities page (@Spappz)\n - Add tags to the archetypes page to help you filter to archetypes that (eventually) grant an animal companion, eidolon, or familiar (@Spappz)\n - Add 'remaster' filter for backgrounds (@Spappz)\n- And, of course, fixed some more bugs!\n - Stop hiding items from <i>Season of Ghosts #2: Let the Leaves Fall</i> even though they were added a year ago (@Spappz)\n - Add missing ritual from <i>Night of the Gray Death</i> (@Spappz)\n - Add missing familiar abilities from <i>Player Core</i> (@Spappz)\n - Apply errata to converted <i>Player Core 2</i> content (@Spappz)\n - Fix duplicated groups in item filters (@Spappz)\n - Improve handling of remaster formatting for creatures' ritual entries, troops creature's thresholds, hazards' hardnesses, and settlements (@Spappz)\n - Improve Text Converter's damage-tagging abilities (@Spappz)\n - Sort the Text Converter's source-selector alphabetically (@Spappz)\n - Make the Text Converter correct non-breaking spaces (@Spappz)\n- Typos/tags (@Spappz)"
362+
},
363+
{
364+
"ver": "0.10.1",
365+
"date": "2025-09-28",
366+
"txt": "- Implement a script to reduce the size of the site for hosts with size limits such as Cloudflare (@Vauxs)"
362367
}
363368
]
364369
}

js/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if (typeof module !== "undefined") require("./parser.js");
55

66
// in deployment, `IS_DEPLOYED = "<version number>";` should be set below.
77
IS_DEPLOYED = undefined;
8-
VERSION_NUMBER = /* PF2ETOOLS_VERSION__OPEN */"0.10.0"/* PF2ETOOLS_VERSION__CLOSE */;
8+
VERSION_NUMBER = /* PF2ETOOLS_VERSION__OPEN */"0.10.1"/* PF2ETOOLS_VERSION__CLOSE */;
99
DEPLOYED_STATIC_ROOT = ""; // ""; // FIXME re-enable this when we have a CDN again
1010
IS_VTT = false;
1111

node/delete-seo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ const toDelete = [
99
"spells",
1010
"bestiary",
1111
"items",
12-
"sitemap.xml"
12+
"sitemap.xml",
1313
// TODO expand this as required, see generate-seo.js
1414
];
1515

16-
async function main() {
16+
async function main () {
1717
for (const dir of toDelete) {
1818
const path = `./${dir}`;
1919
if (fs.existsSync(path)) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pf2etools",
33
"author": "Pf2eTools",
4-
"version": "0.10.0",
4+
"version": "0.10.1",
55
"license": "MIT",
66
"description": "A site dedicated to making playing games with your friends as easy as possible.",
77
"scripts": {

0 commit comments

Comments
 (0)