forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.txt
3251 lines (3184 loc) · 180 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.13.0][2021/11/02]
* Add Ravenous Misshapen Spectre (LocalIdentity)
* Add Pale Seraphim Spectre (LocalIdentity)
* Add Pale Angel Spectre (Kayella)
* Add Demon Harpy Spectre (Kayella)
* Add Demon Herder Spectre (Kayella)
* Add dynamically changing width for dropdown box when selecting tree (pHiney)
* Add support for gem level modifiers of socketed active skill gems (etojuice)
* Add support for "chance to Defend with x% of Armour" masteries (Nostrademous)
* Fix crash when attempting to save build after character import (Peechey)
* Fix build list loading crash (PJacek)
* Fix Multistrike Support not applying its damage multiplier to Ailments (LocalIdentity)
* Fix Multistrike Support not providing attack speed to gems with multiple skill parts (LocalIdentity)
* Molten Strike, Lightning Strike, Wild Strike and Frost Blades
* Fix Attack/Cast rate cap (LocalIdentity)
* Fix Stationary setting box sometimes not showing up (randomflyingtaco)
* Fix eHP double dipping on damage taken modifiers (Lothrik)
* Fix Small Curse Cluster Jewels rendering on the tree when socketed (Peechey)
* Fix Mines incorrectly counting towards "number of Auras affecting you" mastery (LocalIdentity)
* Fix Spell Suppression mastery giving double Critical Strike chance (LocalIdentity)
* Fix Voltaxic Burst's "number of Casts currently waiting" not adding damage (LocalIdentity)
* Fix Flame Totem Consecrated Ground enchantment (LocalIdentity)
* Fix parsing for Curse on Hit rings (LocalIdentity)
* Fix parsing for mod on The Taming ring (LocalIdentity)
* Fix parsing for Impresence Mana Reservation mod (LocalIdentity)
VERSION[2.12.3][2021/10/28]
* Fix crash when importing/opening builds (LocalIdentity)
VERSION[2.12.2][2021/10/28]
* Fix crash when using Blood Magic Keystone (LocalIdentity)
VERSION[2.12.1][2021/10/28]
* Fix several bugs relating to armour calculations on items (Wires77)
VERSION[2.12.0][2021/10/28]
* Add support for Nightblade Dagger Mastery (mthjones)
* Add support for Sword Mastery for Offhand Accuracy (Nostrademous)
* Add support for +3 levels Critical support gem mastery (Wires77)
* Add support for variable ES bypass for Chaos Damage mastery (Dullson)
* Add support for Active Aura Multiplier and Active Herald/Aura mods (Dullson)
* Add support for "Enemies Ignited or Chilled by you have -5% to Elemental Resistances" (Peechey)
* Change Timeless Jewel passive nodes in dropdown selection menu to appear in alphabetical order (etojuice)
* Update passive tree (LocalIdentity)
* Update Dodge breakdown on Calcs page (etojuice)
* Update Uniques that previously used Dodge (LocalIdentity)
* Update The Squire, The Oppressor, Uul-Netol's Vow with ranges and modifiers (Nostrademous)
* Fix importing passive tree data from player profiles (Peechey)
* Fix import/export of passive tree on the tree tab (hdwatts)
* Fix scourged mods not importing properly (Wires77)
* Fix masteries persisting after resetting the tree (etojuice)
* Fix overcap display for Spell Block (LocalIdentity)
* Fix calculations for variable base armour values (Wires77)
* Fix Mana Efficiency rounding (HPSource)
* Fix bug on builds that had 100% reduced Reservation Efficiency and were using Arcane Cloak (Peechey)
* Fix rounding for attribute bonuses (etojuice)
* Fix Flask More/Less Duration applying globally instead of locally (Peechey)
* Fix new uniques to use exceptional gems (Lexy)
* Fix Collateral Damage Jewel to affect Galvanic Arrow (randomflyingtaco)
* Fix Righteous Fire to use 3.16 Life multiplier (Lilylicious)
* Fix Arcanist Brand not applying more damage with Hits (LocalIdentity)
* Fix Awakened Elemental Focus not giving +1 to supported elemental gems (randomflyingtaco)
* Fix Nightblade Crit Multi not scaling with Elusive effect (mthjones)
* Fix Divergent Fortify not working (LocalIdentity)
* Fix Awakened Cast on Critical Strike not applying cooldown recovery to skills (LocalIdentity)
* Fix Explosive Arrow skill on Spectres (LocalIdentity)
VERSION[2.11.1][2021/10/23]
* Fix mods when crafting Cluster Jewels + items (Wires77)
* Fix Storm + Armageddon Brand hit damage (Lilylicious)
VERSION[2.11.0][2021/10/22]
* Add Scourge mods and base type values (Wires77)
* Update almost all existing gems with 3.16 changes (LocalIdentity)
* Improve mastery node effect selection UI (Tom Clancy Is Dead)
* Add support for more complex custom modifiers (SaloEater)
* Add labeling to Chaos Resistance to show when you have CI (Lilylicious)
* Add Defiance Banner to the config tab (uilman)
* Add the ability to click a label to check the associated checkbox (ajryan)
* Improve build list loading speed (PJacek)
* Add support for Poisonous Concoction (Lexy)
* Add support for Fortification (Zpooks) (AlphaCheese)
* Add support for Mark of the Red Covenant ignite mod (LocalIdentity)
* Add support for Gladiator Violent Retaliation and Ascendant Gladiator nodes (Peechey)
* Add support for Bastion of Hope stun avoidance (etojuice)
* Add support for 3.16 Elemental Equilibrium (Lothrik)
* Add support for 3.16 Wind Dancer (Zpooks)
* Update Transcendance Keystone to 3.16 value (enizor)
* Add support for Accuracy Bonus per Dexterity mastery (enizor)
* Add support for new Mark Movement Speed mastery (sida-wang)
* Add support for Double Damage mod on Mace masteries (uilman)
* Add support for Surveillence notable (Lothrik)
* Add support for Recovering ES on Spell Block from Safeguard (jppianta)
* Add suporrt for new Storm Weaver Shocked/Frozen mod (Quote_a)
* Add support for "All Damage with Maces and Sceptres inflicts Chill" (Peechey)
* Add support for "Increased Melee Damage with Hits at Close Range" (Dullson)
* Add support for "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" (Lothrik)
* Add support for "if you have not taken Damage Recently" (Dullson)
* Add support for "Non-Projectile Chaining Lightning Skills Chain +1 times" (Dullson)
* Add support for "Increased Damage with Bleeding inflicted on Poisoned Enemies" (monerofglory)
* Add support for "Intimidate Enemies for 4 seconds on Block while holding a Shield" (etojuice)
* Add support for "Cannot be Ignited while on Low Life" (etojuice)
* Add support for "Increased Damage when using Bow and Totem" (Peechey)
* Add support for "Crush Enemies on Hit with Maces and Sceptres" (Peechey)
* Add support for "Auras from your Skills have x% increased Effect on you" (etojuice)
* Add support for "if you have Detonated a Mine Recently" (uilman)
* Add support for "Minion's Attacks Overwhelm X% Physical Damage Reduction" (uilman)
* Add support for "Dual Wielding does not inherently grant chance to Block Attack Damage" (Peechey)
* Add support for Life Regeneration Rate (SaloEater)
* Add support for mods that work with multiple weapons (SaloEater)
* Update Consecrated Ground Life Regen percent (mthjones)
* Remove attribute tag from "Reduced Attribute Requirements" mods (randomflyingtaco)
* Fix DPS sorting of Awakened Gems (Nostrademous)
* Fix jewel data on converted trees (bit-skipper)
* Fix Solipsism removing the Intelligence bonus to Mana (SaloEater)
* Fix Reigning Veteran (Peechey)
* Fix Cruelty capping at 50% instead of 40% (jfarrell731)
* Fix Elemental Ailment Duration on you applying to bleed and poison duration (etojuice)
* Fix issue where the duration from Swift Affliction wasn't applying to ignites (Zpooks)
* Fix issue where nodes next to mastery nodes would remain allocated after Thread of Hope was removed (bit-skipper)
* Fix edited Legion jewel nodes not saving/loading properly (Lothrik)
* Fix replacement of notable passives conquered by Eternal Empire (etojuice)
* Fix options for old ascendancy nodes appearing in the config tab (LocalIdentity)
* Fix overcapped Resistances displaying decimal values (monerofglory)
* Fix estimated act putting you in the endgame too early (magnusvmt)
* Fix visual bug causing node paths to appear broken (summ1else)
VERSION[2.10.0][2021/10/19]
* Add balance updates from 3.16.0 v3 tree (Wires77)
* Add support for mastery mod: Block Attack Damage if Not Blocked Recently (Peechey)
* Add support for mastery mod: Intelligence is added to Accuracy Rating with Wands (sida-wang)
* Fix spell suppression label in Calcs tab (frodon1)
* Fix crash when using Mistwall (Tom Clancy Is Dead)
* Fix missing onslaught mods for Daresso's Defiance (jfindley)
VERSION[2.9.0][2021/10/18]
* Add 3.16 tree and implement passive masteries (ifnjeff)
* Add support for new mastery mods (Peechey, bit-skipper, sida-wang, Nostrademous, monerofglory, Lexy)
* Add support for Reservation Efficiency (Wires77)
* Add support for Spell Suppression (Lexy)
* Add parsing for Scourge mods (Wires77, Nostrademous, Morilli)
* Add new keystones (Lexy, Zpooks, Lilylicious): Acrobatics Divine Shield Doomsday Ghost Dance Iron Will Lethe Shade Magebane Solipsism Versatile Combatant
* Add new uniques (Nostrademous): The Squire Uul-Netol Stranglegasp
* Update multiple uniques to 3.16.0 (LordMotas, Lexy, SaloEater, Zuiia, U-n-Own, nelchael)
* Update Armour calculations to 3.16 values (madinsane)
* Update base ES Recharge Rate to 3.16 values (borisbsv)
* Update base Ignite scaling to 3.16 values (ifnjeff)
* Update with blind with 3.16 changes (Lexy)
* Update Elusive to provide 15% chance to Avoid Damage from Hits, instead of its old Dodge-related stats (Lexy)
* Add support for opening related info on poewiki.net when pressing F1 on items/gems/passives (BlueManiac)
* Add support for custom Modifiers text field in config (deathbeam)
* Add import of Pastebinp.com pastes (MaxKruse)
* Add colour buttons for Notes tab (pHiney)
* Add global default level in options (FWidm)
* Add option for setting global default gem quality (FWidm)
* Update settings UI page (FWidm)
* Add instructions on the item tab on how to clone items with copy paste (Tom Clancy Is Dead)
* Add Hyrri's Watch spectre (Kayella)
* Add support for new Exposure mods (PJacek)
* Add support for Cruelty DoT multiplier (Helyos96)
* Add support for Plague Bearer infecting/incubating and its alternate qualities (deathbeam)
* Add support for Consecrated Ground scaling (Lilylicious)
* Add support for legacy Snakepit (Wires77)
* Add option to bypass Cold snap CD (Lilylicious)
* Add Minimum Resistance cap (ifnjeff)
* Add support to disable Quivers on Unarmed characters (madinsane)
* Add support for flask enchants (ifnjeff)
* Add support for different jewel radii for different tree versions (Wires77)
* Add radius numbers for a number of skills (LocalIdentity)
* Fix bug where Elemental Penetration with Attacks was applying to other damage types (PJacek)
* Fix Bane not gaining duration per curse applied (PJacek)
* Fix Strength's damage bonus double-dipping when using Iron Will (PJacek)
* Fix gem levels not being properly limited (PJacek)
* Fix weapon triggered skill parsing and Mana Cost (LocalIdentity)
* Fix Bitterdream to use Inspiration Support instead of Reduced Mana Support (Typepluto)
* Fix window title not being updated after saving a build (pHiney)
* Fix incorrect art for Lethal Pride keystones (Wires77)
* Fix build files increasing in size over time (Wires77)
* Change all instances of "Focussed" to "Focused" (LocalIdentity)
VERSION[2.8.0][2021/08/09]
* Add Leadership's Price unique amulet (Torchery)
* Group similar stats in sidebar for enhanced clarity (Nightblade)
* Fix Unleash crash with minion skills (LocalIdentity)
* Fix images for socketed Cluster Jewels (LocalIdentity)
* Fix Slipstream tooltip (Wires77)
VERSION[2.7.0][2021/08/08]
* Add support for Unleash (LocalIdentity) (scristall)
* Add Harvest and Heist enchantments to weapons and body armours (ifnjeff)
* Add new base types to rare template, update existing rare templates (a3person)
* Add support for Banishing Blade and Pneumatic Dagger implicits (LocalIdentity)
* Add sorting by Ward attribute (TiagoGoddard)
* Add support for Elusive effect (Lexy)
* Add full support for Eye To Eye cluster jewel notable (Nostrademous)
* Add Cold Damage over Time mod from cluster jewels (Lexy)
* Add radius to Explosive Concoction (Wires77)
* Add Usurper's Penance (pundm)
* Update Ailment Threshold values (LocalIdentity)
* Fix crash when loading certain builds (PJacek)
* Fix error when main skill is not a minion skill but "Minion" is in FullDPS (Nostrademous)
* Fix minions getting Inspiration Charges (Lexy)
* Fix Doryani's Prototype not applying to minions (Wires77)
* Fix parsing for new wording on Combat Focus jewels (LocalIdentity)
* Fix Manabond not being affected by Reduced Mana Cost nodes (Wires77)
* Fix Lifetap Support and Blood Magic not altering the cost of skills (Wires77) (LocalIdentity)
* Fix Bomb Specialist AoE mod (Nostrademous)
* Fix bug where Timeless Jewel keystones could be edited (Wires77)
VERSION[2.6.0][2021/07/27]
* Add new Expedition uniques (Wires77)
* Add Ward as new defensive stat (Wires77)
* Update Dendrobate with new gem name (pundm)
* Fix Voltaxic Burst enchantment (LocalIdentity)
* Fix last line of Notes tab being cut off (Wires77)
VERSION[2.5.0][2021/07/26]
* Add full support for new 3.15 Skill Gems (LocalIdentity) (ifnjeff) (tcid)
* Absolution
* Behead Support
* Boneshatter
* Defiance Banner
* Explosive Concoction
* Eye of Winter
* Forbidden Rite
* Manabond
* Rage Vortex
* Shield Crush
* Spectral Helix
* Storm Rain
* Summon Reaper
* Voltaxic Burst
* Add partial support for new 3.15 Skill Gems
* Ambush
* Battlemage's Cry
* Blade Trap
* Earthbreaker Support
* Focused Ballista Support
* Update enchantments with 3.15 changes (Nostrademous) (LocalIdentity)
* Update item mods to 3.15 stats (LocalIdentity)
* Update minions with 3.15 changes (LocalIdentity)
* Update Pantheons with 3.15 changes (Nostrademous)
* Add new item bases (Wires77)
* Add support for Timeless jewel edits to persist when updating to a new tree version (Wires77)
* Add documentation for color codes to the Notes tab (Wires77)
* Update poison damage tooltip from 20% to 30% (pundm)
* Fix Mana Reservation Rounding (LocalIdentity)
* Fix skills turned into mines not having reservation (PJacek)
* Fix for downloading tree data if missing (Wires77)
* Fix triggered skills not showing the right mana cost (LocalIdentity)
* Fix Hexproof to be unaffected by curses, not immune (Wires77)
* Fix level progress calculations (ifnjeff)
* Fix Anomalous Pride quality didn't increase "chance to bleed" (Typepluto)
* Fix Bladestorm to always bleeds in Blood Stance (Wires77)
* Fix Hollow Palm Technique parsing (Helyos96)
VERSION[2.4.0][2021/07/22]
* Add 3.15 passive skill tree (ppoelzl)
* Add level 20/21 gems from 3.15 patch notes (LocalIdentity)
* BEWARE: numbers may not be 100% accurate
* Add 3.15 uniques (Wires77)
* Add 3.15 flask changes (Helyos96)
* Update Evasion, Poison, and Consecrated Ground calculations to 3.15 values (ifnjeff)
* Update Alchemist's Genius to 3.15 value (Wires77)
* Update Gem tooltip generation (PJacek)
* Drastically accelerate searching for application updates (from 50s to 2s) (ppoelzl)
* Add 20 Quality gem DPS tooltip comparison (7e11)
* Add weapon crit to mod breakdown (PJacek)
* Add space and newline before custom mods on Timeless Jewel nodes (Nightblade)
* Add Trial Galecaller Spectre (Kayella)
* Add support for Fishing Rods (aletrop)
* Add support for many Alternate Quality gems (PJacek)
* Add support for "Perfect Crime" and "Bomb Specialist" ascendancy nodes (Nostrademous)
* Add support for Chip Away brand cluster notable (LocalIdentity)
* Add functionality for Blood Artist notable (pundm) (Wires77)
* Add skill parts for Smite (Wires77)
* Add support for Gore Shockwave skill (LocalIdentity)
* Add support for Divergent Close Combat (Wires77)
* Add support for Unnerve belt enchant (Wires77)
* Add support for Rathpith Globe and legacy Femur of the Saints (Wires77)
* Add support for Replica Siegebreaker burning ground (ifnjeff)
* Add support for Non-vaal Skill Damage during Soul Gain Prevention (Wires77)
* Add support for reworked Arborix mods (LocalIdentity)
* Add support for Warcries have infinite power (pundm)
* Add Trap and Mine speed essence mod (pundm)
* Add parsing for Increased Chaos Damage Over Time Mod found on weapons (Puddlestomper)
* Add support for Fiery Impact (celuck)
* Add unique variant of Commandment of Inferno (PJacek)
* Add unique helmet The Fledgling (ppoelzl)
* Add missing Fire Burst radius (quashtaki)
* Add missing Pride aura radius (pundm)
* Fix power report crash when loading builds (Wires77)
* Fix error when the power report is not initialised yet (Nostrademous)
* Fix Minion skill tooltips not working correctly (Nostrademous)
* Fix FullDPS comparison for Alternate Gem Qualities (Nostrademous)
* Fix FullDPS comparison of enabling/disabling flasks (Nostrademous)
* Fix Blood Offering appearing in gem list (PJacek)
* Fix multiple bugs with General's Cry Mirages (Nostrademous)
* Fix Disciple's cooldown to apply to all Sentinels (Wires77)
* Fix Triggered skill parsings (LocalIdentity)
* Fix support for Petrified Blood (Wires77)
* Fix Blood Stance not granting More Bleed damage (LocalIdentity)
* Fix maces/sceptres and thrusting/non-thrusting swords counting as different weapon types (Wires77)
* Fix interaction between Agnostic and Pious Path (LocalIdentity)
* Fix The Agnostic life recovery calculation (roastpiece)
* Fix Anomalous Chain Hook (PJacek)
* Fix Divergent Stormbind Quality having More AoE instead of Increased (Wires77)
* Fix Alternative Quality for Precision (czarandy)
* Fix Mana Reservation mods (pundm)
* Fix "increased Impale Effect" of Dread Banner only applying to attacks (Typepluto)
* Fix parsing for Sacrificial Garb implicit (Wires77)
* Fix Wildwrap Attack Speed mod (LocalIdentity)
* Fix wording on Eyes of the Greatwolf (pundm)
* Fix wording on Ngamahu's Sign (pundm)
VERSION[2.3.0][2021/04/23]
* Add new 3.14 uniques (Nostrademous)
* Add new 3.14 bases and clean up base matching
* Update reservation rounding with 3.14 Changes (PJacek)
* Add parsing for many new unique mods
* Add support for portrait display resolutions (Wires77)
* Add support for Blood Sacrament (from Relic of the Pact unique) (Nostrademous)
* More accurately simulate triggered attacks (Moneypouch)
* Split reservation into mana and life reservation mods (PJacek)
* Add Divine Flesh to be able to be parsed on items (Wires77)
* Change power report to only appear when selected (Wires77)
* Fix item parser to handle new copy/paste format (Wires77)
* Fix parsing and update uniques (pundm, Nostrademous)
* Fix Punishment Curse not affecting DPS while an "Enemy is on Low Life" (Typepluto)
* Fix scaling for Vaal Righteous Fire (Wires77)
* Fix Mine Aura effect applying to DoTs from mines
* Fix Exsanguinate stacks applying to Poison and Ignite
* Fix support for Prism Guardian (PJacek)
* Fix crash when searching in boxes with many symbols (Wires77)
* Fix crash when comparing bows with Mirage Archer for Ignite/Bleed (Nostrademous)
* Fix exporting of implicit tags (Nostrademous)
* Fix missing implicit on Disintegrator (pundm)
VERSION[2.2.1][2021/04/17]
* Add support for Chainbreaker rage cost (PJacek)
* Fix skill tags
* Fix Exsanguinate and Corrupting Fever stack damage
* Fix Blood Magic (PJacek)
* Fix crash related to fake minion skill costs (PJacek)
VERSION[2.2.0][2021/04/17]
* Add support for new 3.14 Skill Gems
* Corrupting Fever
* Exsanguinate
* Reap
* Petrified Blood
* Arrogance Support
* Bloodthirst Support
* Cruelty Support
* Lifetap Support
* Update skills with 3.14 changes
* Update enchantments with 3.14 changes
* Update item mods to 3.14 stats
* Update minions with 3.14 changes (Nostrademous)
* Add new skills from 3.14 uniques (Not Supported yet)
* Add support for Glimpse of Chaos (PJacek)
* Add support for new Skill Costs (Life / Mana / Rage) (PJacek)
* Fix non-integer catalyst scaling issues (Wires77)
* Fix Victarios Influence using old mods(pundm)
* Fix Tailwind not appearing on Passive Tree (Helyos96)
* Fixes Bow DoT Skills double-dipping on nodes that grant a Dot & Hit (Nostrademous)
VERSION[2.1.1][2021/04/15]
* Fix Physical Aegis config option affecting the Innervate config option (PJacek)
* Fix Trap and Mines to use Throwing/Laying Speed for DPS calcs (Nostrademous)
* Fix Mirage Archer applying DoT stacks when they shouldn't (Nostrademous)
* Fix Minion Full DPS crash (Nostrademous)
* Fix Full DPS stat comparison for items (Nostrademous)
* Fix General's Cry to ignore speed for non-channeled skills (Helyos96)
VERSION[2.1.0][2021/04/15]
* Add support for the 3.14 Skill Tree
* Add support for count-scaling Active Skills from items (Nostrademous)
* Add support for Accelerating, Noxious, and Unstable catalysts (Nostrademous)
* Add support for Defiance (Helyos96)
* Add support for leech mods rewordings (Helyos96)
* Adds support for Vaal Ground Slam having Exertions (Nostrademous)
* Add new Ultimatum uniques (Wires77)
* Implemented Tecrod's Gaze (Wires77)
* Update uniques from 3.14 patch notes (pundm)
* Update Low Life/Mana threshold (Nostrademous)
* Add radius value to Death Aura
* Fix Wintertide brand not getting +1 to attached brand (Wires77)
* Fix DD and VD having their spell damage apply to corpse explosions
* Fix some gems appearing in the gem list when they shouldn't have (Wires77)
* Fix physical damage reduction for bleed from going below zero (Wires77)
* Fix outdated modifier text on Aberrath's Hooves (pundm)
* Fix many crashes related to Generals Cry and The Saviour (Nostrademous)
* Fix Mirage Archer to be a component of the skill it supports now (Nostrademous)
* Fix crash related to Brands with Item-granted Active Skills (Nostrademous)
* Fix "Socketed Gems are supported by..." mods for trigger skills (e.g. CwC) (Nostrademous)
* Fix incorrect application of Buff Effect (PJacek)
VERSION[2.0.3][2021/04/07]
* Fix ability to tab between inputs on the skills tab (Wires77)
* Fix stat comparison between tree specs (Wires77)
* Fix General's Cry and build load failures when using the same gem multiple times (Nostrademous)
* Fix reliance on a calculation mode for Mirage Archer (Nostrademous)
* Fix Saviour's Reflection Multi-part Skill behavior (Nostrademous)
* Fix export formatter missing '+' for some item implicits (Wires77)
* Fix crash with certain CoC triggered skills (Helyos96)
* Fix impale damage not showing up in combined total damage (ALT-F-X)
VERSION[2.0.2][2021/04/05]
* Fix looking at wrong location for saved user builds (dclamage)
VERSION[2.0.1][2021/04/05]
* Fix crash related to Arcanist Brand (Wires77)
* Fix crash related to triggered mana cost on skills from items without a level (Wires77)
* Fix crash when loading PoB from Unicode filepath (Wires77)
VERSION[2.0.0][2021/04/05]
* Add support for many trigger-based skills and items (Nostrademous)
* Add support for General's Cry and Mirage Archer (Nostrademous)
* Add support for total DPS roll-up of multiple skills (Nostrademous)
* Add integer scaling for active skills via a "count" variable (multiple minions, mines, etc.) (Nostrademous)
* Add least effective allocated node setting to power report (Wires77)
* Add dynamic loading for passive skill tree versions, reducing memory allocation (Nostrademous)
* Add mana reservation breakdown (Wires77)
* Add ability to paste with right-click (Wires77)
* Add support for GGG's new API allowing us to populate Cluster Jewel nodes on character import (Nostrademous)
* Add full support for Doryani's Prototype's lightning resist mods (andrewbelu)
* Add handling for Doedre's Skin's ignore curse limit mod (andrewbelu)
* Add support for Blunderbore's shrine effect mods (andrewbelu)
* Add support for The Admiral's lowest resist mod (andrewbelu)
* Add support for Actum's crit modifier (andrewbelu)
* Add Culling DPS to sidebar if build includes a source for Culling (Nostrademous)
* Add support for The Dark Seer's Malediction debuff (Helyos96)
* Add support for Precursor's Emblem (Wires77)
* Add new Enchantments and fix enchanting UI (PJacek)
* Add support for Flickershade Spectre chaos damage conversion (Wires77)
* Add more support for Intimidate and Unnerve (andrewbelu)
* Automatically generate Watcher's Eye mods (Wires77)
* Node power now accounts for total power along the path (Wires77)
* Inspiration charges now default to maximum (Wires77)
* Damage header in calcs tab now respects thousands separator preference (mweber15)
* Remove garbage collection calls to improve memory usage(Wires77)
* Fix Brand Attachment Limit for several skills (Wires77)
* Fix Flask Effect calculating incorrectly in certain situations (Wires77)
* Fix Divergent Nightblade to grant Increased Crit Chance instead of Base Crit Chance
* Fix Fanaticism applying to attacks (Wires77)
* Fix wording on Hyperboreus, Kitava's Thirst, and Poet's Pen (Nostrademous)
* Fix Voidshot parsing incorrectly (LocalIdentity)
* Fix Divergent Ensnaring Arrow (LocalIdentity)
* Fix Physical Damage Reduction incorrectly assuming negative values (andrewbelu)
* Fix Anomalous Infused Channelling Support (ALT-F-X)
* Fix Curses with two words parsing incorrectly (Wires77)
VERSION[1.4.170.28][2021/03/04]
* Add support for Culling (andrewbelu)
* Add full support for Cast on Death support (Nostrademous)
* Add support for additional cooldown usages in Warcry uptime calculations (andrewbelu)
* Add support for "Enemies Taunted by your Warcries take x% increased Damage" (Helyos96)
* Add character import options for Garena and Tencent realms (Wires77)
* Fix crash when loading old build with cluster jewel notables added in a later patch (Wires77)
* Fix crash when the default gem level is zero (Wires77)
* Fix error caused by missing source of Affliction Charges (Wires77)
* Fix Cast Rate for Self-Cast Skills that have Cooldown & Display DPS (Nostrademous)
* Fix DoT skills incorrectly considering Attack modifiers (Nostrademous)
* Fix Orb of Storms Activation Frequency not accounting for More multipliers to Cast Speed (pundm)
* Fix eHP Calculation for Glancing Blows + new Block boots (LocalIdentity)
* Fix Ballista limit with (Replica) Iron Commander equipped (pundm)
* Fix Accuracy per Quality incorrectly being considered a local modifier (Wires77)
* Fix Hydrosphere damage conversion not being considered local (PJacek)
* Fix Anomalous Flesh and Stone applying twice with Iron Reflexes active (Wires77)
* Fix Alternate Quality Purifying Flame, Hypothermia, Physical to Lightning (Wires77)
* Fix Alternate Quality mod on Divergent Pride (ALT-F-X)
* Fix Chain Hook not being considered an Area Skill (pundm)
* Fix parsing of Enemy modifiers (Wires77)
* Fix Quality mod on Devouring Diadem (Wires77)
* Fix Yoke of Suffering equipment level requirements (pundm)
* Fix typo in Doryani's Prototype (Helyos96)
* Remove Crafting Bench options from items that cannot be crafted that way (pundm)
VERSION[1.4.170.27][2021/02/21]
* Add charge distance multiplier for Shield Charge (Helyos96)
* Add group restrictions to crafted mods for crafted items (Wires77)
* Add skill tree comparison (Ethrel)
* Add future support to load a build from commandline (dclamage)
* Add support for Assassin's Mistwalker elusive mod (wjdeclan)
* Add PoE matching search function (Ethrel)
* Add customisation options for decimal and thousands separators (Leftn)
* Add support for Doedre's Skin curse pillar (PJacek)
* Fix minimum charges not working for new belts (Wires77)
* Fix Inevitability to specify Rolling Magma (PJacek)
* Fix Cospri's Malice wording (Nostrademous)
* Fix Intimidate/Unnerve mods throwing an error (Wires77)
* Fix several issues with Doppelganger Guise (Wires77)
* Fix for Shockwave secondary trigger rate (Nostrademous)
* Fix Supreme Ego not working with non-skill Auras (ALT-F-X)
* Fix Divergent Purity of Lightning (ALT-F-X)
* Fix 'enemy is hexproof' Config Setting affecting marks (Nostrademous)
* Fix Attack Speed affecting Mine or Trap Supported attacks (Nostrademous)
* Fix Divergent Cobra Lash (ALT-F-X)
* Fix Pure Talent looking at the wrong starting node for marauder (Wires77)
* Fix Ryslatha's Coil not applying to ailments (Quote_a)
* Fix Affliction Charges for Ailments (Nostrademous)
* Fix Femurs of the Saints (Wires77)
* Fix Phantasmal Summon Skeleton and archers for Vaal Summon Skeletons (Wires77)
* Fix Divergent Endurance Charge on Melee Stun not showing the right checkbox (ALT-F-X)
* Fix quality for socketed gems applying to all gems (Wires77)
* Fix totem number configuration not showing with Searing Bond (Wires77)
* Fix crafted quality applying twice to imported gear (Wires77)
* Fix Pure Talent so it now plays nicely with timeless jewels (Wires77)
* Fix Death Aura not applying area modifiers (ALT-F-X)
* Update wording on Rigwald's crest (Wires77)
VERSION[1.4.170.26][2021/02/09]
* Add control to set Vaal Timeless Jewel influenced passive skills to random mods (Wires77)
* Add all new uniques in game patch 3.13.0 (Nostrademous, ppoelzl)
* Add support for the following uniques:
* Arn's Anguish
* Doppelgänger
* Graven's Secret
* Olesya's Delight
* Goblinedge
* Add Flickershade Spectre (Kayella)
* Add support for "Cobra Lash Chains additional times" helmet enchantment (Puddlestomper)
* Add Belt Enchantments to Item Crafting from Harvest improved Offering to the Goddess Uber Lab runs. Not all modifiers parse yet, but most do (Nostrademous)
* Add Elevated Affixes to Item Crafting (Nostrademous)
* Add support for Blizzard Crown implicit (Nostrademous)
* Add support for Brutal, Affliction and Absorption Charge (damage recoup from Absorption Charges is not supported) conversion from Endurance, Frenzy, Power charges via Unique Belts (Nostrademous)
* Add support for 'On Scorched Ground' in Config Tab when using Legacy of Fury unique boots (Nostrademous)
* Add support and extraction of 'Thirst for Blood' unique ability from Jack, the Axe unique (Nostrademous, LocalIdentity)
* Add support for Doppelgänger's insane/sane specification via Config Tab (Nostrademous)
* Add support for Goblinedge Power/Frenzy charge interaction (ppoelzl)
* Add limit cap to Replica Nebulis unique (Wires77)
* Add parsing support for Anomalous Minion Life (ALT-F-X)
* Updated Max Awakening Level for Sirus to scale to 9 achievable through Atlas Passives (Quote_a)
* Add support for Phantasmal Ancestral Protector (ALT-F-X)
* Add support for impale from spells (Wires77)
* Add support for Phantasmal Might from The Black Cane (Wires77)
* Add support for Shield Shatter on Shattershard (Wires77)
* Add support for automatic chill from Summon Skitterbots (Quote_a)
* Fix Timeless Jewel passives not accounting for past skill tree versions (Wires77)
* Fix Spectre stats scaling with Spectre level using incorrect values (zao)
* Fix mod ranges on Legacy of Fury (Nostrademous)
* Fix Endurance/Frenzy/Power charges missing for Minions (Wires77)
* Fix multiple crashes in the skills tab related to gem quality (Nostrademous, ALT-F-X)
* Corrected enforcement of Minion Skill level requirements (zao)
* Fix Enduring Cry's Life Regen calculation (tommysays)
* Fix Ancestral Cry's Armor increase calculation (tommysays)
* Fix Divergent Minion Damage to be an "Increase" instead of "More" as it should have been (Wires77)
* Fix accounting for Abyssal Jewels in Offhand Slots (zao)
* Updated Replica Alberon's Warpath chaos damage gain per strength to new value (RUSshy)
* Fix Flame Wall's secondary not being affected by Area Damage (Wires77)
* Fix Impale Support and Divergent Fortify application of Physical Damage Reduction (Wires77)
* Fix '+1 to Maximum Summon Ballista Totems' to not also increase the allowed count of Ancestral Totems (Wires77)
* Fix Disintegrator to include Block Attack Damage on Ritual variant (Wires77)
* Fix Offering to the Serpent unique gloves stat attributes (PJacek)
* Fix Cameria's Avarice unique mace to state "on Hit" rather than "on Kill" (ALT-F-X)
* Fix Phantasmal Smite quality bonus (ALT-F-X)
* Updated many Configuration Tab tooltips to display updated values (zao)
VERSION[1.4.170.25][2021/01/16]
* Fix Trinity Support
* Fix Hrimnor's Resolve
VERSION[1.4.170.24][2021/01/16]
* Fix Rupture calculations
VERSION[1.4.170.23][2021/01/16]
* Add support for Trinity Support and Hydrosphere
* Update gems with 3.13 changes
* Add new 3.13 base types
* Add support for "Projectiles deal #% increased Damage for each Enemy Pierced"
* Add Block Chance and Spell Block Chance to the passive skill tree heatmap
* Fix multiple application crashes related to skill gem selection
* Fix Fanaticism and Convergence persisting after deallocating nodes
* Fix parsing error with Pure Talent
* Fix item versions of Disintegrator
* Fix item versions of Doryani's Fist
VERSION[1.4.170.22][2021/01/14]
* Add support for Hierophant's reworked Conviction of Power Notable
* Add support for Hand of the Fervent's unique mechanic
* Add support for "Physical Damage taken from Hits"
* Update Disintegrator and Martyr of Innocence
* Fix Shaper of Flames/Winter/Storms more effect not being accounted for in left-hand side calculation
* Fix parsing of Deadeye's Rupture Notable
* Fix parsing of Inquisitor's Instruments of Virtue and Righteous Providence Notables
* Fix effective hit points calculations when you take 100% of damage as a different type of damage
* Fix errors occurring when hovering over gem tooltips
* Fix damage taken on block calcs breakdown
* Fix mod on Follow-Through Medium Cluster Jewel
* Fix usage limit on Hazardous Research
* Fix build files growing exponentially if there is a colon at the start of an item's name
VERSION[1.4.170.21][2021/01/13]
* Add 3.13 passive skill tree
* Changes to Ascendancies:
* Add support for Deadeye's Gale Force mechanic
* Add support for Deadeye's Rupture mechanic
* Add support for Elementalist's Heart of Destruction Notable
* Add support for Elementalist's Mastermind of Discord Notable
* Add support for Elementalist's Shaper Notables
* Add support for Inquisitor's reworked Notables
* Add support for Battlemage mechanic
* Add support for Blackflame's unique mechanics
* Add support for all basic aegides
* Add various improvements to the accuracy of maximum hit and EHP calcs
* Add option to show all Alternate Quality skill gems in the skill gem selection dropdown
* Add stat comparisons to Alternate Quality skill gems on hover
* Add support for various new mods
* Add all known new uniques
* Update Far Shot to new scale
* Fix Elemental Equilibrium applying twice if you have Malachai's Artifice equipped
* Fix stat differences between Cluster Jewel Notables not showing up
* Fix Large Cluster Jewels not importing correctly in some cases
* Fix Alternate Quality skill gems staying at their default Quality on copy/paste
* Fix Anomalous Flesh and Stone Alternate Quality effect
* Fix base type mods that were inadvertently removed
* Fix craftable flask mods having disappeared
* Fix crafting tags showing up on multiline mods
* Fix skill gem tooltip not showing when hovering over the skill gem selection dropdown
* Fix error where skill gem controls were selectable before a skill gem was set
* Fix Dark Pact radius
* Fix mod on Unending Hunger
VERSION[1.4.170.20][2020/12/19]
* Fix program not launching on Linux
VERSION[1.4.170.19][2020/12/19]
* Guard skills rework:
* You can only have one Guard skill active at a time now
* Vaal Molten Shell automatically disables all other Guard skills
* Guard skills scale with Buff Effect
* EHP calculations take Guard skills into account
* Multi-stage skills rework:
* Add skill stages box to the sidebar and calcs tab
* Remove existing skill stages config options and pre-defined stages
* Enable Penance Brand to automatically use the "Activations per Brand" number
* Fix Winter Orb damage calculations
* Add support for skills granted by passive tree nodes
* Add separate Rune Dagger, Warstaff and Convoking Wand base types
* Add full support for Weapon and Armour Quality modifiers
* Add tooltips to skill gem selection drop-down
* Add support for Immortal Ambition
* Add support for Supreme Decadence
* Add support for Scorch mod on Rolling Flames
* Add quality mods to Zealotry and Anger
* Add enchantment mod for Sigil of Power
* Add new Keystones to Skin of The Lords
* Add support for non-vaal skill related modifiers
* Fix interaction of Guard skills with MoM, Low Life, and other mechanics
* Fix item bases on Beacon of Madness
* Fix Cold damage applying Freeze twice
* Fix Arcanist Brand using the main skill's Brand limit
* Fix Dominating Blow quality not applying to Minions
* Fix Storm Burst not applying an additional tick
* Fix non-Curse Aura Effect applying to Curse Auras
* Fix disabling alternative Ailments when using Elemental Focus
* Fix attribute requirements for some skill gems
* Fix anointed Notables not showing as allocated on the skill tree
* Fix skill gem quality not rounding towards zero in case of negative stats
* Fix "nil" being displayed in DoT breakdowns
* Fix parsing of decimal values on items
* Fix item variants on Watcher's Eye
* Fix item variants on The Peregrine
* Fix item text sanitisation
* Fix an issue with item base names containing whitespace
VERSION[1.4.170.18][2020/11/22]
* Fix error on updating with the 1.4.170.17 patch
VERSION[1.4.170.17][2020/11/22]
* Remove support for loading builds from before game version 3.0.0
VERSION[1.4.170.16][2020/10/18]
* Fix error on updating with the 1.4.170.15 patch
VERSION[1.4.170.15][2020/10/18]
* Add performance improvements where PoB will no longer use excess CPU when in the background
* Add distance and Cluster Notable sorting to the Power Report
* Add eHP sorting to the tree and uniques tab
* Add note showing which elemental resistance Hexblast is using for its Chaos damage
* Add support for Storm Burst damage scaling with orb duration
* Add support for Infernal Blow Debuff DPS
* Add support for Death Wish on the Maw of Mischief unique
* Add support for Combat Rhythm Cluster Notable
* Add support for Divergent Rallying Cry
* Add support for Might and Influence jewel
* Add support for Replica Malachai's Artifice
* Add support for Replica Wings of Entropy
* Add support for alternate quality Purity of Elements
* Add Contaminate skill from Sporeguard
* Add support for Ailment Mode to calculate non-damaging ailments
* Add support for SOCKS5 Host Name Mode Proxy
* Update uniques with 3.12 changes
* Update Crackling Lance enchantment
* Fix alt quality gems not saving properly
* Fix crash when you socket a Thread of Hope into a Cluster Jewel socket
* Fix support for mod translation with Spiritual Aid and Spiritual Command notables
* Fix Flame Wall added damage not working with Minions
* Fix Mjolner and Cospri's Malice supports not applying correctly
* Fix Doom calculations for builds with multiple curses
* Fix Perforate more AoE in Sand Stance
* Fix wording on Agnerod staves
* Fix Divergent Blind Support Crit Chance calculation
* Fix Curse mods on the tree not applying correctly
* Fix Phantasmal Static Strike
* Fix Vulnerability not displaying chance to bleed in breakdowns
* Fix Bladestorm "Are you in a Bloodstorm?" buff applying as a global buff
* Fix some mods on the tree not working with ailments
* Fix Hexblast interaction with increased/reduced resistance modifiers
* Fix Shockwave Support having DPS numbers when it should only show average hit
* Fix catalyst tags on Emberwake
* Fix Mystic Bulwark notable
* Fix display of Poison DPS for average hit skills
* Fix support for Phantasmal Earthquake
* Fix Vaal Impurities
* Fix Rage generation on Warlords Mark
* Fix skill radius for Ball Lightning
* Fix Siphoning charge limit for items with dual influence
* Fix Curses not applying from Minions
* Fix some comparison tooltip errors
* Fix bug with Catalysts and Malachai's Artifice
* Fix parsing of Voidforge
* Fix error where accuracy could appear to be below 0
* Fix support for Vaal Impurity resistances
* Fixes Minion display stats for when they have DoT Components
* Fix Fungal ground not applying to Minions
* Fix alternate qualities on some gems not displaying correctly
VERSION[1.4.170.14][2020/10/01]
* Add distance and Cluster Notable sorting to the Power Report
* Add support for Death Wish on the Maw of Mischief unique
* Add Combat Rhythm Cluster Notable
* Fix Doom calculations for multiple curse builds
* Fix Perforate more AoE in Sand Stance
* Fix wording on Agnerod's staves
* Fix Divergent Blind Crit Chance calculation
VERSION[1.4.170.13][2020/09/30]
* Add Flame Wall Projectile added damage buff
* Add Ashblessed Warden Spectre
* Add parsing for new Golem mods lines on Uniques
* Add support for Zealotry alternate quality
* Add support for Lingering Blades with Animate Weapon
* Add support for new Curse/Mark on Hit mods
* Fix crash related to Divergent Maim
* Fix crash related to Phantasmal Raise Zombie
* Fix Hexblast not taking into account elemental penetration
* Fix implementation of the Iron Mass unique
* Fix second mod on Growing Agony not appearing
* Fix Power Report being cut off from the UI at certain resolutions
* Fix Fortify Support alternate quality
* Fix Projectile count calculations
* Fix Mana Cost calculations
* Fix Timeless Jewel saving
* Fix Lucky Damage applying to all elements
* Fix Animate Weapon more Attack Speed from gem
* Fix mods on Cloud Retch Spectre
* Fix parsing for some tooltips
* Fix Cremation Hit Time override
* Fix Catalysts not working in the item crafter
VERSION[1.4.170.12][2020/09/28]
* Add support for Timeless jewels and their mods
* Timeless jewels will now convert Keystones on the tree
* You can change the mods on nodes by right-clicking and selecting which stat you want
* Add full support for exposure on gear and the tree
* Add Power Report on the tree tab to show a table of the best nodes for your build
* Add full support for 3.12 gems
* Hexblast
* Blazing Salvo
* Void Sphere
* Crackling Lance
* Frost Shield
* Splitting Steel
* Sigil of Power
* Flame Wall
* Impending Doom Support
* Pinpoint Support
* Rework gems from 3.12 Changes
* Firestorm
* Assassin's Mark
* Poacher's Mark
* Sniper's Mark
* Warlord's Mark
* Lancing Steel
* Shattering Steel
* Glacial Cascade
* Discharge
* Punishment
* Vitality
* Add support for the majority of the alternate quality gems
* Add config option for phys gained as random element mods
* Add Syndicate Operative Spectre
* Add Primal Crushclaw Spectre
* Add Frost Auto Scout Spectre
* Add Artless Assassin Spectre
* Add Cloud Retch Spectre
* Add enchantments for new 3.12 skills
* Add oil recipes for new 3.12 tree nodes
* Add in all 3.12 uniques
* Add support for a majority of new uniques
* Add better support to show the combined DoT damage for some builds
* Add support for Triple Damage
* Fix curse effect breakdown not working for Mark and Hex skills
* Fix Supreme Ego incorrectly scaling some skills
* Fix display of alternate quality gems
* Fix import of alternate quality gems
* Fix error where viewport would not scroll horizontally
* Fix showing node power for top node if the skill doesn't do damage
* Fix Intensity being capped at a maximum of 3
* Fix Pinpoint Support incorrectly scaling ailment damage
* Fix Predator Support not showing up on the configs page
* Fix Glancing Blows not using the correct block effect value for eHP calculations
* Fix tooltips for several skills (Warcries, Penance Brand etc.)
VERSION[1.4.170.11][2020/09/19]
* Fix issue where many skills tags were incorrect which caused supports and other mechanics to stop working
VERSION[1.4.170.10][2020/09/19]
* Add partial support for new 3.12 gems and enchantments
* Update gems with 3.12 changes
* Add new 3.12 bases
* Add partial support for alternate quality gems
VERSION[1.4.170.9][2020/09/17]
* Add better breakdown for duration mods on gems
* Fix crash related to new Keystones and old trees
* Fix support for Iron Grip Notable
* Fix support for new ailment scaling nodes
* Fix support for new cooldown recovery wording on nodes
VERSION[1.4.170.8][2020/09/16]
* Add support for 3.12 Tree
* Add proper support for Carrion Golem
* Add support for Ancient Waystone unique
* Add support for +1 gems on Awakened Blasphemy
* Add configurable charges for Minions
* Add support to generate mods for Skin of the Lords
* Add Redemption Knight spectre
* Add Baranite Preacher spectre
* Add Templar Tactician spectre
* Add Scinteel Synthete spectre
* Add support for Non-Channelling Mana cost
* Fix crash when trying to add support gems to any spell while having "Gain no inherent bonuses from Attributes"
* Fix crash related to Minion Critical Strike Chance
* Fix mods on several uniques
* Fix current Shock note not showing in Shock effect breakdown for attack builds
* Fix Second Wind CDR numbers
* Fix stats on Enhanced Vaal Fallen, Baranite Thaumaturge, Baranite Sister
* Fix Life regen not showing in the sidebar
* Fix top node power calculations
VERSION[1.4.170.7][2020/07/22]
* Fix crash related to the Siegebreaker belt
* Fix crash related to Dancing Dervish/Duo
* Fix Seismic Cry having incorrect calculations
* Fix Fist of War not using the proper Ailment multiplier
* Fix Chaos DoT Multiplier not showing up in Poison DoT Multi breakdown
VERSION[1.4.170.6][2020/07/22]
* Add breakdown for Warcries and Fist of War
* Add calculation mode to select "Max hit" for Warcries
* Add count for the max number of Brand activations
* Add support for Slipstream from Harbinger of Time
* Add support for Burning Arrows Fire DoT Debuff
* Add support for alternate quality mod implicits
* Add support for Fevered Mind, Fortress Covenant and Quickening Covenant
* Add support for Emperors Vigilance
* Add support for Siegebreaker
* Add support for Brewed for Potency, Chilling Presence, Forbidden Words, Lead by Example, Pure Agony
and Disciples Cluster Notables
* Add output for DoT multiplier for Ailments
* Add Attack/Cast speed to the Node/Item Power sorting list
* Add override to simulate lucky hits on a character ("Your damage with Hits is Lucky")
* Change Ignite Calc Mode to Ailment Calc Mode
* Update mods on Impresence
* Fix Pressure Points Notable not working
* Fix Pride not working when importing an old build
* Fix imported influence items not working with the item crafter
* Fix Anoint-only nodes appearing in the "Top Node" power list
* Fix Wither not showing up for Eternal Suffering Cluster Notables
* Fix Eye of Malice not affecting Ignite damage
* Fix Minions being supported by Cast while Channelling or Arcanist Brand
* Fix the effects of Consecrated and Profane Ground to now work with Minions
* Fix damage scaling on Explosive Arrow
* Fix Evasion calculations
VERSION[1.4.170.5][2020/07/16]
* Fix crash related to Vessel of Vinktar and flask effect
* Fix Rallying Cry not showing the proper configuration option to select number of nearby Allies
* Fix Saqawals Nest not scaling Aspect of the Avian properly on Allies
* Fix Ascendancy nodes showing up on the nearby strong nodes in the heatmap
* Fix crash related to opening old builds with a different tree version
VERSION[1.4.170.4][2020/07/16]
* Fix bug where importing builds would change the boss configuration to be empty
VERSION[1.4.170.3][2020/07/16]
* Add support for 3.11 Warcries and Exerted Attacks
* Warcry-related Exerted Attack Effect is calculated based on:
Average Damage of Exerted Attacks * Exerted Buff Scaling * Expected Uptime of Exerted Attacks.
Expected Uptime is based on number of Exerted Attacks contrasted with Attack Speed and impacted
by Warcry Cooldown Speed and Cast Time
* Full support:
* Ancestral Cry
* Enduring Cry
* Infernal Cry
* Intimidating Cry
* Rallying Cry
* Seismic Cry
* Not yet implemented:
* General's Cry
* Add full support for Arcanist Brand
* Add proper support for Cast while Channelling
* Add new Harvest uniques
* Add upgraded Harbinger uniques
* Add support to show Notable power calculation in a tooltip when crafting Cluster jewels
* Add AoE numbers for 56 skills
* Add full support for Bonechill (automatically applies for guaranteed sources of Chill)
* Add support to automatically Shock enemies with guaranteed sources of Shock
* Add in-depth breakdowns of Shock and Chill thresholds
* Add Scale of Esh Spectre
* Add full support for Agnostic, Eternal Youth and Imbalanced Guard Keystones
* Add partial support for Supreme Ego Keystone
* Add support for increased Effect of Arcane Surge
* Add support for Awakened Curse on Hit +1 Curse mod
* Add support for Rattling Bellow, Warning Call, Cry Wolf and Pressure Points Cluster Notables
* Add support for Warcry Power calculation with Configuration based override support
* Add support for reworked Berserker War Bringer Ascendancy node
* Add support for "each time you've Warcried Recently"
* Add support for "If you've changed Stance Recently"
* Add support for added Physical Damage from Spectral Wolves
* Add support for Herald of Ash Overkill DoT
* Add support for Vaal Molten Shell/Molten Shell reflect damage
* Add support for Rigwald's Command Rage DoT multiplier mod
* Add support for faster Damaging Ailments mod on Malevolence Watcher's Eye
* Add support for Emberwake's +1 Ignite mod
* Add support for Wintertide Brand gem quality
* Add support for Charged Mines Support gem quality
* Add support for Blind on the player
* Add support to hide items in the unique list by stat and level requirements
* Add support to highlight nodes by per-point and best node
* Add the ability to change the eHP calculation mode between spell, attack and more
* Add a breakdown on Evasion for Melee and Projectile Attacks
* Move Pride's effect drop-down to the "Configuration" page
* Show boss ailment threshold in Chill and Shock breakdown (Sirus, Shaper, Uber Atziri)
* Change jewel tooltips to now scroll horizontally across the screen when having many jewel sockets
* Update Pantheon mods to the changes from 3.11
* Update Cluster jewels to include new jewel socket enchantments
* Fix Orb of Storms to use a Hit Rate value instead of Cast Speed
* Fix Rage not working correctly in some cases
* Fix Wither not applying properly in many cases
* Fix Unnerve applying to DoT Spell skills
* Fix Unbound Ailments Support not working with new Ailments
* Fix parsing for mods that modified the duration of Aspect of the Cat/Avian
* Fix support for Bannerman and Revelry
* Fix Vaal Molten Shell more Armour Buff
* Fix Baranite Thaumaturge default skill by removing "attack" tag
* Fix Cluster nodes on the tree with broken tooltips
* Fix bug where Shock was applying twice on Minion skills
* Fix bug where skills that reserved Mana would benefit from negative Life/Mana Reservation
* Fix bug where removable crafts remained after editing an item
* Fix crash on deleting the number for default gem level/quality on the skills tab
VERSION[1.4.170.2][2020/06/23]
* Add Baranite Sister Spectre
* Add 20 fuse cap to Explosive Arrow
* Fix Corpse Pact node attack speed cap
* Fix some Cluster jewel notables not appearing on the tree
* Fix unique staves using the Judgement Staff base
VERSION[1.4.170.1][2020/06/22]
* Add all new gems from 3.11
* Full support:
* Earthshatter
* Arcanist Brand
* Penance Brand
* Wintertide Brand
* Fist of War Support
* Urgent Orders Support
* Swiftbrand Support
* Partial support: