-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathVersion history.htm
4073 lines (4069 loc) · 197 KB
/
Version history.htm
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Pawn past and future versions</title>
<link rel="stylesheet" type="text/css" href="VgerCore/VgerCore.css" />
</head>
<body>
<h1>A brief history of Pawn</h1>
<p>
For recent version history, see the <a href="Readme.htm">Pawn readme</a>.
(I got tired of the version history section of the <a href="Readme.htm">
readme</a> being longer than the rest of it, so I moved parts here.)</p>
<h3>Version 2.9.14</h3>
<ul>
<li>The War Within pre-patch: Pawn will once again show up in the game's Interface Options.</li>
<li>Cataclysm Classic: Updated default stat weights for fire mages, enhancement shamans, and fury warriors.</li>
<li>All Classic versions: Fixed a problem where relic slot items (idols, totems, and librams) could appear as an upgrade for classes that can't use them and could not be ignored.</li>
</ul>
<h3>Version 2.9.13</h3>
<ul>
<li>Cataclysm Classic: Updated the default stat weights for almost all classes and specs.</li>
</ul>
<h3>Version 2.9.12</h3>
<ul>
<li>Cataclysm Classic: Fixed a problem where one-handed weapons that can be wielded in either hand were being undervalued for all melee classes if you used the default stat weights.</li>
</ul>
<h3>Version 2.9.11</h3>
<ul>
<li>Cataclysm Classic: More updates to correctly read numbers larger than 999 on items when playing in French.</li>
</ul>
<h3>Version 2.9.10</h3>
<ul>
<li>Cataclysm Classic: Fixed a problem where the default stat weights for expertise were incorrect for all classes and specs.</li>
</ul>
<h3>Version 2.9.9</h3>
<ul>
<li>Cataclysm Classic: Fixed a problem where certain items with mastery and certain haste enchantments had those stats ignored when playing in Russian, European Spanish, and Latin American Spanish.</li>
<li>You can now click an item link in chat and then Alt+LeftClick the popup that appears to get a window that lets you copy all of the text on that item to the clipboard. (This is mostly only useful to me when I need to type Искусность but my keyboard doesn't have those letters.) Previously this feature only worked on Pawn's Compare tab.</li>
</ul>
<h3>Version 2.9.8</h3>
<ul>
<li>Fixed a problem introduced in Pawn 2.9.7 that caused the "Show icons next to tooltips" feature to cause an error. (Actually, Ulidan did. Thanks Ulidan and Kraturnus!)</li>
<li>Cataclysm Classic: Ranged Attack Power no longer appears as a distinct stat you can give a weight to; just use Attack Power for both melee and ranged.</li>
<li>Cataclysm Classic: Updated the default stat weights for retribution paladins.</li>
</ul>
<h3>Version 2.9.7</h3>
<ul>
<li>The War Within: Pawn now works on The War Within beta and WoW 11.0.</li>
<li>Mists of Pandaria Remix: Fixed another case where the socketing advisor could appear and give dubious advice.</li>
</ul>
<h3>Version 2.9.6</h3>
<ul>
<li>Mists of Pandaria Remix: Pawn's socketing advisor is now disabled in this mode, since gems work differently.</li>
<li>Cataclysm Classic: Updated default stat weights for all specs and classes are included, thanks to the <a href="https://wowsims.github.io" target="_blank">WoWSims</a> team. Simulations are still in their early stages, so expect some oddities—let me know if you find something egregiously wrong. Simulating your character with WoWSims (or any other favorite sim) will get you the most accurate results, and you can export custom stat weights to use in Pawn for quick in-game advice.</li>
<li>Cataclysm Classic: You can now set a weight for the non-stat effect of meta gems like you could in Burning Crusade Classic and Wrath Classic.</li>
<li>Cataclysm Classic: The deprecated stats Defense Rating and Block Value will no longer show up in Pawn.</li>
<li>Classic Era and Season of Discovery: Fixed a harmless error message about gem data.</li>
</ul>
<h3>Version 2.9.5</h3>
<ul>
<li>Fixed some problems introduced in Pawn 2.9.4 where Pawn could give you an error when socketing an item.</li>
<li>Cataclysm Classic: Added support for the armor specialization skills such as Mail Specialization.</li>
</ul>
<h3>Version 2.9.4</h3>
<ul>
<li>Cataclysm Classic: Cogwheel sockets on engineering goggles will now be considered in the item's value like any other gem socket.</li>
<li>Cataclysm Classic: Fixed a bug that caused gems with bad secondary stats to be valued more highly than they should have been (it was calculating things as if you could reforge the gem's bad stat into something better). The bug shouldn't have affected the values of existing items unless you were using gems that are bad for your spec.</li>
</ul>
<h3>Version 2.9.3</h3>
<ul>
<li>Cataclysm Classic: Fixed a problem where the "track for each scale (advanced)" option could cause an error.</li>
<li>Cataclysm Classic: Pawn will no longer display a warning when logging in if you play in French.</li>
</ul>
<h3>Version 2.9.2</h3>
<ul>
<li>Cataclysm Classic: When visiting an Arcane Reforger, Pawn will now display advice on how to reforge the item to maximize its power. (You can turn this off with the "show reforge advisor" option.)</li>
<li>Cataclysm Classic: Pawn's Compare tab will now show you how much an item's score can be improved by reforging it (assuming you make the change that Pawn suggests).</li>
<li>Cataclysm Classic: Pawn will now take reforging into account when determining an item's score and whether or not it's an upgrade.</li>
</ul>
<h3>Version 2.9.1</h3>
<ul>
<li>Cataclysm Classic: Pawn will now recommend the proper gems based on the new colors and stats of existing gems.</li>
<li>Cataclysm Classic: Fixed a bug that caused a few stat weights to get reset to 0 when editing in the Weights tab and then reloading.</li>
<li>Cataclysm Classic: Added support for all of the new Cataclysm gems, which Pawn will start recommending as you get Cataclysm gear.</li>
<li>Fixed a bug that caused gems to always appear as upgrades.</li>
</ul>
<h3>Version 2.9.0</h3>
<ul>
<li>Cataclysm Classic: Added basic support for Cataclysm Classic. The following important work is <em>not</em> yet done:
<ul>
<li>Updated stat weights (if you know of a good source, please let me know!)</li>
<li>Reforging support</li>
<li>I'm not playing Classic, so I'll need your help pointing out remaining things that are broken!</li>
</ul>
</li>
</ul>
<h3>Version 2.8.11</h3>
<ul>
<li>Classic Season of Discovery: Added support for those new hit and crit stats, again. Because Blizzard broke them in a patch.</li>
</ul>
<h3>Version 2.8.10</h3>
<ul>
<li>Classic Season of Discovery: Added support for the new Gnomeregan items with hit or crit to all attacks. Items with the new hit stat will receive points for your Hit and Hit (Spell) stats, and items with the new crit stat will receive points for your Crit and Crit (Spell) stats.</li>
</ul>
<h3>Version 2.8.9</h3>
<ul>
<li>Dragonflight: Updated stat weights for all classes and specs.</li>
<li>Dragonflight: Updated Pawn's scale color button to work with the new patch 10.2.5 color picker.</li>
</ul>
<h3>Version 2.8.8</h3>
<ul>
<li>Dragonflight: Removed the "Only show upgrades for my best armor type after level 27" option. After level 27, Pawn will now always stop showing items that are not the right type of armor for your class.</li>
<li>Classic: Fixed a bug where Pawn would suggest armor your character can't wear as upgrades.</li>
<li>Classic: Fixed a bug where Pawn would sometimes suggest socketing Glinting Flame Spessarite when it meant to suggest Sovereign Shadow Draenite. This bug potentially affected any time Glinting Flame Spessarite was suggested (such as in the socketing advisor popup), but didn't affect any other calculations or upgrade suggestions.</li>
</ul>
<h3>Version 2.8.7</h3>
<ul>
<li>Classic: Added support for the Classic trade skill and crafting window: hovering over the item icon in that window should now work the same as if the item were already in your bags.</li>
</ul>
<h3>Version 2.8.6</h3>
<ul>
<li>Dragonflight: More new stat weight updates, updated for patch 10.2.0.</li>
</ul>
<h3>Version 2.8.5</h3>
<ul>
<li>Dragonflight: New stat weights have been included for all classes and specs, including all evoker specs, based on the latest Ask Mr. Robot raid simulation data.</li>
</ul>
<h3>Version 2.8.4</h3>
<ul>
<li>To keep things responsive, especially on the slower Classic versions of the game, Pawn has a new system that caps how much processing power it will allow bag addons to use when calculating which items get green upgrade arrows. Roughly speaking, if the game runs at 60 FPS for you, Pawn will block bag addons from reducing that by more than 2 FPS. (This change doesn't affect you if you aren't using a custom bag addon.)</li>
</ul>
<h3>Version 2.8.3</h3>
<ul>
<li>Wrath Classic: The new gems for Content Phase 3 (Cardinal Ruby, etc.) will now show
up in recommendations, and will be taken into account when determining the
value of sockets on high-level gear.</li>
</ul>
<h3>Version 2.8.2</h3>
<ul>
<li>Dragonflight: Dragonflight 10.1.0 has a game bug that was causing Pawn to show the wrong information on "currently equipped" tooltips. That bug is fixed in Dragonflight 10.1.5. Pawn will stop annotating "currently equipped" tooltips until 10.1.5 launches.</li>
<li>Dragonflight: Added support for the 10.1.5 PTR.</li>
<li>Dragonflight: Added support for Augmentation Evokers. If you're using Pawn in Automatic mode (the default), you don't need to do anything extra. If you're using Pawn in Manual mode, you'll need to import your own Augmentation scale or use (shift-click) the one that comes with Pawn. (Stat weights for Augmentation aren't available yet so it's a placeholder in this version of Pawn.)</li>
</ul>
<h3>Version 2.8.1</h3>
<ul>
<li>Dragonflight: Fixed a problem that could occur when showing Pawn's version number on 10.1.0.</li>
</ul>
<h3>Version 2.8.0</h3>
<ul>
<li>Updated for Dragonflight: Embers of Neltharion (10.1.0).</li>
</ul>
<h3>Version 2.7.18</h3>
<ul>
<li>Dragonflight: When you have the Onyx Annulet (the Forbidden Reach ring with primordial sockets) equipped, Pawn will ignore that ring for the purposes of showing you upgrades.</li>
</ul>
<h3>Version 2.7.17</h3>
<ul>
<li>Dragonflight: Enhancement shamans will no longer see daggers as upgrades.</li>
<li>Wrath of the Lich King Classic: Added support for additional items with attack power and armor penetration rating in French, Latin American Spanish, European Spanish, Portuguese, Korean, Simplified Chinese, and Traditional Chinese. (Those items already worked in other languages.)</li>
</ul>
<h3>Version 2.7.16</h3>
<ul>
<li>Dragonflight: Pawn will now show you upgrade details when using the Revival Catalyst at Tyrhold.</li>
</ul>
<h3>Version 2.7.15</h3>
<ul>
<li>Fixed a bug where Pawn was undervaluing certain crafted items with two random stats.</li>
</ul>
<h3>Version 2.7.14</h3>
<ul>
<li>Dragonflight: Added support for loot in the the new Dragonflight Adventure Guide like in previous versions of the game. (Item tooltips will get upgrade arrows and so on, but I haven't added green arrows to the item icons themselves yet.)</li>
<li>Dragonflight: Updated Pawn's database of gem stats to account for changes in 10.0.2. Any Dragonflight item with a socket will now be considered a couple of percentage points better than before.</li>
<li>Dragonflight: Crafted items with a Quality level on the tooltip will no longer cause Pawn's Compare tab to say that the item has "special effects."</li>
<li>Dragonflight: Fixed a bug where Pawn would cause a Lua error when turning the "show bag upgrade advisor" option on or off after WoW patch 10.0.2.</li>
</ul>
<h3>Version 2.7.13</h3>
<ul>
<li>Dragonflight: Pawn will no longer suggest socketing gems into items from
the Shadowlands, unless you turn off the "Ignore sockets on low-level items"
option. Onto the Dragon Isles!</li>
</ul>
<h3>Version 2.7.12</h3>
<ul>
<li>Dragonflight: Fixed another error that could occur in 10.0.2 when using
Pawn-compatible bag addons while Pawn's bag advisor is OFF. (When that
option is off, and a bag addon asks Pawn for help finding upgrades, Pawn
just asks the game what it would have done. But the game removed its bag
upgrade code in 10.0.2 so Pawn was freaking out.)</li>
</ul>
<h3>Version 2.7.11</h3>
<ul>
<li>Dragonflight: Yet another change to work with Pawn-compatible bag addons
(thanks Merathilis!).</li>
</ul>
<h3>Version 2.7.10</h3>
<ul>
<li>Dragonflight: Additional fixes for Pawn-compatible bag addons (thanks
Caedis!).</li>
<li>Dragonflight: Fixed a bug I introduced in 2.7.9 that would cause your
chat window to be filled with messages like "nil nil" if you were using a
Pawn-compatible bag addon.</li>
<li>Dragonflight: Fixed a problem that was preventing the "Equipped"
shortcut buttons on Pawn's Compare tab from working after 10.0.2.</li>
</ul>
<h3>Version 2.7.9</h3>
<ul>
<li>Dragonflight: <strong>In 10.0.2, Blizzard deleted the code for the
game's built-in bag arrows. For now, green arrows in your bags won't work
unless you have a Pawn-compatible bag addon installed.</strong> You can
still see upgrade advice when you hover over the item, just not on the
item's icon itself.
<ul>
<li>This version includes an update so that Pawn-compatible bag addons
will work again.</li>
<li>I'm as confused as you are.</li>
</ul>
</li>
<li>Dragonflight: Evokers in the starting zone who haven't chosen a spec will now see Devastation
advice when in Automatic mode instead of Preservation. (It doesn't really
matter right now because both of those scales are placeholders for the time
being.)</li>
</ul>
<h3>Version 2.7.8</h3>
<ul>
<li>Dragonflight: Pawn's keybindings will now once again show up in the
keybindings list without having to search for them by name.</li>
<li>Dragonflight: Pawn now knows about the new gems from the Dragon Isles,
but it won't suggest them until you start getting gear from there.</li>
<li>Wrath of the Lich King Classic and Burning Crusade Classic: Fixed an
error that would occur when socketing an item when using a custom scale for
which there are three or more colored gems that have exactly the same value.</li>
</ul>
<h3>Version 2.7.7</h3>
<ul>
<li>Dragonflight: Updated to work with changes made to the game's comparison
tooltips on the 10.0.2 PTR and beta.</li>
<li>Dragonflight: Fixed the error that would occur when clicking the Pawn
button in the Interface Options window.</li>
<li>Adds support for a future version of Ace3's configuration window.</li>
</ul>
<h3>Version 2.7.6</h3>
<ul>
<li>All Classic versions: Pawn will not provide upgrade information to bag
addons for now, to resolve some extreme performance issues that some players
are having. (I hope to let bag addons on Classic versions add green arrows
like you get on modern WoW again in the future!)</li>
</ul>
<h3>Version 2.7.5</h3>
<ul>
<li>German Wrath of the Lich King Classic: Added support for additional
items with armor penetration rating.</li>
</ul>
<h3>Version 2.7.4</h3>
<ul>
<li>Dragonflight: The bag upgrade advisor (Pawn taking over the green arrows
in your bags) now works with all styles of bags.</li>
<li>Dragonflight: Fixed a problem where sometimes you couldn't right-click
on items in your bags to use them.</li>
</ul>
<h3>Version 2.7.3</h3>
<ul>
<li>Fixed a harmless error that could occur when selling certain unusual
types of items, such as caged battle pets.</li>
<li>Burning Crusade and Wrath of the Lich King Classic: Fixed a problem
where socket bonuses were sometimes being ignored in the advice given by the
socketing advisor. (The item's values and upgrade %s were, however, not
affected—just the shift-right-click window.)</li>
<li>Dragonflight: Pawn now annotates the tooltip when hovering over the item
to be crafted in the professions UI, so you'll see upgrade information (and
item scores if enabled) when you hover.</li>
<li>Russian Wrath of the Lich King Classic: Added support for additional
items with armor penetration rating.</li>
</ul>
<h3>Version 2.7.2</h3>
<ul>
<li>Dragonflight: The bag upgrade advisor (Pawn taking over the green arrows
in your bags) now works with the classic (non-combined) bags in WoW 10.0.
(Thanks Triadian!)</li>
<li>Simplified Chinese Wrath of the Lich King Classic: Added support for
additional items with parry rating.</li>
</ul>
<h3>Version 2.7.1</h3>
<ul>
<li>Dragonflight: Fixed a problem where Pawn would display an error when
evaluating armor for evokers.</li>
</ul>
<h3>Version 2.7</h3>
<ul>
<li>Dragonflight: Pawn now works on the Dragonflight beta and the WoW 10.0
PTR. Stat weights for evokers are placeholders.</li>
<li>Shadowlands and Dragonflight: Fixed a problem where new characters
(before level 10) could show item advice for blood death knights or another
seemingly random spec when in Automatic mode.</li>
<li>Wrath of the Lich King Classic: Northrend awaits! Pawn will no longer
suggest that you put gems in your Burning Crusade items, unless you've
turned off the "Ignore sockets on low-level items" option that's on by
default. With the option on, Pawn will start suggesting you socket gems
again when you start getting level 187 gear (about level 78).</li>
<li>English Classic versions: Added support for a few items that add armor
penetration rating in an unusual way.</li>
</ul>
<h3>Version 2.6.7</h3>
<ul>
<li>Wrath of the Lich King Classic: The individual schools of spell damage
(of Fiery Wrath, etc.) will now show up on the Weights tab like they did in
Classic Era and Burning Crusade Classic, though those stats are no longer
found on Northrend items.</li>
<li>Wrath of the Lich King Classic: Added a new version of the default
protection paladin stat weights with some small adjustments to optimize for
threat generation.</li>
</ul>
<h3>Version 2.6.6</h3>
<ul>
<li>Wrath of the Lich King Classic: Fixed Pawn's gem recommendations for
Burning Crusade items on the Wrath pre-patch. (The Northrend gem
recommendations were correct, but the Outland gems were still being
recommended based on their old stats from Burning Crusade.)</li>
<li>Wrath of the Lich King Classic: Added support for ranged attack power on
more types of items in all languages.</li>
<li>Wrath of the Lich King Classic: Added support for spell power on items
"of Sorcery" in French and Latin American Spanish.</li>
</ul>
<h3>Version 2.6.5</h3>
<ul>
<li>The list of scales will now display a warning at the top if you don't
have any scales visible. (Most of Pawn's features don't do anything if no
scales are visible, but it's okay to ignore the warning if that's what you
really want.)</li>
<li>Wrath of the Lich King Classic: The first time you log in on a death
knight after updating, Pawn will re-show all of the death knight starter
scales if you don't have any custom scales shown.</li>
</ul>
<h3>Version 2.6.4</h3>
<ul>
<li>Wrath of the Lich King Classic: Ranged attack power will now show up in
the list of stat weights and on the Compare tab again.</li>
<li>Wrath of the Lich King Classic: Added support for armor penetration and
expertise on more types of items in all languages.</li>
<li>Wrath of the Lich King Classic: Added support for attack power on more
types of items in European Spanish, Latin American Spanish, and Traditional
Chinese.</li>
<li>Includes Russian translation updates.</li>
</ul>
<h3>Version 2.6.3</h3>
<ul>
<li>Wrath of the Lich King Classic: Fixed a problem that started occurring
after the latest Wrath update that caused Pawn to sometimes stop annotating
tooltips for a while after you changed anything about your current scales
(changing visibility, changing stat weights, etc.).</li>
<li>Wrath of the Lich King Classic: Fixed a problem where some specs were
getting hit, crit, and haste ratings of 1 instead of 0 or a fraction as
intended.</li>
<li>Wrath of the Lich King Classic: Fixed a typo that caused the default
spell power weight for discipline priests to be 100⨉ what it was intended to
be. Oops.</li>
</ul>
<h3>Version 2.6.2</h3>
<ul>
<li>Wrath of the Lich King Classic: The death knight starter scales now
indicate in the name whether they're providing advice for tanking or DPS.</li>
<li>Wrath of the Lich King Classic: Feral attack power now works as it did
in Pawn 1.1 back when Wrath was new—it's not a real stat on items in Wrath,
but it appears on tooltips when playing a druid. A value you assign to feral
attack power will work the same as if it were a real stat, like before the
pre-patch. You can assign points to melee weapon DPS or feral attack power,
but you probably don't want to assign points to both.</li>
<li>Wrath of the Lich King Classic: Fixed a problem where weapon DPS was
contributing more to an item's score than intended when using the default
stat weights.</li>
<li>Traditional Chinese Wrath of the Lich King Classic: Pawn now supports
Wrath Classic (including the pre-patch) in Traditional Chinese.</li>
<li>German Wrath of the Lich King Classic: Includes a minor translation
update.</li>
</ul>
<h3>Version 2.6.1</h3>
<ul>
<li>Wrath of the Lich King Classic pre-patch: Today's Wrath Classic patch
broke addons that need to detect which version of the game you're playing,
including Pawn. This version of Pawn should work correctly again after that
change.</li>
</ul>
<h3>Version 2.6</h3>
<p>This version introduces support for the Wrath of the Lich King Classic
pre-patch.</p>
<ul>
<li>There are all-new default stat weights for all classes and specs,
including death knights, curated by HawsJon (thanks!). These should provide
more accurate advice for level 80 and the mechanics changes in the
pre-patch.<ul>
<li>As always, simulating your character and maintaining custom stat
weights will yield even better advice, specifically tailored for your
character.</li>
</ul>
</li>
<li>Spell damage and spell healing have been converted into a single stat,
spell power. Existing custom scales will be converted automatically by
choosing the better of the two weights, and then you can continue to adjust
as needed.</li>
<li>Hit, crit, and haste have been converted from individual melee and spell
ratings to a single rating each. Existing custom scales will be converted
automatically by choosing the better of the two weights, and then you can
continue to adjust as needed.</li>
<li>Pawn now includes data for the Wrath of the Lich King Classic gems, but
it won't start suggesting those gems until you start getting Northrend gear.
You can still browse them on the Gems tab.</li>
<li>There is currently no way to distinguish between armor and bonus
armor—sorry, bear tanks.</li>
<li>This version of Pawn will not work properly in Traditional
Chinese on Wrath Classic due to an updated translation.</li>
</ul>
<p>This version also includes minor fixes for Shadowlands, Classic Era, and The
Burning Crusade.</p>
<ul>
<li>Shadowlands: Added Pawn annotations to the tooltips for converted items
at the Creation Catalyst. (Thanks Triadian!)</li>
<li>Classic: Fixed a problem with the default stat weights where Pawn was
suggesting dual-wielding weapons for protection warriors and paladins
instead of using a shield.</li>
</ul>
<h3>Version 2.5.38</h3>
<ul>
<li>Burning Crusade Classic: The new Shattered Sun gems for Content Phase 5 will now show
up in recommendations.</li>
</ul>
<h3>Version 2.5.37</h3>
<ul>
<li>Fixed that annoying problem where the green tooltip border would
overstay its welcome if you hovered over an upgrade item and then something
else like a spell button.</li>
</ul>
<h3>Version 2.5.36</h3>
<ul>
<li>Burning Crusade Classic: Added support for new Zul'Aman items that use a
different wording for their spell damage and healing. (Thanks wwwbbat!)</li>
</ul>
<h3>Version 2.5.35</h3>
<ul>
<li>Shadowlands: Includes new stat weights for all classes and specs from
Ask Mr. Robot.</li>
<li>Burning Crusade Classic: Pawn will now suggest Runed and Bright Crimson
Spinel, as appropriate.</li>
</ul>
<h3>Version 2.5.34</h3>
<ul>
<li>Burning Crusade Classic: Fixed a problem where the spell damage portion
of Teardrop Crimson Spinel was getting counted toward healing as well (30
healing and 8 spell damage, but it should be 22+8) in Russian.</li>
</ul>
<h3>Version 2.5.33</h3>
<ul>
<li>Shadowlands: Pawn no longer values domination sockets since domination
shards no longer function outside of the Maw.</li>
</ul>
<h3>Version 2.5.32</h3>
<ul>
<li>Burning Crusade Classic: The new gems for Content Phase 3 will now show
up in recommendations, and will be taken into account when determining the
value of sockets on Black Temple gear.</li>
</ul>
<h3>Version 2.5.31</h3>
<ul>
<li>You can now type things like "/pawn tooltip 186767" or "/pawn tooltip
186459::::::::60:257:::1:7883:2:9:60:28:888" to reconstruct an item in-game,
for example if you see its item ID on a screenshot from someone who has
Pawn's "Show item IDs" option enabled. (You probably won't ever need to use
this, but it should be handy for me!)</li>
<li>Fixed MP5 detection on some items in the German version of Classic Era
Season of Mastery. (Burning Crusade Classic and other languages were not
affected.) (Thanks ruffiely!)</li>
</ul>
<h3>Version 2.5.30</h3>
<ul>
<li>Fixed a problem where domination sockets were undervalued in the default
Ask Mr. Robot scales for tanks and healers.</li>
</ul>
<h3>Version 2.5.29</h3>
<ul>
<li>Fixed the look of the socketing advisor tooltip on WoW 9.1.5, which also
fixes an error that started with 9.1.5.</li>
</ul>
<h3>Version 2.5.28</h3>
<ul>
<li>Fixed a problem where domination sockets could get counted twice.</li>
<li>Fixed a minor bug where Pawn's socketing advisor would stay visible when
shift-right-clicking an item with a prismatic socket and then
shift-right-clicking an item with a domination socket, without first closing
the socketing window.</li>
<li>If you have scale values visible on tooltips (they're hidden by
default), you can now hover over the Pawn button when inspecting another
player to see their total scores (using <em>your</em> character's scales) on
Classic, like you can in Shadowlands. </li>
</ul>
<h3>Version 2.5.27</h3>
<ul>
<li>Items with only a domination socket will no longer show a blank
socketing advisor when you shift-right-click them, since Pawn doesn't
suggest domination shards.</li>
<li>You can now assign a value to domination sockets on an item. For Pawn's
default scales, I've chosen a very conservative value for the stat that
assumes that you <em>aren't</em> raiding Sanctum of Domination. The initial
value I've chosen is 45× the value of Leech, which is provided by the
Desolate Shard of Rev which anyone can easily attain without raiding. For
someone who does raid Sanctum of Domination and has access to better shards
and their class's domination set bonus, this default value will be far too
low, so you'll want to increase it to something more appropriate.</li>
</ul>
<h3>Version 2.5.26</h3>
<ul>
<li>The "color tooltip border of upgrades" feature now works again without
errors on the 9.1.5 PTR.</li>
<li>Incorporated a couple of changes from players on CurseForge that will
hopefully improve compatibility between Pawn and ArkInventory.</li>
<li>Burning Crusade Classic: Added support for new types of items with holy
spell damage in English, French, Russian, Latin American Spanish, European
Spanish, Simplified Chinese, and Traditional Chinese versions of Burning
Crusade Classic.</li>
</ul>
<h3>Version 2.5.25</h3>
<ul>
<li>Additional Pawn updates to accomodate changes made in French Burning
Crusade Classic, and to fix a bug I introduced in the previous version that
only affected French versions of the game.</li>
</ul>
<h3>Version 2.5.24</h3>
<ul>
<li>Pawn will now once again recognize specific schools of spell damage on
items in French Burning Crusade Classic. (Other languages, Classic Era, and
Shadowlands were not affected.)</li>
<li>Made a couple of small changes to help make French compatibility
problems easier to fix in the future.<ul>
<li>For the curious, in French it's normal to put a space before AND
after a colon, as in "Équipé : Augmente...". Sometimes, Blizzard uses a
"non-breaking space" instead of a regular space before the colon, and a
regular space after, which is also common. Unfortunately, they're not
consistent; sometimes they just use two regular spaces. And you
can't <em>see</em> the difference, but to code,
those two spaces are as different as A and Z. With this change, Pawn will now always treat
non-breaking spaces and regular spaces the same.</li>
</ul>
</li>
</ul>
<h3>Version 2.5.23</h3>
<ul>
<li>Fixes a harmless but annoying error that could occur when interacting
with socketed items in Shadowlands.</li>
</ul>
<h3>Version 2.5.22</h3>
<ul>
<li>Fixed a few bugs relating to meta sockets in Burning Crusade Classic.
The base values of helms with meta sockets will be (correctly) somewhat
higher after this change, and the current values of a fully-socketed helm
(if you have those turned on) may be significantly higher.</li>
<li>Fixed a problem where Pawn couldn't read the damage stats on the few
rare crossbows that deal an exact, non-random damage with every attack
(Crossbow of the Albatross, Fine Light Crossbow) on French versions of
Classic Era and Burning Crusade Classic. Other languages and other crossbows
were not affected.</li>
<li>Added some additional debugging information to help me understand some
tricky aspects of gem calculations in the future. (That means even more chat
spam when debug mode is on!)</li>
</ul>
<h3>Version 2.5.21</h3>
<ul>
<li>When using the option to ignore gems while leveling (which is <em>
enabled</em> by default) on Burning Crusade Classic, Pawn will now no longer
suggest that you use gems on items with an item level below 100. This means
that those items will get lower values, and also that Pawn will no longer
suggest using green-quality gems in any item by default. You can restore the
(approximate) previous behavior by disabling that option on the Options tab.
(That option affects all characters.)</li>
<li>Added support for more items with spell crit in English and French
Burning Crusade Classic.</li>
<li>A few Shattered Sun / Sunwell gems that don't appear until Burning
Crusade Classic Phase 3 have been removed from recommendations, since
they're not available yet.</li>
<li>Fixed a bug where socket bonuses would always be ignored on items in
Traditional Chinese Burning Crusade Classic.</li>
<li>Fixed a bug on Burning Crusade Classic where the Compare tab would show
a socket bonus even when it would be better to ignore the socket bonus and
only use your best gems. (Item values and upgrade advice were not affected;
this was just a display issue.)</li>
<li>Fixed a harmless error that would appear when logging in on Traditional
Chinese versions of WoW.</li>
<li>Slightly improved performance on Italian Shadowlands.</li>
</ul>
<h3>Version 2.5.20</h3>
<ul>
<li>Pawn should finish its item calculations about 5% faster now.</li>
<li>Added support for more types of items with melee and ranged crit rating
in French, Latin American Spanish, European Spanish, Korean, and Simplified
Chinese Burning Crusade Classic.</li>
</ul>
<h3>Version 2.5.19</h3>
<ul>
<li>Fixed an error that could appear when hovering over an item ("attempt to
get length of field 'Values' (a nil value)").</li>
<li>Added support for more types of items with different amounts of spell
damage and healing on the same line of the tooltip in Russian Burning
Crusade Classic.</li>
<li>Added support for more types of items with MP5 in French Burning Crusade
Classic.</li>
</ul>
<h3>Version 2.5.18</h3>
<ul>
<li>While leveling in Shadowlands (non-Classic), Pawn will now suggest
potential upgrades to heirloom items that used to provide an experience
boost, since those items no longer do and there's less of a downside to
replacing them.</li>
<li>Added support for more types of "the Sorcerer" items in Burning Crusade
Classic in several languages.</li>
<li>Added support for more types of items with MP5 in Simplified Chinese and
Traditional Chinese Burning Crusade Classic.</li>
<li>Added support for more types of items with different amounts of spell
damage and healing on the same line of the tooltip in Traditional Chinese
Burning Crusade Classic.</li>
</ul>
<h3>Version 2.5.17</h3>
<ul>
<li>I'm trying out a new workaround for a couple of game bugs that caused
Pawn to work much more slowly on Classic Era and Burning Crusade Classic.<ul>
<li>Other than just still not being fast enough, the most likely thing
that might break with this change is Pawn missing some of the stats on
items that appear in green text, such as ratings in Burning Crusade
Classic. (I haven't spotted any bugs with those—but if anything did
break, it's probably that.)</li>
</ul>
</li>
<li>Additional performance improvements that affect all versions of the
game.</li>
</ul>
<h3>Version 2.5.16</h3>
<ul>
<li>Added support for more types of items with crit rating on German Burning
Crusade Classic.</li>
</ul>
<h3>Version 2.5.15</h3>
<ul>
<li>Added support for more types of Wrath items (Fiery Wrath, etc.).</li>
<li>Added "Thrown weapon" to the list of weapon types that you can add
values to (or mark as unusable) on the Values tab for Classic Era and
Burning Crusade Classic.</li>
<li>Classes that can't use thrown weapons have them marked as unusable in
the default scales, so by default they won't show as potential upgrades.</li>
<li>Added support for more types of items with spell damage and healing on
the same line of the tooltip, and more with MP5, on English Burning Crusade
Classic.</li>
<li>Added support for more types of items with crit rating on Russian
Burning Crusade Classic.</li>
<li>Fixed a couple of bugs causing health regeneration on items to not be
recognized on French versions of the game.</li>
<li>Further improved the formatting of how some item IDs are displayed.</li>
</ul>
<h3>Version 2.5.14</h3>
<ul>
<li>On Classic and Burning Crusade Classic, Pawn will no longer suggest mail
as upgrades for hunters and shamans or plate for warriors and paladins
before level 40 in some places.</li>
<li>Added support for additional types of items with shield block rating and
dodge rating.</li>
<li>You can now use Enter and Escape to close the popups that appear when
using the Scale tab (export, confirm delete, etc.).</li>
<li>Pawn will now claim that fewer items have "special effects" on the
Compare tab if the "special effect" is something at the top of the item
tooltip like "Mythic." (This doesn't affect item values or upgrade advice in
any way, just the orange diamond on the Compare tab.)</li>
</ul>
<h3>Version 2.5.13</h3>
<ul>
<li>Fixed a problem where Pawn was suggesting random items instead of cut
Golden Draenite gems. (The item values and upgrade advice were correct; it
was just showing the wrong item name. I apologize to anyone who tried to
shove a two-handed mace into a yellow gem socket.)</li>
<li>Fixed a problem where shamans were being treated as if they could
dual-wield on Classic Era.</li>
</ul>
<h3>Version 2.5.12</h3>
<ul>
<li>Added support for items with spell penetration in Classic Era. (They're
already supported in Burning Crusade Classic.)</li>
<li>Added support for the handful of armor penetration items that will
appear in later phases of Burning Crusade Classic.</li>
<li>Worked around a bug in the Russian and Latin American Spanish versions
of Burning Crusade Classic that would cause Pawn to show errors if you had
items with a healing enchantment or random property.</li>
</ul>
<h3>Version 2.5.11</h3>
<ul>
<li>Included several gem cuts that were missing from suggestions, including
Runed and Teardrop—sorry, casters!</li>
<li>Fixed a problem where many of the gems suggested on Burning Crusade
Classic were being suggested based on stats and colors that they had at
different points in the game's history (Wrath or Cataclysm). You should see
more sensible suggestions in the socketing advisor, and the values of
socketed items may slightly increase.</li>
<li>Added support for "of Healing" and "of the Prophet" items on Burning
Crusade Classic. (Thanks to neaves for tracking down the items and a
suggested fix!)<ul>
<li>On Latin American Spanish and Russian, "of Healing" items currently
don't show the spell damage granted. Once that bug is fixed, Pawn will
need an additional change to handle those items properly.</li>
</ul>
</li>
<li>Fixed an error that would occur on Burning Crusade Classic when looking
at an item that has sockets but no meta socket. (Thanks to ahakola for a
suggestion and the many people who reported this.)</li>
<li>Fixed a minor issue with how some item IDs were displayed (a missing
colon).</li>
</ul>
<h3>Version 2.5.10</h3>
<ul>
<li>Meta gems are now supported. You can manually assign a weight per scale
to the special meta gem effects such as
"Minor Run Speed Increase" or "1% Spell Reflect"; the stat portion of a meta
gem will be calculated for you. (A good starting point is 36× the value of
your primary stat.)</li>
<li>Fixed a problem where Pawn wouldn't work at all on Italian Shadowlands.</li>
<li>Fixed a problem where feral attack power wasn't working on English
Burning Crusade Classic.</li>
</ul>
<h3>Version 2.5.9</h3>
<ul>
<li>On Burning Crusade Classic, when determining a socketed item's value,
Pawn will now decide whether the item's value would be maximized by
following the socket bonus, or ignoring the bonus and using all of the same
type of gem.<ul>
<li>The socket bonus will also be taken into account for the advice
given in the socketing advisor popup.</li>
<li>The socket bonus will also be shown on Pawn's Compare tab whenever
the item's value would be maximized by following the socket bonus.</li>
</ul>
</li>
<li>Fixed a problem with wands that deal holy damage on all Russian versions
of WoW.</li>
<li>Fixed a problem with some items that grant mana-per-5 on Russian Burning
Crusade Classic.</li>
</ul>
<h3>Version 2.5.8</h3>
<ul>
<li>Pawn now includes colored sockets in the value of an item like it does
for prismatic sockets. Colored sockets are assigned a value automatically
based on the best gems that fit that socket's color of an appropriate
quality level for the item. Like prismatic sockets, there's no way to
manually override the value of a colored socket or to fine-tune the quality
level of the gem used in the calculation.</li>
<li>Colored and meta sockets are now shown on Pawn's Compare tab.</li>
<li>The socketing advisor will now appear for socketed items in Burning
Crusade Classic.</li>
<li>Added support for more items with spell hit rating on Burning Crusade
Classic.</li>
</ul>
<h3>Version 2.5.7</h3>
<ul>
<li>Added the Gems tab in Burning Crusade Classic.<ul>
<li>Gems with Haste are not currently visible, since they won't appear
until Black Temple opens.</li>
</ul>
</li>
<li>The value of stamina in the Classic and Burning Crusade Classic default
scales for DPS specs was too high and has been reduced to a more reasonable
level.</li>
<li>Added support for some additional caster enchantments on English Classic
and Burning Crusade Classic. (This was accidentally listed in the notes for
2.5.6 in some places, but it's not fixed until 2.5.7.)</li>
<li>Simplified the look of some item IDs when the Show Item IDs option is
enabled.</li>
</ul>
<h3>Version 2.5.6</h3>
<ul>
<li>Fixed a few problems with items that give bonuses to a single type of
magic damage in European Spanish Burning Crusade Classic.</li>
</ul>
<h3>Version 2.5.5</h3>
<ul>
<li>Added support for items with feral attack power on Burning Crusade
Classic.</li>
<li>Added support for more items with defense rating on Burning Crusade
Classic.</li>
<li>Added support for more items with hit rating on Burning Crusade Classic.</li>
<li>Added support for more items with spell hit rating on Simplified Chinese
Burning Crusade Classic.</li>
<li>Fixed problems with weapon damage in Traditional Chinese Burning Crusade
Classic.</li>
<li>Fixed a problem with Outland items with melee and ranged crit rating on
European Spanish Burning Crusade Classic.</li>
<li>Fixed a problem with items with school-specific spell damage on European
Spanish Burning Crusade Classic.</li>
</ul>
<h3>Version 2.5.4</h3>
<ul>
<li>Fixed the calculation of DPS of wands on Portuguese and Korean Burning
Crusade Classic.</li>
</ul>
<h3>Version 2.5.3</h3>
<ul>
<li>Added support for more Outland items with spell crit rating on Burning
Crusade Classic.</li>
<li>Added support for more Outland items with the same amount of spell
damage and healing on Burning Crusade Classic.</li>
</ul>
<h3>Version 2.5.2</h3>
<ul>
<li>Fixed a problem where Pawn missed crit rating on some Outland items in
Burning Crusade Classic.</li>
<li>Fixed a problem where Pawn couldn't determine the DPS of wands in French
Burning Crusade Classic.</li>
<li>Fixed many problems where Pawn missed stats in European Spanish Burning
Crusade Classic.</li>
</ul>
<h3>Version 2.5.1</h3>
<ul>
<li>Added support for various items with hit rating and attack power that
weren't being handled properly before.</li>
<li>Fixed a problem where items with different values of spell damage and
healing on the same line of the tooltip were getting the two stats reversed,
even though I literally <em>triple-checked</em> that before releasing Pawn
2.5.</li>
<li>Minor updates to the German translation.</li>
</ul>
<h3>Version 2.5</h3>
<p>Introducing: Pawn for the Burning Crusade
Classic pre-patch.</p>
<p><strong>Important:</strong> If you imported custom scales on Classic and are continuing
to Burning Crusade Classic, you'll need to update your
weights for all of the percentage-based stats when you get the pre-patch. If, for example, your value for
Crit is 10, an item that gives 1% crit would be worth 10 points on Classic, but
would be worth 80 in Burning Crusade Classic and the pre-patch, because that
item will change to have 8 crit <em>rating</em>. Pawn won't make any automatic
changes to your custom scales. But, if you're using the default stat weights
that come with Pawn, you don't need to do anything.</p>
<ul>
<li>Added support for all Burning Crusade Classic languages:
English, French, German, Korean, Portuguese, Russian, Latin American Spanish,
European Spanish, Simplified Chinese, and Traditional Chinese.<ul>
<li>Known issue: The Spanish PTR currently has a bug where items are
showing spell hit and spell crit as percentages instead of ratings. Pawn
currently processes these items correctly, but once the bug is fixed,
Pawn will need an additional adjustment to work again.</li>
<li>Known issue: The Russian PTR has the same problem with spell hit.</li>
</ul>
</li>
<li>Added support for new stats: Expertise Rating, Resilience Rating, Haste
Rating, Spell Haste Rating, and Spell Penetration.</li>
<li>Added support for new combat ratings present on Classic gear: Hit
Rating, Spell Hit Rating, Crit Rating, Spell Crit Rating, Dodge Rating,
Parry Rating, Block Rating, and Defense Rating.</li>
<li>Added support for items that give different amounts of spell damage and
healing on the same line (Amulet of Flowing Life, etc.).</li>
<li>The default stat weights on Burning Crusade Classic have been updated to
accommodate the combat ratings change.</li>
</ul>
<h3>Version 2.4.18</h3>
<ul>
<li>Russian WoW Classic: You should no longer see a warning about addon
incompatibility when logging in.</li>
</ul>
<h3>Version 2.4.17</h3>
<ul>
<li>Added ArkInventory integration, contributed by a Pawn fan named Matthew.
(Well, I don't know if he <i>said</i> he's a fan. I'm assuming here.)<ul>
<li>When you have ArkInventory and ArkInventoryRules enabled, you can use the <code>pawnupgrade()</code> rule in
ArkInventory to run a Pawn comparison on items in your inventory for sorting. This will return true if the item is
an upgrade and false if it is indeterminate or not an upgrade. To determine if something is not an upgrade, use
<code>pawnnotupgrade()</code>. This rule will return true if the item is definitely not an upgrade, and false if it is
indeterminate or an upgrade. This can be used for auto-sell rules, such as <code>bind(3) and pawnnotupgrade()</code>.</li>
</ul>
</li>
</ul>
<h3>Version 2.4.16</h3>
<ul>
<li>Shadowlands: Pawn will now suggest the +16 stat jewel clusters instead
of +12 stat gems for items level 175 and higher.</li>
</ul>
<h3>Version 2.4.15</h3>
<ul>
<li>Shadowlands: Updated stat weights for Guardian Druid based on a new
simulation from Ask Mr. Robot.</li>
</ul>
<h3>Version 2.4.14</h3>
<ul>
<li>Spanish, Shadowlands only: Fixed a problem where off-hand frill items
were being misidentified as off-hand weapons, so they didn't show upgrades
or values for casters. (This problem didn't apply to Classic or to other
languages.)</li>
<li>Spanish, Spain only, Classic only: Fixed a problem where an error
message appeared when logging in.</li>
<li>Spanish: Fixed detection of Avoidance and Block Value on some items in
certain situations.</li>
</ul>
<h3>Version 2.4.13</h3>
<ul>
<li>Shadowlands: I've included a new set of stat weights from Ask Mr. Robot
yet again—the most notable changes will be for healers, who will see the
value of mastery increased significantly.</li>
<li>Improved a few bits of the Italian translation.</li>
</ul>
<h3>Version 2.4.12</h3>
<ul>
<li>Shadowlands: Pawn 2.4.11 included the wrong set of stat weights; this
version includes the stat weights that were <i>intended</i> to come with
2.4.11. Apologies for the error!</li>
</ul>
<h3>Version 2.4.11</h3>
<ul>
<li>Shadowlands: Pawn now includes new default stat weights for all classes
and specs from Ask Mr. Robot, optimized for typical characters in Mythic
Keystone dungeons. These should give you much better gearing advice than the
previous defaults, but remember that you'll always get the most accurate
advice for your character if you import stat weights from your favorite
simulator (like Ask Mr. Robot).</li>
<li>Pawn's "compare item left" and "compare item right" keybinds work
with world quest item rewards once again.</li>
</ul>
<h3>Version 2.4.10</h3>
<ul>
<li>Worked around a bug in WoW that was causing Pawn to show incorrect
upgrade information for some Shadowlands quest rewards.</li>
<li>Fixed a bug where clicking links in chat and then right-clicking the
window that appeared would open Pawn's Compare tab even if it was for
something that wasn't an item, such as an achievement.</li>
</ul>
<h3>Version 2.4.9</h3>
<ul>
<li>Added Pawn annotations for tooltips of item rewards in the Great Vault.
(I think. Thanks Crazy Carl!)</li>
</ul>
<h3>Version 2.4.8</h3>
<ul>
<li>Pawn can now recover and continue working if another addon changes any
of the class colors and does so incorrectly.</li>
</ul>
<h3>Version 2.4.7</h3>
<ul>
<li>Changed the graphics in the Pawn UI to look more Maw-like.</li>
<li>WoW Classic: In German, mail armor is now properly detected again after
the Naxxramas patch.</li>
</ul>
<h3>Version 2.4.6</h3>
<ul>
<li>Pawn will no longer appear as "out of date" after updating to WoW 9.0.2.</li>
</ul>
<h3>Version 2.4.5</h3>
<ul>
<li>WoW Classic: In Russian, shadow spell damage is now properly recognized
on items. (This problem didn't affect other schools of magic or other
languages.)</li>
</ul>
<h3>Version 2.4.4</h3>
<ul>
<li>Pawn's bag icons should now cooperate with Can I Mog It?'s bag icons
again. Special thanks to the author of that addon, who inspired a much
simpler solution that what I had come up with.</li>
</ul>
<h3>Version 2.4.3</h3>
<ul>
<li>Pawn now has a more complete set of gem recommendations, including new
gems from the Shadowlands. For example, for resto shamans on an ilvl 100
item, Pawn will suggest five different +4 crit gems from different
expansions, so you can buy the one that's cheapest.<ul>
<li>This is just new recommendations, not a new feature—there still
isn't a way to further customize gem quality levels to your exact
tastes, but that's still on the to-do list.</li>
</ul>
</li>
<li>Pawn was a little overzealous in resetting data that might have been
affected by the level squish, so I've changed the way it works to be less
annoying for people who have a lot of alts.</li>
</ul>
<h3>Version 2.4.2</h3>
<ul>
<li><b>Pawn's bag arrows integration will no longer work by default with
custom bag addons.</b><ul>
<li>The game no longer allows customizing that functionality while in
combat, so before this change, Pawn's bag arrow integration caused
errors while performing certain actions in combat, such as swapping
weapons from the character sheet. Disabling support for custom bag
addons is unfortunately the only way I can work around this.</li>
<li>To work around this, custom bag addons that call
IsContainerItemAnUpgrade directly can use
PawnIsContainerItemAnUpgrade when available instead, falling back to
IsContainerItemAnUpgrade if it's nil. Then Pawn will control the bag
arrows like it did before.</li>
</ul>
</li>
<li>Pawn will now show two-handed weapons as potential upgrades for
two-handed Frost Death Knights. If you're all about the dual-wielding life
and want to turn this back off, you can go to Pawn's Values tab, select
"Axe: 2H" (or any other 2H type) under "Weapon types", and then select
"Don't show upgrades for 2H items."</li>
<li>You should no longer see a warning message about addon compatibility
when playing on Russian WoW 9.0.</li>
</ul>
<h3>Version 2.4.1</h3>
<ul>
<li>WoW Classic: Hopefully fixed an error that occurred when turning in a
quest.</li>
</ul>
<h3>Version 2.4</h3>