-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
changelog.txt
5626 lines (5191 loc) · 296 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.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)
--- Fixed Calculations ---
* Fix Impale calculation not using pre-Armour value (bdemolder)
* Fix Elemancer overriding golem resistances (Paliak)
* Fix Manaforged trigger rate calculations (Paliak)
* Fix Spellslinger trigger rate not being capped by Spellslinger cooldown (Paliak)
* Fix Tawhoa not showing trigger rate on Calcs page (Paliak)
* Improve handling of trigger chance (Paliak)
* Fix incorrect calculation of effective crit/hit chance for triggers when using skills that hit with both weapons at the same time (Paliak)
* Use duration as pseudo cooldown for Shattershard (Paliak)
* Fix The Adorned multiplying implicit and explicit mods individually (KaoXinRei)
* Fix Stance Cooldown mastery affecting Attack Speed (NL908)
* Fix Trap Cooldown for Trap Supported Spell in Black Zenith (NL908)
* Fix support gems supporting pseudo active parts from gems granted by the same item (rexfox147)
* Fix Widowhail multiplier not applying to clones (FWidm)
* Fix maximum sustainable stages calculations ignoring certain buffs/mods (Paliak)
* Improve power calculation speed (Regisle)
--- Fixed Behaviours ---
* Fix "damage with melee skills" mods not working for DoT damage (DieMango)
* Fix "Deal 10% more Chaos Damage to enemies which have Energy Shield" mastery not being limited to hits and ailments (n1tr0xs)
* Fix Ngamahu, Flame's Advance not working correctly with Timeless jewels (NL908)
* Fix Abyss jewels not working in weapon swap (Paliak)
* Fix Kalandra's Touch implicits and interactions with other uniques that count mods (Paliak)
* Fix Forbidden Flesh & Flame (Duelist) Impact not updating the required class (n1tr0xs)
* Fix Timeless Jewel trade league URL (tbiering)
* Fix enemy level not updating in sync with player level when in auto mode (Paliak)
* Fix Utula's Hunger not working when an Anoint grants Life (Paliak)
* Fix The Apostate not working with Life Mastery (LocalIdentity)
* Fix Dagger mastery not working with Varunastra (Paliak)
* Fix various issues around Intuitive Leap-like jewels (trimbe)
--- Accuracy Improvements ---
* Update Mutewind Pennant Shield (ryuukk)
* Update map mods (Regisle)
* Fix Curtain Call description not matching in-game description (n1tr0xs)
* Fix The Dark Seer unique stats (Nerotox)
* Fix Blood Price unique stats (Nerotox)
* Fix Seething Fury incorrectly having a radius (Tandrial)
* Add missing overcapped mod to Replica Perfect Form (Paliak)
* Add missing strength roll to Kaom's Binding (deathbeam)
* Generate keystone items from tree data instead of all keystones (trimbe)
--- Other changes ---
* Fix incorrect shortcut key mapping on some keyboards (Wires77)
* Fix slow startup on certain computers (zao)
* Fix error when deleting empty folders (Wires77)
* Fix incorrectly needing to re-download Timeless Jewel files (zao)
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 (Regisle)
* Add support for new 3.24 Uniques (Lexy, LocalIdentity)
* Update existing uniques from 3.24 patch notes (Lexy, LocalIdentity)
* Update existing skill gems from 3.24 patch notes (Wires77, LocalIdentity)
* Update Tattoos, Flasks and item mods with 3.24 changes (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 (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 (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 (Wires77, LocalIdentity)
* Add support for new Ascendancy skills (Wires77, LocalIdentity)
* Add support for Charms (Regisle)
* Add support for Tinctures (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 ---