-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathchangelog.lua
More file actions
1153 lines (974 loc) · 54.7 KB
/
changelog.lua
File metadata and controls
1153 lines (974 loc) · 54.7 KB
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
---@class GW2
local GW = select(2, ...)
local function addChange(addonVersion, changeList)
tinsert(GW.changelog, {version = addonVersion, changes = changeList})
end
--[[
AddChange(string addonVersion, table changeList)
{
GW_CHANGELOGS_TYPES fixType // bugfix, feature
string description
}
]]
addChange("10.10.0", {
{GW.Enum.ChangelogType.feature, [=[Added option to change unitframe reaction colors]=]},
{GW.Enum.ChangelogType.feature, [=[Re-enabled short value prefix style and decimal length settings for Retail health values]=]},
{GW.Enum.ChangelogType.feature, [=[Added Class Totems settings for enabling/disabling the bar, button size and button spacing]=]},
{GW.Enum.ChangelogType.feature, [=[Added Stance Bar settings for button size, button spacing, alpha and mouseover fade]=]},
{GW.Enum.ChangelogType.bug, [=[Fix Todooloo itegration]=]},
})
addChange("10.9.1", {
{GW.Enum.ChangelogType.change, [=[Codex Addon support added]=]},
})
addChange("10.9.0", {
{GW.Enum.ChangelogType.feature, [=[Added movable party frames with new spacing and horizontal/vertical layout options]=]},
{GW.Enum.ChangelogType.feature, [=[Added automatic Objectives Tracker collapsing with separate options for Mythic+/Challenge Mode, Raid, Party, Delve and Combat]=]},
{GW.Enum.ChangelogType.feature, [=[Added Objectives Tracker options for Supertracked Quest to Top, Show Completed Objectives and Compact Mode]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to change Objectives Tracker container order]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to change grid class order sorting]=]},
{GW.Enum.ChangelogType.feature, [=[Added raid aura indicator settings for size, bar width and stack count visibility]=]},
{GW.Enum.ChangelogType.feature, [=[Added titles to TBC]=]},
{GW.Enum.ChangelogType.change, [=[Update Damage Meter skin]=]},
})
addChange("10.8.2", {
{GW.Enum.ChangelogType.bug, [=[More secrets]=]},
{GW.Enum.ChangelogType.bug, [=[Classic hero panel works again]=]},
})
addChange("10.8.1", {
{GW.Enum.ChangelogType.bug, [=[More 12.0.5 secrets]=]},
})
addChange("10.8.0", {
{GW.Enum.ChangelogType.change, [=[Added per-grid Private Auras size settings for Raid, Raid 10, Raid 25, Maintank and Party grids]=]},
{GW.Enum.ChangelogType.change, [=[Added Narcissus Achievement Frame support for achievements opened from the Objectives Tracker]=]},
{GW.Enum.ChangelogType.change, [=[Improved UI responsiveness by reducing frequent update loops across the global update handler, micro menu, minimap, quest compass and 5-second rule timer]=]},
{GW.Enum.ChangelogType.change, [=[Added smoother character panel transitions across Mainline, Classic, TBC, Wrath and Mists and centralized the shared character window animation handling]=]},
{GW.Enum.ChangelogType.change, [=[Refactored watched bag currency displays in Mainline and Mists to use shared currency slot templates]=]},
{GW.Enum.ChangelogType.change, [=[Reworked Immersive Questing and added new customization options]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed an Objectives notification taint error caused by protected (secret) text comparisons]=]},
})
addChange("10.7.0", {
{GW.Enum.ChangelogType.feature, [=[Added bag and bank slot spacing controls (X/Y) with shared icon size + spacing settings across Mainline, Classic, TBC and Mists]=]},
{GW.Enum.ChangelogType.feature, [=[Delve Scenario header now displays the remaining Nemesis enemies.]=]},
{GW.Enum.ChangelogType.change, [=[Updated bag and bank frame sizing to keep consistent right-side padding independent from slot spacing]=]},
{GW.Enum.ChangelogType.change, [=[Improved Scenario tracker update handling: multiple rapid event triggers are now merged into a single layout refresh per frame to prevent duplicate updates and reduce UI jitter]=]},
{GW.Enum.ChangelogType.change, [=[Improved Quest tracker update handling: UpdateLayout and PartialUpdate are now queued and merged per frame to avoid duplicate refreshes and reduce UI jitter]=]},
{GW.Enum.ChangelogType.change, [=[Improved objective notification text formatting: progress values like 2/12 are now kept visible for world and bonus objectives]=]},
{GW.Enum.ChangelogType.change, [=[Improved objective notification visuals: smoother icon/progress transitions plus hover blend feedback for clearer focus]=]},
{GW.Enum.ChangelogType.change, [=[Added a Retail-only "Private Auras" toggle for grid debuffs in raid layouts (including maintank and party grid)]=]},
{GW.Enum.ChangelogType.change, [=[Updated bag and bank settings (Mainline/Classic/TBC/Mists): replaced Compact Icons toggle with a shared icon-size slider and centralized bag item size normalization/configuration]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed a chat formatting error that could trigger "invalid option in `format`" when messages contained percent signs (%)]=]},
})
addChange("10.6.2", {
{GW.Enum.ChangelogType.bug, [=[Temporarily disabled Grid aura timers]=]},
})
addChange("10.6.1", {
{GW.Enum.ChangelogType.bug, [=[Removed scenario debug print output]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed Unit Frame Lua error for non-player classes]=]},
{GW.Enum.ChangelogType.change, [=[Updated scenario handling to use the current API flow]=]},
})
addChange("10.6.0", {
{GW.Enum.ChangelogType.feature, [=[Added class power anchor modes: Default, Center, Left and Right]=]},
{GW.Enum.ChangelogType.feature, [=[Added class power settings: anchor X offset, anchor Y offset and custom resource bar gap]=]},
{GW.Enum.ChangelogType.feature, [=[Added custom resource bar side option: Auto, Left, Right]=]},
{GW.Enum.ChangelogType.feature, [=[Added minimap setting to always show the AddOn flyout button]=]},
{GW.Enum.ChangelogType.feature, [=[Added minimap behavior to show a single AddOn button directly when flyout is not forced]=]},
{GW.Enum.ChangelogType.feature, [=[Added setting to animate micro menu notification icons]=]},
{GW.Enum.ChangelogType.change, [=[Added EN/DE localization and descriptions for the new class power settings]=]},
{GW.Enum.ChangelogType.change, [=[Refactored class power anchor handling to use shared helpers]=]},
{GW.Enum.ChangelogType.change, [=[Improved class power sub-frame alignment for non-default anchors]=]},
{GW.Enum.ChangelogType.change, [=[Improved Demon Hunter and Brewmaster defaultResourceBar anchoring]=]},
{GW.Enum.ChangelogType.change, [=[Improved overlap handling for custom resource bars in CENTER mode]=]},
{GW.Enum.ChangelogType.change, [=[Improved Warlock shard and shardFragment anchoring with side settings]=]},
{GW.Enum.ChangelogType.change, [=[Mail skin layout now switches between compact and expanded widths based on visible right pane content]=]},
{GW.Enum.ChangelogType.change, [=[Refactored mail compose/open handlers and cleanup helpers to reduce duplicated UI logic]=]},
{GW.Enum.ChangelogType.change, [=[Moved "Sell junk automatically" from bag-specific menus to General settings near Auto Repair]=]},
{GW.Enum.ChangelogType.change, [=[Centralized auto-sell junk initialization to run SetupVendorJunk once globally]=]},
{GW.Enum.ChangelogType.change, [=[Improved Settings Overview Credits layout with section icons and two-column names]=]},
{GW.Enum.ChangelogType.change, [=[Improved Settings Overview changelog scroll growth behavior with smooth post-drag animation]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed mail inbox bottom button vertical alignment]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed mail open view scroll area sizing and scrollbar spacing]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed mail separator visibility and sizing in compact/expanded modes]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed tooltip taint from comparing secret class text values (classLine:GetText)]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed scenario event timer showing in excluded zones (for example Stormarion Assault area)]=]},
})
addChange("10.5.1", {
{GW.Enum.ChangelogType.bug, [=[Buggrabber integration]=]},
})
addChange("10.5.0", {
{GW.Enum.ChangelogType.feature, [=[Added Midnight event tracker to worldmap]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to show spell icons to the floating combat text (classic)]=]},
{GW.Enum.ChangelogType.change, [=[Hide druid mana in none related forms and specs (Retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix GMOTD taint]=]},
})
addChange("10.4.1", {
{GW.Enum.ChangelogType.bug, [=[Loading issue on none retail clients]=]},
})
addChange("10.4.0", {
{GW.Enum.ChangelogType.feature, [=[Add aura indicator back to retail, only for whitelisted spells]=]},
{GW.Enum.ChangelogType.feature, [=[Damage Meter skin (retail)]=]},
{GW.Enum.ChangelogType.change, [=[Tooltips updates]=]},
{GW.Enum.ChangelogType.bug, [=[Class color issue on grids]=]},
})
addChange("10.3.2", {
{GW.Enum.ChangelogType.bug, [=[Retail aura error]=]},
})
addChange("10.3.1", {
{GW.Enum.ChangelogType.bug, [=[Some chat issues]=]},
{GW.Enum.ChangelogType.bug, [=[Coloring issues]=]},
{GW.Enum.ChangelogType.bug, [=[Experiencebar repuration tracking]=]},
{GW.Enum.ChangelogType.bug, [=[Objectives tracker error]=]},
})
addChange("10.3.0", {
{GW.Enum.ChangelogType.feature, [=[Add option to change unitframe healtbar texture]=]},
{GW.Enum.ChangelogType.feature, [=[Add option ot add Healtglobe spacing to not manage actionsbars (Retail)]=]},
{GW.Enum.ChangelogType.feature, [=[Added own chat command history]=]},
{GW.Enum.ChangelogType.change, [=[Tooltips updates]=]},
{GW.Enum.ChangelogType.change, [=[Color handling refactor]=]},
{GW.Enum.ChangelogType.change, [=[Update TBC advanced stats]=]},
{GW.Enum.ChangelogType.bug, [=[Grid buff handling on none retail clients]=]},
{GW.Enum.ChangelogType.bug, [=[More bug fixes]=]},
})
addChange("10.2.2", {
{GW.Enum.ChangelogType.bug, [=[Fix lua error with housing]=]},
{GW.Enum.ChangelogType.bug, [=[Fix CD Manager Skin, which can cause that the CD Manager was disapearing]=]},
{GW.Enum.ChangelogType.bug, [=[Fix worldmap skin]=]},
})
addChange("10.2.1", {
{GW.Enum.ChangelogType.bug, [=[More chat secrets]=]},
{GW.Enum.ChangelogType.bug, [=[Grid color error]=]},
{GW.Enum.ChangelogType.bug, [=[Equipment manager item level]=]},
{GW.Enum.ChangelogType.bug, [=[Vehicle leave button on TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Missing widgets on TBC and Mists]=]},
{GW.Enum.ChangelogType.bug, [=[PvP UI fixes]=]},
{GW.Enum.ChangelogType.change, [=[Grid buffs can be disabled (retail)]=]},
})
addChange("10.2.0", {
{GW.Enum.ChangelogType.feature, [=[Added all new aura filter options to grids (retail)]=]},
{GW.Enum.ChangelogType.feature, [=[Added party pet grid]=]},
{GW.Enum.ChangelogType.feature, [=[Added new aura filter options to target unitframe]=]},
{GW.Enum.ChangelogType.bug, [=[More secrets with 12.0.1]=]},
})
addChange("10.1.0", {
{GW.Enum.ChangelogType.feature, [=[Added bar size settings to: Targetframe, Target of targetframe, Focusframe, Target of focusframe and playerframe]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to change chatbubble size]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to toggle the dodgebar]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to toggle the skyridingbar]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to anchor the classpower bar to center to have them alligned when using profile on different characters]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to show keybinds only on used slots]=]},
{GW.Enum.ChangelogType.feature, [=[Added option for a rectangle minimap (Read the setting notes)]=]},
{GW.Enum.ChangelogType.change, [=[Gear manager: Gears can now be draged to the actionbars]=]},
{GW.Enum.ChangelogType.change, [=[ Dodgebar, skyridingbar and player ressourcebars now fades with player frame)]=]},
{GW.Enum.ChangelogType.bug, [=[Some more secrets (retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Grid range fader is working again]=]},
{GW.Enum.ChangelogType.bug, [=[Raidmarkers are now showing correclty]=]},
{GW.Enum.ChangelogType.bug, [=[Many more fixes]=]},
})
addChange("10.0.5", {
{GW.Enum.ChangelogType.bug, [=[Gamemenu skin on TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Aura tooltip works again]=]},
{GW.Enum.ChangelogType.bug, [=[Chatframe secret value]=]},
{GW.Enum.ChangelogType.bug, [=[Forbidden tooltips]=]},
{GW.Enum.ChangelogType.bug, [=[Socal frame lua error]=]},
{GW.Enum.ChangelogType.bug, [=[Frame fader fixes]=]},
{GW.Enum.ChangelogType.bug, [=[Raid target fix]=]},
})
addChange("10.0.4", {
{GW.Enum.ChangelogType.change, [=[Added grid aura filter options for retail, that are all blizzard allows at the moment]=]},
{GW.Enum.ChangelogType.bug, [=[Totembar error on none Retail clients]=]},
{GW.Enum.ChangelogType.bug, [=[Grid backgorund on none Retail clients]=]},
})
addChange("10.0.3", {
{GW.Enum.ChangelogType.bug, [=[Tooltip error on TBC]=]},
})
addChange("10.0.2", {
{GW.Enum.ChangelogType.bug, [=[Tooltip error on TBC]=]},
})
addChange("10.0.1", {
{GW.Enum.ChangelogType.bug, [=[Tooltip error on TBC]=]},
})
addChange("10.0.0", {
{GW.Enum.ChangelogType.feature, [=[Midnight support]=]},
})
addChange("9.1.0", {
{GW.Enum.ChangelogType.feature, [=[Social frame for TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Chat frame fixes (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Questlog skin fixes (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Hide Keyring if actionbar not enabled (TBC & Era)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix minimap left click lua error (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix spellbook and talents not clickable (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix totembar lua error (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Update spellbook (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix objectives tracker actionbutton (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix customs classcolor on none retail clients]=]},
{GW.Enum.ChangelogType.bug, [=[Fix merchant skin (TBC))]=]},
{GW.Enum.ChangelogType.bug, [=[Fix missing auto repair text (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix not cancable player auras (TBC)]=]},
})
addChange("9.0.2", {
{GW.Enum.ChangelogType.bug, [=[Added missing raid debuffs for TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Added many TBC checks]=]},
{GW.Enum.ChangelogType.bug, [=[Fix tooltip (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix gossip skin (TBC)]=]},
{GW.Enum.ChangelogType.bug, [=[Added missing minimap tracking (TBC)]=]},
})
addChange("9.0.1", {
{GW.Enum.ChangelogType.bug, [=[Pet happines is now active on TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Questlog skin updates for TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Update Honor Tab for TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Many actionbar fixes for TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Disable some objectives tracker modules which are not supported in TBC, like Boss frames]=]},
{GW.Enum.ChangelogType.bug, [=[Fix micromenu lua error]=]},
{GW.Enum.ChangelogType.bug, [=[Fix chatframe lua error]=]},
{GW.Enum.ChangelogType.bug, [=[Added missing consts for TBC]=]},
{GW.Enum.ChangelogType.bug, [=[Fix shaman classpowe error on TBC]=]},
})
addChange("9.0.0", {
{GW.Enum.ChangelogType.feature, [=[TBC support]=]},
})
addChange("8.6.2", {
{GW.Enum.ChangelogType.bug, [=[Used wrong setting for worldmap scale for era]=]},
})
addChange("8.6.1", {
{GW.Enum.ChangelogType.bug, [=[Worldmap position and scale is not saved (era)]=]},
{GW.Enum.ChangelogType.change, [=[FCT default style uses now a fallback from on nameplate anchor]=]},
{GW.Enum.ChangelogType.change, [=[XP bar rework]=]},
})
addChange("8.6.0", {
{GW.Enum.ChangelogType.feature, [=[Add option to invert multiactionbars, to follow the blizzard layout]=]},
{GW.Enum.ChangelogType.bug, [=[Chatframe fixes]=]},
})
addChange("8.5.3", {
{GW.Enum.ChangelogType.change, [=[Add housing micro button]=]},
{GW.Enum.ChangelogType.bug, [=[Many chat related fixes]=]},
{GW.Enum.ChangelogType.bug, [=[Socket skin error (Mists)]=]},
})
addChange("8.5.2", {
{GW.Enum.ChangelogType.change, [=[Updates for 11.2.7]=]},
})
addChange("8.5.1", {
{GW.Enum.ChangelogType.change, [=[Talent switch works again (Mists)]=]},
})
addChange("8.5.0", {
{GW.Enum.ChangelogType.feature, [=[Added Recent Alliens tab to social panel (retail)]=]},
{GW.Enum.ChangelogType.feature, [=[Add CD Manager skin (retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix character stats lus error (mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix druid mana bar in bear form]=]},
})
addChange("8.4.6", {
{GW.Enum.ChangelogType.bug, [=[Fix era honor lua error]=]},
})
addChange("8.4.5", {
{GW.Enum.ChangelogType.bug, [=[Fix spellbook lua error (era)]=]},
})
addChange("8.4.4", {
{GW.Enum.ChangelogType.bug, [=[Remove not needed and outdated libs]=]},
})
addChange("8.4.3", {
{GW.Enum.ChangelogType.bug, [=[Fix talent tooltip (era)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix rare hunter pet name error (era & mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix objectives tracker (mists)]=]},
})
addChange("8.4.2", {
{GW.Enum.ChangelogType.change, [=[1.15.8 fixes]=]},
})
addChange("8.4.1", {
{GW.Enum.ChangelogType.bug, [=[Fix Bag lua error (Era)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix PetTracker lua error (Retail)]=]},
})
addChange("8.4.0", {
{GW.Enum.ChangelogType.feature, [=[Added option to disable micromenu module]=]},
{GW.Enum.ChangelogType.feature, [=[Added monk stagger value to classpower bar]=]},
{GW.Enum.ChangelogType.bug, [=[Fix Questie Map Coords error (Era & Mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix classpower 'Only show in combat' option when leaving a vehicle]=]},
{GW.Enum.ChangelogType.change, [=[Refactor seperate bag option]=]},
{GW.Enum.ChangelogType.change, [=[TOC update (Mists)]=]},
})
addChange("8.3.5", {
{GW.Enum.ChangelogType.bug, [=[Fix settings dependecies tooltip]=]},
{GW.Enum.ChangelogType.bug, [=[Fix reset profile option]=]},
{GW.Enum.ChangelogType.bug, [=[Fix Paladin classpower]=]},
{GW.Enum.ChangelogType.change, [=[Add missing auctionator frame skin]=]},
{GW.Enum.ChangelogType.change, [=[Update classpower aura handling, this should be a performace boost, if your class has a classpower based on a de/buff]=]},
})
addChange("8.3.4", {
{GW.Enum.ChangelogType.bug, [=[Player powerbar is now correctly hidden in specific situations]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed Lua error for fresh characters]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed Game Menu skin issue when using ConsolePort]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed fading issue with player pet frame icon]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed Lua error in Who-list]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed Lua error when opening the settings menu]=]},
{GW.Enum.ChangelogType.bug, [=[Fixed Lua error in immersive questing when required money is missing (Era & Mists)]=]},
})
addChange("8.3.3",{
{GW.Enum.ChangelogType.bug, [=[Fix wrong classpower color for warlocks (Mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix settings lua error is UI Scale is used]=]},
})
addChange("8.3.2",{
{GW.Enum.ChangelogType.bug, [=[Fix micromenu issue with consoleport addon]=]},
})
addChange("8.3.1",{
{GW.Enum.ChangelogType.change, [=[Settingsframe rework, addons can now hook into it]=]},
{GW.Enum.ChangelogType.bug, [=[Fix TSM Loading issue]=]},
{GW.Enum.ChangelogType.bug, [=[Fix DB migration for old profiles]=]},
{GW.Enum.ChangelogType.bug, [=[Fix druid bear hud background]=]},
{GW.Enum.ChangelogType.bug, [=[Fix quest item not clickable (retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix quest item texture too big (era)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix druid eclipsebar (mists)]=]},
})
addChange("8.3.0",{
{GW.Enum.ChangelogType.change, [=[11.2.0 support]=]},
})
addChange("8.2.8",{
{GW.Enum.ChangelogType.bug, [=[Fix absorb bar toggle]=]},
{GW.Enum.ChangelogType.change, [=[Enable absorb bar toggle on Mists and Retail clients]=]},
})
addChange("8.2.7",{
{GW.Enum.ChangelogType.bug, [=[Fix hunter classpower]=]},
{GW.Enum.ChangelogType.bug, [=[Fix micro stuttering while leaving combat (retail)]=]},
})
addChange("8.2.6",{
{GW.Enum.ChangelogType.bug, [=[Migration lua error for new users]=]},
{GW.Enum.ChangelogType.bug, [=[GW2 Layout creation if max Account Layouts are reached (retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix micromenu moving (mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Copy chat / emote button not clickable (mists & era)]=]},
})
addChange("8.2.5",{
{GW.Enum.ChangelogType.bug, [=[Fix quest sorting (era & mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix reputation text (retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix classpower]=]},
{GW.Enum.ChangelogType.bug, [=[Fix objectives tracker quest item (era)]=]},
})
addChange("8.2.4",{
{GW.Enum.ChangelogType.bug, [=[Fix warbank itemlevel (retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Hide multibars during pet battle (mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix target health % values]=]},
{GW.Enum.ChangelogType.bug, [=[Fix combopoints on target]=]},
{GW.Enum.ChangelogType.bug, [=[Fix minimap instance difficult indicator (retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix actionbar coloring (mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix title filter error (retail)]=]},
})
addChange("8.2.3",{
{GW.Enum.ChangelogType.bug, [=[Loading error]=]},
{GW.Enum.ChangelogType.change, [=[Add more options to player de/buff settings]=]},
})
addChange("8.2.2",{
{GW.Enum.ChangelogType.bug, [=[Bagnator skin error (Mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Objectives tracker actionbutton error (Era)]=]},
})
addChange("8.2.1",{
{GW.Enum.ChangelogType.bug, [=[Arena frame lua error (Mists)]=]},
})
addChange("8.2.0",{
{GW.Enum.ChangelogType.feature, [=[Add option to hide absorb bar on all unitframes]=]},
})
addChange("8.1.9",{
{GW.Enum.ChangelogType.bug, [=[Scenario error (retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Bag sorting (Mists & Era)]=]},
})
addChange("8.1.8",{
{GW.Enum.ChangelogType.bug, [=[Bag opening lag]=]},
{GW.Enum.ChangelogType.bug, [=[Wrong tooltip faction (Retail)]=]},
{GW.Enum.ChangelogType.bug, [=[Friendstooltip show correct game now]=]},
{GW.Enum.ChangelogType.bug, [=[Spellbook tweaks (Mists)]=]},
})
addChange("8.1.7",{
{GW.Enum.ChangelogType.bug, [=[Shadow prist orbs (mists)]=]},
{GW.Enum.ChangelogType.bug, [=[DK runes (mists)]=]},
{GW.Enum.ChangelogType.bug, [=[Unitframe absorb amounts (mists)]=]},
})
addChange("8.1.6",{
{GW.Enum.ChangelogType.bug, [=[Next round of Mists fixes]=]},
})
addChange("8.1.5",{
{GW.Enum.ChangelogType.change, [=[Added temp chi bg texture]=]},
})
addChange("8.1.4",{
{GW.Enum.ChangelogType.bug, [=[Next round of Mists fixes]=]},
})
addChange("8.1.3",{
{GW.Enum.ChangelogType.bug, [=[Fix issue with 8.1.2]=]},
})
addChange("8.1.2",{
{GW.Enum.ChangelogType.bug, [=[More Mists adjustments]=]},
})
addChange("8.1.1",{
{GW.Enum.ChangelogType.bug, [=[More Mists adjustments]=]},
})
addChange("8.1.0",{
{GW.Enum.ChangelogType.bug, [=[Mists support]=]},
})
addChange("8.0.7",{
{GW.Enum.ChangelogType.bug, [=[Fix collection tracking collapse (retail)]=]},
})
addChange("8.0.6",{
{GW.Enum.ChangelogType.bug, [=[Some more fixes for all versions]=]},
})
addChange("8.0.5",{
{GW.Enum.ChangelogType.bug, [=[Fix target level color (era & cata)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix unit level at tooltip (era)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix aura tooltip (era & cata)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix mirror timer (era & cata)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix objectives tooltip (era & cata)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix copying profiles)]=]},
})
addChange("8.0.4",{
{GW.Enum.ChangelogType.bug, [=[Fix microbar moving (cata)]=]},
{GW.Enum.ChangelogType.bug, [=[Readd spellbook and talent setting (cata)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix skyridingbar (retail)]=]},
})
addChange("8.0.3",{
{GW.Enum.ChangelogType.bug, [=[Fix eclips bar on era]=]},
{GW.Enum.ChangelogType.bug, [=[Fix micromenu moving on era and cata]=]},
})
addChange("8.0.2",{
{GW.Enum.ChangelogType.bug, [=[Combopoint error for era and cata]=]},
})
addChange("8.0.1",{
{GW.Enum.ChangelogType.feature, [=[Merged Retail, Era and Cata version]=]},
})
addChange("7.15.0",{
{GW.Enum.ChangelogType.feature, [=[Added more option to unitframe fader]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to extend player powerbar hight (player unitframe)]=]},
{GW.Enum.ChangelogType.change, [=[Add required settings to settings tooltip]=]},
{GW.Enum.ChangelogType.bug, [=[Fix Pawn integration]=]},
})
addChange("7.14.1",{
{GW.Enum.ChangelogType.bug, [=[Fix settings lua error]=]},
})
addChange("7.14.0",{
{GW.Enum.ChangelogType.feature, [=[Added unitframe fader options to all unitframes]=]},
{GW.Enum.ChangelogType.bug, [=[Raidlock error]=]},
{GW.Enum.ChangelogType.bug, [=[Fix buff reminder]=]},
{GW.Enum.ChangelogType.bug, [=[Fix pawn integration]=]},
})
addChange("7.13.2",{
{GW.Enum.ChangelogType.bug, [=[Fix issue with 7.13.1]=]},
})
addChange("7.13.1",{
{GW.Enum.ChangelogType.bug, [=[Hero panel opens for enchants]=]},
{GW.Enum.ChangelogType.bug, [=[Weapon enchants should now show correclty]=]},
{GW.Enum.ChangelogType.bug, [=[Fix Pawn integration]=]},
{GW.Enum.ChangelogType.bug, [=[Raid lock lua error]=]},
{GW.Enum.ChangelogType.change, [=[Redo reputation frame, should load and react faster]=]},
{GW.Enum.ChangelogType.change, [=[Add radio button texture]=]},
{GW.Enum.ChangelogType.change, [=[Added Nightfall to objectives tracker]=]},
{GW.Enum.ChangelogType.change, [=[Update some skins]=]},
{GW.Enum.ChangelogType.change, [=[Added 3 new widget mover to move hud mode]=]},
{GW.Enum.ChangelogType.change, [=[Added some animations]=]},
})
addChange("7.13.0",{
{GW.Enum.ChangelogType.feature, [=[Cooldown Manager skin]=]},
{GW.Enum.ChangelogType.feature, [=[Add paragon indicator to reputation category list]=]},
{GW.Enum.ChangelogType.bug, [=[PetTracker integration now work as expected]=]},
{GW.Enum.ChangelogType.bug, [=[WQT integration now work as expected]=]},
{GW.Enum.ChangelogType.bug, [=[Error when entering delves]=]},
{GW.Enum.ChangelogType.change, [=[Rewritten objectives tracker, should perform much better now]=]},
{GW.Enum.ChangelogType.change, [=[Better CLEU handling with sharing over the addon]=]},
{GW.Enum.ChangelogType.change, [=[Much more optimization over all modules of the addon]=]},
})
addChange("7.12.1",{
{GW.Enum.ChangelogType.change, [=[Skin tweaks]=]},
{GW.Enum.ChangelogType.bug, [=[Fix profile lua error]=]},
{GW.Enum.ChangelogType.bug, [=[Fix FCT lua error]=]},
{GW.Enum.ChangelogType.bug, [=[Castbar channel ticks]=]},
{GW.Enum.ChangelogType.bug, [=[Target frame debuff settings are working again]=]},
})
addChange("7.12.0",{
{GW.Enum.ChangelogType.bug, [=[Update for 11.1.0]=]},
})
addChange("7.11.1",{
{GW.Enum.ChangelogType.bug, [=[Fix actionbar taint]=]},
})
addChange("7.11.0",{
{GW.Enum.ChangelogType.feature, [=[dded option to hide target item level display]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to show Singing Socket gems]=]},
{GW.Enum.ChangelogType.change, [=[Update auctionator skin]=]},
{GW.Enum.ChangelogType.bug, [=[Repuration error]=]},
{GW.Enum.ChangelogType.bug, [=[Notification tooltip]=]},
{GW.Enum.ChangelogType.bug, [=[Fix inverted statusbar]=]},
{GW.Enum.ChangelogType.bug, [=[Party frame auras can stuck sometimes]=]},
})
addChange("7.10.0",{
{GW.Enum.ChangelogType.feature, [=[Added Talking Head Scaler]=]},
{GW.Enum.ChangelogType.feature, [=[Target/Focus frame bars no inverted in inverted mode]=]},
{GW.Enum.ChangelogType.change, [=[Optimize aura handling for all unitframes]=]},
{GW.Enum.ChangelogType.change, [=[Optimize Healthbar and Powerbar handling]=]},
{GW.Enum.ChangelogType.bug, [=[Fix PetTracker loading]=]},
})
addChange("7.9.3",{
{GW.Enum.ChangelogType.change, [=[Remove CUSTOM_CLASS_COLOR support and cahnge it to GW2 Class colors]=]},
{GW.Enum.ChangelogType.change, [=[Add option to set number format]=]},
})
addChange("7.9.2",{
{GW.Enum.ChangelogType.change, [=[TRP3 chat support]=]},
})
addChange("7.9.1",{
{GW.Enum.ChangelogType.change, [=[TRP3 chat support]=]},
})
addChange("7.9.0",{
{GW.Enum.ChangelogType.feature, [=[Added grid out of range alpha value setting]=]},
{GW.Enum.ChangelogType.feature, [=[Added custom class color support]=]},
{GW.Enum.ChangelogType.change, [=[Update more dropdowns]=]},
{GW.Enum.ChangelogType.change, [=[Use local number delimiter]=]},
{GW.Enum.ChangelogType.change, [=[11.0.7 changes]=]},
{GW.Enum.ChangelogType.bug, [=[Fix PetTracker integration]=]},
{GW.Enum.ChangelogType.bug, [=[Fix Blizzard mirror timer not shown]=]},
{GW.Enum.ChangelogType.bug, [=[Setting search works again]=]},
})
addChange("7.8.0",{
{GW.Enum.ChangelogType.feature, [=[Add option to hook profiles to a spec. This will switch the profile on spec switch]=]},
{GW.Enum.ChangelogType.feature, [=[Add todoloo support for GW2 Objectives tracker]=]},
{GW.Enum.ChangelogType.feature, [=[Add searchbox for player titles]=]},
{GW.Enum.ChangelogType.feature, [=[Add slash command to clear tracked but already earned achievements (blizzard bug): /gw2 clear achievements]=]},
{GW.Enum.ChangelogType.feature, [=[Add option to change profile icons]=]},
{GW.Enum.ChangelogType.feature, [=[Add TRP3 support for GW2 chatbubbles]=]},
{GW.Enum.ChangelogType.change, [=[Added fraction icons to the guild datatext]=]},
{GW.Enum.ChangelogType.change, [=[Change all dropdown elements to new blizzard ui system]=]},
{GW.Enum.ChangelogType.change, [=[Allow max 4 watched tokens with gw2 bags enabled]=]},
{GW.Enum.ChangelogType.bug, [=[Objectives tracker bonus step names]=]},
{GW.Enum.ChangelogType.bug, [=[Achievement skin scroll height]=]},
{GW.Enum.ChangelogType.bug, [=[Grid aura indicators now only shows player auras]=]},
{GW.Enum.ChangelogType.bug, [=[Fix dodgebar for some classes]=]},
{GW.Enum.ChangelogType.bug, [=[Fix objectives tracker loading order]=]},
})
addChange("7.7.2",{
{GW.Enum.ChangelogType.bug, [=[Guild data info lua error]=]},
{GW.Enum.ChangelogType.change, [=[Skin updates]=]},
{GW.Enum.ChangelogType.change, [=[Guild data info text]=]},
{GW.Enum.ChangelogType.change, [=[Stackcount setting]=]},
})
addChange("7.7.1",{
{GW.Enum.ChangelogType.change, [=[Add Dracthyr fraction to tooltip]=]},
{GW.Enum.ChangelogType.change, [=[Add stackcount to tooltip]=]},
{GW.Enum.ChangelogType.change, [=[Changes for 11.0.5]=]},
})
addChange("7.7.0",{
{GW.Enum.ChangelogType.feature, [=[Option to copy a single chat line]=]},
{GW.Enum.ChangelogType.feature, [=[Option to show chat history]=]},
{GW.Enum.ChangelogType.feature, [=[Option to show channel ticks on castbar]=]},
{GW.Enum.ChangelogType.feature, [=[Option to control the grid name update frequence to save some fps]=]},
{GW.Enum.ChangelogType.feature, [=[Add mastery buff to raid buff reminder]=]},
{GW.Enum.ChangelogType.change, [=[Jailers tower error]=]},
{GW.Enum.ChangelogType.change, [=[Social frame lua error]=]},
{GW.Enum.ChangelogType.change, [=[Player castbar sometimes stuck on screen]=]},
{GW.Enum.ChangelogType.change, [=[Update some skins]=]},
{GW.Enum.ChangelogType.change, [=[Add warband reputation indicator]=]},
})
addChange("7.6.0",{
{GW.Enum.ChangelogType.feature, [=[Add option to shorten healtglobe shield values]=]},
{GW.Enum.ChangelogType.feature, [=[Add option to hide player frame at party grid]=]},
{GW.Enum.ChangelogType.feature, [=[Add option to hide class icons at grids, if no class color is used]=]},
{GW.Enum.ChangelogType.bug, [=[Fix drawn layer of lfg accept button]=]},
{GW.Enum.ChangelogType.bug, [=[Fix BigWigs integration]=]},
{GW.Enum.ChangelogType.change, [=[Add Monk hero talent to dodgebar]=]},
{GW.Enum.ChangelogType.change, [=[Added theater event timer bar to objectives tracker]=]},
{GW.Enum.ChangelogType.change, [=[Update some skins]=]},
})
addChange("7.5.0",{
{GW.Enum.ChangelogType.feature, [=[Add option to shorten values, like health values or damage text]=]},
{GW.Enum.ChangelogType.bug, [=[Fix new font settings]=]},
{GW.Enum.ChangelogType.bug, [=[fix LSM with new fonts]=]},
})
addChange("7.4.0",{
{GW.Enum.ChangelogType.feature, [=[New Font system
- You can now select between multiple different font styles
- 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
- To select the font like before this update, use 'GW2 Legacy']=]},
{GW.Enum.ChangelogType.feature, [=[Tooltips gets font size option for all 3 types]=]},
{GW.Enum.ChangelogType.feature, [=[Added TWW events to the event tracker]=]},
{GW.Enum.ChangelogType.feature, [=[Added auction house skin]=]},
{GW.Enum.ChangelogType.feature, [=[Added fx animation to the dynamic hud (not all classes yet)]=]},
{GW.Enum.ChangelogType.feature, [=[Added remaning live to delve tracker]=]},
{GW.Enum.ChangelogType.feature, [=[Find an small easter agg with the GW2 settings splash screen]=]},
{GW.Enum.ChangelogType.change, [=[Add DK hero talent to dodgebar]=]},
{GW.Enum.ChangelogType.change, [=[Update some textures]=]},
{GW.Enum.ChangelogType.change, [=[Update some skins]=]},
{GW.Enum.ChangelogType.bug, [=[Fix barber shop skin]=]},
})
addChange("7.3.0",{
{GW.Enum.ChangelogType.feature, [=[Delves support for objectives tracker]=]},
{GW.Enum.ChangelogType.feature, [=[Added group progress to objectives tooltip]=]},
{GW.Enum.ChangelogType.change, [=[Update some skins]=]},
{GW.Enum.ChangelogType.bug, [=[Objectives tracker auto turn in quests]=]},
{GW.Enum.ChangelogType.bug, [=[Totem tracker should work again]=]},
})
addChange("7.2.0",{
{GW.Enum.ChangelogType.feature, [=[Talent frame skin]=]},
{GW.Enum.ChangelogType.feature, [=[Tooltip Item Count now has options Include Reagents and Include Warband]=]},
{GW.Enum.ChangelogType.feature, [=[Keybind support for immersive questing]=]},
{GW.Enum.ChangelogType.feature, [=[Keybind support for gossip skin]=]},
{GW.Enum.ChangelogType.feature, [=[Stancebar can now be disabled]=]},
{GW.Enum.ChangelogType.feature, [=[DK runes now get sorted based on there progress]=]},
{GW.Enum.ChangelogType.feature, [=[Add timer to tracked achievements]=]},
{GW.Enum.ChangelogType.feature, [=[New immersive questing backgrounds for TWW]=]},
{GW.Enum.ChangelogType.change, [=[Chat frame alert color is now saved per character]=]},
{GW.Enum.ChangelogType.change, [=[Update some skins]=]},
{GW.Enum.ChangelogType.change, [=[Update imported debuffs]=]},
{GW.Enum.ChangelogType.bug, [=[EJ skin error]=]},
{GW.Enum.ChangelogType.bug, [=[Raid frame ignored auras works again]=]},
{GW.Enum.ChangelogType.bug, [=[Fix GW2_Layout creation process]=]},
})
addChange("7.1.0",{
{GW.Enum.ChangelogType.feature, [=[Added option to skin blizzards default actionbars
That function disabled our managed actionbars and there hooked features]=]},
{GW.Enum.ChangelogType.feature, [=[Adventuremap skin]=]},
{GW.Enum.ChangelogType.bug, [=[Objectives tracker actionbutton works again]=]},
{GW.Enum.ChangelogType.bug, [=[Error handler shows only GW2 errors]=]},
{GW.Enum.ChangelogType.bug, [=[M+ progess counter should show correect % again (raw value is not possible atm)]=]},
{GW.Enum.ChangelogType.bug, [=[Fix minimap lua error]=]},
{GW.Enum.ChangelogType.change, [=[Added TRP3 tooltips support]=]},
{GW.Enum.ChangelogType.change, [=[Immersive Question changes and improvements]=]},
})
addChange("7.0.2",{
{GW.Enum.ChangelogType.change, [=[Added self reading animation to immersive questing]=]},
{GW.Enum.ChangelogType.bug, [=[Fix error handler]=]},
{GW.Enum.ChangelogType.bug, [=[Fix objective tracker action button handling]=]},
{GW.Enum.ChangelogType.bug, [=[Fix event objectives click functions]=]},
{GW.Enum.ChangelogType.bug, [=[Fix currency transfer taint error]=]},
{GW.Enum.ChangelogType.bug, [=[Fix ouf range indicator]=]},
})
addChange("7.0.1",{
{GW.Enum.ChangelogType.bug, [=[First round of fixes]=]},
})
addChange("7.0.0",{
{GW.Enum.ChangelogType.change, [=[Update for TWW]=]},
})
addChange("6.14.10",{
{GW.Enum.ChangelogType.bug, [=[Show character item info now works correctly]=]},
{GW.Enum.ChangelogType.change, [=[Export some api]=]},
})
addChange("6.14.9",{
{GW.Enum.ChangelogType.change, [=[Export some api]=]},
})
addChange("6.14.8",{
{GW.Enum.ChangelogType.change, [=[Update toc]=]},
})
addChange("6.14.7",{
{GW.Enum.ChangelogType.change, [=[Prepare for 10.2.7]=]},
})
addChange("6.14.6",{
{GW.Enum.ChangelogType.bug, [=[Fix GW2 slash commands]=]},
{GW.Enum.ChangelogType.bug, [=[Fix merchant frame next/prev page button position]=]},
{GW.Enum.ChangelogType.bug, [=[Fix lua error if our minimap is disableds]=]},
{GW.Enum.ChangelogType.bug, [=[Fix character itemlevel was not shown]=]},
})
addChange("6.14.5",{
{GW.Enum.ChangelogType.bug, [=[Party frame visibility]=]},
})
addChange("6.14.4",{
{GW.Enum.ChangelogType.bug, [=[Tooltip M+ lua error]=]},
})
addChange("6.14.3",{
{GW.Enum.ChangelogType.bug, [=[Party visibility]=]},
})
addChange("6.14.2",{
{GW.Enum.ChangelogType.change, [=[Update for 10.2.6]=]},
})
addChange("6.14.1",{
{GW.Enum.ChangelogType.bug, [=[Fix details profile]=]},
{GW.Enum.ChangelogType.bug, [=[Fix player debuff show wrong icon texture]=]},
{GW.Enum.ChangelogType.bug, [=[Fix gossip skin text height]=]},
{GW.Enum.ChangelogType.bug, [=[Fix small unitframe height]=]},
{GW.Enum.ChangelogType.bug, [=[Fix ToT mover]=]},
{GW.Enum.ChangelogType.bug, [=[Fix playerframe level up icon]=]},
{GW.Enum.ChangelogType.bug, [=[Fix objectiv tracker hover not showing all details]=]},
{GW.Enum.ChangelogType.bug, [=[Fix creating new profile]=]},
{GW.Enum.ChangelogType.change, [=[Update merchant skin]=]},
{GW.Enum.ChangelogType.change, [=[Change castbar mover frame beased on details option]=]},
{GW.Enum.ChangelogType.change, [=[Added Masque actionbutton skin]=]},
})
addChange("6.14.0", {
{GW.Enum.ChangelogType.feature, [=[Added Big Dig event timer]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to change pulltimer seconds]=]},
{GW.Enum.ChangelogType.bug, [=[Raidframes name overlapping]=]},
{GW.Enum.ChangelogType.bug, [=[Chat install process]=]},
{GW.Enum.ChangelogType.bug, [=[Alt player background setting]=]},
{GW.Enum.ChangelogType.bug, [=[Colorpicker error]=]},
})
addChange("6.13.3",{
{GW.Enum.ChangelogType.bug, [=[Remove print statement]=]},
})
addChange("6.13.2",{
{GW.Enum.ChangelogType.bug, [=[Fix profile page error]=]},
{GW.Enum.ChangelogType.bug, [=[Fix db migration error]=]},
{GW.Enum.ChangelogType.bug, [=[Handle evoker soar correct]=]},
})
addChange("6.13.1",{
{GW.Enum.ChangelogType.bug, [=[Fix error a profile rename]=]},
})
addChange("6.13.0",{
{GW.Enum.ChangelogType.feature, [=[Switch to a new database format to better handle profiles. That requires a reload after the first login on each character.]=]},
{GW.Enum.ChangelogType.feature, [=[Added right click function to the minimaps expansion icon to show also the landing pages from previous addons]=]},
{GW.Enum.ChangelogType.feature, [=[Added animated statusbars to the pet frame]=]},
{GW.Enum.ChangelogType.feature, [=[Added copy/paste function to colorpicker]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to disable objectives statusbars to have a more compact objectives tracker]=]},
{GW.Enum.ChangelogType.change, [=[Some more settings does not requires a reload]=]},
{GW.Enum.ChangelogType.bug, [=[Fix stancebar error. You can now use the button in combat again]=]},
{GW.Enum.ChangelogType.bug, [=[Fix worldmap event tracker container size]=]},
{GW.Enum.ChangelogType.bug, [=[Fix tank frame middle icon]=]},
{GW.Enum.ChangelogType.bug, [=[Fix auraindicators updating]=]},
{GW.Enum.ChangelogType.bug, [=[GW2 setting window is now moveable]=]},
})
addChange("6.12.0",{
{GW.Enum.ChangelogType.feature, [=[Added new paladin classpower texture and animation]=]},
{GW.Enum.ChangelogType.feature, [=[Added new arms warrior classpower]=]},
{GW.Enum.ChangelogType.feature, [=[Update GW2 boss frames, they are now unitframes]=]},
{GW.Enum.ChangelogType.feature, [=[Added options to toggle grid rol icons, tank icons and leader icons]=]},
{GW.Enum.ChangelogType.change, [=[Adjust grid out of range alpha value]=]},
{GW.Enum.ChangelogType.change, [=[Update grid to work again with OmniCD]=]},
{GW.Enum.ChangelogType.bug, [=[Fix PP mode get saved correctly]=]},
{GW.Enum.ChangelogType.bug, [=[Fix move HUD grid]=]},
{GW.Enum.ChangelogType.bug, [=[Fix immersive Questing taint issue]=]},
{GW.Enum.ChangelogType.bug, [=[Fix arena frame lua errors]=]},
{GW.Enum.ChangelogType.bug, [=[Fix classpower error in combat]=]},
})
addChange("6.11.1",{
{GW.Enum.ChangelogType.bug,[=[Correct LEMO integration which was causing an lua error during installation process]=]},
{GW.Enum.ChangelogType.bug,[=[Tweak Event Timer height]=]},
})
addChange("6.11.0",{
{GW.Enum.ChangelogType.feature, [=[Redo all grids: Party, Raid, Raid Pet]=]},
{GW.Enum.ChangelogType.feature, [=[Grids are now secure and can update during combat]=]},
{GW.Enum.ChangelogType.feature, [=[Added new grids:
- Maintank
- Raid 10
- Raid 25
- Raid 40]=]},
{GW.Enum.ChangelogType.feature, [=[Raid grids switch automaticly between the 3 raid grids, based on the number of players at the raid]=]},
{GW.Enum.ChangelogType.feature, [=[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]=]},
{GW.Enum.ChangelogType.feature, [=[All grids have there individual settings (Raid 10, Raid 25, Raid 40, Maintank, Raid Pet, Group)]=]},
{GW.Enum.ChangelogType.feature, [=[Added Superbloom event timer to worldmap]=]},
{GW.Enum.ChangelogType.feature, [=[Added options to change the worldmap coordinats lable]=]},
{GW.Enum.ChangelogType.feature, [=[Added option to hide classpower bar outside of combat]=]},
{GW.Enum.ChangelogType.change, [=[Update for 10.2.0]=]},
{GW.Enum.ChangelogType.change, [=[Update RAF skin]=]},
{GW.Enum.ChangelogType.change, [=[Update Time Manager skin]=]},
{GW.Enum.ChangelogType.change, [=[Added back right click option on bags]=]},
{GW.Enum.ChangelogType.change, [=[Added S3 raid debuffs]=]},
{GW.Enum.ChangelogType.change, [=[Adjust damage text animations]=]},
{GW.Enum.ChangelogType.change, [=[Update TaintLess]=]},
{GW.Enum.ChangelogType.bug, [=[Fix ready check skin]=]},
{GW.Enum.ChangelogType.bug, [=[Fix blurr on raid warning font]=]},
{GW.Enum.ChangelogType.bug, [=[Fix Pet Tracker and WQT Anchor points]=]},
{GW.Enum.ChangelogType.bug, [=[Fix travler log header stucking after tracking activity is completed]=]},
{GW.Enum.ChangelogType.bug, [=[Fix some taints]=]},
})
addChange("6.10.1",{
{GW.Enum.ChangelogType.bug,[=[10.1.7 fixes]=]},
})
addChange("6.10.0",{
{GW.Enum.ChangelogType.bug,[=[Added evoker ebon might bar]=]},
})
addChange("6.9.2",{
{GW.Enum.ChangelogType.bug,[=[Fix an actionbars issue which can crash the client]=]},
})
addChange("6.9.1",{
{GW.Enum.ChangelogType.bug,[=[More 10.1.5 related fixes]=]},
})
addChange("6.9.0",{
{GW.Enum.ChangelogType.feature,[=[Added font settings for GW2 floating combat text]=]},
{GW.Enum.ChangelogType.change,[=[Update for 10.1.5]=]},
})
addChange("6.8.2",{
{GW.Enum.ChangelogType.bug,[=[Fix druid little manabar in cat form with player frame in target frame style]=]},
{GW.Enum.ChangelogType.bug,[=[Try to handle bags correctly for accounts with not 2FA]=]},
})
addChange("6.8.1",{
{GW.Enum.ChangelogType.bug,[=[Fix buff/debuff auto anchor]=]},
{GW.Enum.ChangelogType.bug,[=[Fix buff/debuff max wraps setting]=]},
{GW.Enum.ChangelogType.bug,[=[Fix socket skin lua error]=]},
{GW.Enum.ChangelogType.bug,[=[Fix Pet Tracker integration]=]},
{GW.Enum.ChangelogType.change,[=[Added LibUIDropDownMenu to prevent drop down taints]=]},
{GW.Enum.ChangelogType.change,[=[Added Diablo 4 to friends data info]=]},
{GW.Enum.ChangelogType.change,[=[Update LibEditModeOverride]=]},
})
addChange("6.8.0",{
{GW.Enum.ChangelogType.feature,[=[Added option to adjust player de/buff horizontal and vertical spacing]=]},
{GW.Enum.ChangelogType.feature,[=[Added option to adjust player de/buff max wrap of lines]=]},
{GW.Enum.ChangelogType.feature,[=[Added support for the add PetTracker: Now included at GW2 objectives]=]},
{GW.Enum.ChangelogType.feature,[=[Added evoker bleeding support]=]},
{GW.Enum.ChangelogType.bug,[=[Avoid possible tooltip taint]=]},
{GW.Enum.ChangelogType.bug,[=[Fix casting bar lua error at pvp with an evoker]=]},
{GW.Enum.ChangelogType.bug,[=[Fix rare migration process issue]=]},
{GW.Enum.ChangelogType.bug,[=[Fix M+ dungeon icon border color at the lfg frame]=]},
{GW.Enum.ChangelogType.change,[=[Tweak some hover textures]=]},
{GW.Enum.ChangelogType.change,[=[Cooldown round numbers are more accurate now]=]},
})
addChange("6.7.3",{
{GW.Enum.ChangelogType.bug,[=[Fix friends frame lua error]=]},
{GW.Enum.ChangelogType.bug,[=[Fix encounterjornal taint issue]=]},
})
addChange("6.7.2",{
{GW.Enum.ChangelogType.bug,[=[Fix player frame in target frame style]=]},
{GW.Enum.ChangelogType.bug,[=[Fix immersive questing error]=]},
{GW.Enum.ChangelogType.bug,[=[Fix healtglobe error]=]},
})
addChange("6.7.1",{
{GW.Enum.ChangelogType.bug,[=[Fix hero panel anchor error]=]},
{GW.Enum.ChangelogType.bug,[=[Fix party frame healthtext error]=]},
{GW.Enum.ChangelogType.bug,[=[Fix hero panel item info error]=]},
{GW.Enum.ChangelogType.bug,[=[Fix target castingbar texture]=]},
{GW.Enum.ChangelogType.bug,[=[Fix pet grid error]=]},
{GW.Enum.ChangelogType.change,[=[Handle addon compartment button and add a toggle to hide that button]=]},
})
addChange("6.7.0",{
{GW.Enum.ChangelogType.feature,[=[Added private aura support)]=]},
{GW.Enum.ChangelogType.feature,[=[Redo the statusbars and add custom animations to the classpower and ressource bars]=]},
{GW.Enum.ChangelogType.bug,[=[Added passive talents back to spellbook]=]},
{GW.Enum.ChangelogType.bug,[=[Tweak vignett alerts to not spam]=]},
{GW.Enum.ChangelogType.bug,[=[Fix talent micro button taint error]=]},
{GW.Enum.ChangelogType.bug,[=[Fix bank taint issue]=]},
{GW.Enum.ChangelogType.bug,[=[Fix vigor bar hidding]=]},
{GW.Enum.ChangelogType.change,[=[Update for 10.1]=]},
{GW.Enum.ChangelogType.change,[=[Make achievement frame movable]=]},
{GW.Enum.ChangelogType.change,[=[Update S2 debuffs]=]},
})
addChange("6.6.1",{
{GW.Enum.ChangelogType.bug,[=[Fix rare lua error during open the worldmap with active worldmap skin]=]},
{GW.Enum.ChangelogType.bug,[=[Fix issue were is was impossible to buy bank slots]=]},
{GW.Enum.ChangelogType.bug,[=[Fix macro and gear manager icon selection]=]},
{GW.Enum.ChangelogType.change,[=[Added tooltips to equipment selection mode]=]},
{GW.Enum.ChangelogType.change,[=[GW2 achievement frame skin is now compatible with 'Krowi's Achievement Filter' (requires version 55.0 and higher)]=]},
})
addChange("6.6.0",{
{GW.Enum.ChangelogType.feature,[=[Added 2 new damage text styles: Stacking and Classic (with anchor to nameplats or center of the screen)]=]},
{GW.Enum.ChangelogType.feature,[=[Added option to show healing numbers for these 2 new styles (classic only with anchor to the center of the screen)]=]},
{GW.Enum.ChangelogType.bug,[=[Fix move hud error if the frames gets moved back to it default position]=]},
{GW.Enum.ChangelogType.bug,[=[Fix raid frame summon and resurrection icon]=]},