forked from Openarl/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1218 lines (1218 loc) · 78 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[1.4.70][2017/12/17]
* Added the following new uniques:
* Ahn's Contempt
* Augyre
* Beltimer Blade
* Blasphemer's Grasp
* Detection/counting of equipped of Elder Items does not work yet
* Darkness Enthroned
* Does not function, as support for socketing Abyss Jewels in items is not implemented yet
* Hopeshredder
* Impresence (non-Cold variants)
* Inpulsa's Broken Heart (mostly non-functional for now)
* Lightpoacher (mostly non-functional; however Spirit Burst is supported)
* Magna Eclipsis
* Shimmeron
* Shroud of the Lightless
* Tombfist (mostly non-functional for now)
* Vulconus
* Added Corpse Explosion skill parts to the following skills:
* Bodyswap
* Cremation
* Detonate Dead (this allows the Spell part to benefit from Spell modifiers)
* Volatile Dead
* Updated rolls on many of the new uniques
* Added an option to the Configuration tab for "Are you always moving?"
* Corrected the maximum stack count for Wither (thanks DragoonZ)
* "Adds X to Y <Type> Damage to <Weapon> Attacks" stats should now be recognised correctly
* The "more Life" stat on Minion Life Support should now work correctly
VERSION[1.4.69][2017/12/09]
* Added the following new uniques:
* Balefire
* Cyclopean Coil
* Gloomfang
* Grelwood Shank
* Impresence
* Nebuloch
* Watcher's Eye
* Updated Ahn's Might with its final mods
* Removed the obsolete 4x DPS multiplier from Lightning Tendrils
VERSION[1.4.68][2017/12/09]
* Added the following new uniques:
* Bloodbond (including partial support for the Blood Offering skill; only the damage bonus works at present)
* Bubonic Trail (including the Death Walk skill)
* Coralito's Signature
* The Golden Rule
* Invictus Solaris
* Iron Heart
* Kalisa's Grace
* The Long Winter
* Oskarm
* Soul's Wick
* The "Corpse Life" option has been moved from the Skill Options section to the General section of the
Configuration tab, as it is now used by several skills
* Added an option to the Configuration tab for "# of Poison on You"
VERSION[1.4.67][2017/12/09]
* Fixed error that occurs when trying to import a character's items
VERSION[1.4.66][2017/12/09]
* Added support for the new skill gems
* Most should be fully or almost fully functional, with the exception of Mirrage Archer
* Added the following new uniques:
* Arborix
* Cane of Unravelling
* Doedre's Skin
* Giantsbane
* Leper's Alms
* Memory Vault
* Pure Talent
* Ralakesh's Impatience
* Stormcharger
* The Hungry Loop
* Note that it may not be fully functional for a while due to the difficulty involved in handling it
* The Poet's Pen
* Vix Lunaris
* White Wind
* Wraithlord
* Yoke of Suffering
* Applied the 3.1 changes to the following uniques:
* Rise of the Phoenix (thanks twiz-ahk)
* Queen of the Forest (thanks xmesaj2)
* Atziri's Acuity
* The Baron
* Doomfletch/Doomfletch's Prism
* Lion's Roar
* Omen on the Winds
* Witchfire Brew
* Other uniques are awaiting confirmation of wording changes
* Added Dialla's Malefaction and Malachai's Mark
* Note that Dialla's Malefaction is non-functional as it requires significant changes to support it
The following changes are courtesy of eps1lon:
* Added an option to the Configuration tab for "Used a Movement Skill Recently"
* Fixed variants for Berek's Pass's increased Fire Damage stat
VERSION[1.4.65][2017/12/07]
Apologies for the lack of updates recently; I've been very busy. I'll try and manage a few more updates over the
coming weeks, but I can't make any promises yet.
* Passive tree updated to 3.1
* You can now rename builds and folders to change only the case of letters
* Node tooltips now correctly update when cancelling alternate path tracing
* Fixed Discharge's damage penalty when triggered
* Fixed Multistrike's attack speed bonus to only apply to Melee attacks
* Fixed various Skeleton-related modifiers that were being recognised but were not functioning correctly
* Fixed issue where the program's UI wouldn't be correctly scaled when opened in a non-maximised state
VERSION[1.4.64][2017/10/01]
* Trap Throwing Time, Mine Laying Time, and Totem Placement Time are now calculated and shown in the sidebar
* Special thanks to aggixx for measuring the base time of those animations
* Trap Cooldown is now shown in the sidebar (in addition to the Calcs tab)
* Trap Trigger Radius and Mine Detonation Radius are now calculated and shown in the Calcs tab
* Added support for Vaal Breach
* All Configuration tab options upon which any Support gems depend are now permanently visible, even if enabling
them would have no effect
* Corrected the "Elemental Resistances while on Low Life" stat on Honourhome
* The Melee Damage buff from Phase Run now correctly excludes Totem skills
This update also reworked the program's window initialisation code.
The most visible change is that the program's main window now opens while the program is initialising, but this
rework is primarily intended to solve three uncommon issues:
* The program would crash when launched on a non-primary monitor on certain systems
* The program's UI would be offset when running on systems with certain Intel HD Graphics driver versions
* The program would crash when launched using Wine
VERSION[1.4.63][2017/09/16]
* Added descriptions for support gems
* The Caustic Cloud from Beacon of Corruption is now correctly affected by Area Damage modifiers on the minion
* Gaining immunity to Curses now correctly prevents self-Curses from applying
* Buffs granted by support gems are no longer incorrectly affected by buff effect modifiers of the linked skill
* Fixed issue causing gem sorting and stat differences to be incorrect when Empower/Enhance/Enlighten are selected
VERSION[1.4.62][2017/09/01]
* The instant Leech modifier on Atziri's Acuity should now be recognised correctly
* Fixed issue preventing modifiers to the damage of Channelling skills from applying to Damage over Time
* Fixed issue causing the Innervation buff to apply regardless of the setting in the Configuration tab
VERSION[1.4.61][2017/08/21]
* The Secondary Durations for Blight, Frost Bomb and Phase Run are now calculated and shown in the Calcs tab
* Added an option to the Configuration tab for "# of Shocked Enemies Killed Recently"
* Added support for the "Your Spells are disabled" modifier on Gruthkul's Pelt
* Poison/Bleed Chance on weapons is now correctly local
VERSION[1.4.60][2017/08/21]
* The main Socket Group selector in the sidebar now shows the Socket Group tooltip when you hover over it
* Updated the skill data for Charged Dash to reflect the changes made in 3.0.1
* Modifiers that apply when holding a Shield now correctly apply when Necromantic Aegis is allocated
* The stat comparison for Total DPS inc. Poison is now more intuitive when gaining or losing the ability to Poison
* Updated the "Is the enemy a Boss?" option to remove the Ailment Duration modifiers from Shaper/Guardian
* Corrected the base Energy Shield roll on Martyr's Crown
* Corrected the Critical Strike Multiplier penalty on Ungil's Harmony
* Updated the Poison Chance modifiers on Snakebite and Cospri's Will
VERSION[1.4.59][2017/08/14]
With this update, new builds will default to 3.0, and the version selection dialog will no longer display.
Builds can still be converted to 2.6 via the Configuration tab. All 2.6 builds will continue to work as normal,
however from this point some new features may only be available for 3.0 builds.
* The Helmet enchantments for the new skills are now available in the item enchanting system
* The resistance penalties from completing Act 5/10 can now be disabled using a new option in the Configuration tab
* Removed the attack rate cap for Blink/Mirror Arrow clones, which is no longer present in 3.0
* An explanatory message is now shown in the sidebar if the main skill is disabled (e.g if no compatible weapon is equipped)
* Fixed the Burning Damage roll on Pyre
* Fixed the flat Physical Damage rolls on Widowmaker
* Fixed the Elemental Resistances roll on Immortal Flesh
* Fixed issue preventing Socketed Gem modifiers from applying to gems socketed into the alternate weapon set
VERSION[1.4.58][2017/08/09]
* Added all of the new uniques
* Added support for the Void Gaze skill granted by Eber's Unification
* Added support for the Storm Cascade skill granted by The Rippling Thoughts
* The other skills granted by the new uniques are only partially supported at the moment (no support for the minions)
* Charged Dash now has a "Travel distance" option in the Configuration tab
* Updated the total available passive skill points
* Burn faster/Burn slower should both now be calculated correctly
* Modifiers to life/mana/ES recovery rate should now only affect recovery over time
* The build list now uses natural sort order (so "Foo 50" comes before "Foo 100")
* The gem selection dropdown now accepts "active" as a filter keyword in additional to other gem tags (such as "support")
For 2.6 builds:
* The link created when exporting the passive tree now opens in the 2.6.2 version of the offical passive tree viewer
VERSION[1.4.57][2017/08/05]
* Now that 3.0 is live, the warning that was shown before importing to 3.0 builds is now shown for 2.6 builds instead
* The program now behaves correctly when attempting to import from an account with a private profile
For 3.0 builds:
* Lioneye's Fall now correctly transforms modifiers that grant Ailment Damage while wielding melee weapons
VERSION[1.4.56][2017/08/04]
* AoE Radius is now shown in the sidebar and stat comparison tooltips
* The duration of Wither is now correctly affected by Temporal Chains
* Frozen enemies are now correctly considered to be chilled as well
For 3.0 builds:
* Updated skills and item modifiers from the patch data
* Updated the Bleeding bonus damage against moving enemies
* Added support for the Death Aura skill granted by Death's Oath
* Equipping Varunastra now correctly allows "Ailment Damage while wielding X" modifiers of the appropriate types
to apply (thanks Spawnbroker)
VERSION[1.4.55][2017/08/04]
* Fixed an issue where the stat difference tooltip on the gem enable checkbox would sometimes fail to update
* Added an option to the Configuration tab for "Are you Bleeding?"
For 3.0 builds:
* The Innervation buff can now be enabled using a new option to the Skill Options section of the Configuration tab
* Dark Pact now uses the Totem's life when linked to Spell Totem
* The increased Chaos Damage taken from the Spreading Rot jewel now applies when "Is the enemy Hindered?" is enabled
VERSION[1.4.54][2017/08/03]
* Modifiers to Burn rate should now be simulated correctly
For 3.0 builds:
* Added support for the %-of-Life damage scaling for Dark Pact
* Note that the values are not final, and will change when the patch is released
* For Cast on Skeleton, the skeleton life must be input in the Configuration tab
* Corrected the charge bonuses which weren't reverted properly
* Fixed the "Elemental Damage added as Chaos" modifier on Atziri's Promise; re-import from the unique DB
* Fixed the new life modifier on Death's Oath
VERSION[1.4.53][2017/08/03]
* Added Inya's Epiphany, Volkuur's Guidance and The Coming Calamity
* Fixed an issue where the effect of the Conflux Buff option would persist after Shaper of Desolation is deallocted
For 3.0 builds:
* Updated the passive tree to the final version
* Updated the charge bonuses
* Applied most of the unique changes that hadn't already been applied
Still to be added:
* Some skill changes (waiting for the patch data to become available)
* The new skill granted by Death's Oath
* The changes to Shock and Chill
VERSION[1.4.52][2017/07/30]
* Fixed an issue where attack skills could fail to utilise weapons in the second weapon set
For 3.0 builds:
* Added preliminary support for Charged Dash, Dark Pact, and Storm Burst
VERSION[1.4.51][2017/07/29]
For 3.0 builds:
* Applied the unique flask changes from the Beta patch
* Added the new threshold jewels from the Beta patch
* The Ruthless Blow damage multiplier now correctly applies to Melee Damage only
VERSION[1.4.50][2017/07/29]
* Fixed an error that could occur when dragging items into builds with Animate Weapon
For 3.0 builds:
* Applied the passive tree, skill, charge and item base changes from the Beta patch
VERSION[1.4.49][2017/07/27]
* Added an option to the Configuration tab to activate the periodic Block chance buff from Bastion of Hope
* The stat difference tooltip shown in the gem list should now be correct when the default gem level or quality are set
VERSION[1.4.48][2017/07/27]
This update brings several improvements to the Skills tab:
* The gem selection list has been improved:
* Compatible support gems are now sorted to the top of the list
* Gems are sorted by DPS by default; this can be disabled per-build using a new option below the Socket Group list
* The check mark that designates compatible support gems is now coloured according to the effect it has on your DPS;
green/red indicates a DPS increase/decrease, and yellow indicates no change
* Aura, buff and curse skill gems are now marked with a plus sign that is coloured in the same way as the check mark
* Added two options below the Socket Group list for default gem level and quality; these are saved per-build
* Gem slots are no longer removed when empty, but can instead be removed using the new "X" button to the left of the slot
Other changes:
* Added the recently announced 3.0 uniques
* Added options to the Configuration tab for "Are you always stationary?" and "Are your minions always on Full Life?"
* Corrected the ranges on Mantra of Flames
For 2.6 builds:
* Converted the rare templates to the new template style
For 3.0 builds:
* The Decay modifier from Essence of Delirium should now be recognised correctly
VERSION[1.4.47][2017/07/18]
* Added support for Mantra of Flames
* Note that the buff count is not guaranteed to be correct under all conditions
For 3.0 builds:
* Updated Arcane Surge with the changes from the Beta patch
VERSION[1.4.46][2017/07/18]
* The passive tree search field can now also match node type (keystone/notable/normal)
* Modifiers that apply to gems socketed in items can now apply to minions summoned by those gems
* Improved the program's startup time
For 3.0 builds:
* Fixed error when using The Consuming Dark
VERSION[1.4.45][2017/07/17]
* Fixed issue causing tooltips in the Shared Items list to display modifier ranges instead of specific values
* Fixed the node location display in the Items tab covering jewel tooltips
* Fixed issue preventing affixes on pre-1.4.18 crafted Flasks and Jewels from being recognised
For 3.0 builds:
* Updated many uniques with changes from Beta
VERSION[1.4.44][2017/07/14]
* The Item Crafting UI has been improved:
* Tiers of modifiers are now collapsed into a single entry in the affix selectors
* Sliders now appears below each affix selector that allow you to set both the tier and roll of the modifier
* The Items tab now shows a vertical scroll bar when necessary
* Knockback Chance/Distance calculations have been added to the Other Effects section of the Calcs tab
* Various minor tweaks and fixes
For 3.0 builds:
* Applied the skill and passive tree changes from the Beta patch
VERSION[1.4.43][2017/07/06]
* Spectral Spirits (from Essence of Insanity) are now considered to always be on Full Life
For 3.0 builds:
* Arcane Surge can now applied by Totem skills (as placing the totem can trigger the buff)
* Fixed error when trying to use the 3.0 version of Drillneck
VERSION[1.4.42][2017/07/06]
For 3.0 builds:
* Applied the skill, passive tree, and unique changes from the Beta patch
* Added the Doryani's Touch skill granted by Doryani's Fist
* Added Arcane Surge, Onslaught and Ruthless support gems
VERSION[1.4.41][2017/07/03]
This update introduces a new style of rare template which utilises the item crafting system.
These templates are available on the same set of bases and with the same sets of pre-selected modifiers as the
old templates, but since they are crafted items they have access to all possible modifiers instead of a subset.
These templates are only being trialed for 3.0 builds at present, but if the feedback is positive then they will be
back-ported to 2.6 as well.
Other changes:
* Added support for the Conflux buffs granted by Shaper of Desolation, using a new option in the Configuration tab
* Fixed error that occured when trying to copy an item set
VERSION[1.4.40][2017/07/01]
* Added support for Manifest Dancing Dervish
* With that addition, the program should now support all active and support skills currently in-game
* Animated Guardians now correctly benefit from inherent Dual Wielding bonuses
* Glove enchantment skills no longer incorrectly benefit from support gems
VERSION[1.4.39][2017/06/30]
* You can now apply enchantments to Gloves
* Added support for all Glove enchantment skills
* Various minor tweaks and fixes
VERSION[1.4.38][2017/06/29]
* Added support for Devouring Totem
* Added basic support for Conversion Trap (calculations for mana cost, cooldown and duration)
* With the addition of support for those skills, the program now has support for all skill gems currently in-game
* Fixed issue introduced in 1.4.37 that prevented minions from gaining block chance from Necromantic Aegis shields
* The Melee Damage bonus from the Punisher buff is now correctly Physical-only
* Modifiers to the effect of Fortify should now apply correctly
VERSION[1.4.37][2017/06/26]
This update adds support for item sets:
* Item sets allow you to easily switch between different gear configurations in your build
* In the Items tab, click "Manage..." above the item slots to add or manage item sets
* There's also a shared item set list, which allows you to share entire sets of items between your builds
Other changes:
* Added support for Animate Weapon and Animate Guardian
* These skills utilise the new item set system; to equip items on Animated minions, create a new item set and
equip the items, then select the item set in the dropdown in the sidebar
* You can now zoom the passive tree with Page Up/Down in addition to the scroll wheel and Ctrl+Left/Right Click
* Various minor tweaks and fixes
VERSION[1.4.36][2017/06/22]
* The Consuming Dark is now properly supported; previously, both Chaos and Physical would Poison
For 3.0 builds:
* Updated item affixes; this will correct various oddities, such as missing affix names or incorrect values
VERSION[1.4.35][2017/06/21]
* Added skill parts to Reave and Vaal Reave for selecting the stage count
For 3.0 builds:
* Updated many uniques with changes from the 3.0 beta
* The split Net Regen calculation for Mind over Matter now only occurs when Life Regen is the dominant regen source
* This should fix the interaction between MoM and LL RF
VERSION[1.4.34][2017/06/19]
* Bleed and Ignite DPS are now shown in the Minion section of the sidebar
* The Mana Regen and ES Recharge calculations now correctly handle Recovery modifiers
For 3.0 builds:
* The damage of Minion Ailments have been corrected; previously they were using the same damage ratios as players,
when in fact they now deal 50% less Poison and Ignite damage, and 86% less Bleeding against stationary targets
* Note that the player damage ratios were increased in 3.0, so this restores minions to their previous damage
VERSION[1.4.33][2017/06/18]
For 3.0 builds:
* Updated the wording of various passives
* Many conditional modifiers on passives will now apply to Ailments
* Frostbolt and Ice Nova now have a "Cast on Frostbolt?" option in the Configuration tab to enable the 40% more Damage
* Updated poison and bleed damage ratios to 20% and 70% respectively
* The Bleed, Poison and Ignite sections of the Calcs tab now include breakdowns of the source damage for those ailments
* The breakdowns for Bleed, Poison and Ignite DPS have had some minor improvements in wording
* Damage Multiplier for Ailments from Critical Strikes is now displayed in the Crits section of the Calcs tab
* It should also now be calculated correctly
* All sources of added base damage should now apply to Ailments if they can also apply to the hit
VERSION[1.4.32][2017/06/17]
* Fixed error caused by Punishment
For 3.0 builds:
* The "# of Poison on Enemy" option in the Configuration tab now works for Vile Toxins
VERSION[1.4.31][2017/06/16]
* The Buff/Debuff Skill lists in the Calcs tab now have breakdowns that list all the modifiers granted by those skills
* Added an option to the Configuration tab for "Are you always on full Energy Shield?"
* Fixed issue causing gems with a low maximum level to sometimes be assigned the wrong default level
* Fixed issue causing the slot dropdown in the Skills tab to fail to update correctly under some conditions
For 3.0 builds:
* The new support gems have been updated with the new data from the beta patch
* Applied the following changes from the beta patch:
* Blade Vortex's per-blade damage multiplier now applies to Ailments
* Flameblast's per-stage damage multiplier no longer applies to Decay
* Incinerate's per-stage damage multiplier no longer applies to Decay
* Blade Flurry's per-stage damage multiplier no longer applies to Decay
* Minion's Decay DPS is now shown in the sidebar
* Immolate and Hypothermia's conditional modifiers now apply to Ailments
* Unbound Ailments's modifier to Effect of Ailments should now function correctly
* Fixed issue causing the "increased Physical Damage taken" stat from Maim Support to sometimes apply multiple times
VERSION[1.4.30][2017/06/16]
* Mind over Matter is now displayed in the Damage Taken section of the Calcs tab, instead of Other Defences
For 3.0 builds:
* Mind over Matter is now factored into the Net Regen calculation; Net Life Regen and Net Mana Regen are calculated
and displayed separately
VERSION[1.4.29][2017/06/15]
* Fixed an error that occasionally appeared when editing gems in the Skills tab
For 3.0 builds:
* Damage multipliers for skill parts (e.g Flameblast stages) should now correctly apply to Decay
VERSION[1.4.28][2017/06/14]
For 3.0 builds:
* Deadly Ailments' Ailment Damage modifier should now correctly apply to Ignite
* Fixed error caused by setting quality on Unbound Ailments
VERSION[1.4.27][2017/06/14]
* Added support for the additional totem modifier on Skirmish
For 3.0 builds:
* Added preliminary support for the 11 new support gems
* Note that these gems are still using pre-release data, so some stats may change once the beta patch is available
VERSION[1.4.26][2017/06/12]
* Added Bramble Cobra to the spectre library
* Added support for the Chaos degen from Forbidden Taste
For 3.0 builds:
* Damage multipliers for skill parts (e.g Flameblast stages) should now correctly apply to Damaging Ailments
* Added damage from buffs (e.g Heralds, Anger) should now correctly apply to Damaging Ailments
* Fixed the multiplier on Remote Mine
VERSION[1.4.25][2017/06/11]
* Added options to the Options dialog to show thousands separators in the sidebar or Calcs tab
* Fixed error that could result from importing a character into a 3.0 build
* A warning is now shown before importing a character into a 3.0 build
VERSION[1.4.24][2017/06/09]
* Converting builds between game versions will now automatically update the names of gems that been renamed
For 3.0 builds:
* Updated the base damage for Zombies, Raging Spirits and Skeleton Warriors
* The duration penalty from Rapid Decay should now apply correctly
VERSION[1.4.23][2017/06/09]
* Fixed issue causing some of the item type filters in the unique and rare databases to disable the other filters
For 3.0 builds:
* Modifiers to Area Damage should now apply to all instances of Area Damage over Time (Righteous Fire, Vortex, etc)
* Modifiers to Skill Effect Duration will now apply to Puncture's Bleed and Viper Strike's Poison
* The Decay calculation has been updated to account for the Damage over Time changes
* Elemental Damage with Attacks now correctly affects Ignite
VERSION[1.4.22][2017/06/09]
* Fixed bug causing certain skill stats to be ignored; this notably affected Blade Vortex and Wither
For 3.0 builds:
* Applied the Damage over Time changes
* The new DoT code hasn't been tested as thoroughly as it needs to be, so it may have mistakes
* Updated the bandit rewards
* Reverted some unintended changes to minion's skills made in 1.4.21
VERSION[1.4.21][2017/06/08]
For 3.0 builds:
* Updated skills (except for skills used by minions and spectres)
* Updated item bases
* Updated item modifiers (affixes, corrupted, master)
* Vaal Pact should now work correctly
VERSION[1.4.20][2017/06/08]
* You can now create builds for the 3.0 beta:
* You can choose the game version when creating a Build
* You can convert a build between versions using the new "Game Version" option in the Configuration tab
* All existing builds default to 2.6
For 3.0 builds:
* The passive tree has been updated
* Other changes (such as the Damage over Time overhaul) are still to come
VERSION[1.4.19][2017/06/07]
* The build list now has support for folders
* Importing from a build code no longer requires you to name the build before importing
* Fixed an error that could appear while using the item text editor
VERSION[1.4.18][2017/06/03]
* The "Craft item..." feature has been significantly enhanced:
* Modifiers are now available for all item types, not just Flasks and Jewels
* The affix lists now obey all restrictions that prevent certain modifiers from appearing together
* For example, selecting "inc. Attack Speed with Bows" on a jewel will exclude "inc. Physical Damage with Axes"
* You can now add custom modifiers to Magic and Rare items using the new "Add modifier.." button
* For applicable item types you can choose from Master and Essence modifiers, in addition to writing your own modifier
* All master mods have been removed from the rare templates, since they can easily be added using the new option
* Additional type filters have been added to the Unique and Rare databases
* Added a "# of Poison on Enemy" option to the Configuration tab for Growing Agony
* The Poison section in the Calcs tab now displays Max Poison Stacks
* Added Merveil's Blessed to the spectre library
* Orb of Storms no longer incorrectly benefits from modifiers to area damage
* Various minor tweaks and fixes
VERSION[1.4.17][2017/05/29]
* Added base radius for Zombie's slam
* Minions (including Spectres) will now show the correct attack range for their melee skills
* Fixed an error that would appear when equipping Blood of Corruption
* Corrected the radius for Infernal Blow
VERSION[1.4.16][2017/05/27]
* Items can now be corrupted via the new "Corrupt..." button that appears when viewing the item
* Explosive Arrow's additional radius per fuse is now factored into the area calculation
* Fixed an error that would sometimes appear when editing gems in the Skills tab
VERSION[1.4.15][2017/05/26]
This update adds support for level and attribute requirements:
* Item tooltips now show level and attribute requirements
* Level requirements shown for items imported from in-game may be lower than in-game; this cannot be avoided
* Some previously-imported items may display a more accurate level requirement if they are re-imported
* The gem selectors in the Skills tab now have tooltips that show level and attribute requirements, plus some other details
* The sidebar now shows your attribute requirements if they aren't met
* The Attributes section of the Calcs tab now shows attribute requirements, with detailed breakdowns
Other changes:
* Witchfire Brew's Vulnerability aura now interacts correctly with Umbilicus Immortalis
VERSION[1.4.14][2017/05/24]
* Added an option to the Configuration tab for "Have you been Crit Recently?"
* Fixed some issues with item templates and the All items/Shared items lists
VERSION[1.4.13][2017/05/20]
* Detonate Dead now has an input in the Configuration tab for "Corpse Life"
* Added support for Hungry Abyss
VERSION[1.4.12][2017/05/19]
* The Items tab now has a "Shared items" list which is shared between all of your builds
* Added an Options screen, accessed via a new button at the bottom left corner. The following options have been added:
* Proxy server: specifies the proxy that the program should use when updating or importing characters
* Build save path: overrides the default save location for builds
* Node Power colours: changes the colour scheme used for the node power display
* The breakdowns for hit damage types now show the percentage of total hit damage that is being dealt as that type
* The stat differences shown in passive skill tooltips can now be toggled on and off by pressing Ctrl+D
* Some friendly toasts have set up camp in the bottom left corner, and may appear occasionally to convey various messages
* With the new installer versions, the program will always update itself when started for the first time, but will still
start even if the update check fails
VERSION[1.4.11][2017/05/16]
* Fixed a stack overflow error that could occur when trying to view breakdowns in the Calcs tab
* Fixed interaction between weapon swap and skills granted by items
* Consolidated the program's various list controls; their appearence and behaviour should be largely unchanged,
aside from some minor enhancements
* Various minor tweaks and fixes
VERSION[1.4.10][2017/05/12]
* Added support for weapon swap:
* You can switch between the two weapon sets using the new buttons above the Weapon 1 slot on the Items tab
* Skills in the inactive weapon set are automatically disabled
* Switching weapon sets will automatically update the main skill selection if the current main skill is socketed in the
set being deactivated and there is a skill socketed in the set being activated
* Importing character items will now import both weapon sets
* Added support for "X% chance to deal Double Damage" modifiers
* The comparison tooltip for passive trees now displays the number of refund points needed to switch to that tree
* Added an option to the Configuration tab for "# of Freeze/Shock/Ignite on Enemy" (for The Taming)
* Fixed several anomalies in the handling of duplicate support gems
Also, for those interested in supporting the development of the program I now have a Patreon page.
You can find the link in the About window.
VERSION[1.4.9][2017/05/08]
* AoE Radius and Weapon Range are now calculated and displayed in the "Skill type-specific Stats" section of the Calcs tab
* The breakdowns for those calculations feature a visual display of the area size
* The base radius values of some skills are not known, so they will not be shown
* Explosive Arrow now has separate skill parts for 1 fuse and 5 fuses
* Added support for Convocation
* Rallying Cry's buff is now able to affect minions
* The character limit for build names has been increased to 100; the build list has also been widened
* Spells of the correct type will now be considered to be Triggered when socketed into Mjolner and Cospri's Malice
* Infernal Blow no longer incorrectly benefits from modifiers to area damage
VERSION[1.4.8][2017/05/02]
* Added a Physical Damage Reduction estimate for Armour; by default the estimate is made using the same damage value
used in-game on the character sheet, but it can be overriden using a new option in the Configuration tab
* Added a new "Damage Taken" section to the Calcs tab that shows the incoming damage multipliers for each damage type
* These factor in mitigation (resistances/armour) and modifiers to damage taken
* The multipliers for hits and DoTs are calculated and shown separately
* The multiplier for Physical hit damage includes the Physical Damage Reduction estimate mentioned above
* Added self-degen calculations for Righteous Fire and Blood Rage:
* The sidebar will display "Total Degen" and "Net Regen" (Total Regen minus Total Degen)
* Detailed breakdowns for these calculations can be found in the new Damage Taken section of the Calcs tab
* Added combined avoidance chances for Melee/Projectile/Spell to the Other Defences section of the Calcs tab which
factor in evasion, block, and dodge
* Added support for Arrow Dancing
* The "increase maximum Life if no worn Items are Corrupted" stat on Voll's Vision should now apply correctly
* Corrected the range of the life modifier on The Perfect Form
* Corrected The Alyardex's variants
* Fixed issue that prevented the program's title bar from appearing at low screen resolutions
VERSION[1.4.7][2017/04/20]
* A new section has been added to the Configuration tab for Map Modifiers and Player Debuffs
* This section contains options for simulating many map modifiers, as well as self-curses
* Added support for Self-Flagellation
* Corrected the range of the increased Physical Damage modifier on Edge of Madness
VERSION[1.4.6][2017/04/20]
* Fixed bug introduced in 1.4.5 that prevented Onslaught and Unholy Might from applying correctly
* The minion modifiers on the jewel templates are now correctly hidden when their value is set to 0
VERSION[1.4.5][2017/04/19]
* Added support for Goatman Fire-raiser's Magma Orb skill
* Demigod items and legacy (pre-1.2.0) quiver types can now be imported
* Fixed issue causing the enchanting UI to only show enchantments for the first skill in each socket group
* Fixed issue preventing the life/mana leech boot enchantment from working
VERSION[1.4.4][2017/04/17]
This update fixes two issues affecting the damage calculations for minions.
As a result, the calculated DPS for many minion skills will change to some degree:
* All golem skills will gain up to 25% DPS
* Other minion's attacks will generally lose up to 30% DPS, but some may gain DPS
* Other minion's spells are generally unaffected, but some will gain up to 10% DPS
* Zombies, Skeleton Warriors and Raging Spirits are not affected
Other changes:
* Improved the DPS calculation for Blade Vortex skills used by spectres:
* The blade count can be set using a new option for Raise Spectre in the Configuration tab
* The skills now have a hit rate override, which allows the DPS to be calculated properly
* Added support for the Raise Spiders skill granted by Arakaali's Fang
* Added support for the Spectral Spirits skill granted by Essence of Insanity
* Added the attack rate cap for Blink/Mirror Arrow clones
VERSION[1.4.3][2017/04/16]
* Added Fighting Bull, Kraityn's Sniper, Shadow Lurker and Kaom's Chosen to the spectre library
* Added options to the Configuration tab to enable charges for all minions
* Corrected the minion damage modifier on the Cobalt Jewel template, and added the minion life modifier
* Fixed issue causing minions to trigger Elemental Equilibrium
VERSION[1.4.2][2017/04/16]
* Added support for Beacon of Corruption's Caustic Cloud (adds an extra 'Caustic Cloud' skill to your minions)
* Added Goatman Fire-raiser, Towering Figment, Noisome Ophidian and Pocked Lanternbearer/Illuminator to the spectre library
* Fixed the flat mana modifier on Grand Spectrum
VERSION[1.4.1][2017/04/16]
* Added Slashed Miscreation, Spectral Scoundrel and Cannibal Fire-eater to the spectre library
* The DPS for monster versions of Blade Vortex won't be accurate yet
* Added support for the modifier on The Anima Stone that grants an additional golem with 3 Primordial jewels
* The Zombie's Slam skill should now count as a melee skill
* Minion and Totem Elemental Resistances Support now correctly applies resistances to minions
* Fixed the minion damage conversion from The Scourge
* Fixed the golem damage modifier on Primordial Harmony
* Fixed the Zombie Slam modifiers on Violent Dead
VERSION[1.4.0][2017/04/15]
This update adds support for Minions:
* Added support for the following skills:
* Blink Arrow
* Mirror Arrow
* Raise Spectre:
* A library of commonly used spectres has been added; with Raise Spectre selected as the main skill,
you can click "Manage Spectres..." to browse it and add spectres to your build
* The level of the spectre can be set via a new option in the Configuration tab
* Spectre curses are disabled by default, and can be enabled in the Configuration tab
* Raise Zombie
* Summon Raging Spirit
* Summon Skeletons
* Vaal Summon Skeletons (except generals)
* Summon Spectal Wolf (from The Scourge)
* Added minion support for:
* Summon Chaos Golem
* Summon Flame Golem
* Summon Ice Golem
* Summon Lightning Golem (the Wrath aura can be enabled via a new option in the Configuration tab)
* Summon Stone Golem
* Added support for:
* Minion Instability (adds an extra 'Minion Instability' skill to your minions)
* Necromantic Aegis
* Most minion-related helmet enchantments
Other changes:
* A new section has been added to the Configuration tab for skill-specific options
* The section will only appear if at least one of your skills have options
* The only options added so far are those mentioned above, but more will be added later
* Skill cooldowns are now calculated and displayed
* Corrected or updated the wording of modifiers on several uniques
* Fixed several "NaN" values that could appear for mana-related stats when Blood Magic is allocated
VERSION[1.3.26][2017/04/08]
* Modifiers to Area of Effect of Aura Skills now correctly apply to curses supported by Blasphemy
* Corrected the implicits on Maraketh One-Handed Swords (thanks sherardy)
VERSION[1.3.25][2017/04/06]
* You can now export and import builds directly to/from Pastebin.com links
* Added support for the "Claw X also apply to Unarmed" modifiers on Rigwald's Curse
* The conditional penetration modifier on imported copies of The Wise Oak should now be recognised correctly
VERSION[1.3.24][2017/04/05]
This update adds support for Life/Mana Leech and Life/Mana/ES Gain on Hit:
* All sources of Leech and Gain on Hit are supported, including "Damage dealt by your Totems is Leeched to you"
* For skills with a known hit rate (i.e skills that show DPS instead of Average Damage), the combined rate of recovery
from Leech and Gain on Hit is displayed in the sidebar
* For other skills, the total amount leeched/gained from one hit is displayed instead
* Detailed breakdowns of Leech and Gain on Hit can be found in the new "Leech & Gain on Hit" section in the Calcs tab
Other changes:
* Added support for the additional Siege Ballista totems modifier on Iron Commander
* The "%Inc Armour from Tree" and "%Inc Evasion from Tree" sidebar stats now include "increased Evasion Rating and Armour"
* Various minor tweaks and fixes
VERSION[1.3.23][2017/03/31]
* Helmets and Boots can now be enchanted via the new "Apply Enchantment..." button that appears when viewing the item
* Added support for more helmet enchants; the vast majority of them should now work
* Added support for the conditional penetration stat on The Wise Oak
* Corrected the base of Lycosidae
* The quality bonus on Blood Rage now applies correctly
VERSION[1.3.22][2017/03/28]
* The sidebar can now displays two Crit Chance values:
1. Crit Chance:
* This is the skill's "real" crit chance, as displayed in the in-game character sheet
* If your crit chance is capped, this value will always be 95%, unlike your effective crit chance (which can be lower)
2. Effective Crit Chance:
* This is the value previously shown as "Crit Chance"
* This estimates your true crit chance, factoring in accuracy and "Crit Chance is Lucky"
* Added an option to the Configuration tab for "Are you Leeching?"
* Essence Drain now uses "Average Damage" mode
* Phasing is now enabled automatically if you have Quartz Infusion and maximum frenzy charges
* The Red/Green/Blue Nightmare jewels now correctly apply to the conditional resistance stats in the Sanctuary cluster
* Corrected the crit chance modifier on Pre-2.0.0 Windripper
* Updated "The Oak" to mirror the changes to Springleaf in 2.6
* The program should now correctly prompt to save the current build before updating
VERSION[1.3.21][2017/03/20]
With this update, the handling of buffs and debuffs has been improved:
* Having multiple copies of the same flask or buff/debuff skill active is now handled correctly
* When multiple copies are present, the highest value of each stat is used
* The enemy curse limit is now calculated and respected; when the limit is exceeded:
* Blasphemy curses take priority over other curses
* The Vulnerability aura from Witchfire Brew takes priority over non-Blasphemy curses
* Otherwise, curses are prioritised according to their ordering in the Skills tab
Other changes:
* Punishment is now supported (this was mostly made possible by the buff overhaul)
* Generosity is now supported
* Block Chance Reduction is now supported (although it has no effect)
* Several uniques have received minor corrections to the wording of stats
VERSION[1.3.20][2017/03/17]
* Added skill parts to Vaal Fireball that match those on Fireball
* Reverted the rounding change from the previous update, as the change in the game has been reverted also
* Fixed issue that caused passive node stats to lose tags (such as conditions) when converted by certain jewels
* Corrected the implicits on many item bases that received undocumented buffs in 2.6
* Various minor tweaks and fixes
VERSION[1.3.19][2017/03/09]
* Changed the rounding method for flask/aura/buff/curse effect to reflect the change in 2.6
* Relics can now be imported, and copied from in-game
* Fixed behaviour of the "Both slashes" skill part of Lacerate when only using one weapon
* Corrected the implicits of Maraketh sceptres
* Various minor tweaks and fixes
VERSION[1.3.18][2017/03/05]
* Added support for threshold jewels:
* Most of the relevant modifiers from threshold jewels should now be supported
* The tooltips for jewel sockets now indicate which types of threshold jewels will work there
* Added and updated many new uniques (shoutout to chuanhsing for the list on PoEDB)
* Applied the remaining balance changes to unique items (including threshold jewels)
* Updated all item bases (thanks Patrick for doing most of the work)
* Claw and Sword uniques and templates have been updated to account for the new implicits
* Corrected the conversion on Wild Strike
VERSION[1.3.17][2017/03/04]
* Updated skill data to 2.6
* Minor update of the passive tree data; this fixes the Storm Weaver pathing
* Added many new uniques
VERSION[1.3.16][2017/03/03]
* Added a skill part to Lacerate to simulate the target being hit by both slashes
* Added support for the "Damage while you have no Frenzy Charges" modifier on Daresso's Passion
* Updated the conversion values of Wild Strike, Ice Shot and Frost Blades (thanks viromancer)
VERSION[1.3.15][2017/03/02]
* The skill gem search field can now search by gem tag (e.g 'support' or 'aura')
* Removed the bonus Energy Shield from Vaal Discipline
* Node location displays in the Items and Calcs tabs will now render correctly
* Fixed error that resulted from entering certain characters into search fields
VERSION[1.3.14][2017/03/02]
This update implements the AoE changes for 2.6:
* Changed the Area Radius Modifier output in the Calcs tab to Area of Effect Modifier
* Updated the stats for Increased Area of Effect, Concentrated Effect and Melee Splash
* Changed Area Radius modifiers on uniques to Area of Effect
* Changed the Area of Effect value on Illuminated Devotion to match that listed in the patch notes
* The area of effect of many skills will be incorrect until all the data is made available in the patch
Other changes:
* Added support for the "Arrows that Pierce cause Bleeding" stat on Slivertongue
* Added support for the increased Golem Buff Effect stat on Primordial Eminence
* Corrected the implicits added when crafting Wands and Sceptres
* The (possibly incorrect) pathing in the Storm Weaver cluster should now render correctly
* Fixed an error that would occur when loading certain builds
VERSION[1.3.13][2017/03/02]
* Updated tree to 2.6.0
VERSION[1.3.12][2017/03/02]
This update brings some of the changes for 2.6; other changes are awaiting updated data.
* Almost all balance changes to unique items have been applied
* Implicits for most weapon types have been updated
* Added the four new uniques announced thus far
* A new Unset Ring template has been added, with the new + to Level of Socketed Gems modifier
* The +2 Chaos Staff template is now +3
Other changes:
* The "Blocked Recently" option has been replaced with separate options for "Blocked an Attack" and "Blocked a Spell"
* Caustic Arrow's hits no longer incorrectly benefit from Area Damage
* Ancestral Protector and Ancestral Warchief now correctly use the main hand only
VERSION[1.3.11][2017/02/26]
* When importing a character you can now choose to delete existing data (jewels, skills, equipment) before importing
* Wither now shows the secondary duration (%increased Chaos Damage Taken) instead of the primary duration (Hinder)
* Local increased Accuracy modifiers on weapons are now correctly multiplicative with global increased Accuracy
VERSION[1.3.10][2017/02/23]
* Added support for the helmet enchants that grant increased Buff Effect from Golems
* Added an option to the Configuration tab for "Is the enemy Rare or Unique?"
* Skills that cause Bleeding now have an option in the Configuration tab for "Is the enemy Moving?"
* Two-Toned Boots should now be handled correctly; all 3 variants should import correctly, and are available to craft
VERSION[1.3.9][2017/02/23]
* Projectile skills now have an option in the Configuration tab for "Projectile travel distance"
* Point Blank, and the scaling Pierce chance from Powerful Precision, are now supported
* Far Shot is not supported yet, as the scaling is unknown
* Freezing Pulse's damage and freeze chance can now scale with distance (factoring in projectile speed)
VERSION[1.3.8][2017/02/22]
* Flicker Strike now shows DPS instead of Average Damage
* Added an extra option for Elemental Equilibrium to ignore the hit damage of your main skill
* Added options to the Configuration tab for "Taunted an Enemy Recently" and "Enemy is Taunted"
VERSION[1.3.7][2017/02/22]
* The "enemy is a Boss" option in the Configuration tab now has 2 modes: Standard Boss, and Shaper/Guardian
* Standard Boss is equivelant to the old boss setting (30/30/30/15 resists, -60% curse effect)
* Shaper/Guardian applies: 40/40/40/25 resists, -80% curse effect, 50% less Bleed/Poison/Ignite Duration
* Witchfire Brew's Vulnerability aura now correctly accounts for less curse effect on bosses, and now counts for Malediction
VERSION[1.3.6][2017/02/21]
* Added a skill part for Barrage that calculates the DPS from all projectiles hitting the target
* The breakdown for Crit Chance in the Calcs tab now shows how far overcapped your crit chance is
* Empower/Enhance/Enlighten now default to level 3; Portal/Detonate Mines default to level 1
* Fixed issue that caused some existing items to lose quality; all affected items will be fixed automatically
VERSION[1.3.5][2017/02/21]
* Added support for the extra Chaos Damage from Malediction
* The bonus only applies with "Have you killed Recently?" enabled, and scales based on the number of active curse skills
* Added options to the Configuration tab for:
* Are you always on Full Energy Shield?
* Do you have a Totem summoned?
* Have you been hit by Fire/Cold/Lightning Recently? (for Paragon of Calamity)
* Have you used a Warcry Recently?
* Consumed a corpse Recently?
* Added support for the "Consecrated Ground grants 40% increased Damage" modifier from Sanctify
* The total Damage taken from Mana before Life is now displayed in the Other Defences section in the Calcs tab
* The Items tab now only normalises quality on items when they are first added, allowing the quality to be edited if necessary
VERSION[1.3.4][2017/02/20]
* Added support for the Offering skills and Mistress of Sacrifice
VERSION[1.3.3][2017/02/19]
* Added support for Intuitive Leap
* Added support for the Decay effect granted by Essence of Delirium
* Added support for the Fire Burst skill granted by Essence of Hysteria
VERSION[1.3.2][2017/02/18]
* Added support for the "increased Effect of Buffs on You" modifier on Ichimonji
* Added basic support for Detonate Dead; only the base damage is used
* The points display in the top bar will now move to the right of center if the Save/Save As buttons would cover it
* Fixed issue preventing Unarmed from being correctly detected
VERSION[1.3.1][2017/02/18]
* Added socket count to the tooltips in the passive tree selection dropdown menu
* Added percentage values to the per-point stat differences for passive nodes
* Flameblast's 10 Stages skill part now uses a x0.1 DPS multiplier instead of a 90% less Cast Speed modifier
* The cast rate will now reflect the time taken to build each stage, rather than the total time to build 10 stages
* This change will prevent an issue where adding increased cast speed would have no effect under some conditions
* Skills that only use the main-hand when dual wielding will now be handled correctly
VERSION[1.3.0][2017/02/16]
This update adds support for Flasks:
* Flask slots have been added to the Items tab. Checkboxes next to each slot allow the flasks to be individually activated.
* All flask-related modifiers are now supported
* Flask modifiers have been added to the belt templates; this will not affect items previously created from templates
* All unique flasks have been added to the Uniques database
* There will not be templates for flasks; custom flasks can be created using the new crafting system
Additionally, a new item crafting system has been added:
* You can access it by clicking "Craft item..." in the Items tab
* You can choose the rarity and base type of the item from lists
* For flasks and jewels, you can choose the item's affixes from lists once you've created the item
* For other items, modifiers must be added manually for now, so you may continue to use templates for them
Other changes:
* You can now have multiple passive trees within one build!
* To add more trees, select "Manage trees..." from the new dropdown at the bottom left corner of the Tree tab
* Different trees may have different jewels socketed in them
* Hovering over a passive tree in the dropdown will show you the stat differences from switching to that tree
* Hovering over gem names in the gem dropdown now shows the stat differences from selecting that gem
* Hovering over the gem enable checkbox now shows the stat differences from enabling/disabling that gem
* Passive node stat differences now show the value per point when showing the difference from multiple passives
* Fixed issue preventing Elemental Equilibrium from functioning correctly with skills that don't hit
VERSION[1.2.41][2017/02/13]
* The program now shows the save prompt before updating if there are unsaved changes
* Added options to the Configuration tab for: Enemy Blinded, Dealt Non-Crit Recently, Ignited/Frozen an Enemy Recently
* Stat differences for allocating/deallocating passives will no longer be incorrect when certain radius jewels are used
VERSION[1.2.40][2017/02/11]
* Movement Speed is now calculated and displayed in the sidebar and Calcs tab (in Other Defences)
* Fixed display issue in the breakdown for ignite DPS
* Fixed issue preventing some condition toggles from showing when related passive nodes are allocated
VERSION[1.2.39][2017/02/08]
This update adds full support for Dual Wielding:
* DPS calculations for dual wield skills will now use both weapons if they are usable with the skill
* Calculations for bleed, poison and ignite will correctly factor in both weapons
* Dual Strike is now supported
Other changes:
* Importing the passive tree from PoEPlanner links will now work with links created by the latest version of the site
* Fixed error when showing the tooltip for Kondo's Pride
* Various minor tweaks and fixes
VERSION[1.2.38][2017/02/05]
* Fixed error when hovering over a passive node with a main skill that isn't compatible with the equipped weapons
VERSION[1.2.37][2017/02/05]
* Attack skills will now only work if your equipped weapons can be used with that skill
* Dual Wield attack skills will now use the off hand weapon if the main hand isn't compatible with the skill
* If both weapons are compatible the calculations will still only use the main hand; full dual wield support is coming soon
* Added skill parts to Blast Rain to allow calculation of DPS against a target that's being hit by all 4 explosions
* Added a "Have you Blocked Recently?" option to the Configuration tab
* Added the block chance buff for Tempest Shield
VERSION[1.2.36][2017/01/31]
* Condition toggles in the Configuration tab will now only appear if the condition is actually used by the build
* Added support for "Ignited Enemies Burn faster" modifiers
* Added options to the Configuration tab for "Are you on Shocked/Burning/Chilled Ground"
* Character imports will now work even if the capitalisation of the account name is incorrect
VERSION[1.2.35][2017/01/29]
With this update, the way the program handles the calculation of crit damage has been improved.
Damage for crits and non-crits are now calculated and tallied separately, and combined later, instead of only
calculating non-crit damage, and deriving crit damage from that. This has allowed for the following changes:
* Inevitable Judgement is now supported!
* Other modifiers that only apply to crit or non-crit damage are now supported:
* Choir of the Storm's increased lightning damage modifier
* Marylene's Fallacy's less damage on non-critical strikes
Additionally, the handling of secondary effects (bleed, poison, ignite, shock, and freeze) has been improved.
The calculations for base damage and overall chance to inflict can now handle having different chances to inflict on
crits and non-crits. This has allowed for the following changes:
* Ignite/shock/freeze calculations now account for the guaranteed chance to inflict on critical strike
* This will greatly improve the accuracy of ignite DPS calculations for crit-based builds when in "Average Damage" mode,
as ignite's base damage will be heavily skewed in favour of crit
* Modifiers that grant a chance to poison/bleed on crit are now supported and correctly simulated
* The existing support for Adder's Touch has been reworked to use the new system
* The base damage for shock and freeze is now calculated, and used to compute the maximum enemy life against
which those effects will be able to apply; the results appear in the breakdowns for Shock/Freeze Dur. Mod
VERSION[1.2.34][2017/01/27]
* IIQ/IIR totals are now shown in the "Other Effects" section in the Calcs tab
* Enabling the "on Consecrated Ground" option now applies the 4% life regen granted by that ground effect
VERSION[1.2.33][2017/01/21]
* The aura effects granted by Unwavering Faith and Commander of Darkness now correctly benefit from aura effect modifiers
* The calculation of crit chance now factors in accuracy when in Effective DPS mode
VERSION[1.2.32][2017/01/15]
* The program now calculates Total Damage per Ignite and Total DPS inc. Ignite when you have Emberwake equipped
* Added a "Have you been Savage Hit Recently?" option to the Configuration tab
* The calculation of Total DPS inc. Poison now factors in hit chance
* Fixed the bonus crit chance for Ice Spear's second form
* Vaal skills now correctly benefit from Vaal skill modifiers
* The breakdown for poison duration now correctly displays the poison duration modifier instead of the skill modifier
VERSION[1.2.31][2017/01/08]
* Added two new templates for sceptre attack builds
* Corrected the implicits on the wand and sceptre templates
* Fixed the rounding on life/mana reservation calculations
* Fixed the "additional Block Chance with Staves" modifier
VERSION[1.2.30][2016/12/30]
* Added options to the Configuration tab for "Are you Ignited/Frozen/Shocked"
* Discharge's damage penalty when triggered will now apply correctly
* Skin of the Loyal and Skin of the Lords' Energy Shield values are now correctly removed
VERSION[1.2.29][2016/12/26]
* Added an "Enemy is Hindered" option to the Configuration tab
* Added a "Crit Chance is Lucky" option to the Configuration tab
VERSION[1.2.28][2016/12/22]
* Added skill parts to Blade Vortex to enable calculation of DPS with different blade counts
* Blade Vortex now has a hit rate override which replaces the cast rate when calculating the skill's DPS
* This will allow you to see the skill's true DPS at a given blade count
* The calculation of Ignite base damage can now be controlled using a new option in the Configuration tab
VERSION[1.2.27][2016/12/21]
* Cast when Channelling now overrides the cast rate of the triggered skill, allowing the DPS of that skill
to be calculated correctly
* Added an option to the Configuration tab to enable the Intimidate debuff on the enemy
* Jewel tooltips on the passive tree can now be hidden by holding Shift
* Corrected a display issue in the breakdown for Bleed that showed the wrong percentage of base damage
* Energised Armour now correctly converts the ES-from-Shield node in the Mind Barrier cluster
* Many skill-specific modifiers (such as helmet enchants) that weren't previously recognised should now be working
* New installer versions are available, and are recommended if you need to install the program again
* The new standalone install no longer forces an update check when run for the first time, and will never ask for
administrator privileges to update itself (as currently happens when certain files need to be updated)
VERSION[1.2.26][2016/12/14]
* The sidebar now displays a DPS or Average Hit total that factors in Poison
* Added support for the Bone Nova skill granted by Uul-Netol's Embrace
* Added support for the Molten Burst skill granted by Ngamahu's Flame
* Fixed the handling of mana costs for totem-cast auras
* Corrected the no-crit-multiplier modifier on Kongor's Undying Rage
VERSION[1.2.25][2016/12/13]
* Added support for the Abberath's Fury skill granted by Abberath's Hooves
* Added support for the Lightning Bolt skill granted by Choir of the Storm and Voice of the Storm
* Fixed a conflict between the Physical to Lightning support gem and certain skill conversions
VERSION[1.2.24][2016/12/10]
* Added attributes to the jewel templates
* You can now zoom the tree by Ctrl+Left/Right-Clicking, in addition to using the mousewheel
* Added support for the Block/Dodge conversion modifiers on the 3 Nightmare jewels
VERSION[1.2.23][2016/12/10]
* Added and updated more uniques from 2.5.0
* Added a new skill part to Blade Flurry that approximates the DPS from releasing every time you hit 6 stages
* Added support for the Cast on Melee Kill and Cast while Channelling support gems
VERSION[1.2.22][2016/12/04]
* Added many more uniques from 2.5.0, and updated mods on others
* Updated existing uniques that were changed in 2.5.0
VERSION[1.2.21][2016/12/03]
* Updated the skill data to 2.5.0
* Added the Elreon flat chaos mod to the ring and amulet templates
* Added support for the "Auras you Cast" modifiers in Guardian and Necromancer
* Passives/items that affect mana cost will now display the mana cost change in green if the cost is reduced,
and red if the cost is increased (i.e the reverse of the behaviour for other stats)
* Skills that cannot miss will now correctly have a 100% chance to hit
* Fixed issue that could cause the stat comparisons in item and passive node tooltips to show incorrect values if
Elemental Equilibrium is used
* The error messages displayed when a character import fails due to connection issues are now more readable
* Fixed the program's saved window position becoming invalid if the program was closed while minimised
VERSION[1.2.20][2016/12/02]
* Added 'The Pandemonius', 'Light of Lunaris', 'The Surrender' and 'Malachai's Vision'
* Added support for the Minion and Totem Elemental Resistances gem
* The new elemental damage multiplier has been added to this gem
* Added support for the Spell Damage->Attack Damage modifier on Crown of Eyes
* Imported items no longer have their quality normalised
* Fixed Avatar of Fire not working after the passive tree update
* Fixed bug preventing Cold Steel from applying both conversions
* Corrected the ranges of the crit multipler modifiers on the jewel templates
* Various minor tweaks and fixes
VERSION[1.2.19][2016/11/30]
* Updated the passive tree to 2.5.0
* Added 'The Halcyon'
* Added an "enemy at Close Range" condition for Chin Sol
* Corrected the projectile damage taken stat on Projectile Weakness
* Fixed error that could result from loading certain builds saved prior to version 1.0.27
VERSION[1.2.18][2016/11/29]
* Added 3 new Jewel templates
* Added 'Tulfall'
* Creating a new build now opens an unnamed build rather than asking for a build name
* You will be prompted to name the build when saving
* The program now opens a new build when run for the first time
* Added support for Elemental Equilibrium; when this passive is allocated, new options will appear in the Configuration tab
to allow you to indicate which damage types the enemy has been hit by before being hit by your main skill
* The enemy's resistances will update after the skill's hit damage is calculated, so that any damage over time effects are
calculated correctly
VERSION[1.2.17][2016/11/28]
* Added 'Tulborn' and 'Voice of the Storm'
* Added support for Mastermind of Discord; when this passive is allocated, new options will appear in the Configuration tab
to allow you to indicate which skill types you are using
* Conversion modifiers are now listed in the breakdowns for hit damage in the Calcs tab
* Added 2x multiplier to Cyclone's DPS to match the in-game tooltip
* Fixed bug preventing the buff from Summon Lightning Golem from applying correctly
VERSION[1.2.16][2016/11/25]
* The build list can now be sorted by name, class or time of last edit
* The save prompt will now show when closing the program if there are unsaved changes
* Fixed issue caused by right-clicking a jewel socket on the passive tree when there's no jewels in the build
* Various minor tweaks and fixes
VERSION[1.2.15][2016/11/25]
* Added all uniques so far announced for 2.5.0
* Most of their special modifiers should be working; as usual anything in blue should work, anything in red won't
* Note that for Shade of Solaris you must set the "Have you Crit Recently" condition in the Configuration tab
* You can now edit an item's text to change the name, base type or modifiers:
* Double-click on an item, then click "Edit..."
* When in the item editor, hovering over the Save button will show the item's tooltip
* You can also create items from scratch using this method, with the new "Create custom..." button
* This feature is mainly a stopgap until a more usable item editor is implemented
* When copying an item from the "All items" list, the modifier ranges are now preserved
* This means you can copy items that have been created from templates without losing the modifiers
* The rare templates have been updated, with some new bases and modifiers added
* Added several conditions to the Configuration tab
* Various minor tweaks and fixes
VERSION[1.2.14][2016/11/23]
* Added a Notes tab
VERSION[1.2.13][2016/11/22]
* The breakdown for crit chance now includes the "additional chance to receive a Critical Strike" from Assassin's Mark
* Added support for the "increased extra damage from Critical Strikes" modifier on Assassin's Mark
* Added support for Toxic Delivery
* The extra chaos and bleed damage modifiers require their respective conditions to be enabled in the Configuration tab
* Improved the program's startup time
VERSION[1.2.12][2016/11/22]
* Hovering over the character level input will now show the experience penalties for relevant area levels
* Fixed the "not Killed Recently" condition on "Rite of Ruin"
VERSION[1.2.11][2016/11/22]
* Added support for the Minion Damage-related modifiers on The Scourge
* Fixed error when hovering over Kongming's Stratagem
VERSION[1.2.10][2016/11/21]
* Added support for Unholy Might; you can enable it in the Configuration tab in the Combat section
* Added a Sort button to the "All items" list in the Items tab
* Added support for the "increased Spell Damage per Block Chance" modifier on Cybil's Paw
* Improved keyboard interaction throughout the program:
* Enabled keyboard navigation for all lists
* 'Enter' now accepts confirmation popups, and other popups such as "Save As"
* Dropdown lists can be cycled with Up/Down as well as the mousewheel
* Fixed Elreon's -mana cost modifier increasing the mana cost instead of decreasing it
VERSION[1.2.9][2016/11/20]
* Blade Flurry now shows DPS instead of average damage
* Fixed stat counts not showing for some radius jewels
VERSION[1.2.8][2016/11/20]
* Fixed dodge not being capped at 75%
* Fixed missing area damage flag on Ancestral Warchief
* Various minor tweaks and fixes
VERSION[1.2.7][2016/11/18]
* Added support for the 3 new skills: Blade Flurry, Blight and Scorching Ray
* Added support for Wither
* The debuff will apply automatically when the skill is enabled