-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathchangelog.txt
More file actions
6288 lines (5711 loc) · 325 KB
/
changelog.txt
File metadata and controls
6288 lines (5711 loc) · 325 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
VERSION[2.60.0][2026/01/28]
--- New to Path of Building ---
* Add 3.27 Phrecia Tree (ShadowTrolll)
* Add support for newer unveils on Bitterbind Point (Peechey)
* Add "aoe" filtering for gem search (Blitz54)
--- Fixed Crashes ---
* Fix crash on adding support gems and importing items to many builds (LocalIdentity)
* Fix Radius Jewels in Shared Items Crashing on Load (Peechey)
* Fix Crash when sorting gems while using Foulborn Gruthkul's Pelt (LocalIdentity)
--- User Interface ---
* Fix Foulborn Icons showing on tree nodes, and foil items not importing type (Blitz54)
--- Fixed Calculations ---
* Fix Spellslinger gaining generic damage instead of Spell damage (LocalIdentity)
* Fix Foulborn Choir of the Storm's Overcapped Mod not applying to Total Mana (Peechey)
--- Fixed Behaviours ---
* Fix Party Tab max Fortify override not working (LocalIdentity)
* Fix Utula's working with The Tides of Time (Blitz54)
--- Accuracy Improvements ---
* Updated Lori's Lantern text to match in-game description (EminGul)
* Fix flavour text for some Uniques (Blitz54)
* Fix Sirus Meteor and Maven Memory game damage values (LocalIdentity)
VERSION[2.59.2][2025/11/23]
--- Fixed Crashes ---
* Fix crash on adding support gems and importing items to many builds (LocalIdentity)
--- Fixed Behaviours ---
* Fix Party Tab max Fortify override not working (LocalIdentity)
VERSION[2.59.1][2025/11/22]
--- Fixed Bugs ---
* Fix error when loading Kinetic Fusillade (Wires77)
VERSION[2.59.0][2025/11/22]
--- Keepers of the Flame ---
* Add and support new 3.27 Uniques (LocalIdentity, Peechey)
* Add support for new Foulborn unique mods (LocalIdentity, Peechey)
* Add support for Farrul, Breach, Oshabi, Delirium, Catarina, Lycia and Olroth Bloodline Ascendancy nodes (LocalIdentity, Peechey, ProphetLamb)
* Add Support for Kinetic Fusillade DPS calculations (JustinStitt)
* Fix Forbidden Flesh / Flame jewels not working with Assassins new nodes (LocalIdentity)
--- New to Path of Building ---
* Add Ascendancy click switching with connect-path option (arthurwery)
* Add feature to view all mods sliders on Uniques by default (config to turn it off) (JustinStitt)
* Add anoint to unanointed amulets when comparing on items tab (Peechey)
* Add support for Penance Mark's minion (LocalIdentity)
* Add source for Spectre Aura skills in breakdown (LocalIdentity)
* Add option when using Balance of Terror to disable curse effect on enemy (LocalIdentity)
* Add Fortification Stats to CalcsTab (Peechey)
* Add Gold Respec Prices to Tooltip (Blitz54)
* Show Animation for Radius Jewels (Blitz54)
* Add default values for Melee and Projectile distance to enemy on configs tab (LocalIdentity)
* Add support for Sunblast's additional trap mod (user-74)
* Add better messaging around files being unavailable in OneDrive (Nightblade)
--- Fixed Crashes ---
* Fix crash using Max Unleash Seals with Vortex (Peechey)
* Fix crash when sorting some gems by Full DPS (LocalIdentity)
--- User Interface ---
* Add tooltip warning to flavour text config (Blitz54)
* Add status to cloud-error popup (Nightblade)
* Add Bloodline ascendancy to window title (LocalIdentity)
* Fix buggy tooltip for Equipped Items (Peechey)
* Fix trader price overlapping slots (Blitz54)
* Fix missing Source name of Tattoo mods in CalcsTab breakdowns (Peechey)
* Fix bug where tree position would move when PoB is minimized (Wires)
--- Fixed Calculations ---
* Fix calculation when using Unexciting Runegraft (LocalIdentity)
* Fix Poison Conc of Bouncing with Runegraft of Refraction (LocalIdentity)
* Fix flat Block chance on Shields being scaled by local inc Block chance mods (LocalIdentity)
* Fix Storm Cascade Trigger being affected by Accuracy (Paliak)
* Fix Resonating Shrine inc damage calculation (LocalIdentity)
* Fix "Ngamahu, Flame's Advance" applying to Foiled Unique Jewels (Peechey)
* Fix multiple Expansive Might cluster nodes stacking above 50% Area of Effect (LocalIdentity)
* Fix Might of the Meek not working with Light of Meaning (NL908)
* Fix Baranite Preacher Ball Lightning being affected by Area damage mods (LocalIdentity)
* Fix Fortification config not limiting to max possible Fortify (LocalIdentity)
--- Fixed Behaviours ---
* Fix Tree / Gem sort tasks being paused when PoB is unfocused (Wires77)
* Fix Heraldry not granting Exposure to enemies (LocalIdentity)
* Fix Grafts being considered as equipped items for Utula's Hunger (ATRussell63)
* Fix Grafts disabling Eternity Shroud ignore resistance mod (LocalIdentity)
* Fix Dual Wielding Mastery not counting Rune Daggers as different weapon type to Daggers (LocalIdentity)
* Fix ES and Evasion Mastery for Evasion on rings not working (LocalIdentity)
* Fix Righteous Fire of Arcane Devotion still applying when using Blood Magic (LocalIdentity)
* Fix Sacred Wisps applying to non-Wand Attacks (Peechey)
* Fix Beacon of Madness explode mod disabling life from Utula's Hunger (ATRussell63)
* Fix Spiritblade conversion and Moonbender's Wing gain mods always applying (LocalIdentity)
* Fix Foulborn Dialla's Malefaction not importing gems in correct order (LocalIdentity)
* Fix comparison showing for Ring 3 when Ascendancy was not allocated (Peechey)
* Fix Ring 3 visibility and Weapon Swap searching in Trader (Peechey)
* Fix Master Distiller not working with disabled Flasks (LocalIdentity)
* Fix Spectre corpse buffs applying when no Spectre gem is in build (LocalIdentity)
--- Accuracy Improvements ---
* Fix Cyclone of Tumult base Area value value (LocalIdentity)
VERSION[2.58.1][2025/11/05]
--- User Interface ---
* Fix incorrect tooltip when crafting some flask mods (LocalIdentity)
* Fix Damage Gain breakdown including skill conversion (LocalIdentity)
* Fix insufficient skill cost warning applying to other skills (LocalIdentity)
--- Fixed Calculations ---
* Fix Spectre conversion multiplier applying to "gain as x" mods and Chaos damage (LocalIdentity)
* Fix Pyroclast Mine Exposure being inverted and unscalable (LocalIdentity)
--- Fixed Behaviours ---
* Fix Intuitive Leap, Thread of Hope and Impossible Escape not parsing correctly (Wires77)
* Fix mod order when crafting Grafts (LocalIdentity)
* Fix "Farewell to Flesh" not applying to Agony Crawler ailment damage (LocalIdentity)
* Fix Dying Breath Curse effect mod not working (LocalIdentity)
VERSION[2.58.0][2025/11/03]
--- Keepers of the Flame ---
* Update and add new 3.27 skills (LocalIdentity)
* Add new Wand and Ring item bases (LocalIdentity)
* Add initial support for Grafts (LocalIdentity)
* Add initial support for Foulborn unique mods (Wires77)
* Add Support for new Monster Phys damage conversion logic (LocalIdentity)
* Add support for "Farewell to Flesh" (Lycia Bloodline Herald Ascendancy Node) (majochem)
* Add instant buyout to search URLs (Goufix)
--- User Interface ---
* Show Foulborn Icon on new Foulborn uniques and flavour text on new base items (Blitz54)
* Sort Replica Dragonfang's Flight mods (Wires77)
* Fix "The Tactician" missing flavour text (Nightblade)
--- Fixed Calculations ---
* Fix Warcry uptime when using Dual Strike of Ambidexterity (LocalIdentity)
--- Fixed Behaviours ---
* Fix Gem dropdown tooltip not updating when hovering over gems (LocalIdentity)
* Fix Aul Bloodline Aura nodes always applying (LocalIdentity)
* Fix Everlasting Sacrifice not showing the config from the Chaos Ascendancy (Wires77)
* Fix Intuitive Leap, Thread of Hope and Impossible Escape not working (n1tr0xs)
* Fix legacy Curse cluster not appearing on tree sometimes (LocalIdentity)
* Fix Overexertion and Echoes of Creation counting duplicate Warcries (LocalIdentity)
* Fix Chaos Inoculation not disabling Righteous Fire Buff and Degen (LocalIdentity)
--- Accuracy Improvements ---
* Fix Burning Ground from Replica Siegebreaker not working (pabgarbar)
--- Other changes ---
* Fix broken header images on Linux (ZereoX)
VERSION[2.57.0][2025/10/30]
--- Keepers of the Flame ---
* Add 3.27 Skill Tree (LocalIdentity)
* Add support for Aul Bloodline (Peechey)
* Add support for Chaos Bloodline (LocalIdentity)
* Add support for Oshabi Bloodline (Peechey)
* Add support for Ritualist Bloodline (Peechey)
* Add support for new & reworked Assassin Ascendancy nodes (majochem)
* Update "Rupture" stack maximum from 3 to 4 (majochem)
* Implement "Minion Attacks now inherently always Hit" (majochem)
--- New to Path of Building ---
* Add support for high DPI awareness to keep PoB looking crisp on higher resolution screens (LeonSparta, LocalIdentity)
* Add setting to override Windows scaling from PoB (LocalIdentity)
* Add four new spectres and update three existing spectres (Lothrik)
* Add Maxroll as a new build site you can export to (LocalIdentity)
* Auto URL encode when pasting an account name into the import (Nightblade)
* Update 3.26 uniques (Paliak)
* Add support for Projectile count of Spiral skills (Inzagini)
* Improve skill level breakdown and add gem quality breakdown to calcs tab (Paliak)
* Improve PoB performance when adding gems (LocalIdentity)
--- Fixed Crashes ---
* Fixed crash when sorting Minion skill gems in some builds (Lothrik, Paliak)
--- User Interface ---
* Improve UI to match in-game fonts and item previews (Blitz54)
* Add passive tree search tip (Nightblade)
* Sort Gem list Alphabetically by default (Blitz54)
* Add CTRL + C to error message to copy error text (Blitz54)
* Update font files (LocalIdentity)
--- Fixed Calculations ---
* Fix Spell Echo not working with some Minion skills (LocalIdentity)
* Correct skill slot comparison for General's Cry detection (emmanuel-ferdman)
* Use correct stat to set "Every3UseCrit" flag for Glacial Hammer of Shattering (fabianmaurer)
--- Fixed Behaviours ---
* Fix Runegraft of the Bound duplicating some mods (Paliak)
* Fix "Monsters cannot be Leeched from" map mod to disable ES leech (n1tr0xs)
* Fix "Chaos Golem of the Maelström" not enabling Wither config option (majochem)
* Fix Elemental Overload incorrectly setting ailment chance to 0% for critical strikes (majochem)
--- Accuracy Improvements ---
* Update mods on several uniques to use metres for radius instead of units (jeremykvlim)
* Change "other Ring" wording to "opposite Ring" (majochem)
* Fix Breakdown of Crit Damage when using Dance with Death (LocalIdentity)
* Fix missing Malevolence Aura Effect on String of Servitude (Inzagini)
--- Fixed Bugs ---
* Disable trade UI elements when leagues are not populated (Wires77)
--- Other changes ---
* Add better support for Unicode filepaths (Zao)
* Add support for loading webp images (Wires77)
* Update PoE.Ninja URLs after migration (Antorell, Wires77)
* Update permissions for Linux (Wires77)
* Fix subscript errors (Wires77)
* Fix erroneous call to GetUserPath and update pop-up message (Wires77)
VERSION[2.56.0][2025/08/11]
--- New to Path of Building ---
* Add support for average Lightning Tendrils DPS (LocalIdentity)
* Show DPS comparison for Flask slots when hovering over Unique item list (Blitz54)
* Add Undo support to Tattoo/Runegraft overrides (Blitz54)
* Add total minimum weight parameter to Timeless Jewel finder (tserdar)
* Add Beastcrafts to Item crafter (brendan-corrigan)
* Add support for Defiance of Destiny Gain before enemy hit (Regisle)
* Add support for duration of Ailments Retaliation mastery (LocalIdentity)
* Add support for Ancestral Commander Ancestral Spirit Minion buffs (LocalIdentity)
* Add support for Chieftain's Ramako, Sun's Light notable (Ruthless version) (kisiex)
--- Fixed Crashes ---
* Fix crash when using "Add modifier" button on Tinctures (brendan-corrigan)
--- User Interface ---
* Add text after red mods to show that PoB does not currently handle them (LocalIdentity)
* Display distance in Units in graphic for AoE breakdown (Blitz54)
* Tooltip text "tattoo" or "runegraft" based on node type (Blitz54)
--- Fixed Calculations ---
* Use harmonic mean for dual wield attack speed calc instead of average (Tntmister)
* Fix tincture quality effect multiplier rounding issue (NL908)
* Fix rounding of scaled mods being incorrect in some cases (Wires77)
* Fix Temporal Chains double counting towards Brand Ticks (LocalIdentity)
* Fix Poison Conc of Bouncing not counting Chains towards DPS (LocalIdentity)
* Fix Glacial Hammer of Shattering missing crit chance every 3rd use (LocalIdentity)
* Fix Absolution/Dominating Blow of Inspiring FullDPS when using config (LocalIdentity)
--- Fixed Behaviours ---
* Fix Mine Aura effect scaling Curses used with High-Impact Mine (LocalIdentity)
* Fix Ancestral Bond disabling Generals Cry damage (LocalIdentity)
* Fix Hand of Phrecia disabling Mine Auras (LocalIdentity)
* Fix Light of Meaning double counting starting nodes on Ascendant (LocalIdentity)
* Fix Kalandra's Touch not copying influence from other ring (LocalIdentity)
* Fix Howlcrack causing inf DPS with Generals Cry (Paliak)
* Fix issue where Rage Support was affecting Herald of Purity (Wires77)
* Fix Volatility applying to Minion Spell skills (LocalIdentity)
* Fix Influence not appearing correctly in PoB Trader (t1nky)
* Fix enemy Ailment Immunity not working with Rune of Treachery (LocalIdentity)
* Fix Shepherd of Souls applying twice with 2 Yaomac's Accord equipped (LocalIdentity)
* Fix node tooltip when using Intuitive Leap or Impossible Escape (Kojoley)
* Fix Ancestral Vision not working correctly with The Arkhon's Tools (LocalIdentity)
* Fix Ascendant/Gladiator Block Chance when using Necromantic Aegis (LocalIdentity)
--- Accuracy Improvements ---
* Fix Betrayal's Sting and Unique Talisman's missing catalyst scaling (LocalIdentity)
* Fix Devouring Diadem in unique list using suffix veiled mods (LocalIdentity)
* Add Catalyst tags to Whispers of Infinity (linusalpsten)
* Update Cinderswallow and support new mods (LocalIdentity)
--- Fixed Bugs ---
* Fix importing characters with names that contain foreign letters (poyushih)
VERSION[2.55.5][2025/07/18]
--- New to Path of Building ---
* Add support for Replica Dragonfang's Flight variants (linusalpsten)
--- Fixed Crashes ---
* Fix Autoexertion modifying active skill tables (Paliak)
--- Fixed Calculations ---
* Fix various node scaling issues (Wires77)
* Fix missing Minion DoT multiplier from critical hits (Wires77)
--- Fixed Behaviours ---
* Fix issue where socketed gem modifiers were scalable by Runegraft of the Bound (Wires77)
* Fix Iron Mass giving Skeletons Triple Damage in Offhand (Blitz54)
VERSION[2.55.4][2025/07/14]
--- New to Path of Building ---
* Add support for Corrupted Blood flask mods (Blitz54)
* Add support for Righteous Fire of Arcane Devotion more Cast Speed mod (oskar94)
--- Fixed Crashes ---
* Fix Crash when copying and pasting item into PoB sometimes (Nightblade)
--- User Interface ---
* Fix Attribute Requirement sorting (Blitz54)
* Remove Channelling time config box for Focused Channelling - Existing users should update their config (Wires77)
* Fix gems being added to skill groups when sorting dropdown (Paliak)
--- Fixed Calculations ---
* Fix Runegraft of the Bound scaling Facebreaker's incorrectly (LocalIdentity, Wires77)
* Fix Minion Scaling mods on Spinehail scaling with Widowhail (LocalIdentity)
* Fix Full DPS depending on order of skill groups (Paliak)
* Fix Spark maximum hits being calculated incorrectly (jeremykvlim)
* Fix Minion DoT DPS not including +50% DoT multiplier from Crits (Wires77)
* Fix Aura effect scaling when using Hand of Phrecia and "effect of auras on you" mods (Wires77)
* Fix inc effect on Cluster Jewel causing rounding issues (Wires77)
--- Fixed Behaviours ---
* Fix Autoexertion not working correctly with Arrogance (Paliak)
* Fix Summon Spider / Spectral Wolf count config not scaling with Dark Monarch (LocalIdentity)
* Fix Brand attachment duration not being scaled by Temporal Chains (LocalIdentity)
* Fix Reduced Effect of Curses on Self scaling beyond 100% reduced effect (Blitz54)
* Fix Maven Memory Game skill breaking Vile Bastion from working (Blitz54)
* Fix Nametaker not instant leeching Mana and Energy Shield (Blitz54)
* Fix Item sort option for "Current Usable" not taking into account local attribute requirement mods (LocalIdentity)
* Fix Plague Bearer default config not applying (Blitz54)
--- Accuracy Improvements ---
* Fix Bound by Destiny Phys prevented as ES Regen mod value (LocalIdentity)
VERSION[2.55.3][2025/07/02]
--- Fixed Calculations ---
* Fix Elemental Overload not reducing Ailment on crit chance to 0 (Paliak)
* Fix Multistrike + Awakened Spell Echo not working properly with minions (LocalIdentity)
--- Fixed Behaviours ---
* Fix Phantasmal Might not working when Summon Phantasm was linked to Spell Totem (LocalIdentity)
* Fix Elemental Overload applying to skills with 0 Crit Chance (LocalIdentity)
* Fix Minion Duration affecting skills supported by Summon Phantasm (LocalIdentity)
VERSION[2.55.2][2025/07/01]
--- Fixed Behaviours ---
* Fix Runegraft bonus for Boots / Gloves scaling skill gems (LocalIdentity)
* Fix Hand of Phrecia applying auras on enemies (LocalIdentity)
VERSION[2.55.1][2025/06/30]
--- Fixed Crashes ---
* Fix crash when trying to edit Config/Item Set after saving a new Set (Blitz54)
--- Fixed Behaviours ---
* Fix Summoned Phantasm not working correctly when used in Soulwrest (LocalIdentity)
* Fix The Dark Monarch not scaling "per summoned x" mods (LocalIdentity)
* Fix Swift Affliction less duration and damaging ailment duration not applying individually (deathbeam)
* Fix Coiling Whisper applying to all Curses instead of just Hexes (pjo256)
* Fix Runegraft bonus for Boots / Gloves not working (LocalIdentity)
VERSION[2.55.0][2025/06/29]
--- New to Path of Building ---
* Add support for all new 3.26 uniques (LocalIdentity)
* Add support for various "Infamous" (Mercenary exclusive) item modifiers (LocalIdentity, majochem)
* Support selecting Runegrafts on Masteries (Blitz54)
* Add support for Runegraft mods (LocalIdentity)
* Update Timeless Jewels to work with 3.26 Tree (LocalIdentity)
* Default build name on new builds to use the account and character name if imported (n1tr0xs)
* Add Cast Time breakdown to Calcs page for Warcries (n1tr0xs)
--- Fixed Crashes ---
* Fix Dual Strike of Ambidexterity causing crash (Paliak)
* Fix crash when right-clicking on a Keystone / Mastery (Blitz54)
* Fix crash when trying to copy a blank skill set (Blitz54)
--- Fixed Calculations ---
* Fix Trigger rate calculation for SpellSlinger, Automation and Autoexertion (Paliak)
* Fix Summon Phantasm using the active gem level instead of the support's level (LocalIdentity)
* Fixed EHP based on block effect calculation (n1tr0xs)
--- Fixed Behaviours ---
* Fix many support gems not working correctly with Minion skills (Paliak)
* Fix Brand Damage and Crit nodes not affecting Arcanist Brand Triggered skills (LocalIdentity)
* Fix Watchers Eye Purity of Lightning damage taken as mod in Unique database (LocalIdentity)
--- Other changes ---
* Fix flashing cmd window during update check (ccitro)
VERSION[2.54.0][2025/06/14]
--- New to Path of Building ---
* Add full support for new 3.26 Gems (LocalIdentity, Wires77, TPlant)
* Update existing gems with changes from 3.26 (LocalIdentity, Wires77)
* Add support for Cold Dot Multiplier per Overcapped Cold Res Mastery (Peechey)
* Add support for Life / Mana per red / blue socket Staff Mastery (LocalIdentity)
VERSION[2.53.1][2025/06/13]
--- User Interface ---
* Enable Sorting of folders by date and inherit the sort order in the build save dialogue (Noologos)
--- Fixed Calculations ---
* Fix CWC not supporting triggerbots (Paliak)
--- Fixed Behaviours ---
* Fix Champions' new maximum Fortification mod not working (LocalIdentity)
* Fix Nebulis and similar mods being treated as uncapped (Paliak)
VERSION[2.53.0][2025/06/13]
--- 3.26 Mercenaries of Trarthus ---
* Add new skill trees (Ariacell)
* Add showcased Mercenaries of Trarthus uniques (Paliak)
* Update uniques from patch notes (Tandrial)
* Add support for Vile Bastion Energy Shield per Spell Block mod (Ariacell)
* Add support for Fortification stacks above 20 (Zpooks)
* Add support for Minion Elemental conversion mods (Paliak)
* Add support for "with spell skills" mods (NL908)
* Add support for Shaper of Winter/Call of the Void damage taken mod (dcepil)
* Update Arcane Surge cast speed from 10% to 20% (Ariacell, Paliak)
* Update Death Aura damage (samimisami)
--- New to Path of Building ---
* Add support for Wintertide Brand average DOT calculation (czarandy)
* Add support for self-cast Hydrosphere DPS (CedrN)
* Add Karui Backburner Spectre (LollashTTV)
* Add support for Rejuvenation Totem Mana helm enchant (Blitz54)
* Add support for Tornado Shot legacy Helm Enchant (Blitz54)
* Add support for +1 Rallying/Battlemage Cry exerted attacks Helm Enchant (Blitz54)
* Add support for Felbog Fang Hindered mod (Blitz54)
* Add support for "minions recover #% life on block" (Blitz54)
* Add support for Assured Strike tree node (Blitz54)
* Add support for Settling Ash tree passive (Blitz54)
* Add a warning when more than one Aspect skill is active (Paliak)
* Add support for Ewar's Mirage +1 projectile when in off-hand (Blitz54)
* Add resource lost information to enemy damage breakdown (Edvinas-Smita)
* Add support for Aquamarine Flask "reduced effect of freeze on you" (Blitz54)
* Resume failed update feature (Wires77)
--- User Interface ---
* Add shortcut to copy node text from Passive Tree to the clipboard (rexfox147)
* Keep Max Price and Max Level between Trade Queries (mcagnion)
* Change wording for Base Damage Reduction in Hit taken breakdown (DarkJaslo)
* Show stored uses in Warcry uptime tooltip (CedrN)
--- Fixed Crashes ---
* Fix crash when importing skill tree (Wires77)
--- Fixed Calculations ---
* Fix Explosive Arrow multiplying fuse rate by action speed twice (NL908)
* Fix Gain Ward instead of Armour/Evasion mod when total is above 100 (LocalIdentity)
* Fix Herald of Ash damage showing negative values (LocalIdentity)
* Fix Puppeteer Caustic Ground on death calculation (LocalIdentity)
* Fix Tincture CDR mod and Mana Burn rate display bug (LocalIdentity)
* Fix Relic Flask's combining effect with Unique flask of the same name (LocalIdentity)
* Fix negative Impale DPS for dual wielding combined attacks (andyli00)
* Improve MoM + EB (+ES bypass) calculations (Edvinas-Smita)
--- Fixed Behaviours ---
* Fix issues around importing to the wrong tree (Wires77)
* Fix Sacrificial Zeal appearing on new builds (Paliak)
* Fix Foxshade Life modifiers preventing Life mastery (Blitz54)
* Fix Gruthkul's Pelt disabling on hit curses (Paliak)
* Fix Minion supports not scaling Siegebreaker ground DoT (LocalIdentity)
* Fix The Baron and Rotting Might not stacking correctly (LocalIdentity)
* Fix Wiki hotkey (F1) not working correctly on Relic Items (LocalIdentity)
* Fix Moonbender's Wing applying to Shield skills (LocalIdentity)
* Fix Queen's Hunger mod not working (Wires77)
--- Accuracy Improvements ---
* Remove Royale mods from craft menu and exporter (Blitz54)
* Update Shepherd of Souls Keystone mods (rexfox147)
* Fix many unique staves with Attack block instead of Spell block implicit (Blitz54, LocalIdentity)
* Update Malachai's Mark mods (Blitz54)
* Fix Tides of Time unique belt not having Shaper influence (RealWhimsy)
* Fix Dominating Blow Hit counting multiple times when used in FullDPS (Paliak)
* Fix Gem-lined Cap Ascendancy Notable not applying (Paliak)
* Fix first explicit mod missing when importing some uniques (Paliak)
* Update Scold's Bridle self-damage wording (HeffU)
* Remove channelling part from Divine Ire of Disintegration (Tntmister)
VERSION[2.52.3][2025/02/20]
--- New to Path of Building ---
* Add new Harbinger skills (Wires77)
--- Fixed Bugs ---
* Fix error when crafting a fishing rod enchant (Wires77)
VERSION[2.52.2][2025/02/20]
--- Fixed Crashes ---
* Fix Tawhoa's Chosen crash when no active skill is enabled (Paliak)
--- User Interface ---
* Dynamically expand some dropdowns that were too narrow to read (Wires77)
--- Fixed Behaviours ---
* Fix Forbidden jewels not finding the right ascendancy nodes (Wires77)
* Update tree data with missing cluster jewel nodes (Wires77)
VERSION[2.52.1][2025/02/20]
--- Fixed Bugs ---
Fixed update error (Wires77)
VERSION[2.52.0][2025/02/20]
--- New to Path of Building ---
* Add tree for Legacy of Phrecia (Wires77)
* Add checkbox for Sacrificial Zeal (Paliak)
* Add black background to detail text in character dropdown (Paliak)
* Add Molten Strike (+Zenith) ball average overlap calculations (andyli00)
--- Fixed Behaviours ---
* Fix Firestorm of Pelting skill effect duration (Peechey)
--- Accuracy Improvements ---
* Fix Eyes of the Greatwolf DoT Multi wording (henbe)
* Fix influences not importing correctly (Wires77)
--- Fixed Calculations ---
* Fix several bugs with infinite EHP and wrong phys max hit (Edvinas-Smita)
VERSION[2.51.0][2025/02/14]
--- New to Path of Building ---
* Add Wildspeaker, Blind Prophet, Aristocrat and Puppeteer ascendancy jewels (LocalIdentity)
* Add Ancestral Commander, Behemoth, Bog Shaman, and Scavenger ascendancy jewels (Peechey)
--- Fixed Calculations ---
* Fix maximum virulence parsing for multi-digit increases (deathbeam)
* Fix "Full Poison DPS" value capping to one stack (Wires77)
* Fix ES bypass regression (Edvinas-Smita)
--- Accuracy Improvements ---
* Fix various issues with Legacy of Phrecia ascendancies (Wires77)
VERSION[2.50.1][2025/02/12]
--- Fixed Calculations ---
* Fix "Full Poison DPS" value capping to one stack (Wires77)
VERSION[2.50.0][2025/02/12]
--- New to Path of Building ---
* Add support for Legacy Of Phrecia Ascendancies (LocalIdentity)
* Add unique jewel for each Ascendancy to make it easier to test
* Add Support for Shrine buffs from The Gull and staff Rune craft (LocalIdentity)
* Add poedb.tw to import website list (Chuanhsing)
* Basic Unicode support (zao)
* Implement ability to delete folders with contents (Paliak)
--- Fixed Crashes ---
* Fix crash related to trigger calculations (Paliak)
--- Fixed Calculations ---
* Fix Viper Strike of Mamba poison (Regisle)
* Improve EHP accuracy (Edvinas-Smita)
* Fixed Non-Damaging Ailment issue with Critical Mastery in Calc Screen (Jonathan-Dang)
--- Fixed Behaviours ---
* Fixed interaction between block replacement effect from Determined Survivor and Necromantic Aegis (Jonathan-Dang)
* Disable "gain when hit" for builds which cannot survive unlucky hits (Regisle)
--- User Interface ---
* Show Poison DPS in sidebar as the DPS for a single poison (Regisle)
--- Fixed Bugs ---
* Fixes Cinderswallow Urn missing the damage taken mod (n1tr0xs)
* Update Breathstealer's unique mods (n1tr0xs)
VERSION[2.49.3][2024/11/24]
--- Fixed Bugs ---
* Fix character import from accounts with a hyphen in them (tarekis)
* Fix trade realms not sorting correctly (Regisle)
VERSION[2.49.2][2024/11/19]
--- User Interface ---
* Validate discriminator is in account name on import (Regisle)
VERSION[2.49.1][2024/11/19]
--- Fixed Bugs ---
* Fix character import for Xbox and Playstation accounts (HashBR)
VERSION[2.49.0][2024/11/18]
--- New to Path of Building ---
* Fix character import for accounts with discriminators (Regisle)
* Change default Boss Config from None to Pinnacle (Regisle)
* Default to last added Tattoo in Tattoo popup (LocalIdentity)
* Add support for Debuffs granted by Glorious Madness (LocalIdentity)
* Add support for Storm Secret self damage calculation (LocalIdentity)
* Add Wretched Defiler Spectre (machenme)
* Add support for modifying affix limits (Regisle)
* Add support for Items Implicits Cannot Be Changed (Regisle)
* Add Support for many Runecraft Enchants by (LocalIdentity, Regisle, Paliak)
* Add Ctrl+Alt+c error popup (Nightblade)
* Update rare templates (Regisle)
* Add name of item causing requirements warning to warning message (Paliak)
* Update Affliction Spectre Buffs with 3.25 Changes (LocalIdentity)
--- Fixed Crashes ---
* Fix invalid skill IDs in party tab source (Regisle)
* Fix Trade Query Stat Weight Crash (Regisle)
* Fix Party Tab Crash with thresholds (Regisle)
* Fix special characters in set name causing crash (Paliak)
--- User Interface ---
* Show Curse limit on calcs tab (Regisle)
* Add "Ignore Mirrored Items" checkbox to trade query options (n1tr0xs)
* Hide recovery information on Mana Flasks if recovery is 0 (Paliak)
* Allow zero enemy armour in config and fix negative enemy damage (Regisle)
* Fix Warden import colour (Regisle)
--- Fixed Calculations ---
* Mana cost raw not being set to 0 when using lifetap (Paliak)
* Fix Frost Blades of Katabasis DoT not scaling with Tinctures and Multistrike (LocalIdentity)
* Fix 3.1 xp multiplier calc for levels 95-99 (OriginalThing)
* Shock and scorch fixes (Regisle)
* Improve EHP overkill approximation, especially for MoM (0xjc)
* Hollow Palm Technique proper Dual Wielding (Regisle)
* Fixed Off hand detection regarding Necromantic Aegis (Jonathan-Dang)
* Fix Herald of Ash overkill damage incorrectly scaling with global damage increases (Jonathan-Dang)
--- Fixed Behaviours ---
* Fix Blasphemy Auras triggering Mana cost warning (Paliak)
* Fix Eldritch Implicit Mod Replacement (Regisle)
* Fix Bloodscent not making Rage eligible (n1tr0xs)
* Fix "# of Warcries used recently" configuration option unavailable (n1tr0xs)
* Fix The Taming affecting Elemental ground DoTs (LocalIdentity)
* Fix Dual Strike of Ambidexterity and Cleave of Rage (Regisle)
* Fix Ghost Reaver and Brutal Fervour Interaction (Regisle)
* Fix abyss socket items with no selectable Socket count (e.g. Wraithlord) (Regisle)
* Default "Enemy Damage Type" to "Average" when changing Boss skills (ConnorThelin)
* Vengeful Cry Improvements (Regisle)
* Fix Kalandra's Touch skipping mods (Paliak)
* Fix Rupture sometimes applying multiple times (majochem)
--- Accuracy Improvements ---
* Make Runesmith enchants an enchant instead of a craft (Regisle)
* Fix Cooldown breakdown showing overrides for other skills (e.g. Flicker) (Regisle)
* Remove non-existant stat from Cadigan's Crown (deathbeam)
* Fix numerous fullDPS tooltip issues (Paliak)
--- Other changes ---
* Fix Dual Wielding Mastery "Elusive on block" not enabling Elusive config (Regisle)
* Fix Party Tab Warcries clearing links instead of Warcries (Regisle)
VERSION[2.48.2][2024/08/17]
--- Fixed Crashes ---
* Fix limited processing flag not persisting through recursions causing crash (Paliak)
--- User Interface ---
* Improve breakdown for Snipe's damage mods (Paliak)
--- Fixed Calculations ---
* Fix Damage while Leeching Life mod not working (LocalIdentity)
--- Fixed Behaviours ---
* Fix Sublime Vision disabling Mine skills (LocalIdentity)
* Fix Snipe for Assailum not working (Paliak)
VERSION[2.48.1][2024/08/15]
--- Fixed Crashes ---
* Fix crash when selecting Damage Over Time as the Enemy Damage Type (Wires77)
VERSION[2.48.0][2024/08/15]
--- New to Path of Building ---
* Hide legacy Tattoos from dropdown by default (LocalIdentity, Peechey)
* Add ability to search in the spectre library (nofate121)
* Add Support for Enemy damaging ailments (Regisle)
* View Gem level sources in calc sections (justjuangui)
* Enable Tincture Effects to also apply to Ranged Weapons (Regisle)
* Add support for Tincture mods (LocalIdentity)
* Add support for pseudo recoup like Divine Shield and Juggernaut (Regisle)
* Add support for some warcry power modifiers (Regisle)
* Add Warcry effect mod to calcs tab with breakdown (Regisle)
* Add support for export and importing warcry buffs to the Party Tab (Regisle)
* Add The Living Blade (Nostrademous)
--- Fixed Crashes ---
* Fix crash when using Power Charge on Crit from Elder staves (Wires77)
* Fix crash when allocating Blood Magic with Manabond (LocalIdentity)
--- User Interface ---
* Color mastery differences blue when comparing trees (nofate121)
* Improve Rage Calcs tab breakdown (Regisle)
* Fix Calcs tab scroll bar (Regisle)
* Fix full dps visual bug on gem dropdown (Paliak)
--- Fixed Calculations ---
* Fix Charge duration not using More/Less modifiers (Wires77)
* Fix Ynda's Stand Ward conversion mod not taking catalysts into consideration (krfreak)
* Fix accuracy of scaled Warcry buffs (Regisle)
* Fix Ward rounding final value incorrectly (LocalIdentity)
* Fix Hateforge Rage cost calculation (LocalIdentity)
* Minor improvements to Tinctures and Mana Burn (Regisle)
--- Fixed Behaviours ---
* Fix issue where PoB did not detect changes when selecting gems via keyboard shortcuts (nofate121)
* Fix The Light of Meaning adding stats to allocated sockets (Paliak)
* Fix Rage Effect incorrectly scaling some mods (LocalIdentity)
* Fix Rage Support not enabling Rage damage bonus (LocalIdentity)
* Fix Arcane Surge effect per Summoned Totem mod not working (LocalIdentity)
* Fix Ynda's Stand not working correctly with Trickster's Escape Artist (LocalIdentity)
* Fix Divine Blessing not removing reservation from skill (LocalIdentity)
* Fix Overexertion not applying to skills linked with Generals Cry (LocalIdentity)
* Fix rare case with gain on suppression with no chance to mitigate damage (eg 100% suppress chance) (Regisle)
* Fix Warcry options are not shown in all configurations (n1tr0xs)
* Fix Tattoos being removed from list when using Remove All Tattoos button (Peechey)
* Fix Minions with Endurance Charges still gaining resists (n1tr0xs)
* Fix EHP and Maximum Hit taken with negative Unreserved Life (Regisle)
* Fix Exerted multipliers applying twice when Dual Wielding (LocalIdentity)
* Fix Sand Stance "less damage taken" incorrectly applying to DoT degen (LocalIdentity)
--- Accuracy Improvements ---
* Update Sap of the Seasons to add new cap (Regisle)
* Add variant for post 3.21 Combat Focus (Paliak)
* Fix parsing missing for new wording on Emberwake (Paliak)
* Fix Maata's Teaching using wrong crit chance range (LocalIdentity)
* Fix incorrect names for Timeless Jewel nodes (LocalIdentity)
* Fix Kaom's Primacy Rage mod not working (LocalIdentity)
* Fix broken base types on some items (Regisle)
--- Fixed Bugs ---
* Fix infinitely nested XML stored as importLink (Wires77)
VERSION[2.47.3][2024/07/30]
--- Fixed Crashes ---
* Fix crash when importing builds to Party tab (Regisle)
* Fix crash when using Svalinn unique shield (Paliak)
--- Fixed Calculations ---
* Fix Inspiration granting more Mana cost instead of Less (LocalIdentity)
* Fix Warcry trigger rate calculations (Paliak)
* Fix Overexertion and Echoes of Creation counting non-exerting Warcries (LocalIdentity)
* Fixes Rupture using the wrong stat for damage taken and Bleed duration (dreais)
--- Fixed Behaviours ---
* Fix Autoexertion not triggering supported skills (Paliak)
* Fix Autoexertion not applying Mana reservation to Warcries (LocalIdentity)
* Fix Poison stacks not being capped by skills and config option (LocalIdentity)
* Fix item quality not defaulting to 20% (ConnorThelin)
VERSION[2.47.2][2024/07/29]
--- Fixed Calculations ---
* Fix Block Chance calculation (LocalIdentity)
VERSION[2.47.1][2024/07/29]
--- Fixed Calculations ---
* Fix Added Damage not applying to Monster Explosions (LocalIdentity)
* Fix Poison stacks applying twice to Poison DPS (LocalIdentity)
* Fix damage calculation when using both Autoexertion and Echoes of Creation (LocalIdentity)
--- Fixed Behaviours ---
* Fix increased Chance to Block mod on Shields not working (LocalIdentity)
VERSION[2.47.0][2024/07/29]
--- New to Path of Building ---
* Update Gems, Item bases, Mods and Minions (Wires77, Regisle, Nostrademous, LocalIdentity)
* Add support for new 3.25 Gems (LocalIdentity)
* Add support for new 3.25 Uniques (LocalIdentity, Paliak, Nostrademous)
* Add support for Warcries to affect Minions (Regisle)
* Add support for Echoes of Creation (LocalIdentity)
* Fix numerous issues in bleed calculations (CelestiaTheDryad)
--- Fixed Crashes ---
* Fix crash when importing a build where empty configs were not loaded properly (Wires77)
--- User Interface ---
* Remove remote build list functionality pending redesign (Wires77)
* Fix breakdown for DoT Multiplier (Rybadour)
--- Fixed Calculations ---
* Fix DoT Multi when using Maligaro's Virtuosity and Perfect Agony (DieMango)
* Fix Scorch chance on Crit when using Warden's Oath of Summer (ConnorThelin)
* Fix Gladiator Determined Survivor Shield Block calculation (Regisle)
* Fix Ignite divide by 0 error (NL908)
--- Fixed Behaviours ---
* Fix Quality on Tinctures to apply More effect instead of Increased (nexus671)
* Fix non-instant Life Leech incorrectly applying with Strength of Blood (greatnameincoming)
* Fix Ravenous Passion helmet not granting Spell damage from Rage (LocalIdentity)
* Fix Rallying Cry Exerted damage mod incorrectly working with Autoexertion (LocalIdentity)
* Improve Militant Faith Notable Protection (Peechey)
--- Accuracy Improvements ---
* Fix Dark Seer missing global Chance to Blind on Hit (NL908)
* Add tag to Legacy Watchers eye mods (LocalIdentity)
VERSION[2.46.0][2024/07/25]
--- New to Path of Building ---
* Add latest and trending builds list to the build list module (canuysal)
* Add searching for Oils in tree view (nobelv)
Prefix your search with "oil:" to search by anoint recipe
--- Fixed Crashes ---
* Fix crash with some stats in Party tab (Regisle)
--- User Interface ---
* Fix cancelling tree version conversion didn't revert back to previous value in dropdown (justjuangui)
--- Fixed Calculations ---
* Fix Rallying Cry Exerted damage mod not working with Autoexertion (LocalIdentity)
* Fix Maligaro's Virtuosity not working with Perfect Agony (LocalIdentity)
--- Fixed Behaviours ---
* Fix Banner skills not applying to Minions (LocalIdentity)
* Fix Flesh and Stone less damage taken scaling with Aura effect (KaoXinRei)
* Fix quality not applying to Tincture effect (Regisle)
* Fix Impale not scaling with "damage taken from hits" (mcheese)
* Fix Cleave of Rage area not scaling with Rage effect (Moremackles)
* Fix Seismic Cry AoE mod not applying sometimes (LocalIdentity)
* Fix Rage Vortex AoE per sacrificed Rage mod not working (LocalIdentity)
* Fix AoE from Fist of War not applying to supported skills (Nostrademous)
* Match single sets to loadouts more effectively (deathbeam)
--- Accuracy Improvements ---
* Update unique Staves with block changes (LocalIdentity)
* Fix Critical Strike Chance of some Rune Daggers (HashBR)
* Fix Mana cost for Infernal Cry (LocalIdentity)
* Fix Fungal Ground debuff to apply to all Resistances (LocalIdentity)
VERSION[2.45.0][2024/07/24]
--- New to Path of Building ---
* Add automatic calculation for Rage sacrificed when using Rage Vortex (LocalIdentity)
* Add support for changing item quality in the edit item interface (hexeaktivitat)
* Add config options to override the number of Trap/Mines per throw (NL908)
* Update Death Aura damage with 3.25 changes (LocalIdentity)
* Update Tattoo Keystones with 3.25 Changes (LocalIdentity)
* Update Legion Notables with 3.25 changes (LocalIdentity)
* Update Fungal and Profane Ground with 3.25 changes (LocalIdentity)
--- Fixed Crashes ---
* Fix crash when hovering over Tinctures in Item tab (justjuangui)
* Fix crash when socketing Thread of Hope in Cluster socket (trimbe)
* Fix crash when importing a build with Warcries (Regisle)
--- User Interface ---
* Add support to search Character import list by Ascendancy (justjuangui, ryuukk)
* Relax matching for loadout names and allow groups at any spot (deathbeam)
* Show proper skill group when switching loadouts (deathbeam)
--- Fixed Calculations ---
* Fix Seismic Cry AoE calculation (LocalIdentity)
* Fix Impale not using enemy damage taken (mcheese)
* Fix Tincture Mana Burn rate applying inversely (Regisle)
--- Fixed Behaviours ---
* Fix Rage Effect not applying to "per x Rage" mods (LocalIdentity)
* Fix Autoexertion and Call to Arms not disabling Warcry buffs (LocalIdentity)
* Fix Arcane Surge not working with Wilma's Requital (mcheese)
* Fix Cruel Retort granting Attack/Cast Speed to all skills (LocalIdentity)
--- Accuracy Improvements ---
* Fix Herald of Ash Phys as extra Fire scaling (LocalIdentity)
* Fix Cyclone of Tumult and Dual Strike of Impaling gem values (LocalIdentity)
--- Fixed Bugs ---
* Fix config set copies not having independent values (justjuangui)
VERSION[2.44.1][2024/07/23]
--- New to Path of Building ---
* Update 3.25 Skill trees (LocalIdentity)
* Remove more fire damage line from Herald of Ash description (LocalIdentity)
--- Fixed Crashes ---
* Fix Crash when allocating Perfect Agony while unarmed (LocalIdentity)
VERSION[2.44.0][2024/07/23]
--- New to Path of Building ---
* Update Axe, Claw, Dagger, Sceptre, Staff and Flask Bases with 3.25 Changes (LocalIdentity, pauloday)
--- Fixed Crashes ---
* Fix crash when trying to add gems to Penance Brand of Dissipation (Paliak)
--- User Interface ---
* Fix tree selection hotkey double selecting (Wires77)
* Add toggle for node search viewport edge highlight (Paliak)
--- Fixed Calculations ---
* Fix "damage with Bleeding" mod not working (LocalIdentity)
* Fix War Banner not granting damage to Bleed (LocalIdentity)
* Fix Valour incorrectly granting increased Aura effect instead of more Aura Effect (LocalIdentity)
* Fix Perfect Agony not including on enemy effects (Paliak)
* Fix Svalinn Lucky block mod not applying to Spell Block (LocalIdentity)
* Fix Seismic Cry more AoE mod scaling with Buff Effect (LocalIdentity)
* Fix Seething Fury not working with Perfect Agony (Paliak)
--- Fixed Behaviours ---
* Fix Power Siphon not benefiting from Spell Damage (LocalIdentity)
* Fix pathing from Ascendant path node to class start (trimbe)
* Fix Divine Blessing flat cost not appearing in breakdown (LocalIdentity)
* Fix Blood Rage not granting Attack damage leech (LocalIdentity)
* Fix Enduring Cry having incorrect duration (LocalIdentity)
--- Accuracy Improvements ---
* Fix Fist of War description not applying damage to Ailments (LocalIdentity)
* Fix Blade Flurry using the wrong damage effectiveness values (LocalIdentity)
* Fix Seismic Cry including old AoE increase mod (LocalIdentity)
* Fix Caustic Arrow of Poison still having Flat Damage (LocalIdentity)
* Fix elemental catalyst not applying to new The Taming (Nerotox)
* Fix Lethal Pride granting Phys as Extra Fire instead of Rage on hit (LocalIdentity)
VERSION[2.43.0][2024/07/23]
--- New to Path of Building ---
* Add 3.25 Passive Tree (Regisle)
* Update gems with 3.25 balance changes (LocalIdentity)
* Add new 3.25 uniques (Regisle, acoudray)
* Add support for linking sets through Loadouts (Subtractem, Peechey, deathbeam)
* Add support for multiple configurations (Peechey)
* Add support for new Gladiator Ascendancy nodes (Regisle, dicsantana)
* Add support for Tinctures (Regisle, Nostrademous)
* Add support for new Warden Ascendancy nodes (Nerotox, Regisle)
* Add support for new double Exerts Berserker Ascendancy (Paliak)
* Add support for Champion's new Fortify on allies Ascendancy (Regisle)
* Add support for Banner mods and Valour on tree (Regisle, LocalIdentity)
* Add support for new Bandit rewards (Paliak)
* Add support for new Endurance Charges stats (Regisle)
* Add support for new Perfect Agony keystone (Paliak)
* Add support for new Vaal Pact keystone (Nostrademous)
* Add support for new Rage Rework (Regisle, LocalIdentity)
* Update Wand base Attack Speed and Crit chance values (HashBR)
* Update base Ward recharge delay (Wires77)
* Update Quality on gear to be multiplicative (NL908)
* Add support for EHP lucky and unlucky (Regisle)
* Add support for Shaper Beam and Cortex Ground Degen as boss skills (Regisle)
* Add support for throwing multiple Mines/Traps (NL908)
* Add support for blocking allocated nodes when searching Militant Faith jewels (Peechey)
* Add support for removing all Tattoos from skill tree (Peechey)
* Add Abyssal Sockets to Item Trader (Peechey)
* Add support for Ambush gem (DieMango)
* Add support for Call to Arms gem (Paliak)
* Add support for Summon Wisps Support (Paliak)
* Add basic flask templates to item list (n1tr0xs)
* Add support for Spark maximum hits skill part (Nerotox)
* Add support for Tornado Shot secondary projectiles skill part (Regisle)
* Add support for Automation Support (Paliak)
* Add support for new tree notables (Nostrademous, Nerotox, Regisle, Paliak)
* Add support for Impale avoidance in Calcs tab (Nerotox)
* Add support for new Mastery nodes (Nerotox)
* Add support for Additional Strike targets mod (Nerotox)
* Add support for Bisco's Quantity/Rarity mods (Nerotox)
* Add support for flat dmg reduction to Projectile Attacks (Nerotox)
* Add support for Maim, Hinder, Impale, CB, Silence, Blind, and Knockback Immunity (Nerotox)
* Add support for the "%d more recovery if used while on low life" Life flask mod (Nerotox)
* Add support for Cold Snap more chill effect quality (0xjc)
--- Fixed Crashes ---
* Fix breakdown crash when using Crit Chance and Perandus Pact (n1tr0xs)
* Fix error when toggling 'Include Enchants' checkbox in the item trader (teroshan)
* Fix crash caused by Call to Arms Tattoo conversion (Paliak)
* Fix faulty uuid calculation causing cache miss (Paliak)
* Fix crash caused by invalid Impossible Escape keystone (trimbe)
--- User Interface ---
* Enhance passive tree search to show at the edges (JustinStitt)
* Redesigned the Import Character menu to improve readability (ryuukk)
* Add search to the Calcs tab (cooperaustinj)
* Show total tattoo count when adding tattoos (Peechey)
* Make Custom Modifiers input resizable (Yoshiitsune)
* Add option to sort builds by level (NCHitsman)
* Add a tooltip stat-diff toggle (Ctrl + D) to Items tab (Nightblade)
* Add support to change Skill Tree with Up and Down arrow keys (n1tr0xs)
* Split Player and Minion Info lines if they are too long (pHiney)
* Move "Insane" config to skills section (LocalIdentity)
* Correct subsection layout for Calcs tab (trimbe)
* Fix scrolling when using the Trader UI (trimbe)
* Fix manage trees in tree compare dropdown (zwglau)
* Adjust gem filtering buttons (ryuukk)
* Always show max Ignite stacks in Calcs tab (n1tr0xs)
* Add more Elemental Damage Reduction mods to Calcs tab (Regisle)