forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
4430 lines (4219 loc) · 242 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.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)
* Armour applies to Elemental damage (Regisle)
* Vorana's March mods (LocalIdentity)
* Non-critical strikes deal less damage (Regisle)
* More Ailment effect modifiers (Regisle)
* Used Life flask in the past 10 seconds (Regisle)
* Debuff expiration rate (Regisle)
* Basic recoup breakdown (Regisle)
* Modifiers to enemy damage (Regisle)
* PvP skill scaling (Regisle)
* PvP hit taken (Regisle)
* Non-Vaal gem modifiers (Nostrademous)
* Debilitate debuff (deathbeam)
* Minions have Unholy Might (QuickStick123)
* 3.19 Arrow Dancing Keystone (QuickStick123)
* Counting Mastery type allocations (Nostrademous)
* More triple damage mods (Paliak)
* Kalandra inverted stats (Nostrademous)
* Stacking max shock (Lilylicious)
* Ryslatha Pantheon Life flask charge generation (deathbeam)
* Lightning Conduit's new Trigger flag (Nostrademous)
* Enemy Overwhelm (QuickStick123)
* Burning and Caustic ground and Flame Surge (deathbeam)
* Burning and caustic ground in total/combined DPS (Regisle)
* Parsing of Link skill mods (QuickStick123)
* Fix Incinerate gem tooltip (Paliak)
* Always use configured or base chill for bonechill and remove bonechill config (deathbeam)
* Update ward recharge speed (Lexy)
* Update Brittle to 3.19 values (Lexy)
* Added Thrusting as a base sword subType (Nostrademous)
* Minion charges and ailments work like players (Lilylicious)
* Take into account weapon conditions for shock (Lilylicious)
* Properly support gain on kill (Regisle)
* Update Chainbreaker wording and display Rage Regeneration (Sinured)
--- User Interface ---
* Display reservation efficiency as percentage with two decimal places instead of a full float multiplier (Paliak)
* Display effect of active gem variant when mousing over the "Variant" drop-down selector (talkmill)
* Change sidebar to show red numbers for unreserved life of 0 (talkmill)
--- Accuracy Improvements ---
* General improvements to "Damaging Hits" section and armour breakdown (QuickStick123)
* Apply spell suppression to EHP calculations and add support for Instinct (Regisle)
* Improve stun avoid calcs (Regisle)
* Improve scaled modifier precision (Lothrik)
* Restructure leech to apply cap later (QuickStick123)
--- Fixed Bugs ---
* Blood offering stats not calculated (talkmill)
* Node power sorting at infinite values (Regisle)
* Config tab being 1 change behind enemy level (Regisle)
* Bottom bar wrapping in the tree tab (talkmill)
* Sidebar always showing Culling DPS and Recoverable ES (LocalIdentity)
* Evasion to armour conversion calculation not including "armour and evasion" base stats (MrCoolTheCucumber)
* Trypanon crit chance calculations (LocalIdentity)
* Total more multipliers not being round to nearest percent as done in game (QuickStick123)
* Evasion as Extra Armour with Iron Reflexes (LocalIdentity)
* Buff stages on Scorching Ray, Frost Shield, and Sigil of Power (Wires77)
* Veiled mod pool on autogenerated unique weapons (LocalIdentity)
* Bleed DPS when using multiple totems (LocalIdentity)
* Alternate ailments not working with anomalous grace (QuickStick123)
* Various spelling errors (Nightblade, Regisle)
* Imported items variable percentages (Wires77)
* Vaal Discipline not counting towards Aura count (LocalIdentity)
* Enable skill tooltip visibility for non-vaal active skill gems (Lothrik)
* Default level for pinnacles (Lilylicious)
* Prevent invalid character level values (Lothrik)
* Catalysts visually not scaling certain mods (QuickStick123)
* Force rebuild to initialise boss presets and remove phys fallback (Regisle)
* Remove parsing for Tawhoa, Forest's Strength as it is not implemented (Lilylicious)
* Selected Mastery Tree Upconversion Error (Nostrademous)
* Set skillSet to nil instead of removing it from table and reordering it (deathbeam)
* Build did not save on generating a build code (talkmill)
* Multistrike damage calculation with skills which have bow and melee Tag (Sinured)
* Guaranteed ailments were not using correct values (Lilylicious)
* Longshot affects all projectiles that hit (Lilylicious)
* Scorching Ray totem DoT was not stacking (Regisle)
* Tornado was using Cast rate instead of Hit rate (Sinured)
* Skill costs being hidden if you reduced the cost to 0 (QuickStick123)
--- Preliminary changes ---
* These changes might be changed further once the official patch is out
* Lifetap & Blessing interaction (Sinured)
VERSION[2.19.2][2022/07/15]
--- User Interface ---
* Adjust default item affix quality UI (Lothrik)
* Fix certain controls not displaying tooltips on hover (Lothrik)
--- Fixed Bugs ---
* Fix anointed notables not being affected by Timeless jewels (Lothrik)
* Fix "NaN" EHP error and crash when setting enemy level too high (Lothrik)
* Fix crash when loading old skill tree with a Glorious Vanity jewel socketed (Lothrik)
* Fix crash if Timeless jewel file is denied access or if changelog.txt doesn't exist (Lothrik)
* Fix crash when comparing skill trees with masteries allocated (Lothrik)
VERSION[2.19.1][2022/07/13]
--- Implemented Enhancements ---
* Add support to search Timeless jewel node stats in the "Search for Node" dropdown list (Regisle)
--- Fixed Bugs ---
* Fix crash when socketing a Glorious Vanity jewel in your tree (Lothrik)
* Fix DoT skill DPS being 6% of actual value (Nostrademous)
* Fix Divine Flesh and Immortal Ambition keystones (Lothrik)
* Fix Auras being disabled for skills in Full DPS (QuickStick123)
VERSION[2.19.0][2022/07/12]
--- Implemented Enhancements ---
* Timeless Jewel implementation (LocalIdentity, Lothrik, Nostrademous, Regisle, Wires77)
* Add Default Item Affix Quality option (Lothrik)
* Add support for skill sets (socket group sets) (deathbeam)
* Add new configuration options for Boss Skill Presets (Regisle)
* Add support for brittle/sapped ground and alternate ailment boot implicits (deathbeam)
* Update ailment threshold to current values (deathbeam)
* Add self curse effect to Calcs tab (QuickStick123)
* Add display for totem resistances in skill type specific stats (deathbeam)
* Add support for Unearth corpse calculation (Nostrademous)
* Add Pale Seraphim "Thunder Web" debuff (Lothrik)
* Add full support for Supreme Ego (QuickStick123)
* Add support for "% of damage taken bypasses ward" (deathbeam)
* Add support for "Magic Utility Flasks applied to you have increased effect" (deathbeam)
* Add support for ailment immunity mod on timeless jewels (Wires77)
* Add support for "% increased cast speed if a minion has been killed recently" (spawnie-no-oni)
* Add support for more Eldritch mods (LocalIdentity)
--- User Interface ---
* Fix labels having an incorrect font size and alignment for checkmark boxes. (QuickStick123)
* Fix typo in tree (Ivniinvi)
* Fix unicode sanitization issues (Wires77)
* Move movement speed below resistances in the side-bar (Nightblade)
* Fix overlapping tooltips, move bandit and pantheon options into the Config tab (TPlant)
* Restore enter functionality for Import tab (pHiney)
* Fix saving of section/subsection collapsing in calcs (deathbeam)
* Add some missing alternate quality modifiers (Nostrademous)
--- Accuracy Improvements ---
* Fix flat Reservation rounding (Lothrik)
* Correctly handle 100% reduced reservation efficiency and greater (QuickStick123)
* Fix multi number mods scaling the wrong number with catalysts (QuickStick123)
* Stop Noxious Catalyst from scaling Icefang Orbit's chance to poison (tansheron)
* Fix elemental ailments defensive calculations (TPlant)
* Fix Vaal lightning strike projectiles not counting as projectiles (Wires77)
* Rename old dodge chance mods on watcher's eye (Wires77)
* Update "source" text of unique cluster jewels (ctrpetersen)
* Update wording on Skyforth, Victario's Flight, Mindspiral, Mutewind Seal, Maw of Conquest, Thousand Teeth Temu (Lothrik)
* Fix incorrect level requirement for Legacy of Fury (Lexy)
* Fix Ming's Heart variant typo (Regisle)
* Fix Flask Duration to match in game values (QuickStick123)
* Refactor wither to apply strongest wither effect (QuickStick123)
--- Fixed Bugs ---
* Fix Out of Memory crash in Items Tab (Lothrik)
* Fix alternate quality dropdown options not changing on gem deletion (Wires77)
* Fix corrosion not being disabled when mod is not present (QuickStick123)
* Fix saving of changed placeholders (deathbeam)
* Fix undo resetting active display group (deathbeam)
* Fix socket group copy/paste (deathbeam)
* Improve skill gem state persistence (Lothrik)
* Fix Precise Technique to use max life instead of current life (Dullson)
* Fix Energy Shield Recharge mastery (Lothrik)
* Fix warcry duration and cooldown calculations (Lothrik)
* Fix a bug where if affected by a vaal aura you weren't considered affected by the regular aura (QuickStick123)
* Remove Phase Acrobatics from Impossible Escape (Lothrik)
* Fix Paradoxica (QuickStick123)
* Fix ignite with cast on death (QuickStick123)
* Fix incorrect Cruelty effect scaling (Lothrik)
* Fix Determination aura alternate quality mod (Dullson)
* Fix Smite area hit being classified as melee (QuickStick123)
* Fix Herald of Purity minions missing a duration (Wires77)
* Fix Chain Hook Radius per Rage (Lothrik)
--- Other changes ---
* Docs - Fix dead links and refactor to use relative links (Paliak)
VERSION[2.18.1][2022/06/05]
--- Fixed Bugs ---
- Fix crash related to Life gain on Block (Regisle)
VERSION[2.18.0][2022/06/05]
--- Implemented Enhancements ---
* Add zoom support in the Notes tab (Use Ctrl +/- or Ctrl & mouse wheel) (pfeigl)
* Add mouse shortcuts to skills tab (Dullson)
* Set as active skill group in sidebar
* Enable/disable skill group
* Include/exclude in Full DPS
* Streamline importing of build codes (deathbeam)
--- User Interface ---
* Add a configuration option for showing tooltips for all slots (deathbeam)
* Add average flask uptime estimate (Lothrik)
* Add keyboard shortcut for Notes section "Ctrl+6" (imsjp)
* Improve breakdown for ignoring resistance (Prismateria)
* Add Boss 'less curse effect' in resistance breakdown (LocalIdentity)
* Split max hit display (and colourise it) in sidebar (deathbeam)
* Do not overwrite all defaults when configuring enemy stats on configs page (deathbeam)
* Properly sort items based on affected slot in tooltips (deathbeam)
--- New Calculations ---
* Add support for exposure from Eldritch implicits and Archdemon Crown (LocalIdentity)
* Add support for weapon local Overwhelm mod (LocalIdentity)
* Add support for self-damage breakdown for Forbidden Rite (LocalIdentity)
* Add support for many helmet enchants (LocalIdentity)
* Animated Guardian, Energy Blades, Ensnaring Arrow, Flame Wall, Frost Shield, Herald of Agony, Hydrosphere, Plague Bearer, Purifying Flame, Wild Strike
--- Accuracy Improvements ---
* Minor EHP improvements (Regisle)
* Fix Massive Thread of Hope outer radius (LocalIdentity)
* Fix Exposure mastery stacking incorrectly (LocalIdentity)
* Fix Painseeker disabling alt Ailments from Secrets of Suffering (LocalIdentity)
* Fix Arrogance Support not working with blasphemy curses (LocalIdentity)
* Fix Shaper of Winter + Storms not affecting Brittle + Sap (LocalIdentity)
* Fix Summon Holy Relic's Boon Aura (kkienzle)
* Fix parsing for "chaos damage taken" (Nightblade)
--- Fixed Bugs ---
* Fix crash when loading build containing a newer tree (Wires77)
* Fix Viper Strike double counting Dual Wield Poison stacks (Nostrademous)
* Fix pobb.in match pattern if a "_" was at the start of the build code (Dullson)
* Fix an issue where the options headings sometimes appeared blank (FWidm)
* Fix Pantheon dropdown tooltip (Wires77)
VERSION[2.17.2][2022/05/20]
--- Fixed Bugs ---
* Fix bug when rendering jewel radius rings (LocalIdentity)
VERSION[2.17.1][2022/05/17]
--- Fixed Bugs ---
* Fix bug when rendering Timeless jewel and Thread of Hope rings (LocalIdentity)
VERSION[2.17.0][2022/05/17]
--- Implemented Enhancements ---
* Update data from 3.18 files (Nostrademous, LocalIdentity)
* Update skill tree to 3.18 (LocalIdentity)
* Add new awakened exceptional skill gems from 3.18 (Nostrademous)
* Add new Sentinel uniques (TPlant, LocalIdentity)
* Add support for Sublime Vision (LocalIdentity)
* Add support for Impossible Escape jewel (disjunto)
* Add support for new Thread of Hope radius (Nostrademous)
* Add support for poeskilltree.com passive tree import (pHiney)
--- User Interface ---
* In item creator, treat flasks like other items with multiple tiers of mods (benjaminysmall)
* Remove Ward regen from breakdown (Lilylicious)
--- Accuracy Improvements ---
* Fix Vulnerability curse priority (Lothrik)
* Fix Supreme Ego more Mana reservation of skills to only affect auras (deathbeam)
* Fix Decay breakdown values (Lothrik)
--- New Calculations ---
* Add support for Divine Blessing + Totem Auras (deathbeam, LocalIdentity)
* Add support for reduced Mana cost of attacks (deathbeam)
* Add support for Spellslinger reservation enchant (Lothrik)
* Add support for "for Attack Damage" modifiers (Lothrik)
* Add support for remaining Eldritch modifiers (LocalIdentity)
--- Fixed Bugs ---
* Fix crash on Energy Blade import (pHiney)
VERSION[2.16.0][2022/03/15]
--- Implemented Enhancements ---
* Updated Exported Data to Patch 3.17.1 (Nostrademous)
* Add or fix support for many different gems (LocalIdentity, Wires77)
* Change Explosive Arrow to use stages
* Add support for Brand attachment range buff from Brand Recall
* Add support for skill radius increase on Crackling Lance
* Add support for Spellslinger less damage multiplier
* Add support for flat Mana Cost from Divine Blessing
* Add support for Lightning Ailment effect on Vaal Arc
* Add support for Divergent Ruthless Support
* Add support for Divergent Purifying Flame
* Add support for Anomalous Dread Banner
* Add support for Anomalous Temporal Rift
* Add support for Divergent Explosive Arrow
* Fix Combat Rush not providing "More Attack Speed"
* Fix Bloodthirst Support calculation at certain life values
* Fix Seismic Cry not providing increased AoE to skills
* Fix Herald of Thunder not applying the damage or debuff globally
* Fix Anomalous Purifying Flame not scaling with consecrated ground effect
--- User Interface ---
* Corrected spelling of Effective Hit Pool description (ForgottenHero)
* Show build name first in window title (Lothrik)
* Update skill tree to 3.17.2 (LocalIdentity)
* Move config tab columns vertically when screen width is too low (Wires77)
* Add support for showing which lines are supported on skills (Wires77)
--- Accuracy Improvements ---
* Fix typo in Blackflame ring (Nightblade)
* Fix missing catalyst on 'Mark of the Elder' ring (Nostrademous)
* Fix missing duration flag on Flame Surge (Lothrik)
* Fix Bannerman notable applying attack damage to non-banner auras (Wires77)
* Fix Dancing Duo Cyclone dealing twice as much damage as it should be (Lexy)
* Fix Blastchain Mine not applying less damage to all gems (Lilylicious)
* Fix Kinetic Bolt and Earthquake not fully scaling with Spell Damage/Cast Speed (mthjones)
* Fix an issue where all skills socketed in Black Zenith would get the damage multiplier (Wires77)
* Fix Bow Projectile Speed conversion mastery applying to DoT damage (Lilylicious)
* Fix chilling areas not applying Bonechill (TPlant)
* Fix quality on Absolution applying to players (Lilylicious)
* Fix missing spell flag on triggered spells from Atziri's Rule (Lothrik)
* Remove Royale mods from crafting dropdowns (Wires77)
* Fix Advanced Traps quality not increasing damage (Lilylicious)
* Fix an issue where Secrets of Suffering wasn't applying (Wires77)
* Fix Battlemage's Cry not applying spell damage to attacks (Wires77)
* Fix parsing of Soul of Abberath self Ignite duration (LocalIdentity)
* Fix Challenger Charges erroneously affecting Cast Speed (LocalIdentity)
* Apply global limit to Expansive Might notable (Lothrik)
--- Fixed Bugs ---
* Fix error when comparing passive tree skill nodes (Lothrik)
* Fix two errors related to equipped items (Lothrik)
* Fix crash caused by Mortal Conviction still appearing on some uniques (Wires77)
* Display session ID box when 401 error is encountered on Import (Wires77)
* Fix Ensnare stacks not showing for Ensnaring Arrow (Wires77)
--- Other changes ---
* Prevent saving default settings to XML (Lothrik)
VERSION[2.15.1][2022/02/13]
--- Fixed Bugs ---
* Fix Forbidden Flame / Flesh not working with Scion (Nostrademous)
VERSION[2.15.0][2022/02/12]
--- Implemented Enhancements ---
* Add / updated all new league uniques (LocalIdentity)
* Add support for Delirium effect scaling (LocalIdentity)
* Add support for Elementalist's Primal Aegis (Wires77)
* Add support to show Life Recoverable when Life is reserved (Regisle)
* Add support for 2 new cluster jewel mods added in 3.17 (LocalIdentity)
--- User Interface ---