Skip to content

Commit

Permalink
v0.8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Spappz authored and MrVauxs committed Jul 22, 2024
1 parent c35d07b commit 322770b
Show file tree
Hide file tree
Showing 9 changed files with 730 additions and 509 deletions.
25 changes: 23 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
*.js text eol=lf
*.json text eol=lf
# Auto detect text files and perform LF normalization
* text=auto eol=lf

# Documents
*.md text diff=markdown
*.license text

# Graphics and assets
*.gif binary
*.icns binary
*.ico binary
*.jpg binary
*.jpeg binary
*.otf binary
*.png binary
*.svg binary
*.ttf binary
*.webp binary
*.woff binary
*.woff2 binary

# Overrides
*.license linguist-documentation
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@ jobs:
docker push $IMAGE_ID:$VERSION
docker push $IMAGE_ID:latest
# endregion
- name: Post Changelogs to Discord
run: bash ./.github/discord.sh --webhook-url="${{ secrets.DISCORD_WEBHOOK }}" --text "<@&901146147480043520>" --title "Pf2eTools $(head -n 1 RELEASE_NOTES.md | sed -E "s/(\"[^\"]+\")( edition)/_\1_\2/" | jq -Rs . | cut -c 2- | rev | cut -c 2- | rev)" --description "$(jq -Rs . <<< $(tail -n +2 "RELEASE_NOTES.md") | cut -c 2- | rev | cut -c 2- | rev)" --color "0x6f1c17" --url "https://github.com/Pf2eToolsOrg/Pf2eTools/releases/tag/${{ env.RELEASE_VERSION }}" --timestamp
#- name: Post Changelogs to Discord
# run: bash ./.github/discord.sh --webhook-url="${{ secrets.DISCORD_WEBHOOK }}" --text "<@&901146147480043520>" --title "Pf2eTools $(head -n 1 RELEASE_NOTES.md | sed -E "s/(\"[^\"]+\")( edition)/_\1_\2/" | jq -Rs . | cut -c 2- | rev | cut -c 2- | rev)" --description "$(jq -Rs . <<< $(tail -n +2 "RELEASE_NOTES.md") | cut -c 2- | rev | cut -c 2- | rev)" --color "0x6f1c17" --url "https://github.com/Pf2eToolsOrg/Pf2eTools/releases/tag/${{ env.RELEASE_VERSION }}" --timestamp
3 changes: 2 additions & 1 deletion data/bestiary/creatures-wow2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,8 @@
],
"languages": {
"languages": [
"arboreal,common",
"arboreal",
"common",
"draconic",
"fey",
"shadowtongue"
Expand Down
2 changes: 1 addition & 1 deletion data/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
},
{
"ver": "0.8.12",
"date": "2024-08-01",
"date": "2024-07-20",
"txt": "- The data-conversion train just doesn't stop. New sources added:\n - <i>Curtain Call Player's Guide</i> (@KierannS)\n - <i>Lost Omens: Highhelm</i> (@KierannS)\n - <i>Wardens of Wildwood #1: Pactbreaker</i> (@Spappz)\n - <i>Wardens of Wildwood #2: Severed at the Root</i> (@Spappz)\n - Some more (but still not all) <i>Player Core</i> content (@Spappz)\n- Fix the halcyon and elemental spell-list filters being completely incorrect! (@Spappz)\n- Fixed a number of bugs with the text converter for items, and enable slightly better compatibility with remaster formatting (@Spappz)\n- Update dependencies (@Spappz)\n- Tighten linting/code-quality rules (@Spappz)\n- Typos/tags (@Spappz)"
}
]
Expand Down
1,056 changes: 593 additions & 463 deletions data/sources.json

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions js/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -1581,6 +1581,7 @@ SRC_SKT0 = "SKT0";
SRC_WoW0 = "WoW0";
SRC_WoW1 = "WoW1";
SRC_WoW2 = "WoW2";
SRC_WoW3 = "WoW3";
SRC_RoE = "RoE";
SRC_TV = "TV";
SRC_AAWS = "AAWS";
Expand Down Expand Up @@ -1706,6 +1707,7 @@ Parser.SOURCE_JSON_TO_FULL[SRC_SKT0] = "Sky King's Tomb Player's Guide";
Parser.SOURCE_JSON_TO_FULL[SRC_WoW0] = "Wardens of Wildwood Player's Guide";
Parser.SOURCE_JSON_TO_FULL[SRC_WoW1] = "Wardens of Wildwood #1: Pactbreaker";
Parser.SOURCE_JSON_TO_FULL[SRC_WoW2] = "Wardens of Wildwood #2: Severed at the Root";
Parser.SOURCE_JSON_TO_FULL[SRC_WoW3] = "Wardens of Wildwood #3: Shepherd of Decay";
Parser.SOURCE_JSON_TO_FULL[SRC_RoE] = "Rage of Elements";
Parser.SOURCE_JSON_TO_FULL[SRC_TV] = "Treasure Vault";
Parser.SOURCE_JSON_TO_FULL[SRC_AAWS] = "Azarketi Ancestry Web Supplement";
Expand Down Expand Up @@ -1867,6 +1869,7 @@ Parser.SOURCE_JSON_TO_ABV[SRC_SKT0] = "SKT0";
Parser.SOURCE_JSON_TO_ABV[SRC_WoW0] = "WoW0";
Parser.SOURCE_JSON_TO_ABV[SRC_WoW1] = "WoW1";
Parser.SOURCE_JSON_TO_ABV[SRC_WoW2] = "WoW2";
Parser.SOURCE_JSON_TO_ABV[SRC_WoW3] = "WoW3";
Parser.SOURCE_JSON_TO_ABV[SRC_RoE] = "RoE";
Parser.SOURCE_JSON_TO_ABV[SRC_TV] = "TV";
Parser.SOURCE_JSON_TO_ABV[SRC_AAWS] = "AAWS";
Expand Down Expand Up @@ -1992,6 +1995,7 @@ Parser.SOURCE_JSON_TO_DATE[SRC_SKT0] = "2023-07-13";
Parser.SOURCE_JSON_TO_DATE[SRC_WoW0] = "2024-04-23";
Parser.SOURCE_JSON_TO_DATE[SRC_WoW1] = "2024-04-23";
Parser.SOURCE_JSON_TO_DATE[SRC_WoW2] = "2024-05-22";
Parser.SOURCE_JSON_TO_DATE[SRC_WoW3] = "2024-06-26";
Parser.SOURCE_JSON_TO_DATE[SRC_RoE] = "2023-08-02";
Parser.SOURCE_JSON_TO_DATE[SRC_TV] = "2023-02-22";
Parser.SOURCE_JSON_TO_DATE[SRC_AAWS] = "2021-02-24";
Expand Down Expand Up @@ -2117,6 +2121,7 @@ Parser.SOURCE_JSON_TO_STORE[SRC_SKT0] = "https://downloads.paizo.com/SkyKingsTom
Parser.SOURCE_JSON_TO_STORE[SRC_WoW0] = "https://downloads.paizo.com/WardensofWildwood_PlayersGuide.pdf";
Parser.SOURCE_JSON_TO_STORE[SRC_WoW1] = "https://paizo.com/products/btq02ev4";
Parser.SOURCE_JSON_TO_STORE[SRC_WoW2] = "https://paizo.com/products/btq02ewl";
Parser.SOURCE_JSON_TO_STORE[SRC_WoW3] = "https://paizo.com/products/btq02ez1";
Parser.SOURCE_JSON_TO_STORE[SRC_RoE] = "https://paizo.com/products/btq02eal";
Parser.SOURCE_JSON_TO_STORE[SRC_TV] = "https://paizo.com/products/btq02eav";
Parser.SOURCE_JSON_TO_STORE[SRC_AAWS] = "https://paizo-images.s3-us-west-2.amazonaws.com/image/download/Azarketi+Ancestry.pdf";
Expand Down Expand Up @@ -2312,6 +2317,7 @@ Parser.SOURCES_ADVENTURES = new Set([
SRC_WoW0,
SRC_WoW1,
SRC_WoW2,
SRC_WoW3,
SRC_7DfS0,
SRC_SoG0,
SRC_SoG1,
Expand Down Expand Up @@ -2496,6 +2502,7 @@ Parser.TAG_TO_DEFAULT_SOURCE = {
SRC_WoW0,
SRC_WoW1,
SRC_WoW2,
SRC_WoW3,
SRC_7DfS0,
SRC_SoG0,
SRC_SoG1,
Expand Down
Loading

0 comments on commit 322770b

Please sign in to comment.