forked from zarnivoop/skada
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersion.lua
More file actions
executable file
·103 lines (103 loc) · 2.7 KB
/
Copy pathVersion.lua
File metadata and controls
executable file
·103 lines (103 loc) · 2.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
local _, Skada = ...
Skada.versions = {
{
id = "2.2.0",
title = "Skada 2.2.0",
message = "Polish, encounter names, and release workflow",
changes = {
"User interface polish and improvements",
"Encounter name improvements",
"Added GitHub release workflow",
"Fixed various bugs and edge cases",
}
},
{
id = "2.1.0",
title = "Skada 2.1.0",
message = "Basic cleanup: bug fixes, UI polish, encounter names, GitHub release workflow",
changes = {
"Bug fixes and general cleanup",
"User interface polish",
"Encounter name improvements",
"Added GitHub release workflow",
}
},
{
id = "2.0.2",
title = "Skada 2.0.2",
message = "New themes and performance improvements",
changes = {
"Added several new themes",
"Removed old start/stop segment (no longer possible)",
"Performance improvements",
}
},
{
id = "2.0.1",
title = "Skada 2.0.1",
message = "Initial Midnight fixes and minor improvements",
changes = {
"Fixed minimap toggle",
"Simplified themes",
"Fixed broker and inline display issues",
}
},
{
id = "2.0.0",
title = "Skada 2.0.0",
message = "Adapted for WoW 12.0, Midnight. Now using data provided by the built-in damage meter.",
changes = {
"Basic rework and simplification for WoW 12.0",
"Some modules have been disabled for now",
}
},
{
id = "1.10.0",
title = "Skada 1.10.0",
message = "A ton of small fixes and improvements to bring the addon to a more up to date state.",
changes = {
"Value columns reworked into something more readable",
"Bar display windows now snap to nearest size",
"Power Gains modes reworked into one mode",
}
},
{
id = "1.8.0",
title = "Skada 1.8.0",
message = "Updated for 9.0!",
changes = {
"Pets without a unit will be properly associated with their owner",
}
},
{
id = "1.6.7",
title = "Skada 1.6.7",
message = "Added new overview modes",
changes = {
"Buffs overview mode showing spells used",
"Debuffs overview mode showing spells used",
"Clicking a spell shows the corresponding players",
}
},
{
id = "1.6.4",
title = "Skada 1.6.4",
message = "Quality of life improvements",
changes = {
"Added a new update frequency option",
"Added a new notification system (LibNotify) to display version information unobtrusively",
}
},
{
id = "1.6.3",
title = "Skada 1.6.3",
message = "Roundup of recent changes",
changes = {
"Added a Smooth Bars option, for smoothly animated bar changes. Note that this does come at a performance cost.",
"Mode list is now sorted by how often you use the modes.",
"Added spell school color and tooltip info.",
"Doubled default update frequency.",
"Fixed a compatibility issue for RealUI users.",
}
},
}