-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
CHANGELOG.txt
1147 lines (927 loc) · 29.1 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
7.7.2
FIXES
- Guild data info lua error
CHANGES
- Skin updates
- Guild data info text
- Stackcount setting
7.7.1
CHANGES
- Add Dracthyr fraction to tooltip
- Add stackcount to tooltip
- Changes for 11.0.5
7.7.0
NEW
- Option to copy a single chat line
- Option to show chat history
- Option to show channel ticks on castbar
- Option to control the grid name update frequence to save some fps
- Add mastery buff to raid buff reminder
FIXES
- Jailers tower error
- Social frame lua error
- M+ timerbar offset
- Player castbar sometimes stuck on screen
CHANGES
- Update some skins
- Add warband reputation indicator
7.6.0
NEW
- Add option to shorten healtglobe shield values
- Add option to hide player frame at party grid
- Add option to hide class icons at grids, if no class color is used
FIXES
- Fix drawn layer of lfg accept button
- Fix BigWigs integration
CHANGES
- Add Monk hero talent to dodgebar
- Update some skins
- Added theater event timer bar to objectives tracker
7.5.0
NEW
- Add option to shorten values, like health values or damage text
FIXES
- Fix new font settings
- fix LSM with new fonts
7.4.0
NEW
- New Font system
- You can now select between multiple different font styles (to select the font like before this update, use 'GW2 Legacy')
- You can select your own fonts for texts and header texts
- You can adjust the font size for: Big Headers, Header, Normal and Small texts
- Tooltips gets font size option for all 3 types
- Added TWW events to the event tracker
- Added auction house skin
- Added fx animation to the dynamic hud (not all classes yet)
- Added remaning live to delve tracker
- Find an small easter agg with the GW2 settings splash screen
FIXES
- Fix barber shop skin
CHANGES
- Add DK hero talent to dodgebar
- Update some textures
- Update some skins
7.3.0
NEW
- Delves support for objectives tracker
- Added group progress to objectives tooltip
FIXES
- Objectives tracker auto turn in quests
- Totem tracker should work again
CHANGES
- Update some skins
7.2.0
NEW
- Talent frame skin
- Tooltip Item Count now has options Include Reagents and Include Warband
- Keybind support for immersive questing
- Keybind support for gossip skin
- Stancebar can now be disabled
- DK runes now get sorted based on there progress
- Add timer to tracked achievements
- New immersive questing backgrounds for TWW
CHANGES
- Chat frame alert color is now saved per character
- Update some skins
- Update imported debuffs
FIXES
- EJ skin error
- Raid frame ignored auras works again
- Fix GW2_Layout creation process
7.1.0
NEW
- Added option to skin blizzards default actionbars
- That function disabled our manged actionbars and there hooked features
- Adventuremap skin
FIXES
- Objectives tracker actionbutton works again
- Error handler shows only GW2 errors
- M+ progess counter should show correect % again (raw value is not possible atm)
- Fix minimap lua error
CHANGES
- Added TRP3 tooltips support
- Immersive Question changes and improvements
7.0.2
CHANGES
- Added self reading animation to immersive questing
FIXES
- Fix error handler
- Fix objective tracker action button handling
- Fix event objectives click functions
- Fix currency transfer taint error
- Fix ouf range indicator
7.0.1
FIXES
- First round of fixes
7.0.0
CHANGES
- Update for TWW
6.14.10
FIXES
- Show character item info now works correctly
CHANGES
- Export some api
6.14.9
CHANGES
- Export some api
6.14.8
CHANGES
- Update toc
6.14.7
CHANGES
- Prepare for 10.2.7
6.14.6
FIXES
- Fix GW2 slash commands
- Fix merchant frame next/prev page button position
- Fix lua error if our minimap is disabled
- Fix character itemlevel was not shown
6.14.5
FIXES
- Party frame visibility
6.14.4
FIXES
- Tooltip M+ lua error
6.14.3
FIXES
- Party visibility
6.14.2
CHANGES
- Update for 10.2.6
6.14.1
FIXES
- Fix details profile
- Fix player debuff show wrong icon texture
- Fix gossip skin text height
- Fix small unitframe height
- Fix ToT mover
- Fix playerframe level up icon
- Fix objectiv tracker hover not showing all details
- Fix creating new profile
CHANGES
- Update merchant skin
- Change castbar mover frame beased on details option
- Added Masque actionbutton skin
6.14.0
NEW
- Added Big Dig event timer
- Added option to change pulltimer seconds
FIXES
- Raidframes name overlapping
- Chat install process
- Alt player background setting
- Colorpicker error
6.13.3
FIXES
- Remove print statement
6.13.2
FIXES
- Fix profile page error
- Fix db migration error
- Handle evoker soar correct
6.13.1
FIXES
- Fix error a profile rename
6.13.0
NEW
- Switch to a new database format to better handle profiles. That requires a reload after the first login on each character.
- Added right click function to the minimaps expansion icon to show also the landing pages from previous addons
- Added animated statusbars to the pet frame
- Added copy/paste function to colorpicker
- Added option to disable objectives statusbars to have a more compact objectives tracker
FIXES
- Fix stancebar error. You can now use the button in combat again
- Fix worldmap event tracker container size
- Fix tank frame middle icon
- Fix auraindicators updating
- GW2 setting window is now moveable
MISC
- Some more settings does not requires a reload
6.12.0
NEW
- Added new paladin classpower texture and animation
- Added new arms warrior classpower
- Update GW2 boss frames, they are now unitframes
- Added options to toggle grid rol icons, tank icons and leader icons
FIXES
- Fix PP mode get saved correctly
- Fix move HUD grid
- Fix immersive Questing taint issue
- Fix arena frame lua errors
- Fix classpower error in combat
MISC
- Adjust grid out of range alpha value
- Update grid to work again with OmniCD
6.11.1
FIXES
- Correct LEMO integration which was causing an lua error during installation process
- Tweak Event Timer height
6.11.0
NEW
- Redo all grids: Party, Raid, Raid Pet
- Grids are now secure and can update during combat
- Added new grids:
- Maintank
- Raid 10
- Raid 25
- Raid 40
- Raid grids switch automaticly between the 3 raid grids, based on the number of players at the raid
- Added new grouping and sorting settings to all grids:
- Group by: Role, Class, Group, Name, Index
- Sort direction
- Sortmethode: Name, Index
- Raidwaid sorting: If disabled the grouping and sorting settings are applyed per raid group
- All grids have there individual settings (Raid 10, Raid 25, Raid 40, Maintank, Raid Pet, Group)
- Added Superbloom event timer to worldmap
- Added options to change the worldmap coordinats lable
- Added option to hide classpower bar outside of combat
FIXES
- Fix ready check skin
- Fix blurr on raid warning font
- Fix Pet Tracker and WQT Anchor points
- Fix travler log header stucking after tracking activity is completed
- Fix some taints
MISC
- Update for 10.2.0
- Update RAF skin
- Update Time Manager skin
- Added back right click option on bags
- Added S3 raid debuffs
- Adjust damage text animations
- Update TaintLess
6.10.1
FIXES
- 10.1.7 fixes
6.10.0
NEW
- Added evoker ebon might bar
6.9.2
FIXES
- Fix an actionbars issue which can crash the client
6.9.1
FIXES
- More 10.1.5 related fixes
6.9.0
NEW
- Added font settings for GW2 floating combat text
MISC
- Update for 10.1.5
6.8.2
FIXES
- Fix druid little manabar in cat form with player frame in target frame style
- Try to handle bags correctly for accounts with not 2FA
6.8.1
FIXES
- Fix buff/debuff auto anchor
- Fix buff/debuff max wraps setting
- Fix socket skin lua error
- Fix Pet Tracker integration
CHANGES
- Added LibUIDropDownMenu to prevent drop down taints
- Added Diablo 4 to friends data info
- Update LibEditModeOverride
6.8.0
NEW
- Added option to adjust player de/buff horizontal and vertical spacing
- Added option to adjust player de/buff max wrap of lines
- Added support for the add PetTracker: Now included at GW2 objectives
- Added evoker bleeding support
FIXES
- Avoid possible tooltip taint
- Fix casting bar lua error at pvp with an evoker
- Fix rare migration process issue
- Fix M+ dungeon icon border color at the lfg frame
CHANGES
- Tweak some hover textures
- Cooldown round numbers are more accurate now
6.7.3
FIXES
- Fix friends frame lua error
- Fix encounterjornal taint issue
6.7.2
FIXES
- Fix player frame in target frame style
- Fix immersive questing error
- Fix healtglobe error
6.7.1
FIXES
- Fix hero panel anchor error
- Fix party frame healthtext error
- Fix hero panel item info error
- Fix target castingbar texture
- Fix pet grid error
CHANGES
- Handle addon compartment button and add a toggle to hide that button
6.7.0
NEW
- dded private aura support
- Redo the statusbars and add custom animations to the classpower and ressource bars
FIXES
- Added passive talents back to spellbook
- Tweak vignett alerts to not spam
- Fix talent micro button taint error
- Fix bank taint issue
- ix vigor bar hidding
CHANGES
- Update for 10.1
- Make achievement frame movable
- Update S2 debuffs
6.6.1
FIXES
- Fix rare lua error during open the worldmap with active worldmap skin
- Fix issue were is was impossible to buy bank slots
- Fix macro and gear manager icon selection
CHANGES
- Added tooltips to equipment selection mode
- GW2 achievement frame skin is now compatible with 'Krowi's Achievement Filter' (requires version 55.0 and higher)
6.6.0
NEW
- Added 2 new damage text styles: Stacking and Classic (with anchor to nameplats or center of the screen)
- Added option to show healing numbers for these 2 new styles (classic only with anchor to the center of the screen)
FIXES
- Fix move hud error if the frames gets moved back to it default position
- Fix raid frame summon and resurrection icon
- Fix friends data info tooltip
- Fix worldmap drop-down position
- Fix objectives tracker group finder icon
CHANGES
- Changes for 10.0.7
- Update spell flyout skin
6.5.1
FIXES
- Fixed memory leak cause by channeling spells
6.5.0
NEW
- Added option to add a new micromenu icon to show event timers at the tooltip
FIXES
- Fix copy chat corloring
- Hopefully fix ui flickering
CHANGES
- Show micromenu notification also if the micromenu is fade out
6.4.1
FIXES
- Create the GW2_Layout only if it does not exist
- Fix an issue where the default target of target/focus frame is not visible if our target/focus module is turned off
6.4.0
NEW
- Added Trade Post skin
CHANGES
- Restructur settings, to make some settings easier to find
FIXES
- Talent micro button tooltip is hidding corret now
- Correct monthly activity tracker issues
- Correct recipe tracking issues
- Performance improvements
6.3.1
NEW
- Added workorder indicator to micromenu
CHANGES
- Move "new mail" indicator to micromenu
FIXES
- Performance improvements
6.2.2
FIXES
- Fixes for 10.0.5
6.2.1
FIXES
- Fix ElvUI micro menu error
- Fix ElvUI actionbar lua error if our actionbars are disabled
- Fix ElvUI battle.net frame error if both module are enabled
6.2.0
NEW
- Added Hud background for dragonriding
- Added Vigor to dodge bar
- Added new achievement skin
- Added new gossip skin
- Added fish nets timers to world map
- Added cooking event timer to scenario tracker
- Added option to show enchants and gems on gw2 character panel
- Added option to flash taskbar on world event reminder
- Added group info to premade group list and group tooltips
CHANGES
- Update chat bubbles
- Update Move HUD textures
- Add filters to Move HUD mode
- Added char counter to chat editbox
- The info block in Mythic+ dungeons now shows more precise progress information
FIXES
- Fix ElvUI micro menu backdrop
- Fix Details settings page not opens
- Fix wrong data in fps tooltip
- Fix TomTom mini map icons moves into the addon button container
- Fix compass ignoring settings
6.1.1
CHANGES
- Update Talent Micro Button tooltip
- Aura Indicator updates:
- Evoker: Added Dream Breath (echo), Reversion (echo), Life Bind
FIXES
- Fix game freezes with scenario tracker
- Fix actionbar taint on spec switch
- Fix HUD background setting
- Fix HUD border setting
- Fix tooltip hide in combat setting
- Fix tooltip healthbar setting
6.1.0
NEW
- Added brand new settings page
- Added Community Feast and Siege On Dragonbane Keep timer to worldmap
- Added option to set currencys to unused
- Added option to collaps all tracker in Mythic+
- Added evoker buff to raid buff reminder
CHANGES
- Aura Indicator updates:
- Resto Druid: Added Tranquility, addedAdaptive Swarm
- Priest: Added Power Infusion
- Holy Pally: Adds Barrier of Faith.
- Update Raid Debuff Filter and cleanded up Mythic+ Affixes
- Update some raid buff reminder spells
- Social panel skin has been fixed has been readded
FIXES
- Fix auto sell taint error
- Temp fix for extra actionbutton taint
- Memory and performance improvements
6.0.10
FIXES
- Error on start
6.0.9
FIXES
- Readd mirrortimers
6.0.8
FIXES
- Fix for memory leak
6.0.7
FIXES
- Error on start
6.0.6
FIXES
- Bank issues
- Error on start
6.0.5
FIXES
- Minimap lua error
- Bag taint
6.0.4
FIXES
- Fix some more taint issues
6.0.3
FIXES
- Wrong GW2 moverframe value
6.0.2
FIXES
- Set actionbar 1 to always have 12 buttons
- Actionbar taint on shapshift forms
6.0.1
FIXES
- Fix lua error on login
6.0.0
- Update for 10.0.2
5.31.7
FIXES
- Fix a classpower anchor issue if the classpower is moved
5.31.6
FIXES
- Fix a bug in move hud mode which sets a wrong paramter if a frame was moved
- Adjust classpower bars to fit with the mover
- Fix ember court memory leak
5.31.5
FIXES
- Player castingbar issue
5.31.4
FIXES
- Do not delete profile names on profile resets
5.31.3
FIXES
- Do not delete profile names on profile resets
MISC
- Profile frame tweaks
- Inspection frame tweaks
5.31.2
FIXES
It could happen, that some frames after 2 or more reloads automaticly moves one pixel out of there default position.
That causes that eg. the automaticly player buff/debuff positions was not changed if the right actionbar was set to show on hower.
To fix this: Open the Move HUD mode and reset the effected frames to there default position (right click the mover and click on Reset).
After that do a /reload
5.31.1
FIXES
- Fix wrong position of inverted target frame background
5.31.0
NEW
- Added 'Layouts':
- You can now create, save and edit differente movable frame layouts and assing them to a spec.
- This layouts will be automaticly activated by a spec switch
Notes: The current profile layout will be saved as a new layout and works always a default, if no spec layout was found
- Added an option to change the position of the tooltip healtbar: Bottom, Top, Disable
- Added new backgrounds for the immersive questing module
FIXES
- Fix some bugs related to the immersive questing module
MISC
- Redo the GW2 profile page and allow unlimited profiles
- Some tweaks to the immersive questing module
5.30.2
FIXES
- Fix a extended vendor issue
5.30.1
FIXES
- Fix a profile lua error
5.30.0
NEW
- Extended Vendor (default disabled)
FIXES
- Fix a profile lua error
5.29.0
NEW
- Added alert notification system
FIXES
- Fix some rare lua errors
5.28.2
FIXES
- Fix an error if pet grid is enabled
5.28.1
FIXES
- Fix an error if no timestamp format is set
5.28.0
NEW
- Added a toggle for target, target target, focus and focus target castbar
- Added option to show a separate energy bar for some bosses like Anduin at the objectives boss frames
- Added 2 Details skin (by SHOODOX)
- Added GW2 style worldmap and minimap player pin
- Added option to set a timer to auto scroll down the chat
- Added option to set the number of chat messages which are scrolled with one scroll
- Added an option to hide placeholder in move hud mode
- Added ooption to hide tooltips ins combat and a override setting
- Minimap can now be sized by a slider
- New icons for chat buttons
- New lfg animation
FIXES
- Fix issue with target debuff spacing in some situations
- Fix a wrong total reputation callculation per expansion
- Hide voicetab correctly
5.27.1
FIXES
- You can now apply glyphs again
- Fix a lua error while rename an equipment set
5.27.0
NEW
- Added option to disable player new de/buff animation
FIXES
- Some chat issues on russian clients
- Possible actionbar lua error
- Possible torghast fix
5.26.0
NEW
- Make "PowerBarContainer" movable
- Added individual bar width settings for multibar right 1 and 2
FIXES
- Fix an issue with the multibar right 1 & 2 mover
- Fix a chat issue on ruRU clients
- Fix a lua error with barber skin
5.25.0
NEW
- Update for 9.2.0
- Split Inventory Skin and Loot Window Skin
- Added indicator for unused talent points
- Added new option 'XP Quest Percent', which shows how much % that quest gives you in relation to the total xp needed for next level
- Added new option 'Mark Quest Reward', which marks the most valuable quest reward item
5.24.2
FIXES
- Fix rare player aura issue
5.24.1
FIXES
- Fix player frame background overlay
5.24.0
NEW
- Added option for alternative target/focus background texture
MISC
- Tweak character talent frame
5.23.0
NEW
- Skins:
- LFG
- Allied Races
- Weekly Rewards
- Chromie Time
- Added option to change tooltip font size
- Added option to show "SpellQueueWindow" on castbar
FIXES
- Fix some cooldown issues for extra action buttons
- Show correct buffs in vehicle UI
- Some actionbar hotkey issues
5.22.1
FIXES
- Fix cooldown lua error
5.22.0
NEW
- Added option to set mainbar and multibar button spacing
- Added System datainfo to minimap fps text
FIXES
- Some tooltip issues
5.21.1
FIXES
- Tooltip statusbar color
5.21.0
NEW
- Added text option to tooltip healthbar
FIXES
- Fix some tooltip issues
- Aura tooltips are now updating correctly to show remaning time
- Fix item upgrade skin
5.20.1
FIXES
- 9.1.5 tooltip issue
5.20.0
NEW
- Added raid pet grid
- Added option to fade main actionbar
FIXES
- Raid buff indicators should now show as expected
- Fix charged combo points
5.19.2
FIXES
- Minimap button issue
MISC
- Update locals
5.19.1
FIXES
- Ember court issue
- Garrision minimap icon tweaks
5.19.0
NEW
- Added 'Smart' Raid Markers: Use a defined key (via keybinds) to open the smart raid marker menu.
This opens a circle with all raid markers directly under your cursor
- Added a prio for scaling important and dispellable debuffs
MISC
- Redo raid and party grid profiling
5.18.0
NEW
- Added Encounter Journal, Soulbinds and Convenant Sanctum Skin
- Added 'Friends' tooltip to character micro menu button
FIXES
- Raid frame sort by role
5.17.2
FIXES
- Missing raid buff pet battle overlapping
- Raid frame sort by role
MISC
- Added OmniCD support
5.17.1
FIXES
- Tweak raid/party profiles and fix some bugs
- You can now change raid/party profile settings while in a party/raid
MISC
- Added option to show chat timestamps for all messages
- Added ability to add a custom sound for chat keyword alert
5.17.0
NEW
- CHAT:
Added lots of new settings to the chat module
- Detacting URL Links and make them clickable
- A Keyword System, which marks your keywords in the chat and plays a sound
- Classcoloring char names
- Short Channel names
- Emoticon's
- Show role icons before the names (if you are in a raid or party)
- Spam Intervall: Hides the same messages in a given time
- Combat Repeate: Close the chat editbox if you type in the same char for a given number while in combat
- Link Hovering: Shows the tooltip of eg a Achivment while hovering
- Quick Join Messages: Show clickable Quick Join messages inside of the chat
- Added a new "Role Bar" which shows your group or raid's role composition
- Added a new "Missing Raud Buff Bar" which shows you your missing raind buffs. You can also track one custom buff
- Added tooltipt to the "Important Debuff" Dropdown
- Added Season 2 "Important Debuffs"
- Merchant skin
- Added grid layouts for raid and party
- Added option to set a scale value for important dungeon and raid debuffs
- Added option to set a scale value for dispellable debuffs
- Added option "Show both party frames and party grid"
- Added option to show M+ keystone info in tooltip
FIXES
- Display Animapower frame in M+ and raids correctly
- Fix a lua error in Torghast
- Small layout fixes
5.16.4
FIXES
- Social tab fixes
5.16.3
FIXES
- Gossip skin issue
- Smaller fixes
5.16.2
FIXES
- Gossip skin issue
- Issue with bag bars
- Some Torghast issues
5.16.1
FIXES
- Torghast tracker fixes
5.16.0
NEW
- Added social module
- Added option to show a additional ressourcebar with player as target frame
- Added option to show party Partyframes
- Added option to show pets portrait damage
- Added option to show pet auras below the frame
- Added option to show M+ score at unit tooltips (Based on Blizzards new score API)
- Added preview mode for party and raidframes
FIXES
- Redo raid frame aura icon tooltip: New option to set when the aura get a tooltip on mouse over or is click through (no tooltip = click through)
- Healtglobe now works with mouseover addons
MISC
- Updated raid debuffs for Sanctum of Domination (All difficulties)
- Updated raid debuffs for Tazavesh, the Veiled Market (Mythic)
5.15.5
FIXES
- Fix a tooltip lua error
5.14.4
FIXES
- Fix microbar lua error
5.14.3
FIXES
- Fix stancebar issue
- Fix group layout
5.14.2
FIXES
- Fix buff layout issue
5.14.1
FIXES
- Fix a group layout issue
5.14.0
NEW
- Make stancebar movable and let you choose the grow direction
- Added option to override addon conflict behaivor
- Ctrl. + click the countdown button (raid control) to trigger the dbm pull timer
FIXES
- Fix taint issue in pet battle
5.13.4
FIXES
- Fix interaction with Dominos
- Totem fram is now shown with player frame in target frame style
5.13.3
FIXES
- Raid styled party frames now working as intended
5.13.2
FIXES
- Partyframes: Debuff stacks > 9 are now display correctly
MISC
- Partyframes: Make buff line margin smaller to show more buffs
- Added players raid group into player tooltip
- Make Raid Control secure: Added Worldmakers into that menu
- Added option to set max shown lines on copy chat frame
- Added 'Main Tank', 'Main Assist', 'Group Leader' and 'Group Assist' info to raid unit tooltips
- Some options are now deactivated if conflicting addons are loaded. In the settings you can see which Addons is causing the deactivation.
5.13.1
FIXES
- Fix an error that raid buffs not disapearing
- Fix an error with conduits datatext if you havent a soulbind
- Raise PetBattleFrame so auras are not overlapping them anymore
5.13.0
NEW
- Added option for important debuffs to target and focus frame
FIXES
- Fix some lua errors
MISC
- Code clean up
5.12.1
FIXES
- Fix target/focus mask overlapping
- Fix Great Vault micro menu button interaction with dominos
MISC
- Update locals
- Code clean up
5.12.0
NEW
- Added "Great Vault" Button to micromenu
- Added datatext to gametime (hover the time on minimap)
- Added datatext to talent micro button
FIXES
- Fix rare ember court and chatframe lua error
- Fix some target/foucs overlapping
MISC
- Remove auto sell junk chat output: Blizzard os doing this now
- Right click guild micromenu button to invite or whisper guild mebers
5.11.2
FIXES
- Fix some gossip skin issues