Skip to content

Commit 0193e0b

Browse files
author
LocalIdentity
committed
Merge branch 'dev'
2 parents 5748c6f + e53d535 commit 0193e0b

File tree

156 files changed

+43681
-29689
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+43681
-29689
lines changed

.github/tweak_changelogs.sh

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#!/bin/bash
2+
3+
RELEASE_VERSION="$1"
4+
5+
# Delete until the first line containing "--"
6+
sed -i '1,/--/d' temp_change.md
7+
# Reverse the order of lines in the file (last line becomes first, etc.)
8+
sed -i '1h;1d;$!H;$!d;G' temp_change.md
9+
# Convert "**Full Changelog**: URL" format to markdown link format "[Full Changelog](URL)"
10+
sed -i -re 's/\*\*Full Changelog\*\*: (.*)/\[Full Changelog\]\(\1\)\n/' temp_change.md
11+
# Delete everything from "## New Contributors" line to the end of file
12+
sed -i '/## New Contributors/,$d' temp_change.md
13+
# Convert GitHub changelog entries from "* description by @username in pull/URL/number"
14+
# to "- description [#number](pull/URL/number) ([username](https://github.com/username))" format
15+
sed -i -re 's/^\*(.*)\sby\s@(.*)\sin\s(.*\/pull\/)(.*)\r?/-\1 [\\#\4](\3\4) ([\2](https:\/\/github.com\/\2))/' temp_change.md;
16+
# Username substitutions for preferred display names
17+
sed -i 's/\[Quotae/\[Quote_a/' temp_change.md
18+
sed -i 's/\[learn2draw/\[Lexy/' temp_change.md
19+
sed -i 's/\[Voronoff/\[Tom Clancy Is Dead/' temp_change.md
20+
sed -i 's/\[PJacek/\[TPlant/' temp_change.md
21+
sed -i 's/\[justjuangui/\[trompetin17/' temp_change.md
22+
23+
sed -i 's/\r//g' temp_change.md
24+
25+
cp temp_change.md changelog_temp.txt
26+
# Append existing CHANGELOG.md content (excluding first line) to temp_change.md
27+
cat CHANGELOG.md | tr \\r \\n | sed '1d' >> temp_change.md
28+
# Create new CHANGELOG.md with header containing version and date, followed by processed changes
29+
printf "# Changelog\n\n## [$RELEASE_VERSION](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/tree/$RELEASE_VERSION) ($(date +'%Y/%m/%d'))\n\n" | cat - temp_change.md > CHANGELOG.md
30+
# Convert changelog entries from markdown link format to simplified "* description (username)" format
31+
sed -i -re 's/^- (.*) \[.*\) \(\[(.*)\]\(.*/* \1 (\2)/' changelog_temp.txt
32+
# Create new changelog format: add version header, remove lines 2-3, format section headers, remove ## headers with following line, prepend to existing changelog
33+
echo "VERSION[${RELEASE_VERSION#v}][$(date +'%Y/%m/%d')]" | cat - changelog_temp.txt | tr -d \\r | sed '2,3d' | sed -re 's/^### (.*)/\n--- \1 ---/' | sed -e '/^##.*/,+1 d' | cat - changelog.txt > changelog_new.txt
34+
mv changelog_new.txt changelog.txt
35+
36+
# Normalize line endings to CRLF for all output files to ensure consistent checksums with Windows
37+
sed 's/\r*$/\r/' CHANGELOG.md > CHANGELOG_normalized.md && mv CHANGELOG_normalized.md CHANGELOG.md
38+
sed 's/\r*$/\r/' changelog.txt > changelog_normalized.txt && mv changelog_normalized.txt changelog.txt
39+
40+
# Clean up temporary files
41+
rm temp_change.md
42+
rm changelog_temp.txt

.github/workflows/beta.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,26 @@ jobs:
2020
run: |
2121
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
2222
git config --global user.name "github-actions[bot]"
23+
# The hash suffix will help identifying if the beta version is up-to-date
24+
- name: Add commit hash suffix to manifest version
25+
run: |
26+
sed -i "s/<Version number=\"\([^\"]*\)\"/<Version number=\"\1-$(git rev-parse --short HEAD)\"/g" manifest.xml
27+
- name: Generate Release notes
28+
run: |
29+
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
30+
# Delete existing beta draft if it exists
31+
if gh release view beta >/dev/null 2>&1; then
32+
gh release delete beta --yes
33+
fi
34+
# Create new beta draft release with generated notes
35+
gh release create beta --title "Beta Release" --draft --generate-notes
36+
gh release view beta > temp_change.md
37+
- name: Tweak changelogs
38+
run: |
39+
# Remove carriage returns to be able to run the script
40+
sed -i 's/\r$//' .github/tweak_changelogs.sh
41+
chmod +x .github/tweak_changelogs.sh
42+
.github/tweak_changelogs.sh beta
2343
- name: Update manifest.xml
2444
run: python3 update_manifest.py --quiet --in-place
2545
- name: Push to beta branch

.github/workflows/release.yml

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,11 @@ jobs:
2929
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token;
3030
gh release view $(basename ${{ github.event.inputs.releaseNoteUrl }}) > temp_change.md
3131
- name: Tweak changelogs
32-
run: >
33-
sed -i '1,10d' temp_change.md;
34-
sed -i '1h;1d;$!H;$!d;G' temp_change.md;
35-
sed -i -re 's/\*\*Full Changelog\*\*: (.*)/\[Full Changelog\]\(\1\)\n/' temp_change.md;
36-
sed -i '/## New Contributors/,$d' temp_change.md;
37-
sed -i -re 's/^\*(.*)\sby\s@(.*)\sin\s(.*\/pull\/)(.*)\r?/-\1 [\\#\4](\3\4) ([\2](https:\/\/github.com\/\2))/' temp_change.md;
38-
sed -i 's/\[Quotae/\[Quote_a/' temp_change.md;
39-
sed -i 's/\[learn2draw/\[Lexy/' temp_change.md;
40-
sed -i 's/\[Voronoff/\[Tom Clancy Is Dead/' temp_change.md;
41-
sed -i 's/\[PJacek/\[TPlant/' temp_change.md;
42-
sed -i 's/\[justjuangui/\[trompetin17/' temp_change.md;
43-
sed -i 's/\r//g' temp_change.md;
44-
cp temp_change.md changelog_temp.txt;
45-
cat CHANGELOG.md | tr \\r \\n | sed '1d' >> temp_change.md;
46-
printf "# Changelog\n\n## [v${{ github.event.inputs.releaseVersion }}](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v${{ github.event.inputs.releaseVersion }}) ($(date +'%Y/%m/%d'))\n\n" | cat - temp_change.md > CHANGELOG.md;
47-
48-
sed -i -re 's/^- (.*) \[.*\) \(\[(.*)\]\(.*/* \1 (\2)/' changelog_temp.txt;
49-
echo "VERSION[${{ github.event.inputs.releaseVersion }}][`date +'%Y/%m/%d'`]" | cat - changelog_temp.txt | tr -d \\r | sed '2,3d' | sed -re 's/^### (.*)/\n--- \1 ---/' | sed -e '/^##.*/,+1 d' | cat - changelog.txt > changelog_new.txt;
50-
rm temp_change.md;
51-
rm changelog_temp.txt;
52-
mv changelog_new.txt changelog.txt
32+
run: |
33+
# Remove carriage returns to be able to run the script
34+
sed -i 's/\r$//' .github/tweak_changelogs.sh
35+
chmod +x .github/tweak_changelogs.sh
36+
.github/tweak_changelogs.sh "v${{ github.event.inputs.releaseVersion }}"
5337
- name: Create Pull Request
5438
uses: peter-evans/create-pull-request@v5
5539
with:

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,19 @@ jobs:
1616
run: busted --lua=luajit
1717
- name: Report coverage
1818
run: cd src; luacov-coveralls --repo-token=${{ secrets.github_token }} -e TestData -e Data -e runtime
19+
check_modcache:
20+
runs-on: ubuntu-latest
21+
container: ghcr.io/pathofbuildingcommunity/pathofbuilding-tests:latest
22+
steps:
23+
- name: Install git dependency
24+
run: apk add git
25+
- name: Checkout
26+
uses: actions/checkout@v4
27+
- name: Regenerate ModCache
28+
env:
29+
LUA_PATH: ../runtime/lua/?.lua;../runtime/lua/?/init.lua
30+
REGENERATE_MOD_CACHE: 1
31+
run: cd src; luajit HeadlessWrapper.lua
32+
- run: git config --global --add safe.directory $(pwd)
33+
- name: Check if the generated ModCache is different
34+
run: git diff --exit-code src/Data/ModCache.lua

CHANGELOG.md

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,88 @@
11
# Changelog
22

3+
## [v0.12.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/tree/v0.12.0) (2025/09/15)
4+
5+
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.11.2...v0.12.0)
6+
7+
<!-- Release notes generated using configuration in .github/release.yml at dev -->
8+
9+
## What's Changed
10+
### The Third Edict
11+
- Add support for Deflection [\#1300](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1300) ([Edvinas-Smita](https://github.com/Edvinas-Smita))
12+
- Add new Abyss, Act 4 and Interlude Spectres [\#1369](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1295), [\#1369](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1369) ([Blitz54](https://github.com/Blitz54))
13+
- Update Quest Rewards with 0.3 changes [\#1347](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1328), [\#1347](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1347) ([Nightblade](https://github.com/Nightblade))
14+
- Add Support for sprinting [\#1358](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1358) ([LocalIdentity](https://github.com/LocalIdentity))
15+
- Add Abyss Timeless Jewel and support for Keystone mods [\#1364](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1364) ([LocalIdentity](https://github.com/LocalIdentity))
16+
- Add 25% more damage for Spectres and Beasts [\#1375](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1375) ([LocalIdentity](https://github.com/LocalIdentity))
17+
### New to Path of Building
18+
- Add support for Demon Form [\#746](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/746) ([Blitz54](https://github.com/Blitz54))
19+
- Add support for Detonation time [\#1319](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1319) ([TPlant](https://github.com/PJacek))
20+
- Add ability to sort tree and gear slots by Spirit and Item Rarity [\#1325](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1325) ([Mizkii](https://github.com/Mizkii))
21+
- Add Support for Time-Lost Notable Passive effect mod on radius Jewels [\#1342](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1342) ([LocalIdentity](https://github.com/LocalIdentity))
22+
### Tree
23+
- Add support for 50+ misc tree mods [\#1353](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1353), [\#1359](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1359) ([LocalIdentity](https://github.com/LocalIdentity))
24+
- Add support for "Walker of the Wilds" Keystone and other "leech recovers based on x" mods [\#1348](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1348) ([majochem](https://github.com/majochem))
25+
- Add support for Ballista Nodes on the Tree [\#1331](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1331) ([LocalIdentity](https://github.com/LocalIdentity))
26+
- Add support for many Companion mods on the tree [\#1350](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1350) ([LocalIdentity](https://github.com/LocalIdentity))
27+
- Add support for Gem related Notables at the bottom of the tree [\#1326](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1326) ([Mamotromico](https://github.com/Mamotromico))
28+
- Add support for Gigantic Following and Hulking Minions [\#1280](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1280) ([Blitz54](https://github.com/Blitz54))
29+
- Add support for Aura Magnitude mods on the tree [\#1357](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1357) ([LocalIdentity](https://github.com/LocalIdentity))
30+
- Add support for Cost Efficiency mods [\#1313](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1313) ([Wires77](https://github.com/Wires77))
31+
- Add support for Lucky / Unlucky mods on the Tree and gear [\#1298](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1298) ([Edvinas-Smita](https://github.com/Edvinas-Smita))
32+
- Add support for Tactician's Artillery Squad Minion [\#1333](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1333) ([LocalIdentity](https://github.com/LocalIdentity))
33+
- Add support for Flammability Magnitude & Infernalist's Bringer of Flame [\#1323](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1323) ([ImmotephSimon](https://github.com/ImmotephSimon))
34+
### Skills
35+
- Add support for Bonestorm, Flameblast, Incinerate, Supercharged Slam DPS [\#1382](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1382) ([LocalIdentity](https://github.com/LocalIdentity))
36+
- Add support for many support gems [\#1310](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1310), [\#1351](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1351) ([majochem](https://github.com/majochem), [LocalIdentity](https://github.com/LocalIdentity))
37+
- Implement Stoicism support and fix Innervate Support [\#1275](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1275) ([christian-trzcinski](https://github.com/christian-trzcinski))
38+
- Add Support for Living Lightning Minion [\#1377](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1377) ([LocalIdentity](https://github.com/LocalIdentity))
39+
- Add support for Skills granted by The Unborn Lich staff [\#1376](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1376) ([LocalIdentity](https://github.com/LocalIdentity))
40+
### Items
41+
- Add support for Constricting Command Surrounded mod [\#1349](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1349) ([LocalIdentity](https://github.com/LocalIdentity))
42+
- Add support for many Rune mods [\#1352](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1352) ([LocalIdentity](https://github.com/LocalIdentity))
43+
- Add Mask of the Sanguimancer unique [\#1277](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1277) ([Blitz54](https://github.com/Blitz54))
44+
- Add support for Bones of Ullr 0.3.0 wording [\#1335](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1335) ([Blitz54](https://github.com/Blitz54))
45+
- Add support for mods on Waveshaper [\#1361](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1361) ([LocalIdentity](https://github.com/LocalIdentity))
46+
### Fixed Crashes
47+
- Fix Crash when using Bow with +1 Arrow Rune [\#1282](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1282) ([LocalIdentity](https://github.com/LocalIdentity))
48+
- Fix Crash when adding custom mods to some Items [\#1320](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1320) ([Wires77](https://github.com/Wires77))
49+
- Fix Crash on Tree tab [\#1336](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1336) ([LocalIdentity](https://github.com/LocalIdentity))
50+
### User Interface
51+
- Display skill DPS modifiers in breakdown table [\#1354](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1354) ([LocalIdentity](https://github.com/LocalIdentity))
52+
- Add Flavour Text to Lineage Gems [\#1297](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1297) ([Blitz54](https://github.com/Blitz54))
53+
- Add Undying Hate Flavour Text [\#1296](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1296) ([Blitz54](https://github.com/Blitz54))
54+
- Add breakdown for Daze Chance on Calcs tab [\#1339](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1339) ([ImmotephSimon](https://github.com/ImmotephSimon))
55+
- Update Arcane Surge config tooltip [\#1287](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1287) ([LocalIdentity](https://github.com/LocalIdentity))
56+
- Fix display of some stats in gem tooltips [\#1304](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1304) ([LocalIdentity](https://github.com/LocalIdentity))
57+
- Fix quality stats on gems not showing up in gem tooltip [\#1302](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1302) ([LocalIdentity](https://github.com/LocalIdentity))
58+
- Fix extra misc lines showing up when copying and pasting items into PoB [\#1341](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1341) ([Wires77](https://github.com/Wires77))
59+
### Fixed Calculations
60+
- Fix Crit chance for Spells with Infusion variants [\#1303](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1303) ([LocalIdentity](https://github.com/LocalIdentity))
61+
- Fix Payload support "Grenade activate a second time" stat not affecting DPS [\#1308](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1308) ([LocalIdentity](https://github.com/LocalIdentity))
62+
- Fix Requiem not showing damage values [\#1334](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1334) ([LocalIdentity](https://github.com/LocalIdentity))
63+
- Fix Minion Gas Arrow skill not showing Poison / Explode damage [\#1372](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1372) ([LocalIdentity](https://github.com/LocalIdentity))
64+
- Fix Damage conversion / gain calcs [\#1374](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1374) ([LocalIdentity](https://github.com/LocalIdentity))
65+
- Fix Crit Chance when hitting with 2 weapons at once [\#1384](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1384) ([LocalIdentity](https://github.com/LocalIdentity))
66+
### Fixed Behaviours
67+
- Fix account import not working sometimes [\#1285](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1285) ([redgoldlace](https://github.com/redgoldlace))
68+
- Fix many Melee skills not hitting with both weapons when dual-wielding [\#1383](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1383) ([LocalIdentity](https://github.com/LocalIdentity))
69+
- Fix Herald of Blood buff not applying for conditional mods [\#1291](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1291) ([Wires77](https://github.com/Wires77))
70+
- Fix Totems using the wrong level for Life calculations [\#1332](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1332) ([LocalIdentity](https://github.com/LocalIdentity))
71+
- Fix Lightning Conduit "more damage with hits per 5% shock" mod [\#1309](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1309) ([majochem](https://github.com/majochem))
72+
- Fix Dance with Death incorrectly working with Hollow Palm Technique [\#1360](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1360) ([LocalIdentity](https://github.com/LocalIdentity))
73+
- Fix Trade search for Megalomaniac [\#1370](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1370) ([Wires77](https://github.com/Wires77))
74+
- Fix Trade search not working for Radius Jewels [\#1373](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1373) ([LocalIdentity](https://github.com/LocalIdentity))
75+
### Accuracy Improvements
76+
- Fix Bifurcates Crit mod not working on Tangletongue [\#1356](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1356) ([LocalIdentity](https://github.com/LocalIdentity))
77+
- Fix incorrect radius on Explosive Spear [\#1286](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1286) ([LocalIdentity](https://github.com/LocalIdentity))
78+
- Fix incorrect base types on Crown of Eyes and The Prisoner's Manacles [\#1292](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1292) ([Wires77](https://github.com/Wires77))
79+
- Fix Heart of the Well modifier names [\#1276](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1276) ([Blitz54](https://github.com/Blitz54))
80+
- Fix Flask mod list [\#1386](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1386) ([Wires77](https://github.com/Wires77))
81+
- Update Constricting Command unique helmet mod [\#1338](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1338) ([Wires77](https://github.com/Wires77))
82+
### Other changes
83+
- Generate automatic changelogs for Beta releases [\#1363](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1363) ([Musholic](https://github.com/Musholic))
84+
85+
386
## [v0.11.2](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v0.11.2) (2025/09/02)
487

588
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.11.1...v0.11.2)

0 commit comments

Comments
 (0)