forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
2913 lines (2883 loc) · 162 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.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:
* Ancestral Cry
* Generals Cry
* Intimidating Cry
* Seismic Cry
* Update gems with 3.11 changes
* Update uniques with 3.11 changes
* Add basic support for Warcry power
* Add large breakdown for character defences
* Shows detailed breakdowns for defences
* Includes effective hit points against hits and DoTs for each element
* And much more
* Add UI for annointing amulets
* Add dropdown to select dps field for sorting support gems
* Add prefix/suffix tag for crafting options
* Add support for Scorch, Brittle, and Sap
* Add parsing for Tailwind mod on Hunter influenced boots
* Add support for Supreme Ostentation Keystone
* Add support for Glancing Blows Keystone
* Add support for new Rage nodes and Chainbreaker's two regen related mods
* Add support for "as though dealing more damage" for Shock, Chill, and Freeze
* Add support for Overshock and Voltaxic Rift max shock mod
* Add support for stance nodes on the tree
* Add support for two-handed Impale nodes on the tree
* Add support for Attack Critical Strike multiplier while Dual Wielding
* Add Mortal Conviction to Skin of the Lords
* Add 75% cap for buff expiration speed
* Add support for Daresso's Courage block mod
* Add support for Liege of the Primordial golem elemental immunity
* Add support for Arcane Blessing ailment immunity
* Add total for "reduced Extra Damage from Critical Strikes" on the calcs page
* Add support for cooldowns rounding to the nearest server tick
* Add hard caps to attack, cast, trap throwing and mine throwing speeds
* Add better support for Soul Tether unique belt
* Update Area of Effect calculations showing breakpoints for skills
* Clamp skill gem options to make comparing gems more consistent
* Fix incorrect enemy armour calculations
* Fix importing bug with 2-line implicit Cluster jewels
* Fix crash related to Cluster jewel Keystones on the calcs page
* Fix bug where the node power calculator would sometimes break when using Impale
* Fix Consecrated Path not applying more damage to close targets
* Fix Herald dependent mods applying while unbuffed
* Fix parsing for bleed infliction/immunity mods
* Fix several typos on uniques
* Fix Talisman tier parsing
* Fix Hybrid flasks not counting as Life/Mana flasks
* Fix for Berserk quality attack damage not applying properly
* Fix for Dying Sun not changing "increased" to "reduced" properly
* Fix faster bleeding mods not being displayed
* Fix 20 quality Awakened Generosity not increasing supported auras level
* Fix Snipe stages applying incorrectly to the Snipe skill
* Fix Stormbind damage per improvement
* Fix Elusive calculations not applying properly
* Fix node search not updating when switching Cluster jewels
* Fix tooltip for Feeding Frenzy
* Fix bug for brand nodes on the tree
* Fix support for corpse pact
* Fix poison node on the tree for spell skills applying to cold DoTs
* Fix parsing for the new Purposeful Harbinger mod
* Fix calculation of crab barriers
* Remove 20% more physical damage while dual wielding
VERSION[1.4.169.3][2020/06/17]
* Add 3.11 passive skill tree
* Add support for Indigo oils
* Add support for reworded brand mods
* Add support for Overwhelm
VERSION[1.4.169.2][2020/04/20]
* Change the 'Damage Avoidance' subsection to be collapsed by default
* Fix parsing on Assailum helmet
VERSION[1.4.169.1][2020/04/20]
* Add support for Catalysts on items crafted in PoB or Uniques in the item list
* Add support for enemy armour and physical damage reduction calculations for hits and Impales
* Added Sirus to boss list as he has a 100% more armour multiplier
* Add support for dual influence item crafting
* Add support for Snipe on the Assailum unique helmet
* Add support for Split Personality unique jewel
* Add 2 new Spectre types
* Redemption Sentry
* Baranite Thaumaturge
* Add "Are you Channelling?" checkbox to support new cluster notables
* Add support for Violent Retaliation, Vicious Skewering and Rapid Infusion
* Add support for Life/ES/Mana Gain on Block
* Add support for more damage avoidance calculations
* Add option to select number of overlapping pods for Toxic Rain
* Add support for breakdown of DoT more multipliers and aura effect
* Add build name in title bar of PoB window and config to turn this off
* Add attributes to the Node/Item Power sorting list
* Add support for mods based on "UsingLifeFlask" and "UsingManaFlask"
* Improve support for ignite duration breakdown
* Update XP to take into account higher possible mob levels
* Update mine throwing time from 0.25s to 0.3s
* Fix Hungry Loop crash when socketed with Barrage Support
* Fix crash when hovering over the stat breakdown for stats that came from Cluster jewel Keystones
* Fix crash related to ticking the Lightning Golem aura
* Fix crash when sorting the unique item list
* Fix crash caused by Elusive stack overflow
* Fix item and gem importer to work properly with Barrage Support and some Cluster jewels
* Fix Fractal Thoughts mods not applying correctly
* Fix Mask of the Tribunal mana reservation mod not working
* Fix Vaal Timeless jewel to disable stats on nodes in its radius
* Fix wording on Blue and Green Nightmare jewels
* Fix Doomfletch and Doomfletch Prism
* Fix bug where crafted and custom modifiers disappeared from custom items when prefix or suffixes were changed
* Fix Master of Metal not applying correctly and being limited to 9 stacks
* Fix Impale stacks not being adjustable
* Fix tooltip issue when hovering over some Cluster jewel notables
* Fix mod on Fortress Covenant
* Fix Perquil's Toe not working properly
* Fix support for Juggernaut's "cannot be slowed below base speed" mod
* Fix rendering of Medium Cluster jewels with 3 notables
* Fix Thread of Hope not importing correctly
* Fix Replenishing Presence not stacking correctly
* Fix Purposeful Harbinger incorrectly scaling some skills
VERSION[1.4.167.2][2020/03/24]
* Fix crash related to Oni-Goroshi
* Fix crash related to number of brands attached to enemy
* Fix parsing for One With Nothing Cluster Jewel
* Fix increased effect of small passive skills applying to notables
VERSION[1.4.167.1][2020/03/23]
* Update uniques with changes from 3.10
* Add support for Arcane Cloak, Spellslinger, and Archmage Support
* Add the unique cluster jewels
* Add support for more Notables (life as extra armour, heralds, life regen)
* Add support for calculations from forking projectiles
* Add parsing for minion abyss jewel mods
* Add radius for Stormbind
* Small passives in Large and Medium Cluster Jewel wheels now have the correct node artwork
* Fix Minion Instability
* Fix crash when socketing a threshold jewel into a Cluster Jewel socket
* Fix crash occurring when opening old builds that used the checkbox for "Are you Stationary"
* Fix parsing for guard skill cooldown on tree
* Fix the Darkscorn and weapon mod for more damage with ailments, which was also applying to attacks
* Fix Hierophant's Sign of Purpose mod only applying "enemies take increased damage" to brand skills
* Fix small Cluster Jewels allowing 2 notables
* Fix ordering of notables in Cluster Jewel wheels
* Fix node location popups not correctly centring on the node in 3.10 passive trees
* Fix nodes allocated through Intuitive Leap and Thread of Hope not remaining allocated after loading the build
* Disabled attribute Cluster Jewel types
VERSION[1.4.162.2][2020/03/15]
* Fix opening build crash
VERSION[1.4.162.1][2020/03/15]
* Add support for Cluster Jewels on the tree
* Add support for many of the new Notables from Cluster Jewels
* Add new 3.10 skill gems and skill gem balance tweaks
* Full support for Kinetic Bolt, Stormbind Bladeblast and Second Wind
* Arcane Cloak, Spellslinger and Archmage Support are not supported properly for DPS calculations
* Add new 3.10 uniques
* Add back oils to tree, now with a picture of the oil on the notable
* Add Paradoxica to unique selection menu
* Add support for "if you have Stunned an Enemy Recently"
* Add support for active brand limit and Sign of Purpose
* Add conditional more multiplier of Groundslam for nearby enemies
* Add support for mana spent recently mods
* Add support for Unencumbered from the Hollow Palm Keystone
* Add Perforate DPS calculations in Blood Stance
* Update elusive values to 3.10
* Update temple jewels to their 3.10 variants
* Fix Rigwalds Curse with 3.10 passive tree nodes
* Fix typo in Ascendant Deadeye/Longshot notable
* Fix parsing of mods applied to spell skills
* Fix Slayer Impact node calculation
* Fix parsing of warcry cooldown override on Al Dhih
* Fix Ballista placement speed
* Consolidate resistances into single line in sidebar
VERSION[1.4.159.1][2020/03/12]
* Fixed weapon ailment modifiers not correctly applying
* Fixed some Two Handed Weapon modifiers incorrectly applying to One Handed Weapons instead
VERSION[1.4.158.1][2020/03/12]
* Add 3.10 passive skill tree
VERSION[1.4.157.7][2020/02/29]
* Fix crash related to hovering over Bone Armour in the skills tab
VERSION[1.4.157.6][2020/02/26]
* Revert fix for Rage as it breaks other skills
VERSION[1.4.157.5][2020/02/25]
* Add full search capability to all dropdown lists
* Items copied into PoB now retain their quality if above 20%
* Add support for Infernal Legion with Skitterbots
* Add support for shotgunning with Shattering Steel
* Add support for the timed buff granted by Chieftain's "Ngamahu, Flame's Advance" notable
* Add support for a mod on Chieftain's "Valako, Storm's Embrace" notable
* Add support for a mod on Chieftain's "Tasalio, Cleansing Water" notable
* Add support for a mod on Berserker's "War Bringer" notable
* Add support for a mod on Assassin's "Opportunistic" notable
* Add support for "per minion" modifiers on Necromancer's Bone Barrier notable
* Add Energy Shield to the sidebar for minion skills
* Add support for "Enemies Frozen by you take X% increased Damage" mod on Taryn's Shiver
* Add support for "if you've stopped taking Damage Over Time Recently" pantheon mod
* Add support for Fire DoT Multiplier on Awakened Burning Damage, Burning Arrow and Vaal Burning Arrow
* Add support for Shockwave Support's quality stats
* Add Pride to list of auras on Aul's Uprising
* Change resistance colours in the sidebar
* Update text on some uniques
* Fix Sporeguard Fungal Ground mod parsing
* Fix a bug where the source name of skills for ailments could be incorrect
* Fix chill calculations when using Elemental Focus
* Fix Rage Support and other sources of Rage not granting Movement Speed
* Fix "Socketed Skill Gems get a X% Mana Multiplier" modifier not working on skills which reserve mana
* Fix chance to deal Double Damage on Paradoxica and Frostbreath
* Fix default gem level for gems with a max level below 20
* Fix Close Combat weapon checks
* Fix Sanctuary node not being able to be anointed
* Fix Nightblade weapon checks
* Fix Elusive mod persisting if the checkbox was ticked and the source to generate Elusive was taken away
* Fix incorrect calculations of Active Totem Limit
* Fix many configuration options that didn't work for minion granted effects
* Blade count for spectres' Blade Vortex
* Spectres' curses
* Ursa's Rallying Cry
* Holy Relic's Aura
* Lightning Golem's Aura
* Fix Ensnaring Arrow's damage debuff incorrectly stacking 3 times
* Fix incorrect calculation of auras and curses granted by minions
VERSION[1.4.157.4][2020/02/11]
* Add support for increased Effect of Arcane Surge
* Add support for Brand Attachment range
* Add support for Awakened Spell Echo's chance to deal Double Damage on final repeat
* Fix support for Crimson Dance
* Update wording on Staves
* Corrected many uniques that wrongly got legacy variants and updated wordings
VERSION[1.4.157.3][2020/02/10]
* Fix scrolling on dropdown boxes
* Fix CombinedDPS showing up on all skills
VERSION[1.4.157.2][2020/02/10]
* Add support for the Barrage Support skill gem
* Add support for Ensnaring Arrow
* Add support for Thread of Hope
* Add support for Crimson Dance and amount of bleeds on enemy
* Partial support for Timeless jewels
* Brutal Restraint (Maraketh) and Lethal Pride (Karui) now provide stats when allocating small nodes on the tree
* Elegant Hubris (Eternal) now negates all stats gained from nodes in its radius other than keystones
* Add support for Void Shot granted by the Voidfletcher unique quiver
* Add support for in-game jewel radius sprites
* Add parsing for -res and increased phys damage delve helmet mods
* Add support for "against Chilled or Frozen Enemies" mod
* Add breakdown for Curse Effect for Curse Skills
* Add breakdown for Aura Effect for Aura Skills
* Add breakdown for "Base from Armours" row for ES/Armour/Evasion
* Add colours to the resistances' label on the side bar
* Add Ctrl-Right and Ctrl-Left to text fields (skip words)
* Add list of recently imported accounts to the Import/Export Build tab
* Add parsing for Elusive mod on boots
* Add support for "Ignites you inflict deal Damage faster" mod
* Add support for "Fortify Buffs you create instead grant 30% more Evasion Rating" mod
* Add missing "increased Flask Charges gained" mod to Nomad unique belt
* Add support for Fungal Ground from Sporeguard unique body armour
* Add Bone Armour and Mirage Warriors to skill pool
* Add 15 fuses to Explosive Arrow drop-down list
* Cap max elemental resistance at 90
* Fix mods for many old jewels
* Fix Spreading Rot jewel
* Fix Chin Sol's mods
* Fix quality mods on Awakened Swift Affliction and Awakened Unbound Ailments
* Fix Arctic Breath's cold dot not being modified by area damage mods
* Fix Transfiguration of Mind interaction bug with Crown of Eyes
* Fix parsing for travel skill mods
VERSION[1.4.157.1][2019/12/21]
* Added a new unique item, The Savior
* Added the ability to show only non-Awakened supports (or only Awakened supports!); the option can be found in the
Skills tab under the socket group list
* Added sources of increased maximum resistances to now show up in the resistance breakdown window
* Add unique changes from 3.7
* Fix issue where gem levels would get reset on loading or importing a build
* Implicits on items that are copied from in-game are now correctly handled. Additionally, the ability of the program
to determine if modifiers on copied items are enchantments, implicits or explicits has been greatly improved,
and should almost always be correct; also, applying enchantments to items with implicits will now work correctly.
* Fix + gem level mods on new influence amulets to now work properly
* Fix Fractal Thoughts increased dex mod to now work properly
* Fix support for old Red Nightmare mod wording
* Fix ailment calculation crash
VERSION[1.4.155.1][2019/12/16]
* Added the following new gems:
* Artillery Ballista
* Ensnaring Arrow
* Shrapnel Ballista
* Arrow Nova
* Barrage (does not give accurate damage numbers)
* Greater Volley
* The 35 new Awakened support gems
* Applied the skill reworks and balance changes for 3.9.0
* Updated item bases, mods, and enchantments for 3.9.0
* Added new influence bases to crafting window
* Fix all Oils on tree to have correct values
* Add more detailed breakdown for shock and chill
VERSION[1.4.153.2][2019/12/14]
* Re-add Oils to tree
* Add support for Ghost Shrouds
* Add support for increased Ancestor Totem buff effect
* Add support for Ritual of Awakening Hierophant node
* Add support for 3 mods on Watchers Eye
* Add Impale damage to Combined DPS sort option
* Update Boss resistance values to 3.9 levels
* Add Bleed DPS to sorting option
* Add new spectres to the spectre library
* Kraityn's Sentry, Chrome-infused Chimeral, Vaal Slayer, Primeval Hunter, Archer Statue, Crazed Driver
* Add new spectre skills to library
* Blast Rain, Elemental Hit Fire, Barrage, Ice Shot, Unearth, Tornado Shot, Flame Surge
* Fix mod support for Chains of Command
* Add Astral Projector Unique Ring (3.9 preview)
* Fix rage granting damage to unarmed attacks
* Fix UI on passive tree being too large for some resolutions
* Fix node power not respecting your colour choice for highlighting
* Add area tag to Perforate
* Fix uniques with duplicate mods
* Re-add Death's Harp back in
* Update Snakepit Unique Ring
VERSION[1.4.153.1][2019/12/12]
* Add 3.9 Passive Tree
* Add 3.9 Unique Changes
* Add support for Ryslatha's Coil
* Add support for Perquil's Toe
* Add support for Vaal Arc Lucky Buff
* Add support for Chain of Command's mods
* Add support for Warcried recently
* Fix Minion DPS sorting bug for Uniques and tree
* Fix Toxic Rain/Rain of Arrows pierce bug
* Fix radius calculation for Jewels
* Fix Impale calculations for certain skills
* Barrage, Blade Flurry, Blast Rain, Double Strike, Lacerate, Scourge Arrow,
Cleave, Dual Strike, Riposte, Viper Strike, Static Strike
* Counter-attack skills now show proper damage for each hit instead of DPS when using Impale
* Update many uniques that had incorrect wordings
VERSION[1.4.152.8][2019/12/09]
* Add Support for Greater Spell Echo
* Widen manage passives trees drop down box
* Rampage now appears as a box on the configs page
* Show Impale DPS in sidebar for minions
* Add The Ivory Tower Body armour (3.9 preview)
* Add Mistwall Buckler Shield (3.9 preview)
* Add support for Manastorm's lightning damage buff
* Add support for Arborix and its mods
* Add support for Augyre and its mods
* Add support for Vulconus and its mods
* Add support for new Coated Shrapnel mod
* Add support for Inquisitors increased damage on consecrated ground Sanctuary node
* Add support for Golem Commanders increased damage node
* Add increased area rampage mod support on Sinvicta's Mettle
* Add proper support for Champions' Master of Metal node (set the number of impales for this to work)
* Add Carrion golem to list of golems that work with primordial harmony
* Add Bane of Legends node attack speed buff