-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathVERSIONS.txt
More file actions
1830 lines (1488 loc) · 47.2 KB
/
VERSIONS.txt
File metadata and controls
1830 lines (1488 loc) · 47.2 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
v12.0.0.17
----------
- Fixed item bind type scanning.
v12.0.0.16
----------
- Added mage portals/teleports to spell scanning.
- Added midnight world bosses to lockout scanning.
v12.0.0.15
----------
- Fixed gilded stash scanning.
v12.0.0.14
----------
- Added vault activity scanning (delve/prey/etc levels).
- Fixed gilded crest currency ID.
- Removed delve scanning on completion.
v12.0.0.13
----------
- Changed currency scanning to also occur after closing a profession
window, concentration is annoying.
- Fixed Bouquet of Herbs spell ID.
v12.0.0.12
----------
- Added Bouquet of Herbs alchemy cooldown.
v12.0.0.11
----------
- Added find fish to spell scanning.
- Added hunter pet taming to spell scanning.
v12.0.0.10
----------
- Added Midnight tailoring cooldowns.
- Added POI scanning for world quests.
v12.0.0.9
---------
- Added Midnight zones to world quest scanning.
- Added Midnight seasonal reputations that don't show up via API.
- Added some Midnight profession cooldowns.
v12.0.0.8
---------
- Added Midnight herbalism/mining overload cooldowns.
- Added Midnight profession trait scanning.
- Fixed housing errors when houses are missing.
v12.0.0.7
---------
- Added housing endeavor scanning.
- Fixed profession order scanning errors.
v12.0.0.6
---------
- Added Find Lumber to spell scanning.
- Fixed spell scanning using an old function.
v12.0.0.5
---------
- Change item scanning to use a method that actually returns correct item levels.
v12.0.0.4
---------
- Added Tower Overwhelming to achievement scanning.
v12.0.0.3
---------
- Fixed profession work order scanning errors.
- Fixed even more spell scanning errors.
v12.0.0.2
---------
- Fixed profession cooldown scanning errors.
- Fixed spell scanning errors.
v12.0.0.1
---------
- Fixed decor scanning errors.
- Updated TOC for 12.0.0.
v11.2.7.2
---------
- Added decor scanning.
v11.2.7.1
---------
- Fixed played time spam.
- Updated TOC for 11.2.7.
v11.2.5.5
---------
- Fixed more currency transfer scanning bugs.
v11.2.5.4
---------
- Added remix M+ keystone scanning.
- Fixed currency transfer scanning when transferring all to one character.
v11.2.5.3
---------
- Added remix Limits Unbound scanning.
v11.2.5.2
---------
- Added remix research scanning.
v11.2.5.1
---------
- Updated TOC for 11.2.5.
v11.2.0.8
---------
- Added more weird realms to the bad realm check.
- Changed bad realm check to just disable the entire addon.
- Re-added manual transmog checks for weird items.
v11.2.0.7
---------
- Added character bank tab scanning.
- Added brewfest steins to manual appearance list.
- Changed max appearance ID to cover newer items.
- Fixed overwriting valid garrison talent data with nothing.
- Removed a bunch of old progress quest data.
v11.2.0.6
---------
- Added a bunch of missing TWW paragon reputations.
v11.2.0.5
---------
- Added manual scanning of weird event quests.
- Fixed world quest scanning when they have no time remaining.
v11.2.0.4
---------
- Added more Delver's mount customizations to account quest IDs.
- Fixed vault item levels only working occasionally.
v11.2.0.3
---------
- Added item levels to vault scanning.
- Added S3 Delves progress reputation.
v11.2.0.2
---------
- Added new zones to world quest scanning.
v11.2.0.1
---------
- Fixed various bank-related errors.
- Updated TOC for 11.2.0.
v11.1.7.4
---------
- Added Delver's mount customizations to account quest IDs.
v11.1.7.3
---------
- Added lockout ID override for broken WoW data (Uldir).
v11.1.7.2
---------
- Changed currency scanning to grab everything instead of a specific list.
v11.1.7.1
---------
- Changed aura scanning to grab everything instead of a specific list.
- Changed aura scanning to not run in combat.
- Updated TOC for 11.1.7.
v11.1.5.2
---------
- Added spell scanning for Hex/Polymorph variants.
- Fixed visiting a PTR/Tournament realm marking every transmog as learned.
v11.1.5.1
---------
- Fixed error spam from item link changes.
- Updated TOC for 11.1.5.
v11.1.0.6
---------
- Added a bunch of missing zones to world quest scanning.
- Fixed using a deprecated addon API function.
v11.1.0.5
---------
- Added weekly delve gilded chest scanning.
- Added Siren Isle and Undermine to world quest scanning.
- Changed lockout scanning to be more consistent for world bosses.
v11.1.0.4
---------
- Fixed some newer transmog IDs not being scanned correctly.
v11.1.0.3
---------
- Added S2 Delves progress reputation.
- Switched item level scanning back to the function that works.
v11.1.0.2
---------
- Added Sparks of War: Undermine quest.
- Added Cartels of Undermine contract auras.
- Added S2 Delver's Bounty aura.
- Added S2 spark tracking currency.
- Added bind state/type to item scanning.
- Added high watermarks to item scanning.
v11.1.0.1
---------
- Added new currencies.
- Added new world boss.
- Updated TOC for 11.1.0.
v11.0.7.6
---------
- Moved illusion data from character to account.
v11.0.7.5
---------
- Added Timeways II aura spells.
- Updated Timewalking quests.
- Removed LibRealmInfo.
v11.0.7.4
---------
- Added Nerub'ar Palace raid skip quests.
- Changed transmog scanning to only save data once instead of per character.
v11.0.7.3
---------
- Fixed available vault scanning.
- Fixed inconsistent lockout scanning in non-English locales.
v11.0.7.2
---------
- Added scanning of all active quests.
- Fixed inconsistent warbank gold scanning.
- Removed a bunch of unused quest IDs.
v11.0.7.1
---------
- Added some missing BfA reputations.
- Added "/wwtc transmog" to force a full transmog scan.
- Added garrison follower scanning.
- Added Flame-Blessed Iron currency.
- Added Waygate Travel debuff.
- Fixed battle pet data not updating when leveling.
- Updated TOC for 11.0.7.
v11.0.5.3
---------
- Added more XP buff auras.
- Added Archavon/Sha anniversary world bosses.
- Added anniversary daily/weekly quests.
- Added Hallow's End daily quests.
v11.0.5.2
---------
- Added the other Blessings of the Bronze Dragonflight buff aura.
- Added Classic Timewalking quests.
v11.0.5.1
---------
- Added Blessings of the Bronze Dragonflight buff aura.
- Fixed WorldQuests module error spam.
- Updated TOC for 11.0.5.
v11.0.2.34
----------
- Fixed random chat window spam, oops.
v11.0.2.33
----------
- Added Anniversary currencies.
- Added Delve level tracking on completion.
- Fixed battle pet quality being 1 tier higher than it should be.
v11.0.2.32
----------
- Added Delver's Bounty auras.
- Added another Spreading the Light sub-quest.
- Fixed mining "Rush-order Requisition" quest ID.
- Improved patron order scanning consistency.
v11.0.2.31
----------
- Added missing Archives/Delves quests.
- Added Delves: Season 1 reputation.
- Fixed Spreading the Light sub-quests.
- Split Emissary quests into 3 groups (Archives/Delves/Worldsoul).
v11.0.2.30
----------
- Added another TWW enchanting task quest.
- Added more TWW tracking currencies.
- Fixed work order error when using Mechagon crafting table (GH27).
v11.0.2.29
----------
- Fixed equipped items not updating after applying an enchant.
- Fixed equipped items not updating after socketing a gem.
- Improved patron order scanning.
v11.0.2.28
----------
- Added patron order scanning.
- Fixed the reset of wonky character vault data.
- Scalefang is actually named Slatefang.
v11.0.2.27
----------
- Added another Chef Dinaire weekly quest.
- Added Scalefang skinning tracking quest.
v11.0.2.26
----------
- Fixed Special Assignment: Titanic Resurgence not tracking correctly.
- Updated quest ID for A Burning Path Through Time.
v11.0.2.25
----------
- Added account bank (warbank) gold scanning.
- Added TWW enchanting tasks.
- Fixed scanning account bank items when the current character does not have
the lock.
v11.0.2.24
----------
- Added TWW zones to world quest scanning.
- Fixed Aggregation of Horrors tracking quest.
- Fixed scanning for weird unlockable world quests (Special Assignments).
v11.0.2.23
----------
- Updated more weekly quest IDs.
v11.0.2.22
----------
- Added world vault scanning.
- Added Special Assignment unlock quests.
- Fixed vault scanning breaking uploads.
v11.0.2.21
----------
- Added missing "worldsoul" (emissary) weekly quests.
- Added TWW alchemy transmute cooldowns.
- Added TWW season 1 spark tracking currency.
v11.0.2.20
----------
- Added Harmonized Silk (TWW catalyst charges) to currency scanning.
- Added TWW world bosses.
- Fixed completed weekly world quests saving no reset time.
- Removed even more Remix leftovers.
- Updated PvP weekly quest IDs.
v11.0.2.19
----------
- Added herbalism/mining overload cooldowns.
- Changed Spreading the Light to a world quest.
- Fixed quest progress scanning for world quests.
v11.0.2.18
----------
- Added an override for daily reset profession cooldowns, the game still says they reset
at midnight until you re-log.
- Added TWW Spreading the Light tracking quests.
- Added TWW blacksmithing Everburning Ignition cooldown.
- Added TWW race time currencies (thanks Sahasrahla).
- Added DMF item turn-in tracking (thanks Sahasrahla).
v11.0.2.17
----------
- Added transferable currency scanning.
- Added TWW crafting knowledge currencies.
- Added TWW contract aura spells.
- Added Deserter aura spell.
- Changed transmog scanning to be much, MUCH faster.
- Changed transmog scanning to run every load again.
- Fixed deprecated addon function usage.
- Removed more Remix: Pandaria leftovers.
v11.0.2.16
----------
- Added more TWW profession cooldowns.
v11.0.2.15
----------
- Added TWW quest Rollin' Down in the Deeps.
- Added TWW quest Sparks of War.
- Added TWW gathering task quests.
- Added TWW engineering "Invent" cooldown.
- Removed a bunch of dead quests.
v11.0.2.14
----------
- Fixed the "Scan complete" message every time you learn an appearance.
- Updated quest scanning list.
v11.0.2.13
----------
- Fixed the transmog scanning fix :(
v11.0.2.12
----------
- Fixed transmog scanning YET AGAIN.
v11.0.2.11
----------
- Added TWW weekly delve key quests.
- Changed transmog scanning to only do one full scan per client build.
- Changed transmog scanning to use a much more efficient "is this source collected?" check.
v11.0.2.10
----------
- Added TWW leatherworking quests, oops.
- Added TWW profession traits.
- Fixed bag scanning getting stuck (#23).
v11.0.2.9
---------
- Added TWW profession quests.
- Added TWW reputations.
- Fixed manual reputation scanning throwing an error.
v11.0.2.8
---------
- Added even more TWW weekly quests.
- Changed transmog scanning to only do one full scan per day.
- Changed transmog scanning to track last full scan by account instead of by character.
v11.0.2.7
---------
- Added TWW weekly dungeon quests.
- Added TWW weekly worldsoul quests.
v11.0.2.6
---------
- Fixed error after logging out before the first transmog scan completes.
v11.0.2.5
---------
- Changed transmog scanning to hopefully resolve loading weirdness.
v11.0.2.4
---------
- Changed scanning to be less aggressive in general.
v11.0.2.3
---------
- Fixed a battle pet scanning error.
v11.0.2.2
---------
- Added battle pet scanning.
- Changed WoD garrison scanning to work from anywhere.
v11.0.2.1
---------
- Fixed garrison error spam, thanks ergh99 (#19).
v11.0.0.7
---------
- Added profession concentration currency IDs.
- Added XP disabled/enabled scanning.
- Changed transmog scanning to a much faster "just try every appearance ID" approach.
v11.0.0.6
---------
- Added Radiant Echoes first boss kill.
v11.0.0.5
---------
- Added account bank (warbank) scanning.
- Added some TWW currencies.
v11.0.0.4
---------
- Fixed typo in event data.
v11.0.0.3
---------
- Added Radiant Echoes event quests.
v11.0.0.2
---------
- Added weekly vault reward scanning.
- Changed guild scanning to more consistently track guild changes.
v11.0.0.1
---------
- Added MoP jewelcrafting research cooldown.
- Fixed world quest scanning error.
- Updated TOC for 11.0.0.
v10.2.7.11
----------
- Changed quest scanning to more consistently track completed quests.
- Changed transmog scanning to handle the SOURCE_ADDED/SOURCE_REMOVED events properly instead
of forcing a full scan.
v10.2.7.10
----------
- Added Honor module.
- Added Legion zones to world quest scanning.
- Added completed quest ID scanning.
- Greatly reduced the size of the SavedVariables file through ~magic~.
v10.2.7.9
---------
- Added Fandral's Flamescythe tracking achievement.
- Added BfA/SL zones to world quest scanning.
- Fixed resetting wonky profession data on each login.
- Updated quest scanning list.
v10.2.7.8
---------
- Updated quest scanning list.
v10.2.7.7
---------
- Added various older profession cooldowns.
- Added Amirdrassil raid skip quests.
- Added wonky profession scanning for Pandaria Cooking Ways.
- Fixed resetting account quests on every character.
- Updated quest scanning list.
v10.2.7.6
---------
- Changed transmog scanning to catch more sources without having to log on to multiple characters.
v10.2.7.5
---------
- Fixed Mogu'shan Vaults LFR wings being swapped.
v10.2.7.4
---------
- Disabled TRANSMOG_COLLECTION_UPDATED event to try to reduce weird lockups with BetterWardrobe.
- Fixed equipment scanning not noticing that slots are now empty.
v10.2.7.3
---------
- Added MoP Remix instances.
- Added MoP Remix quests.
- Added tracking of LFG daily/weekly bonuses.
- Fixed transmog scanning only working once per session.
v10.2.7.2
---------
- Added MoP Remix to auras.
- Added MoP Remix currencies.
- Changed how transmog scanning works to (hopefully) be less stressful on login.
v10.2.7.1
---------
- Changed equipment scanning to cover all slots instead of only profession equipment.
- Updated TOC for 10.2.7.
v10.2.6.3
---------
- Split Last Hurrah quests into their own thing.
v10.2.6.2
---------
- Added Timewalking raid quests.
v10.2.6.1
---------
- Added Dragonflight Season 4 currencies.
- Added new Aiding the Accord (Last Hurrah) quests.
- Updated TOC for 10.2.6.
v10.2.5.2
---------
- Added Mysterious Fragment currency.
- Improved robustness of M+/Vault scanning.
- Fixed "table expected, got nil" error when scanning transmog.
v10.2.5.1
---------
- Added The Big Dig: Traitor's Quest weekly quest.
- Updated TOC for 10.2.5.
v10.2.0.14
----------
- Added Darkmoon Faire profession quests.
v10.2.0.13
----------
- Added Horde version of You're a Mean One... daily quest.
- Added Merry Supplies daily quests.
v10.2.0.12
----------
- Added You're a Mean One... daily quest.
v10.2.0.11
----------
- Added Battleground Blitz weekly quests (Gotta Go Fast/Gotta Go Faster).
- Added Skinning: Verdant Gladewarden tracking quest.
- Added a missing Alchemy weekly quest.
v10.2.0.10
----------
- Added Skinning: Magma Cobra tracking quest.
v10.2.0.9
---------
- Updated dragonriding time currencies.
v10.2.0.8
---------
- Added support for Heroic and Mythic 0 dungeon vaults.
- Updated quest scanning list.
v10.2.0.7
---------
- Added Emerald Dream Druid customization quest IDs.
- Added Flourishing Whimsydrake customization quest IDs.
v10.2.0.6
---------
- Added WoW's 19th Anniversary to auras.
v10.2.0.5
---------
- Added Shipments of Goods weekly quest(s?).
v10.2.0.4
---------
- Added Blooming Dreadseeds weekly quest.
v10.2.0.3
---------
- Added the Emerald Dream world quest unlock quest.
- Renamed profession quest keys to match website update.
- Updated quest scanning list.
v10.2.0.2
---------
- Added new A Worthy Ally quest.
- Added new Sparks of Life quest.
- Fixed missing library reference.
v10.2.0.1
---------
- Added Superbloom weekly quest.
- Added new Aiding the Accord quests.
- Added new reputation.
- Added new currencies.
- Added Dream Wardens contracts to auras.
- Changed guild bank scanning to be nicer about chomping CPU.
- Updated quest scanning list.
- Updated TOC.
v10.1.7.4
---------
- Updated quest scanning list.
- Changed bag scanning to be nicer about chomping CPU, especially when
using the "sort my bags" button.
- Changed transmog scanning to be nicer about chomping CPU.
- Changed world quest scanning to be nicer about chomping CPU.
v10.1.7.3
---------
- Added world quest completion scanning.
- Added Dungeon Deserter to aura scanning.
- Added several Dragonflight account-wide unlock quests.
v10.1.7.2
---------
- Added Timeways event auras to aura tracking.
- Added stacks/duration to aura tracking.
- Added Ordos to world boss lockouts.
- Fixed player bank items not being scanned consistently.
v10.1.7.1
---------
- Added new Aiding the Accord quest ID.
- Added Dreamsurge weekly quest ID.
- Updated TOC.
v10.1.5.9
---------
- Added ProfessionOrders module.
- Added Winding Slitherdrake customization quest IDs.
- Fixed various issues with ProfessionCooldowns module saving bad data.
v10.1.5.8
---------
- Added ProfessionCooldowns module.
v10.1.5.7
---------
- Fixed Garrisons module missing initialization.
v10.1.5.6
---------
- Added Garrisons module.
v10.1.5.5
---------
- Fixed Illusions module saving data in the wrong format.
v10.1.5.4
---------
- Added Illusions module.
v10.1.5.3
---------
- Added When Time Needs Mending quest ID.
- Added 10.1.5 currency IDs.
v10.1.5.2
---------
- Added Time Rift completion quest ID.
v10.1.5.1
----------
- Added new Aiding the Accord quest ID.
- Fixed friendship reputation scanning.
- Updated TOC.
v10.1.0.20
----------
- Added initial Suffusion Camp tracking quest ID.
- Fixed quest IDs in the wrong file, oof.
v10.1.0.19
----------
- Added first craft IDs to quest scanning.
- Addad dragonriding best times to currency scanning.
- Fixed Fyrakk Discpile quest ID.
- Fixed rescan behaviour in Bags/Covenants/ProfessionEquipment modules.
v10.1.0.18
----------
- Added ProfessionTraits module.
v10.1.0.17
----------
- Added Covenants module.
- Added GarrisonTrees module.
v10.1.0.16
----------
- Fixed world quest storage not being initialized properly.
- Fixed profession scanning spawning many repeating timers.
v10.1.0.15
----------
- Enabled the WorldQuests module.
- Changed bag scans to wait for all requested items to be loaded before retrying.
- Changed /played message hook back to the basic original one.
- Fixed transmog scan not clearing temporary data after completing.
v10.1.0.14
----------
- Changed bag scans to be a bit less aggressive about retrying.
- Fixed reagent bank not being scanned consistently.
- Fixed UpdateGuildBank print spam.
- Fixed seeing a /played message every time you see a load screen.
- Fixed guild bank scan not stopping if you close the guild bank.
- Minor performance improvements.
v10.1.0.13
----------
- Added Sniffenseeking dig quest IDs.
- Large rewrite to use Ace3 and split code into modules. This probably broke
some things.
- Updated LibRealmInfo with current realm data.
v10.1.0.12
----------
- Added Fyrakk Assault tracking quests.
v10.1.0.11
----------
- Updated quest scanning list.
v10.1.0.10
----------
- Added Zaralek Cavern bartering knowledge book quest IDs.
v10.1.0.9
---------
- Added missing Artisans's Consortium knowledge book quest IDs.
- Added Loamm Niffen knowledge book quest IDs.
- Updated quest scanning list.
v10.1.0.8
---------
- Added all 4 tiers of Researchers Under Fire quest.
- Fixed hearthstone location not actually updating when you bind somewhere.
- Fixed bag scanning not actually doing anything when bag items change.
v10.1.0.7
---------
- Added Aberrus skip quests.
- Added Researchers Under Fire quest. Probably the right one. Maybe.
v10.1.0.6
---------
- Added more new profession quests to quest scanning.
v10.1.0.5
---------
- Updated Forbidden Reach profession drop quest IDs to (hopefully) be correct.
v10.1.0.4
---------
- Added basic world quest scanning.
- Added Loamm Niffen contracts to aura scanning.
- Updated quest scanning list.
v10.1.0.3
---------
- Added more new profession quests to quest scanning.
- Changed bag scanning to always run when entering world.
- Fixed quest scanning error.
- Fixed guild bank scanning error.
- Fixed bank scanning not triggering properly.
- Removed hacky workaround for Blizzard breaking bag updates a while back.
v10.1.0.2
---------
- Added A Worthy Ally: Loamm Niffen to quest scanning.
- Added first set of Zaralek Cavern profession gather quests to quest scanning.
- Added The Zaqlai Elders to world boss scanning.
- Added Renascent Shadowflame to currency scanning.
- Added addon icon for the addon list.
v10.1.0.1
---------
- Added 3 new Aiding the Accord quests to quest scanning.
- Added "Fighting is its Own Reward" to quest scanning.
- Added Flightstones to currency scanning.
- Added a bunch of new hidden tracking currencies to currency scanning.
- Updated TOC.
v10.0.7.6
---------
- Fixed The Four Celestials world bosses being marked as daily.
v10.0.7.5
---------
- Added Forbidden Reach profession drops to quest scanning.
v10.0.7.4
---------
- Added The Four Celestials world bosses to quest scanning.
v10.0.7.3
---------
- Update holiday quest scanning.
v10.0.7.2
---------
- Update another Timewalking quest ID.
v10.0.7.1
---------
- Added "Aiding the Accord: Zskera Vaults" to quest scanning.
- Updated TOC.
v10.0.5.9
---------
- Added Contracts to aura scanning.
- Changed aura scanning to store expiration time.
v10.0.5.8
---------
- Changed location scanning to get more accurate area information.
- Changed location scanning to update more consistently when changing areas.
- Changed vault scanning to update more consistently when changing areas.
- Updated quest scanning list.
v10.0.5.7
---------
- Added Artisan's Consortium profession books to quest scanning list.
- Added "Dragonriding - Accepting Passengers" to currency scanning list.
- Fixed ID for TBC Timewalking quest.
v10.0.5.6
---------
- Added Catalyst Charges to currency scanning.
v10.0.5.5
---------
- Added account-wide quest scanning.
- Added drake customizations to quest scanning list.
v10.0.5.4
---------
- Changed Chromie Time scanning to be more robust.
- Fixed Storm's Fury quest ID.
v10.0.5.3
---------
- Added Storm's Fury to quest scanning list.
v10.0.5.2
---------
- Updated quest scanning list.
v10.0.5.1
---------
- Initial fixes for 10.0.5 release.
v10.0.2.22
----------
- Added missing inscription gather quest.
- Updated quest scanning list.
v10.0.2.21
----------
- Updated quest scanning list.
v10.0.2.20
----------
- Added profession drops to quest scanning.
v10.0.2.19
----------
- Updated more holiday quest IDs.
v10.0.2.18
----------
- Fixed IDs for Catch and Release weekly quests.
v10.0.2.17
----------
- Added profession knowledge to currency scanning.
- Updated quest scanning list.
v10.0.2.16
----------
- Added modifiers to item scanning.
v10.0.2.15
----------
- Updated quest ID for Emissary of War (mythic dungeons weekly).
v10.0.2.14
----------
- Added profession treatises to quest scanning.
v10.0.2.13
----------
- Fixed Jewelcrafting orders quest ID.
v10.0.2.12
----------
- Fixed Leatherworking orders quest ID.
v10.0.2.11
----------
- Added profession equipment scanning.
- Fixed item link parsing not including quality.
v10.0.2.10
----------
- Fixed profession quests breaking quest scanning.
v10.0.2.9
---------
- Added Catch and Releases weeklies to quest scanning.
- Added profession weeklies to quest scanning.
- Fixed the final bank bag not being scanned.
v10.0.2.8
---------
- Fixed quest scanning error.
v10.0.2.7
---------
- Added DF dungeon weeklies to quest scanning.
- Changed quest scanning to support multiple objectives per quest.
- Removed Community Feast Boss from quest scanning.
v10.0.2.6
---------
- Added more various DF weeklies to quest scanning.
v10.0.2.5
---------
- Added various DF weeklies to quest scanning.
- Changed "The World Awaits" (world quests weekly) quest ID for DF.
- Changed rested scanning so that it actually updates immediately when your
resting state changes.
v10.0.2.4
---------
- Added Aiding the Accord to quest scanning.