forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.txt
5240 lines (4870 loc) · 278 KB
/
changelog.txt
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.42.0][2024/03/30]
--- New to Path of Building ---
* Add support for new 3.24 gems (LocalIdentity)
* Add support for Necropolis mods (LocalIdentity)
* Add config option to control the missing Unreserved Mana % for Manabond (Devlin1991)
* Add config toggle to add Arcane Cloak's mana spend to Mana spent recently modifier (Devlin1991)
--- User Interface ---
* Don't scale UI if user overrides scaling mode (Zao)
--- Fixed Bugs ---
* Fix settings not saving for certain users (Lothrik)
* Disallow delve mods on cluster jewels (Wires77)
* Fix Replica Hyrri's Ire granting Dex instead of Int (zebben)
* Fix Tree export to PoE Planner (pHiney)
--- Other changes ---
* Save resources when window is minimized (ryuukk)
VERSION[2.41.1][2024/03/27]
--- New to Path of Building ---
* Add buttons to filter Active and Support gems in Skills tab (ryuukk, Peechey)
* Add config option to bypass Vigilant Strike cooldown (rexfox147)
* Add Grace of the Goddess unique wand (Lexy)
* Add Spectral Throw of Materialising skill (Ciccooz)
--- Fixed Bugs ---
* Fix slowness caused by certain versions of LuaJIT (zao)
* Fix several calculation issues for triggers and mirages (Paliak)
* Fix excessive GPU load while minimized by stopping rendering (ryuukk)
--- Fixed Crashes ---
* Add workaround popup to specify new user path if default one fails (Wires77)
* Harden UserPath against unusable folders (zao)
* Clamp saved window size to minimum size (zao)
--- User Interface ---
* Fix blurriness for certain DPI factors (zao)
* Make file searches case-insensitive (zao)
--- Documentation ---
* Update developer documentation for 64-bit executable (justjuangui)
* Include licences of new third-party dependencies (ppoelzl)
VERSION[2.41.0][2024/03/25]
--- New to Path of Building ---
* Add support for new ES Stun mastery (LocalIdentity)
* 3.24 Changes:
* Convocation updated to only have 1 level (LocalIdentity)
* Add Convocation mod to Minion Wands and Shields (LocalIdentity)
* Add new Mechanical Belt base from Heist (LocalIdentity)
--- Fixed Bugs ---
* Stop sorting unique item list when added item isn't equipped (Wires77)
* Fix Wither stacks not working with Unholy Might (LocalIdentity)
* Fix Shield Crush of the Chieftain gem scaling (LocalIdentity)
* Fix Replica Hyrri's Ire not appearing in unique list (LocalIdentity)
* Fix Devouring Diadem missing Mana Reservation mod (LocalIdentity)
* Fix Wraithlord not giving global Minion levels (LocalIdentity)
VERSION[2.40.1][2024/03/24]
--- Fixed Bugs ---
* Fix Archmage added Mana cost not scaling correctly (LocalIdentity)
VERSION[2.40.0][2024/03/24]
--- New to Path of Building ---
* Overhaul graphics engine to v2.0 (Zao)
* Should have a noticeable increase in performance and fix many obscure crashes
* 3.24 Changes:
* Add 3.24 Trees by (Regisle)
* Add support for new 3.24 Uniques by (Lexy, LocalIdentity)
* Update existing uniques from 3.24 patch notes by (Lexy, LocalIdentity)
* Update existing skill gems from 3.24 patch notes by (Wires77, LocalIdentity)
* Update Tattoos, Flasks and item mods with 3.24 changes by (LocalIdentity)
* Add a config option for disabling Champion Intimidate effect (Paliak)
* Add support for Everlasting Sacrifice Keystone (sida-wang)
* Fix import of Taiwan realm to use Hotcool (Chuanhsing)
--- Fixed Crashes ---
* Fix crash when opening Item Trader after selecting a different league (Peechey)
* Fix snipe pre-calculation using wrong calc mode (Paliak)
--- User Interface ---
* Reduce clutter in Import character selection list (ryuukk)
* Adjust Totem Labels and Duration in Calc Sections (Peechey)
* Minor improvements to DPS display for mirages (Paliak)
--- Fixed Bugs ---
* Fix Dancing Dervish stats (Life, Damage and Damage reduction) (LocalIdentity)
* Fix self-hit damage conversion (Regisle)
* Fix Formless Inferno not increasing Minion Life (Paliak)
* Fix Utula's Hunger interaction with multiple uniques (Peechey)
* Fix Summon Skeletons Duration when using To Dust jewels (mart-mihkel)
* Disable skill rotation for Cast when Stunned (Paliak)
* Fix Snipe doing damage when in trigger mode (Paliak)
--- Accuracy Improvements ---
* Fix tooltip for Maximum Charges when using Badge of the Brotherhood or Masterful Form (sida-wang)
* Force Main Hand for Skills used by General's Cry mirages (Paliak)
* Fix sorting of Ailment breakdown sections (Peechey)
* Fix Armour and ES breakdowns for "100% increased..." Armour and ES Mastery (Peechey)
* Implement explosive trap +-30% base tertiary radius, fix overlap chance for transfigured version (Edvinas-Smita)
* Fix Life Leech and Block missing from current version of Essentia Sanguis (Paliak)
* Fix current variant of Lioneye's Glare missing Far Shot (Paliak)
* Fix Nightgrip missing "taken" keyword in description (Ciccooz)
VERSION[2.39.3][2024/01/26]
--- Fixed Crashes ---
* Fix crash when sorting gems on a disabled socket group (Paliak)
* Fix crash when hovering over Buffs section (Wires77)
--- Fixed Bugs ---
* Fix Utula's Hunger not working with Soul Tether, Legacy of Fury and Exarch Helmet implicit (Peechey)
VERSION[2.39.2][2024/01/25]
--- Fixed Crashes ---
* Fix crash when using opening wiki for skills granted by items (Peechey)
* Fix crash when mousing over Strength breakdown when using Flame's Advance (Paliak)
* Fix crash when hovering over some breakdowns (LocalIdentity)
VERSION[2.39.1][2024/01/24]
--- Fixed Crashes ---
* Fix crash when opening old builds by reverting Cluster Jewel import fix
* Fix crash when hovering attribute requirements (Wires77)
--- User Interface ---
* Fix breakdown sorting for unrelated stats (Wires77)
* Fix charge duration not displaying in breakdown (Wires77)
--- Fixed Bugs ---
* Fix mods not applying to Vaal gems correctly (sida-wang)
VERSION[2.39.0][2024/01/23]
--- New to Path of Building ---
* Add all new 3.23 Spectres (LocalIdentity)
* Fix longstanding issues with minion stats (more fixes will come in future updates) (LocalIdentity, ifnjeff)
* Some Minion Attacks will reduce by 10-30% DPS
* Life values of some minions will change
* Spectre DPS values will reduce for some monsters
* Armour and Evasion values will drastically increase
* Add support gem DPS sorting for Skills granted by Items (e.g. Arakaali's Fang, Whispering Ice etc.) (Paliak, sida-wang)
* Add That Which Was Taken jewel to unique list (justjuangui)
* Add support for filtering on number of Sockets and Links in Item Trader (Peechey)
* Add config to set the effect of Ruthless Support (LocalIdentity)
* Add support for resetting Search Weights in Item Trader (Peechey)
* Add support for Spectre buffs (justjuangui)
* Show Accuracy above Life when using Precise Technique (Peechey)
* Add support for converting all trees to latest version (Peechey)
* Add breakdown for Endurance, Frenzy and Power charges (duiker101)
--- Fixed Crashes ---
* Fix Crash on Beta branch when using trade search (secondfry)
* Fix Crash on clicking "Show All Configurations" in new build (Paliak)
* Fix Crash when skills granting buffs that rely on buffs are disabled (Paliak)
--- User Interface ---
* Sort the Calculations Tab breakdown lists by value (duiker101)
* Add scrollbar to Item Trader when large number of sockets are allocated (Peechey)
* Fix Boneshatter missing self damage breakdown (Paliak)
* Fix Rage Cost of Vaal Skills not displaying correctly for Hateforge (sida-wang)
* Fix Powerful/Frenzied Faith displaying incorrectly in the Timeless Jewel search (sida-wang)
--- Fixed Bugs ---
* Fix Law of the Wilds using the wrong minion data (LocalIdentity)
* Fix Blink/Mirror Arrow of Bombarding/Prismatic using wrong Minion Skills (LocalIdentity)
* Fix Cluster Jewel import not allocating nodes correctly by (sida-wang, Peechey)
* Fix importing of Vaal Impurity Skills and Transfigured Vaal Summon Skeletons (sida-wang)
* Fix mods that apply to skill gems, not applying to their Transfigured versions by (sida-wang, Paliak)
* Fix loading of Passive Tree dropdown in Items Tab (Peechey)
* Cap Doom Blast expiration mode and use charge based calcs for skills that ignore tick rate (Paliak)
* Fix bug where Precursor's Emblem's curse mod was not working (Drox346)
* Fix Flask effect increasing the Culling strike threshold from Voranas Preparation (Paliak)
* Fix Ngamahu, Flame's Advance adding Strength to Unique jewels (Paliak)
* Fix Vortex of Projection damage when cast on Frostbolt from increased to more (sida-wang)
* Fix Brand duration incorrectly affecting Duration of skills cast by Arcanist Brand (Paliak)
* Fix Trigger rate calculations when dual wielding 1h weapons (Paliak)
* Fixes Effective Trigger rate not accounting for Evasion roll for on Crit Triggers (Paliak)
* Fix Ruthless Support applying to Tawhoa's Chosen (Paliak)
* Fix Inspiration Charges not applying to Minion Skills (sida-wang)
* Fix skill effect duration from buffs not applying to Earthquake of Amplification Aftershock (sida-wang)
* Fix Poison Duration from Charms stacking with Noxious Strike (sida-wang)
* Fix Base Damage from Transfigured shield skills not being applied (sida-wang)
* Fix added Cooldown and added Cast Time not working correctly (Paliak)
* Fix Kalandra's Touch not adding to influenced items multiplier (Paliak)
* Fix resistance calculations when using Glimpse of Chaos and Chieftain Tasalio node (sida-wang)
* Fix Oath of the Maji not stacking with Juggernaut's Unbreakable (Random-Panda)
--- Accuracy Improvements ---
* Fix mod parsing for Militant Faith Cloistered Notable (Peechey)
* Fix incorrect base Mana cost of Toxic Rain with Mirage Archer (Paliak)
* Fix Unnatural Instinct incorrectly working with Pure Talent (Paliak)
* Fix Stun and Block Duration not rounding to server ticks (LocalIdentity)
VERSION[2.38.4][2023/12/20]
--- Fixed Crashes ---
* Fix occasional crash when loading build on Beta branch (Nostrademous)
VERSION[2.38.3][2023/12/19]
--- Fixed Crashes ---
* Fix crash when checking the breakdown for Transfigured Eye of Winter and Infernal Blow (LocalIdentity)
--- Fixed Bugs ---
* Fix Oath of the Magi not working for Body Armour slot (sida-wang)
* Fix Lancing Steel less damage multiplier only applying to Hits (deathbeam)
--- Other Changes ---
* Update The Adorned to work in Cluster Jewel sockets (LocalIdentity)
VERSION[2.38.2][2023/12/19]
--- Fixed Bugs ---
* Fix Bodyswap of Sacrifice explosion not scaling correctly (LocalIdentity)
VERSION[2.38.1][2023/12/18]
--- User Interface ---
* Fix tooltip for Summon Chaos Golem of the Maelstrom (QuickStick123)
* Fix Blade Blast of Dagger Detonation having a stages box (LocalIdentity)
* Fix "Cast on Frostbolt" config not showing for Ice Nova of Frostbolts (LocalIdentity)
--- Fixed Crashes ---
* Fix crash when importing some builds (Paliak)
--- Fixed Bugs ---
* Fix Flicker Strike DPS being limited by cooldown (sida-wang)
* Fix Replica Dragonfang's Flight not affecting Transfigured gems (Paliak)
* Fix Lacerate of Haemorrhage "more damage with Bleeding" using increased (sida-wang)
* Fix The Adorned not applying to jewels in outer tree sockets (LocalIdentity)
* Fix The Adorned applying to abyss jewels in gear (LocalIdentity)
* Fix Frost Blades of Katabasis DoT not being scaled by area damage (LocalIdentity)
* Fix Dual Strike of Ambidexterity not using offhand attack time (LocalIdentity)
* Fix Vaal gems loading incorrect variant after reopening a build (sida-wang)
* Fix Pyroclast Mine aura not affecting the damage of other skills (sida-wang)
* Fix gem mods on Forbidden Shako not working correctly with Utula's Hunger (sida-wang)
* Fix "damage taken by at least x%" Ailment mods not stacking (LocalIdentity)
--- Accuracy Improvements ---
* Fix Devouring Diadem using legacy Ailment duration mod (sida-wang)
* Fix Catalysts not working correctly on Replica Dragonfang's Flight (sida-wang)
* Revert preferred slot for Unseen Strike (Paliak)
VERSION[2.38.0][2023/12/18]
--- New to Path of Building ---
* Add support for new transfigured gems (LocalIdentity, Nostrademous, markoleptic, jopotochny, Lilylicious)
* Pretty much every new gem should be supported, with a select few still needing a bit more work
* Add support for selecting league for Timeless Jewel search (Peechey)
--- Fixed Crashes ---
* Fix Crash when using the Adorned and items with Abyssal sockets (LocalIdentity)
--- Fixed Bugs ---
* Fix Tinctures when using Micro-Distillery Belt (Peechey)
* Fix Lord of Drought increasing curse limit (Paliak)
* Fix Hidden Blade not using main weapon and its Supports (Paliak)
* Fix Rigwald's Curse damage conversion with specific Claw mods (Peechey)
* Fix Ascendancy class not resetting when changing base class (Lilylicious)
--- Accuracy Improvements ---
* Fix Minion Instability to now use player Summon speed instead of Minion Hit speed (Regisle)
* Fix Oath of the Maji applying when gear slot is empty (LocalIdentity)
* Fix Rage not working when using Warlord's Mark (LocalIdentity)
* Fix Deadly Ailments less hit damage multiplier not working (LocalIdentity)
* Fix Forbidden Shako and Megalomaniac display error if added from the uniques list (sida-wang)
--- Other changes ---
* Add additional attributes to save data (asvanberg)
VERSION[2.37.0][2023/12/13]
--- New to Path of Building ---
* Add support for new Uniques (LocalIdentity)
* The Adorned
* The Burden of Shadows
* Nametaker
--- User Interface ---
* Change Manastorm config option to not overrun options box (Ivniinvi)
--- Fixed Bugs ---
* Fix parsing for changed mod names (LocalIdentity)
* Storm Secret
* Umbilicus Immortalis
* Replica Infractem
* Dead Reckoning
* Fix Projectile count being 1 higher on all skills (LocalIdentity)
* Fix Ascendant nodes counting towards allocated passive skill total (Regisle)
* Fix Pyroclast Mine Aura Effect scaling Maximum Added Flat Damage (LocalIdentity)
* Fix Herald of Agony quality not working (LocalIdentity)
* Fix error when using Trader making you unable to search for item (LocalIdentity)
* Fix parsing for Necromancer Offering charm not working (LocalIdentity)
* Fix ES from Tricksters Escape Artist when using Oath of the Maji (LocalIdentity)
VERSION[2.36.1][2023/12/11]
--- Fixed Crashes ---
* Fix Crash when opening Timeless Jewel search (LocalIdentity)
--- Fixed Bugs ---
* Fix crash when hovering over Masteries (Wires77)
* Fix negative bypass being ignored (mortentc)
VERSION[2.36.0][2023/12/11]
--- New to Path of Building ---
* Update all base skill gems + minions with 3.23 changes by (Wires77, LocalIdentity)
* Add support for new Ascendancy skills by (Wires77, LocalIdentity)
* Add support for Charms (Regisle)
* Add support for Tinctures by (Regisle, LocalIdentity, Wires77)
* Adding new 3.23 uniques (Wires77)
* Add support for importing new Ascendancies (Wires77)
* Save trade search weights to build file (Peechey)
* Remove Pastebin as a build export option (LocalIdentity)
--- User Interface ---
* Add support for search Configuration tab (deathbeam)
* Add support for toggling ineligible configurations in Configuration tab (Peechey)
* Add warning when allocating too many Azmeri Ascendancy nodes (Regisle)
--- Fixed Bugs ---
* Fix ES bypass Mastery overriding Divine Flesh ES bypass (mortentc, Wires77)
* Fix Sin Trek and Legacy of Fury disabling life mod on Utula's Hunger (Lilylicious)
* Fix Eldritch Battery with Replica Covenant cost calculations (sida-wang)
VERSION[2.35.5][2023/12/07]
--- Fixed Bugs ---
* Fix reserving life with Dissolution of the Flesh affecting eHP (ProFrenchToast, LocalIdentity)
* Fix new Ascendancies being included in node counts (Lilylicious)
VERSION[2.35.4][2023/12/07]
--- New to Path of Building ---
* Add socket limit warning (sida-wang)
--- Fixed Bugs ---
* Fix Vortex base damage over time values (LocalIdentity)
--- Accuracy Improvements ---
* Fix socketed gem count calculation (sida-wang)
* Fix Evasion ES Mastery mod for ES on rings (Lilylicious)
* Update Reap + Vaal Reap quality mods (henbe)
VERSION[2.35.3][2023/12/06]
--- Fixed Bugs ---
* Fix damage taken as mods not appearing in Calcs tab breakdown (Regisle, LocalIdentity)
* Fix Lucky Spell Suppression chance not displaying in sidebar (MoonOverMira)
--- Accuracy Improvements ---
* Update Splitting Steel quality mod (kayokalinauskas)
VERSION[2.35.2][2023/12/06]
--- Fixed Bugs ---
* Fix Blade Vortex gaining damage from Unleash (LocalIdentity)
* Fix Tailwind not applying (LocalIdentity)
--- Accuracy Improvements ---
* Fix Ball Lightning quality stat (LocalIdentity)
* Remove dead Divine Ire mods (LocalIdentity)
VERSION[2.35.1][2023/12/06]
--- Fixed Crashes ---
* Fix crash when importing skill tree from account (Peechey)
--- Fixed Bugs ---
* Fix eHP calculations when using 'x damage taken as y' mods (LocalIdentity)
VERSION[2.35.0][2023/12/06]
--- New to Path of Building ---
* Add 3.23 Tree (LocalIdentity, Regisle)
* Add support for new Ascendancy nodes (LocalIdentity)
* Update + add support for new uniques from 3.23 (sida-wang)
* Update some gems with 3.23 changes (LocalIdentity, Lilylicious)
* Arc + Vaal Arc, Blade Vortex + Vaal Blade Vortex, Bladefall, Boneshatter, Cobra Lash, Cold Snap + Vaal Cold Snap, Crackling Lance,
Cyclone, Discharge, Divine Ire, Double Strike, Dual Strike, Explosive Trap, Freezing Pulse, Frenzy, General's Cry, Glacial Cascade,
Golems skills, Ice Crash, Ice Nova + Vaal Ice Nova, Ice Spear, Kinetic Blast, Lightning Conduit, Penance Brand,
Power Siphon + Vaal Power Siphon, Righteous Fire + Vaal Righteous Fire, Spark, Spectral Helix, Spectral Shield Throw, Spectral Throw,
Spellslinger, Split Arrow, Splitting Steel, Static Strike, Summon Holy Relic, Vortex
* Update experimental base types (LocalIdentity)
* Add support for Guardian's Elemental Relic Auras (Regisle)
* Add support for Intuitive Link (Paliak)
* Add support for Shrapnel Ballista's shotgunning (Regisle)
* Add support for enemy skill damage conversion (Regisle)
* Add support for enemy Resistance config to increase max res (Regisle)
* Add support for enemy Impale (Regisle)
* Add support for Anomalous Sacrifice support (lepideble)
* Add support for Divergent Temporal Rift (Regisle)
* Add support for reduced Wither effect on self (Regisle)
* Add support for 'if Corrupted' mod condition (Paliak)
--- Fixed Crashes ---
* Fix crash when allocating Tawhoa's Chosen and adding gems to a build (Paliak)
* Fix crash when triggering a minion skill with Arcanist Brand (Paliak)
* Fix crash when triggering a skill with CwC in a staff (Paliak)
* Fix crash when opening help section from build list (Regisle)
* Fix crash when searching for a Timeless Jewel after selecting a Devotion mod (Lothrik)
* Fix rare crash caused by forcing active an inactive group containing a trigger setup (Paliak)
* Fix rare crash when trying to save a build (Paliak)
--- User Interface ---
* Add the ability to customize the colour of the tree search highlight circle (admSla)
* Widen build selection list (pHiney)
* Add support for showing Split count for Projectiles (Regisle)
* Update text colour for some already supported mods on Gems (Regisle)
* Fix stat tooltip when hovering over nodes inside of Intuitive Leap / Thread of Hope (Paliak)
* Fix Bear Trap not appearing in Debuff section (Paliak)
--- Fixed Bugs ---
* Fix Maven Slam + Exarch Ball damage being affected Suppression (Regisle)
* Remove the normalisation of 'x damage taken as y' mods if they total to over 100% (Regisle)
* Do not have more than a total of 100% physical damage taken as mods!
* Fix Hit Chance applying twice to CoC trigger rate calculations (Paliak)
* Fix Channeled Melee or Attacks halving Trigger rate when Dual Wielding (Lilylicious)
* Fix Chieftain's Ngamahu, Flame's Advance node not working with Forbidden Flesh and Flame (Paliak)
* Fix Arcane Cloak not affecting max hit (LocalIdentity)
* Fix Projectile mastery not adding damage to Ailments (LocalIdentity)
* Fix Ice Golem's Ice Spear skill not being supported by Spell Echo (Paliak)
* Fix Accuracy rating against enemy mods affecting Accuracy stat (LocalIdentity)
* Fix Flasks applying twice if using Ceinture of Benevolence (Regisle)
* Fix Widowhail multiplying mods individually and oddly interacting with weapon swaps (Paliak)
* Fix Slavedriver's Hand Bloodmagic mod not working (LocalIdentity)
* Fix rare incorrect calculations bug when Mirages use forced active skills (Paliak)
* Fix fullDPS not working with Flamewood (Paliak)
* Fix Banner Aura debuff not applying in all cases (Regisle)
* Fix some Banner and Consecrated Ground mods not applying to allies (Regisle)
* Fix Holy Relic Nova spell when triggered by Static Strike (Paliak)
--- Accuracy Improvements ---
* Don't reorder gems on import if socketed into Dialla's Malefaction body armour (Paliak)
* Fix some Cluster Jewel nodes not being allocated on import (does not fix it completely) (Wires77)
* Fix Mantra of Flames not counting stacks from Trauma or Voltaxic Burst (LocalIdentity)
* Fix parsing for many Explode mods (LocalIdentity)
* Fix Honoured Tattoo of the Tuatara interaction with stat conversion jewels (Peechey)
* Fix Summon Sentinel of Radiance having 2 burning area skills (Regisle)
* Fix Prismatic burst, Shockwave and Combust not listing the correct trigger skill (Paliak)
* Fix negative Duration values (LocalIdentity)
* Fix negative Damage taken Over Time values (Regisle)
* Fix a few 'Regen every 4 seconds' mods (Regisle)
* Fix Affliction charges not affecting some ailment magnitudes (Paliak)
* Fix Flame Wall added Fire Damage Enchant values (LocalIdentity)
* Fix Phantasmal Flameblast AoE values (LocalIdentity)
* Update against damage over time to apply the modFlag directly (Regisle)
* Increase accuracy of defensive calculations for damage over time when using Divine Flesh and Tempered by War (Regisle)
VERSION[2.34.1][2023/09/16]
--- Fixed Crashes ---
* Fix crash when using Saviour Mirages in Full DPS (Paliak)
* Fix crash when using Cast when Channeling with Whispering Ice (Paliak)
--- User Interface ---
* Update tooltip wording for Magmatic Strikes config (Paliak)
* Show Warcry calculation mode when using Fist of War (Paliak)
--- Fixed Bugs ---
* Fix curse mods from The Felbog Fang and Fated End applying to Mark skills (Paliak)
* Fix Fist of War not applying to Projectile skill parts (Paliak)
* Fix Divergent Arcane Cloak not scaling properly with buff effect (LocalIdentity)
--- Accuracy Improvements ---
* Increase accuracy of Doom Blast calculations (Paliak)
* Fix parsing for some mods on the Pantheon (Paliak)
* Assume 1 stage by default for Sigil of Power (Paliak)
* Fix Scorching Ray max stages calculation (LocalIdentity)
VERSION[2.34.0][2023/09/13]
--- New to Path of Building ---
* Implement new 3.22.1 Tattoos (Wires77)
* Add icons to Socket groups based on the item slot (ryuukk, LocalIdentity)
* Substantially improve startup time (Lancej)
* Add support for limiting Node depth in Power Report generation (Subtractem)
* Party tab improvements (Regisle)
* Add support for Link Skills
* Add support for enemy conditions
* Add support for Mine Aura's
* Fix Vaal Aura's preventing base Aura from applying
* Fix Doryani's Prototype, Ambu's Charge and Eye of Malice
* Sort lists in alphabetical order
* Add support for applying Link skills to minions (Regisle)
* Add support for importing trees from poeplanner.com (pHiney)
* Add support for Maata's Teaching crit mod (Regisle)
* Add support for Momentum Support (Regisle)
* Add support for more Map mods (Regisle)
* Add support for more Stun duration mods (Regisle)
* Add remove account button to the Import tab (CrazieJester)
--- Fixed Crashes ---
* Fix crash when triggering skills with Unique weapons (Paliak)
* Fix crash caused by trigger source being disabled (Paliak)
* Fix crash (Paliak)
--- User Interface ---
* Add max equip level field to the trade query generator (Kerberos9)
* Add support for ignoring weapon swap on character import (Peechey)
* Display AoE values as metres (LocalIdentity)
* When using F1 to open the Help window, show info for the current tab (Regisle)
* Add support for item Enchantment comparison when hovering over the list (Peechey)
* Add confirmation popup when converting Skill Trees (Peechey)
* Add documentation for the Skills tab to Help window (nrardin)
* Show version and branch in error box (Lancej)
--- Fixed Bugs ---
* Fix Doom Blast trigger rate calculations (Paliak)
* Fix skill Mana/Life cost calculations when using Mana cost conversion Life Mastery (LocalIdentity)
* Fix Utula's Hungers Life mod not working with some Uniques added from PoB (Lilylicious)
* Fix Utula's Hungers Life mod not working if you had life on Jewels (Lilylicious)
* Fix Fresh Meat Support incorrectly granting all Minions Adrenaline (LocalIdentity)
* Fix Cast Speed not increasing the activation frequency of Arcanist Brand (Paliak)
* Fix FullDPS issues when using Mirage Archer or Minions (Paliak)
* Fix Energy Blade alt qualities failing to apply twice when Dual Wielding (LocalIdentity)
* Fix Ahuana's Bite only increasing Cold damage taken instead of all damage taken (LocalIdentity)
* Fix CWDT calculations when linked to multiple skills (Paliak)
* Fix Kitava's Thirst trigger rate when Dual Wielding (Paliak)
* Fix Trauma Rate doubling when Dual Wielding (LocalIdentity)
* Fix +1 to Socketed Skill gems mod not working (LocalIdentity)
* Fix trigger rate for Tawhoa's Chosen (Dogist)
--- Accuracy Improvements ---
* Add a legacy tag to Cluster Jewels that no longer drop (LocalIdentity)
* Add missing variant to Tulborn (pHiney)
* Fix typo in Death Rush ring (Lancej)
* Fix typo in Ashrend body armour (Lancej)
* Fix Ahuana's Bite 'Chill as though dealing' mod (LocalIdentity)
* Fix chance to Inflict ailments breakdown (LocalIdentity)
* Fix breakdown for skills that grant Ailment Immunities (LocalIdentity)
* Fix extra Abyssal socket appearing on Stygian Vise and Darkness Enthroned belts (Lilylicious)
* Fix some mod ranges being inverted (Lilylicious)
* Fix wording on Uul-Netol's Vow (Wires77)
* Fix negative EHP values from Progenesis Flask by capping its effect (Regisle)
* Fix calculation of increased cooldown reduction breakpoint suggestions (Paliak)
--- Other changes ---
* Reduce memory usage when on the tree tab (Lancej)
* Add option to disable Lua JIT (Lancej)
* Fix Unicode input for PoeCharm (Lancej)
VERSION[2.33.5][2023/08/28]
--- Fixed Crashes ---
* Fix crash when triggering a Skill from a Weapon (LocalIdentity)
VERSION[2.33.4][2023/08/28]
--- Fixed Crashes ---
* Fix crash when using Kitava's Thirst (Paliak)
* Fix crash when loading some 3.20 builds (Peechey)
--- Fixed Bugs ---
* Temporarily Revert trigger rate calculations to old formula (Paliak)
* Fix Doom Blast overlap count not affecting DPS (Paliak)
* Fix Skill Effect Duration affecting Totem duration (Paliak)
* Prevent Tawhoa's Chosen Attacks from being Exerted (Paliak)
* Fix crash when adding Support gems to some skills (Paliak)
* Fix Mirage Archer disabling skills supported by Manaforged Arrows (Paliak)
VERSION[2.33.3][2023/08/26]
--- Fixed Bugs ---
* Fix Replica Dragonfang's Flight not providing levels to Vaal versions of a skill (Paliak)
* Fix Full DPS not working for skills granted by items e.g. Arakaali's Fang (Paliak)
* Fix Militant Faith jewel not overriding small attribute tattoos (LocalIdentity)
VERSION[2.33.2][2023/08/26]
--- Fixed Crashes ---
* Fix Flamewood Support crash when selecting Support gems (Paliak)
* Fixed crash when searching trade for Jewels with Chieftain's Ngamahu Ascendancy allocated (Tivorak)
--- Fixed Bugs ---
* Fix Spellblade Support not adding damage before level 14 (Wires77)
* Fix Flamewood support not scaling with Spell and Projectile damage (LocalIdentity)
* Fix Flamewood Support being disabled by Ancestral Bond (Paliak)
VERSION[2.33.1][2023/08/25]
--- Fixed Crashes ---
* Fix crash when using a trigger Wand mod (Paliak)
* Fix crash when using a trigger Helmet Focus mod (Paliak)
* Fix crash when using Flamewood Support (Paliak)
--- User Interface ---
* Display Channel time in the sidebar for Skills triggered by Snipe (Paliak)
--- Fixed Bugs ---
* Fix Hungry Loop not recognising Elemental Army (Paliak)
* Fix separate Totem Duration affecting Skill Duration (Paliak)
* Fix Melding of the Flesh not working correctly with Chieftain Valako ascendancy (Paliak)
* Fix Flamewood Support not being affected by Totem mods (Paliak)
VERSION[2.33.0][2023/08/25]
--- New to Path of Building ---
* Support for triggered skills has been reworked (Paliak)
* Calculations of effective triggered skills trigger rate should now be more accurate
* Improve cooldown breakpoint interactions with skills that add Cast time
* Implemented all currently existing trigger skills that POB is capable of supporting. Including:
* CWDT
* Spell Slinger
* Counter-attack skills
* Arcanist brand
* Tawhoa's Chosen
* Battlemage's Cry
* Add support for Trigger Bots
* Add support for Flamewood Support
* Add Support for Guardian's minion RF skill (LocalIdentity)
--- Fixed Crashes ---
* Fix crash when using Ruthless Support in a Poison build (LocalIdentity)
* Fix crash when trying to edit Energy Blade weapon (Wires77)
* Fix crash when viewing resist breakdown while having Chieftains Valako Ascendancy (Paliak)
--- User Interface ---
* Trigger related breakdowns should now be more descriptive (Paliak)
* Improve breakdowns for skills that add Cast time (Paliak)
* Display Cast when Damage Taken threshold in the trigger rate section (Paliak)
--- Accuracy Improvements ---
* Fix inaccuracies caused by incorrect handling of skill cooldown during skill rotation simulation (Paliak)
* Triggers should now correctly account for source rate modifiers such as crit chance and accuracy (Paliak)
* Fix many self triggers counting as self-cast (Paliak)
* Fix incorrect handling of gems supported by more than one trigger (Paliak)
--- Fixed Bugs ---
* Fix Volatility from applying multiple times when conversion is present (Regisle)
* Fix Chain count box not appearing sometimes (LocalIdentity)
* Fix Cold Exposure mastery not working correctly (LocalIdentity)
* Fix gems not benefiting from Supports sometimes (LocalIdentity)
* Fix Trauma Duration sometimes using skill Duration (LocalIdentity)
* Fix Strength of Blood Keystone not working (LocalIdentity)
VERSION[2.32.2][2023/08/24]
--- Fixed Bugs ---
* Fix crash caused by usage of incorrect breakdown table (Paliak)
* Fix lua error when hovering Ascendant nodes (Wires77)
VERSION[2.32.1][2023/08/24]
--- Fixed Bugs ---
* Fix crash when opening some minion builds (Paliak)
* Fix Timeless jewel stats disappearing when applying a tattoo (Wires77)
VERSION[2.32.0][2023/08/24]
--- New to Path of Building ---
* Add support for tattoos (Wires77)
* Add support for Ruthless tree (Wires77)
* Add support for 3.22 skill gems (LocalIdentity, Lilylicious, Regisle, Paliak, Wires77, deathbeam)
* Full Support
* Locus Mine
* Devour
* Volatility
* Sadism
* Spellblade
* Trauma
* Corrupting Cry
* Frigid Bond
* Guardian's Blessing
* Fresh Meat
* Sacrifice
* Controlled Blaze
* Add support for new Chieftain and Guardian ascendancy nodes (Paliak)
* Add initial support for Guardian minion nodes (LocalIdentity)
* Add self-hit calculations for Scolds Bridle, Eye of Innocence and Heartbound Loop (Paliak)
* Add support for new Ancestor uniques (Wires77, LocalIdentity)
* Improve startup time (Lancej)
--- User Interface ---
* Help section improvements (Regisle)
* Add immunity flags to defence avoidance breakdown (Paliak)
* Removing allocated mastery from hover list (Wires77)
* Improve sync of tree version and version dropdown (Peechey)
--- Fixed Bugs ---
* Fix nodes not being able to be allocated after converting a tree (Peechey)
* Fix totem duration mods not applying (Paliak)
* Fix DPS on Vaal Flicker when using 2x 1h weapons (LocalIdentity)
* Fix Repeat count for minion skills (Wires77)
* Fix Snipe damage going negative (Paliak)
* Fix Snipe showing DPS values when triggering support skills (LocalIdentity)
* Fix Doom Blast not working with Forbidden Shako (Paliak)
* Fix Bleed/Ignite Stack potential issues (LocalIdentity)
--- Accuracy Improvements ---
* Update 3.22 skill tree (Regisle)
* Allow setting inspiration charges to 0 (Paliak)
* Fix "Enemies maimed by you take inc damage over time" not in breakdown display (LocalIdentity)
* Fix Pierce and Chain count config not appearing sometimes (LocalIdentity)
* Fix lower channel time stat using red text (LocalIdentity)
* Fix incorrect increased usage mod range on Cinderswallow Urn (Paliak)
VERSION[2.31.2][2023/08/16]
--- Fixed Bugs ---
* Fix issue when importing characters (Wires77)
* Fix typo with Ignite Stack Potential Override (Wires77)
VERSION[2.31.1][2023/08/16]
--- User Interface ---
* Lower contrast of gem select highlight (ryuukk)
--- Accuracy Improvements ---
* Undo incorrect Explosive Arrow change (Lilylicious)
* Fix Frozen Legion benefiting from exerts (Lilylicious)
* Fix Combustion debuff not applying when a non-damaging skill precedes a damaging skill (Lilylicious)
* Fix Blood Sacrament not being capped by Cooldown (LocalIdentity)
* Fix Tree conversion stopping you from allocating some tree nodes (LocalIdentity)
* Fix Mana cost when using 'Wait for max unleash seals' (busterw)
VERSION[2.31.0][2023/08/15]
--- New to Path of Building ---
* Add 3.22 Skill tree (Regisle)
* Add proper support for DPS with Scourge Arrow, Divine Ire, Flameblast and Incinerate (LocalIdentity)
* Display Channel time for skills that channel and release (Scourge Arrow, Divine Ire, Flameblast, Incinerate and Snipe) (LocalIdentity)
* Add proper support for triggered skills with Snipe Support (LocalIdentity)
* Add support for Flamethrower Trap DPS (Lilylicious)
* Fix weighted average DPS calculation of Ignite/Bleed (LocalIdentity)
* Show min/max DPS range for Ignite/Bleed/Poison (LocalIdentity)
* Add support for cooldown on skills in Black Zenith gloves (LocalIdentity)
* Add support for Crucible min stages and Cooldown mods with Incinerate/Flameblast (LocalIdentity)
* Add support for changing Tree Version (Peechey)
* Add clear button to text inputs (TPlant)
--- Implemented Enhancements ---
* Remove Minimum Ignite Duration (LocalIdentity)
* Imply recent Minion skill use only when using non-permanent Minions (Lilylicious)
* Improve PvP breakdowns (Regisle)
* Only apply Combustion Fire Resistance effect with skills that can Ignite (Lilylicious)
* Add parsing for Redeemer 'Freeze as though Dealing more Damage' mod (fira)
--- Fixed Crashes ---
* Fix crash on 100% reduced reservation efficiency for Relic of the Pact (Lilylicious)
* Fix crash on unusable weapon swap (Lilylicious)
* Fix crash sometimes occurring when searching for Timeless Jewel (Regisle)
* Fix crash when hovering over life mastery mod (Paliak)
--- User Interface ---
* Add a warning when exceeding jewel limits (Lilylicious)
* Make build search immediate (TPlant)
* Add Ctrl-M to the tree drop-down to open 'Manage Trees' dialog (pHiney)
* Force skill groups to display as active based on main skill (Lilylicious)
* Fix division by zero display error in resource recovery calculations (TPlant)
* Add Help documentation for Items tab (karlji)
* Add name to top left Timeless Jewel socket (karlji)
--- Accuracy Improvements ---
* Fix Explosive Arrow Full DPS (AnSq)
* Fix Explosive Arrow stages scaling base damage effectiveness (Lilylicious)
* Fix Flameblast not gaining 'more' damage from first stage (LocalIdentity)
* Fix Supreme Ego taking effect with Blood Magic (mortentc)
* Fix Lancing Steel hit rate calculations (Lilylicious)
* Fix default Uber boss Evasion Rating (ghember)
* Fix defences on normal and magic Two-Toned Boots (Peechey)
* Fix Matua Tupuna's aura mod not affecting minions (Paliak)
* Fix Battlemage's Cry and Redblade Banner not working correctly (Lilylicious)
* Fix multiple instances of 'x stat is increased by overcapped y resistance' stacking (Lilylicious)
* Fix Shock Nova's 'max effect of shock' not benefiting other skills (Lilylicious)
* Fix Adjacent Animosity to work with both Attacks and Spells (deathbeam)
* Fix Crucible AoE mod from applying to any skill (Paliak)
* Fix Energy Shield Stun avoidance if EB allocated (Paliak)
* Fix Spellslinger Reservation incorrectly scaling with stages (mortentc)
* Fix Infernal Legion ignoring support gem damage modifiers (Paliak)
* Fix anointed nodes doubling stats when inside radius Jewels (Paliak)
* Fix Life Mastery not working correctly with Skin of the Loyal (Paliak)
* Fix Chain count not appearing on Calcs page (LocalIdentity)
--- Fixed Bugs ---
* Fix sorting of taken damage values when using the power report (QuickStick123)
* Fix resistance penalty not saving (Paliak)
* Fix import of Forbidden Flesh/Flame when you did not match the class of the jewel (Paliak)
* Fix incorrect keystone source on keystones coming from items (Paliak)
--- Other changes ---
* Improve load time when opening PoB (Lancej)
VERSION[2.30.1][2023/05/06]
--- Fixed Bugs ---
* Fix Spell Suppression being doubled with some weapon combinations (mortentc)
VERSION[2.30.0][2023/05/06]
--- Implemented Enhancements ---
* Add support for Vaal Absolution + Vaal Domination (LocalIdentity)
* Add support for Energy Leech with Minions (LocalIdentity)
* Add support for Garb of the Ephemeral "nearby" mods (Regisle)
* Add support for Shapers and Maddening Presence mods (Regisle)
* Add cooldown value to Twister (LocalIdentity)
--- Fixed Crashes ---
* Fix crash when searching for Timeless Jewel and using filter nodes (Regisle)
* Fix error on disabling node power mid-generation (Lilylicious)
--- User Interface ---
* Fix Ailments breakdown showing crit damage while you have Resolute Technique (LocalIdentity)
* Fix display bug for Betrayal uniques (Peechey)
--- Fixed Bugs ---
* Fix Firesong and Stormshroud effects persisting after being removed from your character (Lilylicious)
* Fix local Flask effect mods not working with Mother's Embrace and Umbilicus Immortalis (Regisle)
* Fix Sceptres and Fishing Rods having some incorrect mods in the item crafter (LocalIdentity)
* Fix calculation of hybrid Mana + Life costs (mortentc)
* Fix Ailment avoid chance not rounding down when using Ancestral Vision (LocalIdentity)
* Fix Suppression from Dagger mastery not working with Ancestral Vision (mortentc)
* Fix Trigger skills not gaining cooldown from 'CDR per x Charge' mods (LocalIdentity)
* Fix Exsanguinate stages scaling Ignite damage when using the Crucible conversion mod (LocalIdentity)
* Fix socket gems mods from Ruthless appearing in the Crucible mod list (LocalIdentity)
* Fix Cospri's Will poison mod not working (LocalIdentity)
* Fix player "while blind" effects working while having "Cannot be Blinded" Saboteur node (LocalIdentity)
VERSION[2.29.0][2023/04/28]
--- Implemented Enhancements ---
* Support for crafting Crucible mods on items by (LocalIdentity, Peechey)
* Add ability to simulate Aura bots or curse support with new Party tab (Regisle)
* Add support for on-kill explosions (Edvinas-Smita)
* Add support for Vaal Firestorm, Lightning Arrow, Arctic Armour, Animate Weapon and Reap by (Regisle, LocalIdentity)
* Add ability to search for Megalomaniac in Trader (Edvinas-Smita)
* Add support for local, Essence and crafted mods in Trader (QuickStick123)
* Add support for hits against you overwhelm pdr (QuickStick123)
* Add support for regex OR to tree and Item search (QuickStick123)
* Add support for Master Distiller (deathbeam)
* Add support for enduring flask recovery over time (deathbeam)
* Add support for Damage taken from Allies life before you (Regisle)
* Add support for 'Impales to last an additional hit' mastery mod (Regisle)
--- Fixed Crashes ---
* Fix infinite recursion crash with Manaforged arrows (Paliak)
* Fix crash when renaming tree with F2 (Paliak)
* Fix crash when sorting Trader results by some stats (Regisle)
* Fix multiple Mastery-related crashes when converting tree to new version (Peechey)
--- User Interface ---
* Allow custom hex colours for positive and negative breakdown values (Peechey)
* Filter Timeless Jewel search by node distance (Regisle)
* Use nearest keystone for Timeless Jewel search name (QuickStick123)
* Improve map mod selection UI in the Configuration tab (Regisle)
* Add ability to sort by EHP change for gems (Regisle)
* Highlight borders for changed config options in config tab (deathbeam)
* Adjust minimum trade weight to always show some items in results (QuickStick123)
* Fix instant Leech breakdown (mortentc)
* Fix colour codes leaking into formatted numbers (QuickStick123)
* Fix discontinuous mod values occurring with range tier slider (QuickStick123)
--- Accuracy Improvements ---
* Update uniques (QuickStick123)
* Fix Juggernaut Unbreakable not working with Iron Reflexes + Evasion (LocalIdentity)
* Fix Fanaticism applying to triggered skills (LocalIdentity)
* Fix Sleight of Hand and other one-handed weapon + damage with Ailments passives (Peechey)
* Fix Life Mastery not including enchants (Nostrademous)
* Fix enemy chance to hit not affecting crit effect in defence calculations (QuickStick123)
* Fix burst damage when using unleash (Lilylicious)
* Fix alt quality Lacerate and Chance to Bleed Support not affecting Bleed duration (LocalIdentity)
* Fix Bladestorm attack having 100% bleed chance (LocalIdentity)
* Fix Vaal auras being disabled by Sublime Vision (deathbeam)
* Fix local gain on hit mods (QuickStick123)
* Fix leech incorrectly auto-applying in some circumstances (deathbeam)
* Fix ailment conditionals not being preemptively enabled when an ailment can be applied. (Paliak)
* Cap trader stat weight per mod to 100% increased (QuickStick123)
--- Fixed Bugs ---
* Recalculate level requirement when extra skill points change (Lilylicious)
* Fix trader occasionally ignoring sort selection (Edvinas-Smita)
VERSION[2.28.0][2023/04/12]
--- Implemented Enhancements ---
* Add support for Impending Doom + using it with Vixen's (ha107642)
* Add support for Manaforged Arrows (Nostrademous)
* Add support for 3.21 uniques (QuickStick123, LocalIdentity)
* Add Forged Frostbearer Spectre (LocalIdentity)
--- Fixed Bugs ---
* Fix active skill mods applying to Impending Doom, Prismatic Burst, Predator and Shockwave (QuickStick123)
* Fix Petrified Blood Low Life recoverable calculation (QuickStick123)
* Fix Prismatic Burst not choosing 1 damage type for DPS (LocalIdentity)
* Fix Chance to Bleed Support applying to Minions (Peechey)
* Fix 'Damage per aura' mastery incorrectly working with some gems (LocalIdentity)
* Fix max res Armour Mastery incorrectly applying to max Chaos res (LocalIdentity)
* Fix Trader not calculating correct weights for hit pool (Regisle)
* Fix chance to get flask charge on crit for flask breakdown (deathbeam)
--- Accuracy Improvements ---
* Update Tombfist to 3.21 (QuickStick123, LocalIdentity)
VERSION[2.27.2][2023/04/09]
--- Implemented Enhancements ---
* Add support for Prismatic Burst (Wires77)
--- Fixed Crashes ---
* Fix crash in the Trader from not having jewel data (Regisle)
--- User Interface ---
* Correct display of max mana leech rate breakdown (Lilylicious)
* Fix crucible item colour (QuickStick123)
--- Fixed Bugs ---
* Fix Flasks incorrectly having "Cannot Leech" on them (Wires77)
* Fix + to level of active skill gem mods not working (LocalIdentity)
* Fix Formless Inferno, Uul-Netol's Kiss and Tulborn (QuickStick123)
* Fix Absolution Enchant Parsing (LocalIdentity)
* Fix Snipe Support + update Assailum (LocalIdentity)
VERSION[2.27.0][2023/04/08]
--- Implemented Enhancements ---
* 3.21 game data update (Nostrademous)
* Add crucible modifier parsing support (Nostrademous)
* Add support for mods conditional on the modifiers of other equipped items (Nostrademous)
* Add Bloodnotch (QuickStick123)
* Set level mode to manual if default level is above 1 (Lilylicious)
* Hide the power report on loading a build and unchecking "Show node power" (Lilylicious)
* Add skill names to cost warnings (Paliak)
* Add support for new Low Life and Full Life Masteries (Nostrademous)
* Add support for Warcry Mastery (Peechey)
* Add support for repeat-based modifiers (Regisle)
* Add support for Saboteur Ascendancy (Peechey)
* Add support for "Skills Cost Life instead of 30% of Mana" Mastery (Nostrademous)
* Prompt for saving after altering the passive search string (Lilylicious)
--- User Interface ---
* Limit separators to non-alphanumeric (Lilylicious)
--- Fixed Bugs ---
* Fix default state validation for lists and color labels (deathbeam)
* Fix tree data bug related to recovery mastery (QuickStick123)
* Fix issue where Sceptres and One Handed Maces were considered the same weapon type (Peechey)
* Fix Reverberation Rod to add back Controlled Destruction (chx)
* Fix Kaom's Spirit rage regen calculation behaviour (Ribel38)
--- Other changes ---
* Improve EHP calculation performance when using full DPS (Regisle)
* Update a few uniques for 3.21 (QuickStick123)
VERSION[2.26.3][2023/04/05]
--- Fixed Bugs ---
* Fix several Minion buffs not being calculated correctly (Wires77)
* Fix level-up stats from appearing on tooltips (Lilylicious)
* Fix MoM and Prevented Life loss effect interaction (Edvinas-Smita)
* Fix life loss prevention occurring on overkill damage resulting in undesired breakpoint behaviour (QuickStick123)
* Fix Ghost Reaver and Mines Leech not working (QuickStick123)
* Fix mod values on Betrayal uniques (dshebib)
VERSION[2.26.2][2023/04/03]
* Fix mastery choices overlapping when they had multiple lines (Wires77)
* Fix gems in the Squire counting multiple times (Wires77)
* Fix skill stages not being editable in some cases (QuickStick123)
* Fix Widowhail increased bonuses calculation (Edvinas-Smita)
* Fix max-hit with 100% taken as conversion (Edvinas-Smita)
* Fix issue calculating defences based on overcapped resistances (Regisle)
* Fix Formless Inferno not increasing minion life properly (Wires77)
VERSION[2.26.1][2023/04/03]
--- Fixed Crashes ---
* Fix crash with Petrified Blood and eHP (QuickStick123)
VERSION[2.26.0][2023/04/03]
--- 3.21 Changes ---
* Add 3.21 tree (Regisle)