-
Notifications
You must be signed in to change notification settings - Fork 6
/
SkilletNewsData.lua
352 lines (347 loc) · 9.24 KB
/
SkilletNewsData.lua
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
local addonName,addonTable = ...
local DA = _G[addonName] -- for DebugAids.lua
--[[
Skillet: A tradeskill window replacement.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
]]--
local L = Skillet.L
local isRetail = WOW_PROJECT_ID == WOW_PROJECT_MAINLINE
local isClassic = WOW_PROJECT_ID == WOW_PROJECT_CLASSIC
local isBCC = WOW_PROJECT_ID == WOW_PROJECT_BURNING_CRUSADE_CLASSIC
local isWrath = WOW_PROJECT_ID == WOW_PROJECT_WRATH_CLASSIC
local isCata = WOW_PROJECT_ID == WOW_PROJECT_CATACLYSM_CLASSIC
Skillet.NewsName = "Skillet News"
Skillet.NewsData = {
{ version = "5.36",
data = {
{ name = "Changes",
data = {
{ header = "Mod Keys", body = "Add '/skillet swapshiftkey' to change default shift behavior" },
},
},
},
},
{ version = "5.35",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 110005" },
},
},
{ name = "Fixes",
data = {
{ header = "Queuing", body = "Add more error checks" },
},
},
},
},
{ version = "5.34",
data = {
{ name = "Changes",
data = {
{ header = "Warband Bank", body = "Keep track of Warband (Account) bank" },
{ header = "Wowhead URL", body = "Add to recipe right-click menu" },
{ header = "Queuing", body = "Add more right-click queue to top" },
},
},
{ name = "Fixes",
data = {
{ header = "EasyMenu", body = "Replace EasyMenu calls" },
{ header = "Sorting", body = "Add more error checks" },
{ header = "Plugins", body = "Auctionator error checks" },
{ header = "Tooltips", body = "Use GameTooltip instead of SkilletTradeskillTooltip" },
{ header = "Localization", body = "Add localization to some error strings" },
},
},
},
},
{ version = "5.33",
data = {
{ name = "Changes",
data = {
{ header = "Skill Levels", body = "Separate skill level data into two files" },
},
},
{ name = "Fixes",
data = {
{ header = "Shopping List", body = "Fix issue #98, items outside of frame" },
},
},
},
},
{ version = "5.32",
data = {
{ name = "Fixes",
data = {
{ header = "All", body = "Fix GetSpellInfo calls" },
},
},
},
},
{ version = "5.31",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 110002" },
},
},
{ name = "Fixes",
data = {
{ header = "Inventory", body = "Add Warband Bank" },
{ header = "TradeSkills", body = "Fix TradeSkill buttons" },
},
},
},
},
{ version = "5.30",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 110000" },
},
},
{ name = "Fixes",
data = {
{ header = "ShowOptions", body = "Fix ShowOptions()" },
{ header = "Display required level", body = "Fix width when Grouping is 'Flat'" },
},
},
},
},
{ version = "5.28",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 100207" },
{ header = "TOC", body = "Sync SkillLevelData with Skillet-Classic" },
},
},
},
},
{ version = "5.27",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 100206" },
},
},
},
},
{ version = "5.26",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 100205" },
},
},
},
},
{ version = "5.25",
data = {
{ name = "Fixes",
data = {
{ header = "Issues", body = "Fix attempt to perform arithmetic on local 'have' (a nil value)" },
},
},
},
},
{ version = "5.24",
data = {
{ name = "New Features",
data = {
{ header = "Queuing", body = "Ignore queued reagents. Queuing recipes which share reagents will queue all of them" },
{ header = "Shopping", body = "Ignore items on hand. The shopping list will reflect everything needed to process the queue" },
},
},
},
},
{ version = "5.23",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 100200" },
},
},
},
},
{ version = "5.22",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 100107" },
},
},
},
},
{ version = "5.21",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC to 100105" },
},
},
},
},
{ version = "5.20",
data = {
{ name = "Changes",
data = {
{ header = "Clean up", body = "Move db.char to db.profile" },
{ header = "Reagents", body = "Add more reagent slots" },
{ header = "Required Reagents", body = "Add required reagents (optionals with required=true)" },
},
},
},
},
{ version = "5.19",
data = {
{ name = "Changes",
data = {
{ header = "Auctionator", body = "Fix plugin quality issues\nMove the Auctionator button" },
{ header = "Queuing", body = "Add one at a time option\n false = Queue items with modified reagents all at once\n true = Queue items with modified reagents one by one" },
},
},
},
},
{ version = "5.18",
data = {
{ name = "Changes",
data = {
{ header = "Cleanup", body = "Code Cleanup" },
},
},
},
},
{ version = "5.17",
data = {
{ name = "Fixes",
data = {
{ header = "Issues", body = "Fix scrolling" },
},
},
},
},
{ version = "5.16",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Add addon icon" },
},
},
},
},
{ version = "5.14",
data = {
{ name = "Fixes",
data = {
{ header = "TOC", body = "Update TOC to 100100" },
},
},
{ name = "New Features",
data = {
{ header = "Table", body = "Add customPrice table" },
{ header = "Commands", body = "Add \"/skillet customadd\", \"/skillet customdel\", \"/skillet customshow\", \"/skillet customclear\"," },
{ header = "Plugins", body = "Auctionator refactor code and use customPrice table for costs" },
},
},
},
},
{ version = "5.13",
data = {
{ name = "Fixes",
data = {
{ header = "Issues", body = "Fix #86, Blizzard Frame is invisible" },
},
},
},
},
{ version = "5.10",
data = {
{ name = "New Features",
data = {
{ header = "Filter", body = "Add an option to display learned and unlearned recipes at the same time. Unlearned recipes will be prefixed with a '-' sign"},
{ header = "Queue", body = "Add right-click on the \"Queue\" button to queue to the front" },
},
},
},
},
{ version = "5.09",
data = {
{ name = "New Features",
data = {
{ header = "News", body = "Add News with options to display Always, Once (each version change) per Account, Once (each version change) per Player, and Never" },
{ header = "Commands", body = "Add \"/skillet news\" to open (or close) the news frame" },
},
},
{ name = "Changes",
data = {
{ header = "Queuing", body = "Better queuing of modified craftable reagents" },
{ header = "Tooltips", body = "Add tooltip to unselected salvage, optional, and finishing reagents" },
},
},
},
},
{ version = "5.08",
data = {
{ name = "Fixes",
data = {
{ header = "Issues", body = "Fix #84, fetch modified reagents from banks" },
},
},
},
},
{ version = "5.07",
data = {
{ name = "Fixes",
data = {
{ header = "Issues", body = "Fix #84, reorder local ShoppingList functions" },
},
},
},
},
{ version = "5.06",
data = {
{ name = "Fixes",
data = {
{ header = "Titlebar", body = "Fix gradient" },
{ header = "Shoppinglist", body = "Fix sort error" },
},
},
{ name = "Changes",
data = {
{ header = "Wago", body = "Add X-Wago-ID" },
{ header = "Debug", body = "Add second level trace function" },
{ header = "Plugins", body = "Add ProcessQueue plugin hook" },
{ header = "Events", body = "Move bag events to ShoppingList.lua" },
},
},
},
},
{ version = "5.05",
data = {
{ name = "Fixes",
data = {
{ header = "Titlebar", body = "Restore gradient" },
},
},
{ name = "Changes",
data = {
{ header = "Right-Click", body = "Move Salvage, Modified, Optional, and Finishing list opening to Right-Click (or Alt-Click)" },
{ header = "Shift-Click", body = "Add links to Modified reagents" },
{ header = "Left-Click", body = "Add open modified craftable reagents" },
{ header = "Plugins", body = "Add ProcessQueue plugin hook" },
{ header = "Events", body = "Move bag events to ShoppingList.lua" },
},
},
},
},
}