forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog.txt
4770 lines (4499 loc) · 256 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.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)
* Add support for new mods on the tree (madinsane, Paliak, QuickStick123, LocalIdentity)
* Add support for many mods on 3.21 Masteries (Lilylicious, Peechey, cardbeard, dbjorge, MoonOverMira, QuickStick123)
* Add support for new 3.21 Uniques (Paliak, TPlant, QuickStick123)
* Add support for mods on uniques that were changed in 3.21 patch notes (QuickStick123, ifnjeff)
* Update Timeless Jewels to work with 3.21 tree (LocalIdentity)
--- Implemented Enhancements ---
* Add a Help section (Regisle)
* Add support for automatic character levels based on allocated nodes (Lilylicious)
* Allow Trade to weight by multiple stats (Regisle)
* Enable searching for Militant Faith devotion modifiers (Edvinas-Smita)
* Change pobb.in to be the default build code exporter (QuickStick123)
* Automatically apply Arcane Surge granted to you via items or nodes on the tree (QuickStick123)
* Add support for skill uses (QuickStick123)
* Add new boss skills, auto-apply uber changes if set to uber, and update non-uber pen/chaos mix (Regisle)
* Automatically estimate resistance penalty on import (Paliak)
* Update boss Armour/Evasion values and add override fields to config (ybbat)
* Allow for custom mod DPS multiplier (e.g 35% More DPS) (Regisle)
* Change Elusive to use average value by default instead of max (deathbeam)
* Implement "You can't deal Damage with Skills yourself" mod from Ancestral Bond (Paliak)
* Add support for more mods on Precursor's emblem (QuickStick123)
* Add support for Enemy regen and Sanctum x can y (QuickStick123)
* Add support for Non-Aura cost no Life/Mana while Focused (QuickStick123)
* Add support for Cat's Stealth avoid damage (QuickStick123)
* Add support for Cane of Kulemak unveiled mods scaler (Regisle)
* Add support for additional cooldowns on Mirror/Blink arrow (QuickStick123)
* Automatically apply PvP multipliers to skills (Regisle)
* Add support for Vaal skills Soul cost and soul gain prevention (Regisle)
* Add support for Block chance reduction (Regisle)
* Add support for mods that disable other item slots (Regisle)
* Add support for Jewel limits (Regisle)
--- Fixed Crashes ---
* Fix crash on import when an Abyss Jewel was socketed in a weapon swap weapon (Paliak)
* Fix issue in PoB Trader caused by sorting mode change (Dullson)
* Fix not being able to save trees with more than 254 nodes allocated (QuickStick123)
* Fix crash caused by very long lines on items without spaces (Paliak)
* Fix crash when viewing Pantheon reduced enemy Life Regen (Paliak)
--- User Interface ---
* Hide config options that can be hidden by default behind conditions (deathbeam)
* Improve eHP breakdown to show greater detail (Edvinas-Smita)
* Recolor mods in the 'Custom Modifiers' box to show if they are parsed or not (deathbeam)
* Properly sort and group Eldritch mods in the item crafter (Regisle)
* Show uptime for "Enduring" Life and Mana flasks (deathbeam)
* Make race uniques not show up as obtainable (Regisle)
* Update Trader, Item weight and sorting to use percentage change rather than absolute (Regisle)
* Change Blade Blast to user-configurable stages (Regisle)
* Add flask breakdown to Calcs tab (deathbeam)
* Colourise and group defensive calc sections (deathbeam)
* Add support to display coloured text in dropdowns (deathbeam)
* Allow setting Blood Charges to 0 (Paliak)
* Fix punctuation error in Trauma calculation message (Ivniinvi)
* Fix minor colour codes and number formatting errors in tooltips (QuickStick123)
* Fix Enabled and FullDPS checkboxes not updating when mouse shortcuts are used (Dullson)
* Fix Summon Skeletons enchant not appearing in filtered list (Wires77)
* Fix inconsistent display of additional quality and gem levels in skill group tooltip for inactive gems (Paliak)
* Fix cluster jewel notable compare tooltip when crafting a cluster (Edvinas-Smita)
--- Accuracy Improvements ---
* Update wording on many uniques (QuickStick123)
* Update Watcher's Eye Dodge mods to Suppress mods (deathbeam)
* Update Vessel of Vinktar to have correct mod values (DavidBindloss)
* Fix eHP calculation when using Eldritch Battery + Mind Over Matter + Corrupted Soul (Regisle)
* Fix a variety of incorrect catalyst scaling (QuickStick123)
* Fix Voltaxic missing shock effect mod (LocalIdentity)
* Fix missing Mana on Mindspiral (QuickStick123)
* Fix missing variant on Replica Hyrri's Truth (QuickStick123)
* Fix values of mods on Devouring Diadem (LocalIdentity)
* Fix Vorana's March missing a fourth modifier slot (hexeaktivitat)
* Fix base for Saemus' gift (Lilylicious)
* Fix Entropic Devastation not having Shaper influence (QuickStick123)
* Fix support for Mace/Scepter chill Mastery node (moojustice1)
* Fix range values for Point Blank / Far shot distances (QuickStick123)
* Fix Foil search to correctly assign foil to Voidborn uniques (Regisle)
* Fix mods incorrectly applying when wielding fishing rod (QuickStick123)
* Fix group disable not disabling support gems and two-part skills not applying support part to linked groups (Paliak)
* Fix Hex Master not modifying the duration of Curses to be infinite (Paliak)
* Fix tree version being out of date when importing character profile into an old tree (QuickStick123)
* Fix Fire Exposure/Action speed mod on Balance of Terror (QuickStick123)
* Fix Adrenaline, Her Embrace and Boot Enchant with Wilma's Requital (LocalIdentity)
* Fix Minion overwhelm mastery incorrectly applying to spells (Paliak)
* Fix Galvanic Field shock effect scaling all damage instead of only hits (LocalIdentity)
* Fix ignite chance display (raylu)
* Fix player-specific flask mods incorrectly applying to Minions (Paliak)
* Fix buff effect scaling guard absorption rate (QuickStick123)
* Fix local flask duration affecting the total amount recovered (QuickStick123)
* Fix Strength adding to Minions mod only applying at half value (cardbeard)
* Fix Projectile modifiers incorrectly applying to Cremation Corpse Explosion damage, (CapnJack22)
* Fix Rational Doctrine not working while using Crystallised Omniscience (QuickStick123)
* Fix Double/Triple Damage calculations (QuickStick123)
* Add missing "Damage" tag to some golem skills (Paliak)
* Fix Ball Lightning Projectile Speed (LocalIdentity)
* Fix incorrect profane ground numbers (QuickStick123)
* Fix flask conditions for using Life and Mana flasks (deathbeam)
* Fix Follow Through not applying to poison (Paliak)
* Stop Vaal Smite and Smite auras from stacking (Paliak)
* Fix skill type tags for maximum Ballista Totem mods (bobanobahoba)
* Fix enemy negative resistance not being capped for DoT damage (Edvinas-Smita)
* Fix Vaal Lightning Strike damage effectiveness being off by 1 level (Regisle)
--- Fixed Bugs ---
* Fix imported characters missing Voidborn uniques (QuickStick123)
* Fix Energy Blade not importing from PoE.ninja and on copy paste (QuickStick123)
* Fix enemy level getting out of sync due to updating later than expected (QuickStick123)
* Fix incorrect variable causing gem sorting to occur far too often (Paliak)
* Fix skill sets sometimes being deleted after deleting the first one (deathbeam)
* Fix socket group linking not working on weapon swap and generalize socket group linking code (Paliak)
* Fix Energy Blade not working with socketed Abyssal jewels (QuickStick123)
* Fix more multipliers on Skill damage being incorrectly rounded. (QuickStick123)
* Prevent pathing through class starts for Split Personality (Paliak)
VERSION[2.25.1][2023/01/06]
--- Fixed Crashes ---
* Fix crash caused by item stuck on cursor when dragging (Paliak)
* Fix crash when using Whispering Ice with trigger support (Paliak)
* Fix crash caused by loading shared items too early (QuickStick123)
--- Fixed Bugs ---
* Fixing Timeless jewels not working correctly when added via the "Find Timeless Jewel" UI (QuickStick123)
* Fix Atziri's Mirror's drop source (pHiney)
* Fix Blood Sacrament incorrect scaling when setting to stages more than 1 (dreais)
* Fix Spell Suppression mastery not working with Acrobatics Keystone (Paliak)
* Fix magic utility flask effect not scaling Onslaught from Silver Flasks (deathbeam)
VERSION[2.25.0][2023/01/03]
--- Implemented Enhancements ---
* Apply enemy damage multiplier to max hit taken (deathbeam)
* Add button to generate a trade link for Timeless Jewels (meepen)
* PoB Trader
* Add ability to generate weighted search URL without the need for POESESSID (Dullson)
* Add support for Private Leagues (Dullson)
* Add support for Sony and Xbox realms (Nostrademous)
* Sort Trade league name dropdown so temporary leagues appear at the top of the list (Nostrademous)
* Automatically adjust weighted search to prevent result clipping (Dullson)
* Add support to change the sorting mode on already-fetched items (Dullson)
* Improve item pricer error handling (Dullson)
* Temporarily remove Synthesis mods until they are properly supported (Dolmur)
* Remove Eldritch mods checkbox from bases that are unable to roll Eldritch mods (Dolmur)
* Display item price at the bottom of the item tooltip (Dullson)
* Use default item affix quality to generate mod weightings (Regisle)
* Add option for to select any conqueror Keystone for Timeless jewels search (Regisle)
* Add support for Mutewind Pennant Warcry mod (andrewbelu)
* Add support for Phantasmal Reave radius (andrewbelu)
* Add support for Sandstorm Visage crit mod (andrewbelu)
* Add Support for Frozen Sweep DPS and burst damage (Lilylicious)
* Add support for Original Sin (QuickStick123)
* Add support for Progenesis and show the amount recouped (Regisle)
* Add support for Rotting Legion missing Zombie mod (andrewbelu)
* Critical strike cull chance now uses hit rate to determine DPS gain (andrewbelu)
* Increased flask effect works on Silver Flask to scale Onslaught effect (Fabere456)
* Add sanctum unique drop locations (QuickStick123)
* Update tree to 3.20.1 (QuickStick123)
--- Fixed Crashes ---
* Fix crash when deleting gem level (Paliak)
* Fix crash when clicking sort options in node power (meepen)
--- User Interface ---
* Change the unique list to only display currently obtainable uniques instead of any source (Regisle)
* Fix odd edit behaviour with the POESESSID input box (Wires77)
* Fix Timeless Jewel tree radius effect not appearing on jewels added through "Find Timeless Jewel" UI (LocalIdentity)
* Remove duplicate bleed/poison config option (QuickStick123)
--- Fixed Bugs ---
* PoB Trader memory leak (Dullson)
* Max fuse calculation for Explosive Arrow (Lilylicious)
* Minion-specific mods not being included as mods for weighted search (Dolmur)
* Item pricing mod calculation does now use DPS instead of average damage (Urganot)
* Minion-specific mods granting their effect to all Minions (QuickStick123)
* Session IDs not saving separately per imported account (Wires77)
* Missing skillType tags from minion skills (Paliak)
* Wither on hit from Balance of Terror (deathbeam)
* Sort by Full DPS not working on anoints and appearing in other locations (QuickStick123)
* Kalandra's Touch not working (QuickStick123)
* Long loading times from modCache not being used during startup (QuickStick123)
* Issue parsing certain item bases (Paliak)
* Unique Armour/Evasion/ES/DPS tooltip being different to added item (QuickStick123)
* Energy Blade not getting disabled when removing the gem (QuickStick123)
* Divergent Cast while Channeling incorrectly adding "More" damage (LocalIdentity)
* Rotgut variant mods (LocalIdentity)
* Seismic Trap and Lightning Spire Trap not rounding to server ticks for wave count calculation (Edvinas-Smita)
* Missing Physical tag to Heartbound Loop (ProphetLamb)
* Wording on Sandstorm Visage mods (QuickStick123)
* Remove Legacy Crystallised Omniscience from the unique list as it no longer exists (QuickStick123)
* Damage multipliers to exerts also applying to triggered skills (Paliak)
* More than 100% reduced resistances causing negative res to turn positive (QuickStick123)
* Militant Faith mod using "Skill Cost" instead of "Mana Cost" (Regisle)
* Implicit mods on Kalandra's Touch not applying (Paliak)
* Singular element modes not working with phys as random element dropdown box (QuickStick123)
* Missing name on elemental damage Grand Spectrum variant (deathbeam)
* Frenzy Charges and Onslaught only counting one stat instead of two for Wilma's Requital (LocalIdentity)
* Level requirement for United in Dream (LocalIdentity)
VERSION[2.24.0][2022/12/14]
--- Implemented Enhancements ---
* Update and add support for all new uniques (QuickStick123)
* Add price cap option to the PoB Trader (Dullson)
* Add support for Vaal Flicker Strike (Nostrademous)
* Add support for Critical Strike chance cap on new Winds of Fate Unique (Lilylicious)
* Add support for Explosive Trap DPS (QuickStick123)
* Add support for many new flask-specific mods (QuickStick123)
* Add support for new curse mods without increased effect (QuickStick123)
--- Fixed Crashes ---
* Fix crash when using Hand of the Fervent with a life cost (QuickStick123)
* Fix crash related to base cost mod parsing and overhaul resource relating parsing to be more generic (QuickStick123)
--- User Interface ---
* Hide character input in POESESSID input box for privacy reasons (Nostrademous)
* Fix spacing issue in portrait mode on the Items tab (Wires77)
--- Accuracy Improvements ---
* Improve accuracy of mana cost calculations (QuickStick123)
* Update all unique flasks with 3.20 wording changes (QuickStick123)
* Update Corundum flask with "Cannot be Stunned" affix (Nostrademous)
* Update Fated End (QuickStick123)
* Fix Phantasmal Smite quality not working (Nostrademous)
* Fix Frozen Legion radius numbers (Nostrademous)
* Use trap cooldown for Mana cost per second (Lilylicious)
--- Fixed Bugs ---
* PoB Trader did not list the correct league names (Dullson)
* PoB Trader had overlapping UI on the Query Options box (Dullson)
* PoB Trader wasn't generating a sufficient minimum weight for some builds (Dolmur)
* PoB Trader did not work on Linux due to an issue with curl (Turmfalke2)
* Private character importing when using your session ID (Wires77)
* FullDPS causing some skills to not work correctly with the node power colours on the tree (QuickStick123)
* Importing characters that used Barrage Support in skill links (raylu)
* Area damage supports not working with Minion Instability (Paliak)
VERSION[2.23.0][2022/12/09]
--- Implemented Enhancements ---
* Add initial and partial support for new skill gems (LocalIdentity)
* Vaal Blade Flurry is partially supported
* Vaal Cleave is missing the Cleave buff
* Frozen legion needs more work before it's completely accurate
* Updated old skill gems with 3.20 balance changes (LocalIdentity)
VERSION[2.22.1][2022/12/10]
--- User Interface ---
* Update 3.20 skill tree (LocalIdentity)
--- Fixed Bugs ---
* Cost per second for totems and eldritch battery (Lilylicious)
* Incorrect warnings when using Eldritch Battery and remove support for per-second costs (Paliak)
* Viper Strike base Poison duration (LocalIdentity)
* Ailments not applying correctly (Lilylicious)
* Hex Master not working with Impossible Escape (LocalIdentity)
* Onslaught Effect nodes on skill tree not working (LocalIdentity)
VERSION[2.22.0][2022/12/09]
--- Implemented Enhancements ---
* Add 3.20 Tree and Timeless jewel nodes (Regisle)
* Add all revealed new Uniques from 3.20 (QuickStick123)
* Add build pricing and item optimization to Items Tab (Dolmur, Nostrademous, Dullson)
* Add support for
* Seismic / Lightning Spire Trap DPS (Edvinas-Smita)
* Mod tooltips to display stat differences when hovering over mods in the item crafter (QuickStick123)
* New default gem level functionality (Lothrik)
* Specific socket colour mods found on Dialla's Malefaction, Malachai's Artifice, Doomsower (Paliak)
* Resource costs per second in sidebar and add breakdown to the calcs page (Lilylicious)
* Uptime of skills with duration and cooldown (QuickStick123)
* Importing build links out of google sheets (JadedCricket)
* Boneshatter self damage breakdown (Lilylicious)
* Boneshatter maximum sustainable Trauma stacks (QuickStick123)
* Deadly Tarantula and Armour Cruncher Spectres (fialhoFabio)
* Enemy Block Chance (Regisle)
* Automatically apply Energy Blade buff when skill is equipped (QuickStick123)
* Anomalous Predator Support (TPlant)
* Frostblink CDR from nearby enemy (Nostrademous)
* Summon Reaper's Consume buff (Wires77)
* Reservation scaling with stages for Blood Sacrament (QuickStick123)
* Burning Ground from Essence of Hysteria (Regisle)
* Cold Conduction Cluster Jewel notable (Nostrademous)
* Low Tolerance Cluster Jewel notable (Regisle)
* "Nearby Allies have Culling Strike" (Sinured)
* "chance for flasks you use to not consume charges" (Lothrik)
* Soul Eater stack limit (TPlant)
* Hex Master Keystone (QuickStick123)
* "Your Blessing Skills are Disabled" from Essence Worm (Paliak)
* "Quicksilver Flasks you Use also apply to nearby Allies" mod on Victario's Flight (Paliak)
* Stormfire's Burning Damage mod (QuickStick123)
* Kalandra's Touch unique (Paliak)
* Reflected kalandra mods (Paliak)
* Some more Eldritch boss mods (QuickStick123)
* New curse mods (QuickStick123)
* Glorious Madness poison chance mod (Azperin)
--- User Interface ---
* Add warnings if skill cost exceeds currently available resource (Life/ES/Mana) (Paliak)
* Add button to filter Uniques: Any item, Obtainable, Unobtainable, Vendor Recipe, Upgraded, Boss Item (QuickStick123)
* Add button to go to privacy settings when an account you are trying to import is set to private (raylu)
* Make socket group sort order persistent when switching or deleting gems groups (Lothrik)
* Display max calculated fuses for Explosive Arrow on the calcs page (dbronkalla06)
* Adjust sample Brittle effects in Brittle breakdown box (TPlant)
* Relabel "Total DPS" to "Hit DPS" to increase readability (raylu)
* Re-order the leagues dropdown in the import menu to have the current temporary league at the top of the list (Schroedi)
* Do not hide config options that are configured without source (deathbeam)
* Fix Barrage and Barrage Support ambiguity in gem list (Paliak)
* Fix Aura effect on Self not counting towards Aura effect breakdown (LocalIdentity)
* Fix incorrect Timeless Jewel ring colours when searching a node on the passive tree (Wires77)
* Fix breakdown of mana cost not showing in certain situations (Wires77)
* Fix Fanaticism tooltip (MeDott29)
* Fix DoT Multi missing in Poison multiplier breakdown for Spells (Wires77)
* Fix inconsistent display of additional quality and gem levels in skill group tooltip (Paliak)
* Fix typo in config tab (Nightblade)
* Fix Item Corruptor having empty space (QuickStick123)
--- Accuracy Improvements ---
* Update existing uniques for 3.20 (ifnjeff)
* Remove curse effect reduction on bosses (QuickStick123)
* Improve the accuracy of Max Hit calculations (Edvinas-Smita)
* Improve the accuracy of eHP calculations (QuickStick123)
* Generalise Regeneration Calculations adding full support for degens and breakdowns (QuickStick123)
* Update Brittle formula (QuickStick123)
* Apply shock effect to shocked ground (Paliak)
* Truncate resistances to better match in game values (Paliak)
* Adjust Delirium effect scaling to be more accurate (Lilylicious)
* Fix Bleed and Ignite critical strike proportions to be based on how many applications you can apply during the duration (oljomo)
* Fix totems not being affected by auras (Paliak)
* Fix avoidance calculations when using Elusive (Regisle)
* Fix missing elemental resist calculation (TPlant)
* Fix maximum shock double counting (QuickStick123)
* Fix conversion and charges being negative (QuickStick123)
* Fix Lucky Attack Damage incorrectly applying to Spells (QuickStick123)
* Fix Ailment mods from active skill gems not applying in some cases (Paliak)
* Fix Non-curse Hex skills being treated as Curse skills (kolhell)
* Fix several issues with skill costs (QuickStick123)
* Fix rare templates not getting implicit mod tags (Wires77)
* Fix global energy shield being mistaken for local (QuickStick123)
* Fix parsing for new wording on Aegis Aurora (LocalIdentity)
* Fix Grand Spectrum not working correctly with Minions (deathbeam)
* Update affix limit for corrupted abyss jewels (Paliak)
* Update wording differences on uniques (QuickStick123)
* Update "Grants" wording change on uniques (QuickStick123)
* Update Pledge of Hands and Atziri's Disfavour sources (QuickStick123)
* Update flask wording (QuickStick123)
* Update Vorana's March to be in sync with game mods (LocalIdentity)
* Remove chance to be crit mod from Aul's Uprising (Torchery)
* Fix Anomalous Energy Blade Shock Chance (QuickStick123)
* Fix Energy Blade counting multiple times when used in FullDPS (QuickStick123)
* Fix Cyclone's area of effect not scaling with weapon range (QuickStick123)
* Fix Elemental Hit scaling area instead of radius (QuickStick123)
* Fix Absolution Spell Hit counting multiple times when used in FullDPS (APXEOLOG)
* Fix Lightning Conduit and Galvanic Field scaling with area damage (LocalIdentity)
* Fix Lightning Conduit's "More damage with hits" (QuickStick123)
* Fix Divergent Fist of War increasing Stun Threshold (Wires77)
* Fix Ice spear Crit chance enchant not applying to all projectiles skill part (Paliak)
--- Fixed Bugs ---
* Crash for pvp when checking support gems (Regisle)
* Crash when generating fallback weights caused by missing source (Paliak)
* Crash on crafting certain quirky items (Nostrademous)
* Crash when clicking on Jewel implicit button (QuickStick123)
* Kalisa's Grace crit chance modifier not working (michelrtm)
* Cluster Jewels not showing DPS stats in item crafter (LocalIdentity)
* Count being nil for FullDPS when importing a build (Paliak)
* Non-curse part of non-curse aura skills (Paliak)
* Some modifiers visually missing from total ES calcs (randomflyingtaco)
* Passive count multipliers preview on nodes (Lilylicious)
* Influence modifiers not behaving correctly and rune daggers missing rune dagger tag (QuickStick123)
* Arcanist brand giving brand skill flag to gems breaking stuff (QuickStick123)
* DPS comparison not working correctly when using The Saviour and using overrides (Paliak)
* Parsing for some pobb.in build links (Dullson)
* Use Life/Energy Shield Regen Recovery for power builder (deathbeam)
* Remove caps on ground degens (Regisle)
* Some stats with Bloodstorm conditionals applying globally (QuickStick123)
* Added Rage generation flag to Chains of Emancipation (QuickStick123)
* Thread of Hope allowing you to allocate ascendancy nodes (LocalIdentity)
* Improve handling of unscalable mods and fix some mods from alternate qualities not applying (Paliak, QuickStick123)
* Support gems not adding their flags if they themselves require a flag added by a support gem lower in the support list (Paliak)
* Devotion not working with minion mods (TPlant)
* Untying chill from frozen (kolhell)
* "No reservation" mods affecting cost of Blessings (Paliak)
* Ice Nova interaction with Greater Spell Echo and Awakened Spell Echo when casting on Frostbolt (Sinured)
* Exposure not applying correctly when using Scorching Ray "Maximum Sustainable Stages" (Paliak)
* Shavronne's Revelation removing life recharge (Paliak)
* Correctly apply mod precision in item editor and fix Assassin's Mark scaling (QuickStick123)
* Stop support gems from using Minion types to determine compatibility with Minion attack skills (Paliak)
* Dagger mastery and radius jewels applying to Masteries (Paliak)
* Varunastra not working with Nightblade Support (Paliak)
* Update Brittle config description to new value and fix Scorch source (deathbeam)
--- Other changes ---
* Documentation - Add more tips to CONTRIBUTING.md (Paliak)
* Fix spelling/punctuation (Nightblade)
VERSION[2.21.1][2022/08/20]
--- Fixed Bugs ---
* Fix crash related to Alchemists Mark (deathbeam)
VERSION[2.21.0][2022/08/20]
--- Implemented Enhancements ---
* Add support for new 3.19 skills and mods (Nostrademous, LocalIdentity)
* Full support for all new skills
* Add initial support for Eldritch Implicits (Regisle)
* Add the ability to automatically calculate # of Explosive Arrow Fuses (LocalIdentity)
* Add breakdowns for Burning and Caustic ground from ailments (Regisle)
* Add the Poised Prism and Elevore uniques (QuickStick123)
* Add new Grand Spectrum mods (deathbeam)
--- User Interface ---
* Fix PvP Hit Taken Colour (Regisle)
* Update Heartstopper config text (Regisle)
* Remove Main Hand background colour from global Ignite Dot Multi section (TPlant)
* Add Keystone names to Timeless jewel variants (Regisle)
--- Accuracy Improvements ---
* Update Replica uniques (QuickStick123)
* Update Deidbell (QuickStick123)
* Update Ventor's Gamble and Soul Ripper (Lothrik)
* Fix missing life on Demon Stitcher (QuickStick123)
--- Fixed Bugs ---
* Fix crash when adding Timeless jewel to build from tree UI (Lothrik)
* Fix certain spells not having correct DPS with Unleash Support (Regisle)
* Fix Timeless jewel node weight bugs (Lothrik)
* Fix checkbox not updating when selecting Vaal skills (Paliak)
* Fix Rage regen issues (Regisle)
* Fix Gain on Kill not working for Attacks (Regisle)
VERSION[2.20.2][2022/08/16]
--- Implemented Enhancements ---
* Reintroduce Show/Hide skill cost based upon whether it has a base cost (QuickStick123)
--- Accuracy Improvements ---
* Use correct max shock in breakdown (Lilylicious)
--- Fixed Bugs ---
* Fix timeless jewel socket index bug (Lothrik)
* Fix missing unique sliders (Lothrik)
* Filter out unused modifier line ranges (Lothrik)
VERSION[2.20.1][2022/08/16]
--- Fixed Bugs ---
* Revert skill costs being hidden if you reduced the cost to 0 as it was causing an error (LocalIdentity)
* Fix Juggernaut "Armour applies to Elemental damage" node not working (Lilylicious)
VERSION[2.20.0][2022/08/16]
--- Implemented Enhancements ---
* Update skill tree to 3.19 (Regisle)
* Add new 3.19 uniques (QuickStick123, LocalIdentity, Wires77)
* Timeless jewel search improvements (Regisle, Lothrik)
* You can now auto generate weights for nodes based on skill DPS
* You can scroll on the horizontal scroll bars to change values (hold Ctrl/Shift to scroll slower/faster)
* Update a wide variety of unique items (Sinured, QuickStick123, Lexy, Nightblade, Paliak, Wires77, Lothrik)
* Add support for
* Damage over Time DPS cap (deathbeam, Regisle, LocalIdentity)
* 3.19 Trickster ascendancy (Lilylicious, Regisle)
* Deal 10% less damage on Indomitable Resolve (Regisle)