-
Notifications
You must be signed in to change notification settings - Fork 6
/
SkilletNewsData.lua
494 lines (489 loc) · 11.7 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
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
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-Classic News"
Skillet.NewsData = {
{ version = "2.05",
data = {
{ name = "Fixes",
data = {
{ header = "Plugins", body = "Fix Auctionator sorting errors" },
{ header = "Combat", body = "Add another check for in combat" },
},
},
{ name = "Changes",
data = {
{ header = "Recipes", body = "Remove 'Link Recipe' from Classic Era right-click menu" },
{ header = "Recipes", body = "Add 'List Reagents' to Classic Era right-click menu" },
},
},
},
},
{ version = "2.04",
data = {
{ name = "Fixes",
data = {
{ header = "XML", body = "Fix frame backdrop" },
},
},
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC" },
},
},
},
},
{ version = "2.03",
data = {
{ name = "Fixes",
data = {
{ header = "EasyMenu", body = "Replace EasyMenu calls" },
},
},
{ name = "Changes",
data = {
{ header = "Queuing", body = "Add more right-click queue to top" },
},
},
},
},
{ version = "2.02",
data = {
{ name = "Changes",
data = {
{ header = "Recipes", body = "Add option to select top recipe" },
{ header = "TOC", body = "Update TOC" },
},
},
},
},
{ version = "2.01",
data = {
{ name = "Changes",
data = {
{ header = "Wowhead URL", body = "Add to recipe right-click menu" },
},
{ name = "Fixes",
data = {
{ header = "Options", body = "Fix Skillet:ShowOptions()" },
},
},
},
},
},
{ version = "2.00",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC" },
{ header = "Packaging", body = "Change to single build" },
},
},
},
},
{ version = "1.99",
data = {
{ name = "Changes",
data = {
{ header = "Skill Levels", body = "Separate skill level data into two files" },
},
},
{ name = "Fixes",
data = {
{ header = "Shopping List", body = "Fix for items displaying outside of frame" },
},
},
},
},
{ version = "1.98",
data = {
{ name = "Fixes",
data = {
{ header = "Skill Levels", body = "Remove conditionals in SkillLevel data" },
},
},
},
},
{ version = "1.97",
data = {
{ name = "Fixes",
data = {
{ header = "Skill Level", body = "Fix for issue #184" },
},
},
},
},
{ version = "1.96",
data = {
{ name = "Fixes",
data = {
{ header = "Display required level", body = "Fixes for issues #181, #182" },
},
},
},
},
{ version = "1.95",
data = {
{ name = "Fixes",
data = {
{ header = "Display required level", body = "Fix for issue #180" },
},
},
},
},
{ version = "1.94",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC" },
},
},
},
},
{ version = "1.93",
data = {
{ name = "Changes",
data = {
{ header = "Combat Crafting", body = "Fix partial fix for issue #114" },
},
},
},
},
{ version = "1.92",
data = {
{ name = "Changes",
data = {
{ header = "Queue Processing", body = "Fix issue #176" },
{ header = "Combat Crafting", body = "Partial fix for issue #114" },
{ header = "Enchanting", body = "Update Enchanting Scroll data" },
},
},
},
},
{ version = "1.91",
data = {
{ name = "Changes",
data = {
{ header = "Skill Levels", body = "Fix issue #173" },
},
},
},
},
{ version = "1.90",
data = {
{ name = "Changes",
data = {
{ header = "Skill Levels", body = "Add conditional data\nFix issue #171" },
{ header = "Automation", body = "Add right click 'Queue' selected recipes\nAdd keybinding for 'Process' button" },
},
},
},
},
{ version = "1.89",
data = {
{ name = "Changes",
data = {
{ header = "Enchanting", body = "Fix for issue #168" },
},
},
},
},
{ version = "1.88",
data = {
{ name = "Changes",
data = {
{ header = "Skill Levels", body = "Blend Wago Tools data with Wowhead data" },
},
},
},
},
{ version = "1.87",
data = {
{ name = "Changes",
data = {
{ header = "News", body = "Update News" },
{ header = "Skill Levels", body = "Fix error when CraftInfoAnywhere is not loaded" },
},
},
},
},
{ version = "1.86",
data = {
{ name = "Changes",
data = {
{ header = "TradeSkill", body = "Fix scan trade bug" },
{ header = "TOC", body = "Add CraftInfoAnywhere optional dependency" },
{ header = "Skill Levels", body = "Use data from Wago Tools and CraftInfoAnywhere\nto create separate tables for Classic Era and Classic Cataclysm\n" },
},
},
},
},
{ version = "1.85",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update News" },
},
},
},
},
{ version = "1.84",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC" },
},
},
},
},
{ version = "1.83",
data = {
{ name = "Changes",
data = {
{ header = "Skill Levels", body = "Update for WotLK recipes" },
{ header = "Slot Filter", body = "Change itemEquipLoc from INVTYPE_ROBE to INVTYPE_CHEST" },
{ header = "TOC", body = "Update TOC" },
{ header = "TradeSkill", body = "Better handling of scan trade errors" },
},
},
},
},
{ version = "1.82",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC" },
},
},
},
},
{ version = "1.81",
data = {
{ name = "New Features",
data = {
{ header = "Links", body = "Shift-Click detail icon to send item link to chat\nAlt-Click detail icon to send actual reagents needed to chat\nCtrl-Alt-Click to send basic reagents to chat" },
{ 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" },
},
},
{ name = "Changes",
data = {
{ header = "Links", body = "Remove tooltip 'to link' messages if no link can be created" },
},
},
},
},
{ version = "1.80",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC" },
},
},
},
},
{ version = "1.79",
data = {
{ name = "New Feature",
data = {
{ header = "Option", body = "Add chat command to display Auctionator / Journalator API results" },
},
},
{ name = "Changes",
data = {
{ header = "Plugins", body = "Adjust debugs in Auctionator plugin" },
},
},
},
},
{ version = "1.78",
data = {
{ name = "New Feature",
data = {
{ header = "Option", body = "Add option to play a sound when the processing queue is emptied" },
},
},
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC" },
},
},
{ name = "Fixes",
data = {
{ header = "ShoppingList", body = "Fix undefined function" },
},
},
},
},
{ version = "1.77",
data = {
{ name = "Fixes",
data = {
{ header = "Localization", body = "Fix issue #153, esES leatherworking" },
},
},
},
},
{ version = "1.76",
data = {
{ name = "Fixes",
data = {
{ header = "Compatibility", body = "More updates for 1.14.4 compatibility" },
{ header = "Plugins", body = "Fix error when Auctionator plugin is enabled but addon is not" },
},
},
},
},
{ version = "1.75",
data = {
{ name = "Changes",
data = {
{ header = "Compatibility", body = "Updates for 1.14.4 compatibility" },
},
},
},
},
{ version = "1.74",
data = {
{ name = "Fixes",
data = {
{ header = "Issue", body = "Fix issue #150, Merchant Buy" },
},
},
},
},
{ version = "1.73",
data = {
{ name = "Fixes",
data = {
{ header = "Issue", body = "Fix issue #149, Scrolling" },
},
},
},
},
{ version = "1.72",
data = {
{ name = "Changes",
data = {
{ header = "TOC", body = "Update TOC" },
},
},
},
},
{ version = "1.71",
data = {
{ name = "Fixes",
data = {
{ header = "Issue", body = "Fix issue #148, Missing C_Container. in ShoppingList" },
},
},
{ name = "Changes",
data = {
{ header = "Plugins", body = "Update Auctionator plugin to match retail\nMove Auctionator plugin button" },
},
},
},
},
{ version = "1.70",
data = {
{ name = "Fixes",
data = {
{ header = "Issue", body = "Fix issue #146, Auctionator plugin" },
},
},
},
},
{ version = "1.69",
data = {
{ name = "Fixes",
data = {
{ header = "Issue", body = "Fix issue #145, Classic Era search" },
},
},
},
},
{ version = "1.68",
data = {
{ 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" },
},
},
{ name = "Fixes",
data = {
{ header = "Cleanup", body = "Minor code cleanup" },
},
},
},
},
{ version = "1.67",
data = {
{ name = "Fixes",
data = {
{ header = "Shoppinglist", body = "Better Fix #141" },
},
},
},
},
{ version = "1.66",
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 = "Fixes",
data = {
{ header = "Shoppinglist", body = "Fix #141" },
},
},
},
},
{ version = "1.65",
data = {
{ name = "Changes",
data = {
{ header = "Wago", body = "Add X-Wago-ID" },
{ header = "Debug", body = "Add second level trace function" },
},
},
{ name = "Fixes",
data = {
{ header = "Titles", body = "Fix Classic Era Titlebars" },
{ header = "Shoppinglist", body = "Fix #140" },
},
},
},
},
{ version = "1.64",
data = {
{ name = "Fixes",
data = {
{ header = "Plugins", body = "Fix Initialization" },
{ header = "Plugin", body = "DataStoreAuctions: Fix DSAPlayer initialization" },
},
},
},
},
}