-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReadMe.txt
1509 lines (1357 loc) · 136 KB
/
ReadMe.txt
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
Rawr v2.3.23.0
------------
We're pleased to announce that, after long last, Rawr3 has entered public beta. You're still welcome to continue using Rawr2 (that's what you're reading the readme for), but we urge you to try out Rawr3, and enjoy all the new features and benefits. Rawr3 is a port of Rawr to Silverlight, which means:
- You can run Rawr3 in your web browser.
- No need to download or install anything.
- It runs on Mac OS X (Intel). Welcome to Rawr, Mac users!
- You can optionally install it locally with 2 clicks from the web version, if you want to have it locally for offline use.
- Lots more.
So give Rawr3 a try today! Get started at: http://elitistjerks.com/rawr.php
Please remember that it's still a beta, though, so lots of things are likely to be buggy or incomplete!
And now back to Rawr v2.3.23.0.
- Fix for default data of a few items.
- Added a few buffs and reorganized the grouping of several buffs.
- Fix for base agility on taurens being off by 1.
- The optimizer will now consider items which have been marked available and are equippable, even if their item type is filtered out.
- Rawr.Hunter: Fix for the ability to select Hunter's Mark. Fix for a crash with Pet buffs and talents.
- Rawr.ShadowPriest: Fix for the bug with +hit calculations.
- Rawr.Elemental: Fix for a bug involving DPS Fire Totems without 4T10.
- Rawr.DPSDK: Added some ArPen-based default gemming templates. Improvements to the way the optimal rotation is detected. Fix for nested special effects producing inflated DPS. Added Resilience and Spell Penetration as optimizable stats. Fix for Cinderglacier being overvalued.
- Rawr.TankDK: Improvements to the way the optimal rotation is detected. Added Resilience and Spell Penetration as optimizable stats.
- Rawr.Moonkin: Fix for 2T10 having value without Omen of Clarity.
- Rawr.Rogue: Added an option to only use the Custom Rotation when optiming. This greatly speeds up the optimization for those who know the best rotation.
Recent Changes:
Instructions
------------
There's no installer for Rawr. Just unzip the zip anywhere you like, that you have full permissions to (that means NOT Program Files on Vista+), and run Rawr.exe. (If you have any concern about Rawr doing anything malicious, the full source code is available at http://rawr.codeplex.com/ for you to review and/or to build yourself)
Once you've got it running, you should see a basic character-screen-like layout of items. All slots will start out blank, so you can either start filling in items, or open an Armory profile. You'll probably want to open your own Armory profile, so you can get some familiar items. Goto File->Load from Armory..., and type in your character name and server (exactly, and choose a region if necessary), and hit OK. After a few sec, it should load your profile. You can mouse over an item to see the stats for it, and click on an item to get a dropdown of all of the other items available for that slot. It'll be missing your buffs, so fill those out on the main screen.
Now that you have your current character fairly well defined, use the item comparison are on the right side of the main window. You can choose a slot and a sort method at the top. The ratings calculated in this graph will update as you make changes to your gear/enchants/buffs, to always be as accurate as possible.
FAQ
---
Q: I get an error on load, "To run this application you must first install..." or "The application failed to initialize properly (0xc0000135)." How do I fix this?
A: Install .NET Framework 3.5sp1 from Microsoft. If it still doesn't work, uninstall .NET Framework completely, reinstall .NET Framework 3.5sp1, and try Rawr again. Download link for .NET Framework 3.5sp1 from Microsoft: http://www.microsoft.com/downloads/details.aspx?FamilyID=AB99342F-5D1A-413D-8319-81DA479AB0D7&displaylang=en
Q: I get a "Cannot access disposed object." error. How can I fix that?
A: This is a bug in an old version of the .NET Framework. Download the most recent version (3.5sp1) from the above link.
Q: There's an item missing! Can you please add [Some Item]?
A: No, Rawr is designed so that we wouldn't need to update it with new items every time a new item was found. You can add items to it yourself, very fast, and very easily. Look the item up on wowhead or thottbot, and remember the item ID # from the URL on wowhead or thottbot. Goto Tools > Edit Items, click Add, type that item ID # in, hit OK, and *poof*, you'll have the item. Another thing you can do, after loading your character from the Armory, is choose Tools > Load Possible Upgrades from Armory. This feature will take *a while*, like 5+ min, but will download all the items that Rawr and the Armory thinks are potential upgrades for you. It's a good idea to run this a few days after a major content patch. However, the Armory is commonly unstable immediately after a major content patch, so expect errors if you don't wait a few days.
Q: Where can I edit the relative stat values (or weights) that Rawr uses?
A: You can't, because Rawr doesn't use stat weights, or anything like that. See below.
Overview of Rawr
----------------
Rawr is a windows app, designed to help you create sets of gear for your WoW character. You can play with different items, enchants, and buffs, and see how they affect your stats and ratings. Based on your current stats, it will also display a graph of the value of known items for a selected slot, including multiple ratings relevant to your class/spec.
How Rawr Handles Items
----------------------
Of paramount importance in an app like this is how it handles items. Nobody wants to type in the stats of all their items, let alone the stats of all the other prospective items for each slot. If you want to customize items, or create new ones (to prepare for test server changes, for example), you still can type in stats, but you don't have to. There are two ways to load Rawr's item database with new items:
First, you can open an armory profile. Use File->Load from Armory..., type in a character name and server, and choose a region if necessary. It will load up and select all of the items used by that armory profile. Second, you can go to the item editor, choose add, and type in just the item id of an item you'd like to add. In both of these cases, the stats about each item is pulled from the Armory, so a web connection is required.
When loading a character from the armory, or starting a new blank character, be sure to go check off what buffs you typicaly raid with, to ensure you get accurate ratings.
How does Rawr work to calculate the values of items? (Or where are the relative stats setup?)
---------------------------------------------------------------------------------------------
Each model in Rawr has a set of calculations that returns one or more rating numbers. These numbers can be DPS/TPS/HPS/Survival/Mitigation/etc, depending on what is important to that model. To generate the charts and other calculations that you see in Rawr, it takes your race, gear, enchants, talents, glyphs, buffs, and any model-specific options, and asks the model to return ratings for your current gear with the slot you are asking about *empty*. This gives the total score for your character without that slot, which is used as a baseline. It then takes each item to be displayed in the chart, and asks the model for a new set of ratings for your character including that item. The difference between those numbers, and the baseline, is what is displayed in the graph (ie, the DPS value of an item).
It is important to realise that every single time you see a line on any of the graphs in Rawr, that it has asked the model to calculate everything from scratch again with that complete character setup. Despite it doing so quickly, it is doing all of these calculations, and never uses any relative stat values (weights), as you may expect.
Rawr uses actual formulae to calculate your ratings; it does not use relative stats and try to multiply the stats together. Rawr is designed to be able to do these calculations quickly and efficiently. This is why the results you get in Rawr are comprehensive and far more accurate than using stats weights ever are. Stat weights are inaccurate, by their very definition, and should not be used when an accurate tool such as Rawr is available.
Rawr looks at the total stats of your character, not the stats of an individual item to measure the value. This is perhaps best explained by an example: Take the example of a DPS class and trying to calculate the graph showing helm values. (NOTE: Not actual calculations, and big round numbers are used for simplicity.)
With no helm equipped, and raid buffed, your stats are:
1000 AP, 190 hit rating (this class actually needs 200 hit rating to be capped), 10% crit, etc.
We calculate the optimal rotation to give 1000 dps, even though you're missing 2% of the time.
Now we equip Helm of Minor Hit (+10 hit rating), pushing your combined stats to:
1000 AP, 200 hit rating (at cap), 10% crit, etc.
Now we calculate the optimal rotation to give 1020 dps, with 0 misses.
Now we equip Helm of Major Hit (+20 hit rating), pushing your combined stats to:
1000 AP, 210 hit rating (over cap), 10% crit, etc.
Now we calculate the optimal rotation to still give 1020 dps, with 0 misses.
For both the 2 Helms of Hit, we calculate the difference in dps from an empty slot to be 1020 - 1000 = 20 dps. Thus both helms appear in the graph as giving 20 extra dps on top of your current equipment/buff setup.
Now we equip Helm of AP, pushing your combined stats to:
1020 AP, 190 hit rating (below cap), 10% crit, etc.
Now we calculate the optimal rotation to give 1010 dps, with 2% misses. Thus its value is shown as 10 dps.
If you then decide to replace your hit rating potion with a crit potion, your total stats while wearing each helm would again be calculated. Now that you have freed up some hit rating elsewhere, the Helm of Major Hit will be at the top of the list. The reason is that in this case you can fully use all the stats it provides.
This same effect will be visible in the displayed value of rings (or trinket), depending on which slot is being displayed. It isn't which slot is being used, but rather the extra stats being provided by the ring (or trinket) in the other slot. For example if your 2nd ring contains a lot of crit, rings that contain a lot of AP might complement it better and appear high in the list for ring 1. If you look at the list for ring 2, the ring with the highest crit is likely to be on top.
An important thing to realize is that we never decide that a stat like hit rating has a relative weight compared to AP and then tried to calculate the score for an item using that weight and the stats of the item (that type of approach is used by many in-game addons but is extremely inaccurate when dealing with capped stats). We simply compare DPS numbers while wearing each possible item. Using this combined stats approach we handle all capping effects.
Frequently, questions are posted on the discussion forums asking how relative weights can be adjusted. There is no way to adjust this, because there are no relative weights to adjust. Relative stats weights are a quick way to judge gear you can use on the day of hitting 80, when you're still far from any of the caps. But after being in more than a handful of heroics, it just becomes too unreliable to use on any stat that has a cap (i.e. expertise, hit, haste, armor penetration, armor and possibly even mana regen).
Source Code
-----------
Rawr's source code is freely available at its website, http://www.codeplex.com/Rawr/ .
Rawr on Mac OS X / Linux
------------------------
NOTE: Rawr v3 is currently in development, and will run natively on OSX Intel. Contact me ([email protected]) if you're interested in beta testing it. Until then, I can't offer any support for running it as describe here, (though it does work for many people):
You can run Rawr using Mono. Mono is a set of libraries that mimic the .NET Framework, which Rawr is built on, allowing it to run on OSX (and Linux). However, unfortunately, it's extremely buggy. If you want to give it a try, please do, it very well may work just fine for you. For most users, running Rawr via some form of emulation (Boot Camp, VMWare Fusion, Parallels, etc) will give you the best results, though.
That said, I'm doing what I can to make Rawr available to Mac users, and that means officially supporting running Rawr on OSX, via Mono.
How to Run Rawr on OSX:
1) Install Mono (http://www.go-mono.com/mono-downloads/download.html) for Mac OS X.
1a) NOTE: At time of writing, Mono v2.4 is the latest, however, it's broken; use Mono v2.2 if you have issues with the latest version.
2) Unzip Rawr.
3) Open the Terminal, navigate to where you unzipped Rawr (look for basic guides to the Terminal, if you need help with that), and type 'mono Rawr.exe', and hit enter. That should launch Rawr for you.
Mono has some problems, so I appreciate your patience as I work to try to make Rawr stable under Mono. I strongly suggest saving often for now.
Known Issues:
- Mono doesn't look perfect. It looks kinda ugly, and you'll see some weird graphical artifacts. I'll try to work around this as best I can, but it's going to take time.
- Mono has some crashing problems. Things will be running fine, then all of a sudden, the whole app'll close. I can try to work around these bugs in Mono, but it's going to take time.
- Tooltips on labels don't work in Mono. I'll see if I can work around this for a later version. At least for stats, you can work around this by using the Copy Character Stats to Clipboard feature.
- The clipboard doesn't work under Mono. In the mean time, when running on Mono, Copy Character Stats to Clipboard will save the stats as 'stats.txt' in the folder with Rawr.
- More issues, I'm sure.
OLDER VERSION HISTORY
---------------------
v2.3.22.0
-Fix for the stats of Imp Lay on Hands.
-Fixes to a couple item stats.
-Rawr.Bear: Fix for resistance calculations being slightly off.
-Rawr.Cat: Fix for combo point generation rate being slightly off due to avoidance. Fix for bite damage being doublely reduced by combo points. Improved default gemming templates. Improved relevancy checking by ignoring items with spellpower. Fix for Idol of the Crying Moon calculations when it was the only crit-affecting special effect.
-Rawr.Rogue: Fix for the amount of CPs generated per CPG. Fix for Mutilate being usable with all weapons, and tweak to damage. Fix for the value of 3 points of Vile Poisons. Fix for base offhand damage. Fix for Crit double dipping with Master Poisoner. Fix for Haste calculation.
-Rawr.RestoSham: Fix for the duration of GCDs.
-Rawr.DPSDK: Slight fix for Glyph of Scourge Strike. Fixed the text of Glyph of Unholy Blight. Better detection of rotation without relying on single key talents.
-Rawr.TankDK: Fix for Abom's Might calculation. Fix for a few buffs/procs having no value. Fix for damage taken in Frost Presence.
-Rawr.Moonkin: Fix a display issue where spells that are not present in a given rotation would show NaN in the detailed spell breakdown rather than 0.
-Rawr.DPSWarr: Tweaks for Sudden Death and the 4T10 for Arms.
-Rawr.Elemental: Implemented Fire Elemental modeling.
-Rawr.HealPriest: Fix for not being able to load some older character files.
-Rawr.Warlock: Fix for not being able to load some older character files.
v2.3.21.0
- Rawr E-mail: I get a lot of e-mail about Rawr, and occasionally some of it falls through the cracks. In order to separate it from my personal e-mail, and more importantly to get more eyes involved, I've setup a new e-mail account for the Rawr Dev Team: [email protected]. Everyone, please use that e-mail for Rawr related e-mails now. Myself, and several of the other devs have access to it, so you're more likely to get a quick response. Additionally, if you've sent me anything in the last few weeks and haven't gotten a response, go ahead and resend it to [email protected].
- Significant performance improvements to many models. Some of them *extremely* significant.
- Rawr.ShadowPriest: Readded Crypt Fever. Mind Flay no longer benefits from Mental Agility.
- Rawr.HealingPriest: Renamed Rawr.HolyPriest to Rawr.HealingPriest, to make it more clear that it supports both specs of healing priests. Fix for Binding Heal calculations. Added support for Binding Light/Stone trinket.
- Rawr.Tree: Updated default gemming templates.
- Rawr.Hunter: Updated default gemming templates.
- Rawr.Moonkin: Support for Fetish of Volatile Power and Nevermelting Ice Crystal.
- Rawr.Rogue: Implemented racial expertise bonuses. Modified how avoided white attack are displayed. Crit caps are now shown in the crit display. Fixes for Filthy Tricks not reducing TotT cost, exp/hit calculations, CQC offhand damage, overly high CPG usage in some cycles, overall crit chance, and AP scaling of Eviscerate.
- Rawr.Elemental: Adjustments to the calculations for Searing and Magma Totems.
- Rawr.TankDK: Fix for offhand items granting errant mitigation.
- Rawr.DPSDK: Fix for how custom graphs are displayed. Fix for an issue with the calculation for Rune of the Fallen Crusader. Fix for value of the ICC buff. There is now a custom graph showing DPS in different presences.
- Rawr.ProtPaladin: Added % Chance to be Crit Without Holy Shield as an optimizable stat, and removed Defense Skill.
- Rawr.DPSWarr: Now auto-detects Arms vs Fury based on talents, instead of an option on the Options pane. Fix for execute spam in Arms.
v2.3.20.0
- Fixed a bug with gems in custom gemming templates not being considered available when they should be.
- Rawr.Bear: Several performance improvements. Fix for editing the custom values for the presetable fields on the Options tab.
- Rawr.Cat: Several performance improvements.
- Rawr.DPSWarr: Fix for ArPen calculations being broken.
- Rawr.Moonkin: Fix for calculation of 2T10. Several performance improvements.
- Rawr.Rogue: Fix for Mace Spec, Serrated Blades, Glyph of Sinister Strike, and Mutilate damage calculations. Fix for the CP generation probability tables for non-Mutilate.
- Rawr.ProtPaladin: Support for more trinket effects. Implemented Survival Soft Cap, which is a feature to impose diminishing returns on Survival, past a customizable value.
- Rawr.Tree: Fix for movement speed not being considered relevant.
- Rawr.ProtWarrior: Added Block Value as an optimizable stats.
v2.3.19.0
- Further improved default filters (keep any feedback coming) and itemcache. Should include everything from Midsummer and Ruby Sanctum that's know so far. Default filters shouldn't have anything hidden by default this time.
- Updated modeling of a variety of weapon enchants (Mongoose changed, Black Magic works for some non-casters) and trinkets (mostly from ICC).
- Fixed a slight miscalculation in Armor Penetration effects.
- Improved Wowhead parsing.
- Rawr.Cat: Improved modeling for a whole bunch of trinkets and other special effects. Yes, those weapon enchants are actually correct; say goodbye to Mongoose, and hello to Black Magic (for some high end cats, anyway).
- Rawr.Bear: Improved modeling for a whole bunch of trinkets and other special effects. Updated the presets on the options tab for T10.
- Rawr.Mage: Fix for incremental optimizations on Evocation withotu mana segmentation (should solve odd issue where certain stats change in value drastically when you're right on the edge of needing to evocate during a fight).
- Rawr.DPSDK: Fix for getting the DW penalty when wearing a 2H + a disabled OH. Fix for some runeforges stacking. Added gemming templates using Relentless meta.
- Rawr.TankDK: Fix for some runeforges stacking. Fix for a few talents showing up as negative value.
- Rawr.DPSWarr: Fix for the DPS cost of maintaining buffs/debuffs.
- Rawr.Hunter: Improvements to the options UI. Fix for Beast Within calculations.
- Rawr.Retribution: Fix for a bug with target parry chance. Improved optimizable values. Added some default gemming templates.
- Rawr.Rogue: Added more default gemming templates. Fixes for Relentless Strikes value, Envenom cycles, Mutilate requirements, Mutilate CP generation, and probability of extra CP procs. Modeled Tiny Abomination in a Jar. Fix for Hack and Slash proccing off Slice and Dice. Modeled Heartpierce proc.
- Rawr.ProtPaladin: Improved optimizable values.
- Rawr.Moonkin: Fixes for Starfall damage, 2T10, Earth and Moon, and Master Shapeshifter. Improved relevency handling. Added Starfall/Treants to the spell breakdown display.
- Rawr.Warlock: Added options to value raid buffs. Added Decimate execute stage. Fixes for crit procs, Haunt recasting, Nibelung, Bloodlust on pets, Demonic Empowerment, 2T9 for Demo.
- Rawr.Enhance: Modeled Tiny Abomination in a Jar.
v2.3.18.0
- Fix for bug in parsing characters with certain abnormal characters in their data.
- Fix for a lockup in the item editor.
- More improvements to the default filters and item cache.
- Rawr.Mage: Improvements to rotation solver.
- Rawr.TankDK: Fix for crashing bug.
- Rawr.Retribution: Fix for RunSpeed being relevant.
- Rawr.Warlock: Further improvements to pet modeling.
- Rawr.RestoSham: Fix for certain profession buffs being relevant.
v2.3.17.0
- Lots of improvements to the default data files. There is a known issue with the source on PvP items, but otherwise should be pretty good.
- Fix for a bug with gemming templates being considered available for the optimizer when disabled in some cases.
- Some significant improvements to Optimizer performance.
- Significant improvements to launch time.
- Rawr.Warlock: Tons of bugfixes and improvements! Pet modeling! Joy!
- Rawr.TankDK: Improvements to rotation handling.
- Rawr.Elemental: Added option to use a DPS totem. Fix for Glyph of Flame Shock calculations.
- Rawr.Mage: Fix for a bug with potion usage. Added some extra information in the Solution results. Fix for damage calculations on Living Bomb and Pyroblast DoTs.
v2.3.16.0
- Oops.
v2.3.15.0
- Improvements to Wowhead/Armory parsing.
- Rawr.Mage: Fix for calculations being broken on 32bit OSes.
- Rawr.Warlock: Lots more work on fleshing out missing parts of the model. (Pets are somewhat workings; yes, we know it's very important, and are actively working on it)
- Rawr.TankDK: Further improvements to ability usage mechanics.
- Rawr.Elemental: Added Chain Lightning and Fire Nova usage.
- Rawr.Moonkin: Updated relevancy logic. Couple fixes for spell damage displays.
- Rawr.Healadin: Updated relevancy logic.
- Rawr.Retribution: Fix for a couple crashes. Added support for a few more special effect types.
- Rawr.Cat: Fix for base stats for Night Elves.
- Rawr.DPSDK: Fix for ArPen calculations with Blood Gorged. Fix for expertise calculations.
- Rawr.Rogue: Added Turn the Tables support.
v2.3.14.0
- Rawr3: Tons of fixes for Rawr3 compatability and UI.
- Significant performance improvements all around.
- More fixes and improvements to Wowhead/Armory parsing.
- Gemming Template settings (enabled/disabled and custom templates) are now stored *per character*, instead of globally. You'll need to recreate any custom gemming templates you've made.
- Rawr.Warlock: The current Rawr.Warlock model has been dormant and abandoned for a while now. It has now been replaced with a brand new model that should be much more accurate and useful. It still has some incomplete parts, but they're actively being worked on. Please post any feedback you have! (in before "zomg u broke warlocks agian wtf!!!1")
- Rawr.Rogue: Fixes for Lightning Reflexes numbers, white damage, Glyph of Rupture, Rupture damage without Mangle, poison crit chance, target crit buffs, Relentless Strikes, Ruthlessness, Spell Hit.
- Rawr.Mage: Significant performance improvements. Added partial resists of Ignite. Fixes for Glyph of Fireball tooltip.
- Rawr.Healadin: Fix for stat buffs with spirits being ignored.
- Rawr.Moonkin: Updated ability formulae for 3.3.3.
- Rawr.Cat: Updated ability formulae for 3.3.3.
- Rawr.Bear: Updated ability formulae for 3.3.3.
- Rawr.TankDK: Fix for a couple UI issues. Fix for Armor calculations. Updated ability formulae for 3.3.3.
- Rawr.ProtWarr: Updated ability formulae for 3.3.3.
- Rawr.DPSWarr: Updated ability formulae for 3.3.3.
- Rawr.Elemental: Updated ability formulae for 3.3.3.
- Rawr.Enhance: Updated ability formulae for 3.3.3.
- Rawr.Hunter: Fix for a few UI-related bugs/crashes.
v2.3.13.0
- Rawr now properly reports if Armory cannot find a character.
- Rawr.Hunter: Pets should no longer gain double benefit from buffs on both the hunter and the pet.
- Rawr.Rogue: Mangle and Trauma debuffs should now properly increase bleed damage. 3.3.3 changes implemented in PTR mode. Deadly and Instant Poison damage and crit rate is now more accurate.
- Rawr.DPSDK: Scourge Strike updated for 3.3.3 values.
- Rawr.Mage: Support for Arcane + Scorch DPS Cycles removed.
- Rawr.SPriest: Phylactery of the Nameless Lich finally modeled correctly.
v2.3.12.0
- First, a note about Rawr3. Rawr3 has been in development for quite a while now, and we know that everyone's eager to get it. It's been held back for a while now by a showstopping issue that we've been trying to work around. I'm pleased to report that we've found an awesome solution to that showstopping issue (Shadowed rocks), and so Rawr3 is nearing public beta. We're tentatively shooting for next weekend (Mar 20/21), but please don't shoot us if something comes up and we're not able to make that date!
- Vault of Archavon has its own catagory in the filtering.
- Strength of Wrynn / Hellscream's Warsong Buff have been added to the Temporary Buff section.
- Almost all healing/dps/tanking models have support for this buff.
- Items with Resilience now are catagorized as "Purchaseable PvP Item" instead of displaying with no source.
- Rawr.Retribution: Spell selection logic cleaned up.
- Rawr.Hunter: Hunter rotation logic fixes. 4T10 should be properly modeled now, the DPS value of it was far lower then it actually is. The optimizer should now instruct you to use Iceblade Arrows rather then Saronite Arrows.
- Rawr.DPSDK: 3.3.3 Frost changes implemented.
- Rawr.Mage: 3.3.3 changes to Incanters Absorbtion implemented. Haste procs should be modeled more accurately now.
- Rawr.Healadin: Implemented Infusion of Light. 4T9 set bonus should now be modeled correctly. 4T10 set bonus is now modeled correctly.
- Rawr.HealPriest: New "Renew" rotation has been added to the Role dropdown list. 2T9 and 4T9 set bonuses added.
v2.3.11.0
- Load from Armory code cleaned up.
- Tiny Abomination in a Jar's proc how now been more accurately modeled.
- You should now be able to reload (or load) a character from the EU armory without trouble.
- Rawr.Mage: Frost DPS Cycles with Frostfire Bolt on Brain Freeze DPS in 3.3.3 implemented. Fire Mage changes for 3.3.3 implemented.
- Rawr.Retribution: Crit Depression calculations adjusted per latest testing in-game. (4.8% are no longer forced hits) Wrath of Air Totem is now a relevant buff. Corrections to calculations for rotational changes under 20% hp and during heroism made. Swift Retribution and Heart of the Crusader talents will automatically turn this buff on for you.
- Rawr.Enhance: Crit Depression calculations adjusted per latest testing in-game. (4.8% are no longer forced hits)
- Rawr.Hunter: Shot rotations cleaned up.
- Rawr.Rogue: White attacks are no longer normalized, rupture should now have the correct duration. Model will now prioritize between rupture and SnD. Killing Spree (and Glyph of Killing Spree) now modeled. Deadly Poison application chance is now increased by Improved Poisons. Multiple other talents modeled or fixed.
- Rawr.ShadowPriest: Glyph of Dispersion is now modeled correctly. DoT effects which are subject to haste now have a decimal duration displayed. Nibelung should now be modeled correctly.
v2.3.10.0
- More improvements to the default filters
- Further improvement on avoiding useless gem swaps from the Optimizer.
- Normal/Heroic ICC items should now share uniqueness.
- Rawr.Retribution: Improvements to rotation calculations.
- Rawr.Mage: Support for 3.3.3 chanages. Added support for the DoTTick special effect trigger. Added additional spell cycle information in tooltips.
- Rawr.Healadin: Fix for Divine Intellect calculations.
- Rawr.Rogue: Implemented weapon speed normalization. Fixed offhand damage calculations. Fixed avoided attacks display. Crit procs now work on SS and Hemo. Implemented DP dropping on Envenoms, this fixes the Envenom usage in Combat builds which now also use SnD on higher CP. Fix for white crit chance being able to go over 100%. Fix for Black Magic. Fix for DP tick counts.
- Rawr.Hunter: Improvements to the rotation system.
- Rawr.DPSWarr: Fix for some abilities using the wrong MH/OH dodge chance, when they are different.
v2.3.9.0
- More improvements to the default item filters.
- Improved proc calculation of Bryntoll and Shadowstrike.
- Improved parsing of source data from Wowhead.
- Improvements to batch optimizations.
- Fix for Cost optimization ignoring class restrictions.
- Improvement for optimizer postprocessing gem swapping.
- Rawr.Rogue: Significant rewrite to be much more up to date (this model had been untouched for quite a while and had grown quite out of date). Please report any issues you discover, and we'll do our best to get them resolved asap.
- Rawr.Cat: Expanded the default gemming templates. Fix for white crit cap.
- Rawr.Bear: Added support for target attack speed debuffs (remember to drop your target attack speed on the options panel back down to undebuffed values!).
- Rawr.Hunter: Updated Zod Bow proc to show its effect in its tooltip. Implemented crit caps and floors. Several tooltip improvements for calculations. Now loads all pet data from the Armory. Automatically selects a Shot Priority for you based on your spec, when loading from the Armory. Swapping specs will also automatically swap your Shot Priority.
- Rawr.Enhance: Export of calcs now forces "simulate_mana" to on.
- Rawr.DPSWarr: Improved flurry calculations. Significantly improved many calculation tooltips. Fix for Deep Wounds tick rate at very high crit rates. Fix for white crit cap.
- Rawr.Mage: Added support for ABSpam034MBAM rotation. Support for Evocation being hasted by 2T10. Improved modeling of Nibelung.
- Rawr.TankDK: Fixed a bug with expertise calculations. Updated to model the hotfixed changes to Frost Presence and Icebound Fortitude.
- Rawr.RestoSham: Fixed healing style charts to correctly display burst styles. Many significant calculation fixes and improvements.
- Rawr.Retribution: Improved 2T10 calculations. Fix for Exorcism and Consecration being hasted by spell haste.
- Rawr.ProtPaladin: Updated to model the hotfixed reduction in Sacred Duty effect.
- Rawr.DPSDK: Fix for Target Dodge % and Target Miss % optimizable values not behaving as expected.
- Rawr.ProtWarr: Updated Shield Slam, Devastate, and Concussion Blow for their correct 3.3.2 damage and threat values. Changed optimal rotation detection to be more robust. Added non-Revenge rotations if no points are spent in Improved Revenge. Made some minor fixes to the way average ability damage takes into account avoidance, crits, and glancing blows.
- Rawr.Moonkin: Fix for Idol of the Lunar Eclipse modeling.
- Rawr.Elemental: Fix for Bizuri's Totem of Shattered Ice modeling.
- Rawr.ShadowPriest: Added better handling of Nevermelting Ice Crystal trinket.
v2.3.8.0
- Rawr.Hunter: Fixed a crashing bug.
- Rawr.Rogue: Fix for cycles that used less than 3 finishers.
- Rawr.DPSDK: Fix for Blood's Glyph of Disease priority.
v2.3.7.0
- Default Item Filters should now more accurately reflect what most raiders have available to them. A filter was also added which enables the hide/show of green quality gems. Token items which require the prior version (ie: T10 251 -->T10 264) are now correctly filtered.
- Rawr.Enhance: Improvements to accuracy of EnhanceSim Export.
- Rawr.Hunter: Fixed a crash with hunter pet talents.
- Rawr.Moonkin: Idol of Lunar Eclipse should now be properly modeled.
- Rawr.Mage: Cycles with 2T10 should now be more accurate.
- Rawr.ProtPaladin: HotR should do the correct threat/damage now.
- Rawr.Rogue: Murder is now modeled correctly. Glyph of Hunger for Blood is now properly modeled, display of stat values cleaned up. Glyph of Tricks of the Trade is now listed. Rogue T10 set bonuses are now properly modeled.
- Rawr.DPSDK: Moved location of Rotation information to the options pane, rotation calculations smoothed out. Tweeked priority system and disease uptime calculations. Blood Gorged should now properly apply the armor penetration bonus of the talent.
- Rawr.TankDK: Armor in Frost Presence updated, checkbox added to enable/disable Parry Haste.
- Rawr.DPSWarr: Cleaned up calculations for 2T10 this set bonus should properly show as an upgrade when it is one. Fixed a crash with Fury when not equiping a mainhand weapon.
v2.3.6.0
- Chart Data should Export correctly now.
- Battlemaster trinkets on use are now modeled differently.
- Regex fixes to parsing of several spell effects.
- Wowhead's DB still has a bug with sockets being shown in spots 2&3 instead of 1&2 for some items, but we've compensated for this until they fix it.
- Additional item information (BoP/BoE) attached to items now.
- Updates to item filters; many new filter types added, check them out!
- RPGO's Character Profiler should play nice with Rawr now.
- Currently equiped gems (when loaded from Armory) are automatically marked as avaliable.
- Rawr.Tree: Improved handeling of procs from trinkets and spells. Haste (especially in trinket form) should be modeled better.
- Rawr.Warlock: Many spell coefficients and multipliers are now displayed in the mouseover tooltips. Damage from crits should also be calculated correctly now.
- Rawr.TankDK: Runic Power accumulation and usage should be more accurately modeled. Fixed a bug in which Improved Icy Talons was stacking with normal Ice Talons. Sigil of the Bone Gryphon should now properly stack its effect. Blood Gorged now properly increases your damage done. Hysteria no longer has a personal DPS value, to be added back in later.
- Rawr.DPSDK: Death Runes (from all trees) should now be more accurately modeled. Killing Machine and Rime should now interact properly with their affected abilities.
- Rawr.DPSWarr: Gem templates have been updated, though only ones which you're likely to use are active by default. Turning on more (or all of them) will slow down performance. Deathbringer's Will will now proc Haste instead of ArPen.
- Rawr.Enhance: Deathbringer's Will will now proc Haste instead of ArPen. The combat table should now play nice with the (white) crit cap.
- Rawr.ProtWarr: Crit depression is now properly modeled based on new research. Mocking blow threat (and mocking blow glyphs) are now properly modeled. Boss Attack speed calculations updated.
- Rawr.Hunter: Deathbringer's Will will now proc Haste instead of ArPen.
- Rawr.Mage: Nibelung's proc has been modeled and added. Improvements (both in accuracy and speed) to sequence reconstruction.
- Rawr.RestoSham: Gemming templates updated. Fight Activity slider added, and better overheal calculations.
- Rawr.Cat: Deathbringer's Will will now proc Haste instead of ArPen.
v2.3.5.0
- Fixed a significant performance issue that was introduced in v2.3.4, and affected most models, but especially Cat. Sorry about those multi-hour optimizations for a build there.
- Improved and clarified the wording on a variety of error messages throughout Rawr to try to be more helpful.
- Many models now have better support for proc'd direct damage special effects (ie, chance on hit to deal 5000 fire damage, etc).
- Improved filters to include ICC bosses. Some bosses whose items come from chests are still problematic, but there's at least something there now.
- Added support for Black Magic in several models. IMPORTANT! Please note however that for models which allow dual weilding, Black Magic does *not* stack, and Rawr doesn't know this yet. It may show dual-Black Magic as the optimal weapon enchants, but really you should only enchant one weapon with it in that case. We're working on a fix for this.
- Improved handling of PvP gear filtering and source parsing.
- Fix for downloading talent images from the Armory.
- Adjusted the proc rate of Berserking and Executioner to match recent testing.
- Rawr.Warlock: WARLOCKS! The big stream of updates has finally began! Rebuilt the combat priority queue. All spells, talents, and glyphs should have the correct damage, coefficients, multipliers, and effects, updated for 3.3. 2T10 implemented. Improved stat display. Added support for the missing spell crit debuff. Added several default talent specs. Cleaned up the options panel.
- Rawr.Mage: Improved support for 2T10 to match the latest testing. Slight fix for haste calculations. Improved graph support.
- Rawr.Tree: Fixes and improvements for mana restore effects. Slight fix for WG healing value.
- Rawr.DPSDK: Remodelled Cinderglacier, improved handling of damage done-triggered special effects, and tweaked various ability calculations to match in-game testing. Improved valuing of hit and expertise based on their affect on your rotation. Fix for offhand OB hits not procing rime. Fix for parsing of Sigil of the Hanged Man.
- Rawr.Cat: Added handling for Victor's Call, and similar recursive special effects.
- Rawr.Hunter: Fix for a bug with changing pet options.
- Rawr.RestoSham: Fix for Shard of the Flame.
- Rawr.Healadin: Fix for Shard of the Flame.
- Rawr.DPSWarr: Fix for a performance issue with the optimizer and multiple ArPen trinkets. Fixed an issue with sword spec not procing if you only have white attacks selected. Added rage and glancing from sword spec. Added several more default talent specs. Improved tooltips on several of the stats on the Stats tab.
- Rawr.Rogue: Did a bit of cleanup to the options panel.
- Rawr.Enhance: Fix for an export to EnhSim issue. Slight fix for ED and fire totem uptimes.
- Rawr.TankDK: Fix for saving and loading of options tab data. Fix for parsing of Sigil of the Hanged Man. Fix for handling of recursive special effects.
- Rawr.ProtPaladin: Fix for a rare chart crash.
- Rawr.ProtWarr: Improvements to proc triggering chances. Several fixes for Deep Wounds calculations. Improved handling of partial talent specs, leading to better values on the talent point comparison chart.
v2.3.4.0
- More improvements to Wowhead/Armory parsing.
- More special effect handling improvements.
- Added an ilvl 259-276 filter group.
- Added a warning if you have too many/few talent points allocated.
- Fix for a couple enchants being missing, or mistagged as requiring a profession.
- Rawr.ProtPaladin: Fix for DK rune enchants showing up.
- Rawr.Hunter: Improved the UI of the options screen. Fix for DK rune enchants showing up. Fix for armor penetration debuffs applying to pets. Fix for happiness being applied twice to pets.
- Rawr.DPSWarr: Fix for crit depression calculations. Displayed crit chance is now locked at your basic crit chance against equal level mobs (ie, should match character screen). Fix for a bug with very low amounts of armor penetration. Fix for DBW trinket calculations.
- Rawr.RestoSham: Support for more special effects.
- Rawr.Elemental: Updated T9 set bonuses.
- Rawr.Tree: Added option to save/load spell profiles, and included several defaults. Added an MPS chart.
- Rawr.Warlock: There's still a big updating coming, but it's still not quite ready. We're sorry that it keeps getting dragged out.
- Rawr.Cat: Slight fix to Idol of Mutilation Calculations. Added support for Idol of the Crying Moon. NOTE: It's currently undervaluing Idol of the Crying Moon; this idol is indeed better than Mutilation for Cats, assuming you can keep the buff up for the fight duration.
- Rawr.Bear: Slight fix to Idol of Mutilation Calculations. Added support for Idol of the Crying Moon.
v2.3.3.0
- Further improvements to parsing and calculations on many of the new trinkets and relics.
- Lots of improvements and tweaks to the Item Cost handling.
- Rawr.Tree: Keep bearing with us as we continue with significant Tree changes. Please keep giving feedback on our discussion forums. GotEM should be fixed now, along with many rating calculations updates. Many new or improved options.
- Rawr.Enhance: Improved Deathbringer's Will calculations. Removed Glyph of Fire Nova. Fix for Windfury damage applying without using Windfury on MH/OH. Fix for spell-triggered special effect uptime.
- Rawr.Mage: Updated PvP set bonuses. Fix for bug with heroism on short fights.
- Rawr.DPSWarrior: Updated PvP set bonuses. Implemented ArPen capping from special effects.
- Rawr.Elemental: Several minor fixes.
- Rawr.Cat: Fix for crit capping due to special effects. Accurate modelling of Deathbringer's Will.
- Rawr.ProtWarr: Fix for expertise from racials.
- Rawr.Healadin: Support for new Libram.
- Rawr.Hunter: Fix for hit optimization, pet talents, and a rare issue with viper uptime. Handling for Zod's Repeating Longbow. Fix for Chimera Shot + Serpent Sting interaction.
- Rawr.RestoSham: Added/improved support for many more trinkets.
- Rawr.Moonkin: Fix for calculations of rotations that are mana neutral.
- Rawr.Rogue: Implemented most 3.3 changes.
- Rawr.DPSDK: Implemented Deathbringer's Will.
v2.3.2.0
- Added several new talent presets.
- Implemented several new trinkets.
- Added a new Gear Planning Option. It allows you to assign an arbitrary cost to each item, and use the Optimizer to find the best upgrade set per cost, or within a cost threshold. There's also a new version of the Direct Upgrades chart, rated by Upgrade per Cost. See the discussion thread on our forums for further details.
- Rawr.Tree: Further major changes to rotations. Keep the feedback coming, please! Fix for Lifebloom stacks being bugged. Support for T10 set bonuses, and the new idol. Added custom charts, more stat information.
- Rawr.SPriest: Fix for Mind Flay and 4T10.
- Rawr.Moonkin: Fix for the T10 set bonuses not applying.
- Rawr.Mage: Further improvements to Frost cycles; should be very close to accurate now (possibly underestimating 2T10). Adjusted Flamestrike cast time, and implemented 2T10 in FBLBPyro. Improved sequence reconstruction.
- Rawr.Hunter: Improved support for several trinkets. Added Survivability rating (can adjust the weight on the options tab)! Added display of pet attacks being dodged. Significantly improved pet stat calculations. Fixes and improvements for several other damage calculations.
- Rawr.DPSDK: Scourge Strike calculations updated to reflect the hotfix.
- Rawr.Retribution: You can now definte multiple rotation priorities and the calculations will try each of them and use the highest DPS rotation. A new graph will show all of the defined rotations.
- Rawr.DPSWarr: Fix for DW tick frequency.
- Rawr.Enhance: Implemented Deathbringer's Will, and added support for procs on DoT ticks.
v2.3.1.0
- Many 3.3 trinkets now have their effects modeled correctly.
- Filters have been updated to include new 3.3 gear.
- Hymn of Hope and Mana Tide totem are now selectable buffs.
- Your dodge is now floored at 0% even with the Chill of the Throne debuff active.
- Additional Teir 10 set bonus effects for many modules implemented.
- Rawr.TankdDK: Rune of the Nerubian Carapace is now avalible for selection.
- Rawr.Mage: Improved handeling of Frost DPS Cycles.
- Rawr.Moonkin: New stat panel! This should show more information, in a more helpful manner.
- Rawr.Tree: Rotation calculations redone, should be more accurate now.
- Rawr.Hunter: Hit will now properly effect your pet's chance to be dodged. Mana calculations for Aspect of the Viper fixed, you should see a DPS drop if you would run OOM and are not set to use Viper. Pet talents should now look and feel like the normal talent pane.
v2.3.0.0
- Most actively developed models should be updated for WoW Patch 3.3. We'll be releasing new versions of Rawr frequently in the next few days, to provide updates and bug fixes, as much as we can.
- Rawr.Enhance: Fix for several issues with haste affecting ability GCDs it shouldn't.
- Rawr.DPSWarr: Several fixes for T10 set bonuses. Fix for broken Imp Slam.
- Rawr.Tree: Updated with new Glyph, new GotEM, and a couple trinket effects. Overhauled rotation model.
- Rawr.Hunter: Fix for broken Expose Weakness. Improvements to pet scaling.
- Rawr.Mage: Fixes and improvements for sequence reconstruction. Some support for 2T10 in cycle analyzer for frost. Currently it's only feasible for manual comparisons, not for automated optimum search.
- Rawr.TankDK: Updated for 3.3 changes.
- Rawr.SPriest: Updated for 3.3 changes.
- Rawr.HealPriest: Updated for 3.3 changes.
v2.2.28.0
- Teir 10 set bonus added for most classes.
- Rawr.Hunter: Many bug fixes and calculation changes.
- Rawr.TankDK: Reworked tanking rotation calculations, Mark of Blood is now propery valued. Heart strike now does the proper threat on its 2nd target.
- Rawr.DPSWarr: Bladestorm now uses the correct amount of whirlwinds. Arms rotation refactored
- Rawr.Enhance: Many conditions added to the optimizer. Hit no longer reduces glancing blows (thus fixing hit being over valued). Fire nova modeling added for 3.3.
- Rawr.Cat: Very high crit values no longer do funny things to the combat table.
- Rawr.RestoSham: Mana restore effects (from procs/trinkets) now work correctly.
v2.2.27.0
- Rawr.Hunter: Fix for a crash with Dwarves/Trolls.
- Rawr.Enhance: Fix for major bug with Windfury calculations from yesterday's builds. Fix for fire totem damage.
- Rawr.Rogue: Fix for a crash with Deadly Poisons.
v2.2.26.0
- Fix for a crash on loading a few characters from Armory
v2.2.25.0
- Rawr.Enhance: Many Updates to GCD interaction with ability usage to improve accuracy of the module.
- Rawr.DPSWarr: Using Bladestorm will no longer eat all your GCDs in low rage settings. Offhand weapon enchants will no longer use your Mainhand weapon's speed for their uptime calculations.
- Rawr.Tree: Added a replenishment buff checkbox in the buffs tab (previously, this was assumed "on" all the time). Added a slider to allow users to define how much time they cast vs not cast.
- Rawr.TankDK: Fixed multiple issues with the value of hit, implemented caps and floors for avoidance stats. T9 set bonus should now be properly modeled.
- Rawr.Elemental: Added support for multiple targets and player latency.
- Rawr.Hunter: Chimera Shot's damage should now be calculated correctly, as should Wild Quiver. Fixed handleing of the 2pT9 bonus and various trinkets. Pets should regen focus at the correct rate now and their Kill Command should hit for the correct damage. Auto Shot should now be properly affected by haste. Steady Shot should now scale correctly. Cosmetic Work on the Options Panel made. Overall, there have been a large amount of changes to Rawr.Hunter, so please be sure to report any bugs you encounter on our site.
- Rawr.Rogue: T9 Set bonus should now be modeled correctly. Mutilate and Envenom should now do the proper amount of damage.
v2.2.24.0
- A debuff was added to represent the "Expose Weakness" debuff used in the ToTC Anub encounter.
- Rawr.Bear: Fixed a bug with Heroic Presense calculation.
- Rawr.Moonkin: DoTs now benefit from Nature's Grace
- Rawr.Enhance: User selected priority system implemnted. Added support for modeling Flame Shock.
- Rawr.Rogue: Many updated applied; this should fix a number of issues with trinkets and talents not being modeled correctly. Haste has been updated, Rawr also now assumes (if you have the talent) that you use Blade Flurry ever 120 seconds.
- Rawr.ProtWarr: Support added for boss dehaste abilities (ie: Thunder Clap, Imp. Icy Touch, etc)
- Rawr.Warlock: Added Glyph of Quick Decay. Fix for a crash when using a non-filler spell as the last spell in your rotation (DPS will be terrible, due to not having a filler, but at least won't crash when you're in the middle of swapping spells around in your rotation).
v2.2.23.0
- Shift+Right-Click will now allow you to custom gem an item. This mirrors in-game functionality.
- Added a Lesser Flask of Resistance to default Buffs.
- Rawr.Cat: Updated default gemming templates. Fixed a bug with white miss rate at extremely high crit rates. Fixed a bug with Berserk uptime calculations.
- Rawr.Moonkin: Tier 10 Idol should now be properly modeled. Lunar Eclipse now properly caps at 100% crit.
- Rawr.Enhance: Smoothed out priority calculations. This module should now be faster, and more accurate.
- Rawr.ShadowPriest: 3.3 "PTR Mode" checkbox added in the options tab to model the SPriest changes in 3.3.
- Rawr.DPSWarr: Fixed a bug in uptime calculations with stacking special effects.
- Rawr.ProtWarr: You may now specify how often you are using heroic strike in the options panel. (Was previously just Limited/Unlimited) Average Vigilance threat and Base Boss attack values updated for Heroic TotC values.
v2.2.22.0
- Significant performance improvements across a wide variety of models
- Fix for Direct Upgrades chart only showing the specified # of gemming templates
- Rawr now remembers the last loaded charater from the Armory in the Load from Armory dialog
- Updated the parry chance of lvl83 bosses to 14%, per recent testing
- Rawr.Bear: Added support for Parry Haste
- Rawr.Mage: Fix for bug with incremental optimization. Added very simple movement model. Fix for Arcane Power + Missile Barrage interaction
- Rawr.Moonkin: Fix for mana gains chart
- Rawr.ProtPaladin: Added support for T9 and T10 set bonuses
- Rawr.Rogue: Fix for Mace Spec calculations
- Rawr.DPSWarr: Fix for intellect blocking gear from being considered relevant
v2.2.21.0
- More improvements to default filters. Sorry for all the confusion and problems with filters lately, everyone. We realize that filtering is a very important, but complex, part of Rawr, and are working toward a much more understandable and reliable system for filtering. Please bear with us!
- Fix for crashing on saving and loading characters from Armory with Leatherworking.
- Mage: Fix for crash with Hyperspeed Accellerators, and other cooldown stacking issues.
- Enhance: Fix for nested special effect calculations.
- Moonkin: Significant performance improvement.
- ProtPaladin: Significant performance improvement.
- DPSWarr: Significant performance improvement.
v2.2.20.0
- Further improvements to the default filters and item cache.
- Updated parsing of proc effects from Onyxia items, and a few other stray items.
- Added a contextual menu item to open an item in the Armory.
- Improved optimizer availability for items when loading from Character Profiler.
- Fix for changing item IDs.
- Fix for available gems in batch optimizations. Also added a comparison to saved version feature for batch optimizations.
- Rawr.Bear: Updated Predatory Strikes mechanics for 3.2.
- Rawr.Cat: Updated Predatory Strikes mechanics for 3.2.
- Rawr.DPSDK: Added armor and bonus armor as relevant stats. Reworked some damage multipliers for improved accuracy, especially for blood. Support for nested special effects.
- Rawr.DPSWarr: Tons of improvements, including 3.2.2 changes, fixes to maintaining buffs, cooldown usage, stat display, boss handlers, cleave DPS, whirlwind DPS, special effects tweaks, rage generation, armor penetration, rend damage, sword specialization, and tweaks to the rounding of hit.
- Rawr.Elemental: Improved support for some trinkets. Fix for haste dropping spells below 1sec. Fixed base damage values for Earth and Frost Shock, and Lightning Bolt.
- Rawr.Enhance: Support for Boss Handler features. Support for nested special effects.
- Rawr.Mage: Updates to 3.2.2 cycles. Improvement to Arcane Cycles feature. Support for cooldown stacking for all on use spell power and haste effects, and berserking.
- Rawr.ProtPaladin: More 3.2.2 updates. Better support for special effects, as well as some set bonuses and librams. Improved modeling of Shield of Righteousness. Added damage reduction from Ardent Defender. Fix for slightly off base stats.
- Rawr.ProtWarr: Fix for Devastate threat, and other minor tweaks.
- Rawr.RestoSham: Support for more special effects.
- Rawr.Rogue: Added poison-affecting stats as relevant. Added more set bonuses. Fix for Backstab, Mutilate, poison, and Envenom damage. Fix for several energy costs and energy-related talents. Fix for Murder, Hunger for Blood, and Mace Specialization talents.
- Rawr.ShadowPriest: Lots of fixes to haste/rotation interaction. Fixes for spell coefficients and modifiers. Added support for more set bonuses.
- Rawr.TankDK: More 3.2.2 updates. Fix for damage reduction buffs. Fix for white damage from offhands. Added option to display ratings in Burst & Reaction Time.
- Rawr.Tree: More 3.2.2 updates. Basic Val'anyr modeling. Support for a few more set bonuses.
- Rawr.Warlock: Updated formulae for Empowered Imp, Backlash, and Cataclysm, and physical buff support for pets.
v2.2.19.0
- Those were not the filters that you were looking for. v2.2.18 accidentally included some horrible inbreed of a filters file, not the one it was supposed to have. Now it has the one it's supposed to have.
- Added consumables that provide low end raid buffs.
- Rawr.Mage: Adjustments for 3.2.2.
- Rawr.ProtPaladin: Adjustments for 3.2.2.
- Rawr.Elemental: Adjustments for 3.2.2.
- Rawr.ShadowPriest: Fix for DoT crit damage with metagem.
- Rawr.Enhance: Fix for a totem drop rate.
v2.2.18.0
- UI updates! Added optional display of item slot in tooltips. Also improved wrapping on tooltips. Charts should provide more intuitive sorting. You can now view charts for gems by color.
- Improved the default item filters somewhat.
- Rawr.Cat: Tweaks to rotation calculations. Significantly improved Stats tab UI.
- Rawr.Healadin: Fix for movement speed relevancy.
- Rawr.Rogue: Fixes for several issues.
- Rawr.DPSWarr: Fix for filtering with and without 'Hide Bad Items' turned on. Fix for a potential crash. Fix for an issue with loading previously saved characters. Significan updates to rage calculations.
- Rawr.Warlock: Fix for another potential crash.
- Rawr.Elemental: Fix for DoT calculations.
- Rawr.DPSDK: Updates for 3.2.2.
- Rawr.Mage: Updates for 3.2.2.
- Rawr.TankDK: Several improvements to rotations. Updates for 3.2 and 3.2.2.
- Rawr.Enhance: Several minor tweaks to custom charts, totems, and haste smoothing.
- Rawr.ProtPaladin: Improvements to special effect handling.
- Rawr.Tree: Fix for IED handling.
v2.2.17.0
- Fix for crashing bugs in Rawr.TankDK and Rawr.ProtWarr.
- Fix for not being able to load priest files saved with previous verisons of Rawr.
- Rawr.DPSWarr: Added support for Execute spam under 20%. Improved performance. Added a comparison chart for ability DPS/damage. Fix for 2T8 calculations.
- Rawr.Warlock: Tons of updates to spell damage and talent calculations. Should be more more representitive of actual results now.
- Rawr.Tree: Fix for T9 set bonuses.
- Rawr.TankDK: No longer crashes. Joy!
- Rawr.Enhance: Fixes for EnhSim export. Updated default gemming templates.
- Rawr.ProtWarr: Support for new 3.2.2 Critical Block. Fix for crash on loading protection warriors from the Armory.
- Rawr.Elemental: Fix for T9 bonuses. Fix for Flameshock periodic damage calculations.
v2.2.16.0
- Switched back to 3.2 ArPen rating conversion, since 3.2.2 still looks to be a bit out. Will release a new version as soon as 3.2.2 actually comes out.
- Rawr.Warlock: Crashing fixed! Joy! Sorry that took so long.
- Rawr.DPSWarr: Fixed a bug where dps values would come up as NaN in certain cituations. Improvements to Boss handling features. Updated default gemming templates.
- Rawr.Mage: Update PTR mode to latest 3.2.2 mechanics. Fix for resilience relevancy.
- Rawr.ProtWarr: Added support for 2T9, and a couple more trinkets. Added threat/damage from Deep Wouds
- Rawr.TankDK: Fix for blood threat numbers being way off.
- Rawr.DPSDK: Added support for 3.2.2 PTR changes.
- Rawr.HealPriest: Added support for 2T9 and 4T9.
- Rawr.ShadowPriest: Added support for 2T9 and 4T9. Added 3.2.2 changes.
- Rawr.Elemental: Fix for T9 bonuses.
v2.2.15.0
- Updated rating calculations for 3.2.2 (if you want 3.2.0 calculations, stick with Rawr v2.2.14. We expect 3.2.2 to come out tomorrow, so are releasing this a day early)
- Major improvements to Armory and Wowhead parsing; only differences now should be actual data differences between the sites.
- Rawr will now load the faction-specificity of an item from the Armory, and will only show items available to your race's faction. Note that there are still a few ilvl258 items that aren't on the Armory, so there are still a few items in Rawr which don't have faction data, but the vast majority of items do.
- Fixed disabled offhand items with gems counting toward metagem requirements.
- Rawr.Cat: Improved handling of multiple temporary ArPen stats.
- Rawr.Bear: Support for Paragon special effect.
- Rawr.TankDK: Fix for ArPen rating being relevant.
- Rawr.DPSWarr: Added stun handling feature. Improved Multi-Target features. Added Survivability calculations. Fixed a few minor bugs. Updated for 3.2.2. Improved rage calculations. Added preset bosses feature.
- Rawr.DPSDK: Updated default rotations. Fixed bug with Frost Strike damage.
- Rawr.ProtPaladin: Fix for attack crit damage calculations.
- Rawr.Rogue: Fix for Lightning Reflexes calculation.
- Rawr.Warlock: Fixed crashing bug. Implemented T9 set bonuses. Cleaned up Options tab.
- Rawr.ProtWarr: Updated base stats to be consistent with 3.2.2. Updated Shield Slam damage, and a few minor proc effects.
- Rawr.Moonkin: Fix for a damage calculation bug. Added/improved support for several trinkets.
v2.2.14.0
- Improved Optimizer performance.
- Improved parsing of Wowhead/Armory data (especially for Trial of Crusader items and item sources)
- Improved Judgement of Wisdom calculations
- Added feature to be able to manually remove an item from a built upgrade list.
- Updated several more buffs/enchants for 3.2 changes.
- Improved handling of several procs, especially new ones from ToC.
- There are several more charts in the Buffs chart group, for subsets of buffs.
- Improved the default set of ItemFilters. Note that the Alliance/Horde ToC filters are gone for the moment, but we will add them back as soon as we get data to support them (coming soon from Wowhead).
- Rawr.Cat: Added support for offsetting trinkets (such as Grim Toll + Mjolnir Runestone).
- Rawr.Bear: Updated presets on Options tab.
- Rawr.Mage: Fixes to Flamestrike calculations/rotations. Added 3.2.2 mode.
- Rawr.ProtPaladin: Updates to dodge/parry calculations for 3.2. Fixed Seal of Vengeance and Shield of Righteousness calculations. Fixed crit chance calculations.
- Rawr.Hunter: Tons, and tons, and tons, of changes. Should be almost identical calculation logic to the spreadsheet now.
- Rawr.Tree: Updated Innervates calculations and talents for 3.2 changes.
- Rawr.DPSWarr: Slight tweaks to stat calculations to reflect WoW's rounding oddities. Fixes for several damage calculation issues. Added T9 set bonuses. Fixes to MultiTarget modes. Several glyph/talent updates for 3.2.
- Rawr.Elemental: Improved Flameshock dot damage calculations. Improved handling of haste in rotations.
- Rawr.Rogue: Lots of improvements to calculations, especially in talents.
- Rawr.Moonkin: Fixed interaction of 4T9, Moonfury, Solar Eclipse, Earth and Moon, and Improved Insect Swarm (multiplicative vs additive).
- Rawr.ProtWarr: Updated Devestate damage for 3.2. Slight fix to armor calculations.
- Rawr.DPSDK: Added T9 set bonuses, and support for new Sigils. Fix for some crit chance calculations.
- Rawr.Healadin: Updated default gemming tempaltes and gem handling for 3.2. Added option to not ignore items with spirit/hit.
- Rawr.TankDK: Updated all calculations for 3.2. Fixed a few slight inaccuracies with health calculations.
- Rawr.Warlock: Updated several calcultions for 3.2.
- Rawr.Retribution: Improved support for new Librams and set bonuses.
v2.2.13.0
- Adjusted base stats for shamans to match 3.2.
- Tweaks to CharacterProfiler import.
- Updated the stats of several more buffs and enchants to match 3.2.
- Rawr.Retribution: Fixed T9 set bonuses. Added Hand of Reckoning modeling. Added info about switching targets and SoV stacking. Adjustment to JoR procing 2x SoR, since that was hotfixed.
- Rawr.Hunter: Tons and tons of more improvements and additions.
- Rawr.Moonkin: Fixed T9 set bonuses.
- Rawr.TankDK: Added BurstTime and ReactionTime values. Fixes for expertise rating, and for parry rating on weapons. Added support for more trinkets and sigils.
- Rawr.Enhance: Fix for fist weapons in export to EnhSim. Added support for Totem of the Elemental Winds
- Rawr.DPSDK: Fixes for Night of the Dead, Greatness procs, and Unholy Blight damage.
- Rawr.DPSWarr: Updated base stats, talents, and glyphs for 3.2.
- Rawr.Healadin: Support for a few more trinkets and librams.
- Rawr.ProtWarr: Significant updates for 3.2.
- Rawr.Elemental: Further tweaks to how haste affects rotations.
v2.2.12.0
- NOTE! Everyone, please do NOT reuse your GemmingTemplates.xml file from a previous version of Rawr, due to all the changes in gems in 3.2.
- Updated the default item cache with more 3.2 items, and updated data about existing items in 3.2. More data is still showing up on Wowhead/Armory daily, so be sure to try refreshing from Wowhead/Armory if you see any data that looks old/wrong. Also updated some of the enchants changed in 3.2.
- Rawr.Enhance: Fix for Orcs with Axes. Fixes for default gemming templates.
- Rawr.Hunter: Tons of more calculation improvements and fixes.
- Rawr.Mage: Reverted to 3.1 hot streak model, due to hotfix that was just applied.
- Rawr.DPSDK: Updated for 3.2.
- Rawr.Warlock: Some more calculation improvements to Haunt and Fire & Brimstone.
v2.2.11.0
- Updated base stats, stat conversions, and gemming rules for 3.2
- Fixed a potential crash in Batch Tools
- Rawr.Cat: Updated for 3.2.
- Rawr.Mage: Updated for 3.2. Fix for FFB threat multiplier. Improved Hot Streak modeling.
- Rawr.Retribution: Updated for 3.2.
- Rawr.Enhance: Added support for Orc axe racial. Fix for weapon speed charts.
- Rawr.DPSWarr: Rearranged the options panel. Fixed several calculation bugs/improvements.
- Rawr.Warlock: Fixed several calculation bugs/improvements.
- Rawr.RestoSham: Fixed several calculation bugs/improvements.
- Rawr.Hunter: Fixed many calculation bugs/improvements.
- Rawr.Moonkin: Now properly counts lost GCDs due to FF/Starfall/Treants.
- Rawr.Elemental: Improved handling of special effects. Fixed several calculation bugs/improvements.
- Rawr.Healadin: Updated for 3.2.
- Rawr.RestoSham: Updated for 3.2.
- Rawr.Tree: Updated for 3.2.
v2.2.10.0
- Rawr.Tree: Added Survival as a 3rd rating
- Rawr.Retribution: Slight fix to partial resist calculations
- Rawr.Elemental: Fixed haste, damage, and talent calculations, implemented glyphs
- Rawr.DPSWarr: Fixed broken Arms, Overpower, Deep Wounds, and Latency calculations, and fixed a crash. Now uses a Priority Queue for all specs. Improved stat display.
- Rawr.RestoSham: Improvements to calculations
- Rawr.Healadin: Minor fix for crit rate calculations
- Rawr.Rogue: Fixed several talent calculations
- Rawr.DPSDK: Fixed crash, and minor calculation improvements
- Rawr.Mage: Fixed special effect bonus haste/crit multipliers, and for Innervate
v2.2.9.0
- Now supports the new armory data format Blizz just posted. Also fixed several Armory parsing errors
- Rawr.Mage: Fix for procs affecting per-spell damage. Split ignite damage into its own line in the spell damage breakdown.
- Rawr.DPSWarr: Fixed bug in Maintaining Debuffs and added Furry support. Many improvements to Arms calculations
- Rawr.Healadin: Fix for Judgement GCD time.
v2.2.8.0
- Improvements for handling locale-specific item names
- Reenabled loading possible upgrades from Wowhead PTR
- Fixed some bugs with loading items from Wowhead/Armory. NOTE: Armory *still* isn't returning socket bonus data, however if an item already has a socket bonus (ie, from Wowhead), reloading it from Armory will preserve the existing socket bonus
- Rawr.Cat: Improved the calculation of Idol of the Corruptor
- Rawr.Moonkin: Added a 3.2 mode, improved performance
- Rawr.Retribution: Added a 3.2 mode
- Rawr.RestoSham: Implemented all resto relics with special effects
- Rawr.TankDK: Many calculation fixes and improvements
- Rawr.DPSWarr: Fix for a wide variety of calculation issues
- Rawr.Enhance: Improved GCD conflict calculations
- Rawr.DPSDK: Added a 3.2 mode
- Rawr.Mage: Added 3.2 mode
- Rawr.Tree: Added 3.2 mode
- Rawr.Healadin: Fix for minor rating calculation bug
v2.2.7.0
- Reordered/revised alot of things in the readme
- Improvements to alternate locale handling
- Rawr.Cat: Improvements to Ferocious Bite and HighestStat calculations
- Rawr.Bear: Fix for HighrstStat calculations
- Rawr.Enhance: Lots of accuracy improvements all around
- Rawr.DPSWarr: Lots of accuracy improvements all around
- Rawr.DPSDK: Lots of accuracy improvements all around
- Rawr.TankDL: Initial pass at fixing all the calculations
- Rawr.Hunter: Lots of accuracy improvements all around, but still a work in progress
- Rawr.Healadin: Minor fix for burst ratings from procs. Initial implementation of 3.2 mode
- Rawr.Retribution: Initial implementation of 3.2 mode
v2.2.6.0
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all
the 3.1 modeling changes.
- Fix for startup crash, also improved startup performance.
- Several new advanced options in the Optimizer and Batch Tools. Fix for Optimizer crashes.
- Rawr.Cat: Fix for FB damage calculations.
- Rawr.Hunter: Significant improvements all over.
- Rawr.Rogue: Further progress.
- Rawr.Mage: Correction to DoT overlap calculations.
- Rawr.DPSWarr: Further improvements to a variety of formulae and features.
- Rawr.Moonkin: Fix for 4T8 proc rate.
- Rawr.Healadin: Improvements to proc values. Fix for some base stats
- Rawr.Retribution: Improvements to proc values. Fix for a couple talent calculations.
- Rawr.ProtWarr: Improvements to proc values.
- Rawr.RestoSham: Updates to glyphs, and added healing stream calculations.
- Rawr.Elemental: Fix for haste valuing from buffs.
- Rawr.HealPriest: Haste fixes and tweaks.
- Rawr.ShadowPriest: Haste fixes.
v2.2.6.0
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all
the 3.1 modeling changes.
- Fix for startup crash, also improved startup performance.
- Several new advanced options in the Optimizer and Batch Tools. Fix for Optimizer crashes.
- Rawr.Cat: Fix for FB damage calculations.
- Rawr.Hunter: Significant improvements all over.
- Rawr.Rogue: Further progress.
- Rawr.Mage: Correction to DoT overlap calculations.
- Rawr.DPSWarr: Further improvements to a variety of formulae and features.
- Rawr.Moonkin: Fix for 4T8 proc rate.
- Rawr.Healadin: Improvements to proc values. Fix for some base stats
- Rawr.Retribution: Improvements to proc values. Fix for a couple talent calculations.
- Rawr.ProtWarr: Improvements to proc values.
- Rawr.RestoSham: Updates to glyphs, and added healing stream calculations.
- Rawr.Elemental: Fix for haste valuing from buffs.
- Rawr.HealPriest: Haste fixes and tweaks.
- Rawr.ShadowPriest: Haste fixes.
v2.2.5.0
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all
the 3.1 modeling changes.
- Capped ArPen from Rating at 100%
- Improvements to the Wowhead parser, especially around Sigils
- Improvements to the Optimizer's handling of gems
- Enhanced filtering! You can now have subfilters to filters, and there are now default filters for Ulduar gear, broken down by raid size, difficulty, and boss.
- There's a new Optimizer Results dialog. It's still a bit buggy at the moment, but we intend to improve it substantially as we get time. Please give us feedback on this new feature!
- Rawr.Rogue: Further work on rogue support, but this model is still largely incomplete
- Rawr.Mage: Better frost cycle handling
- Rawr.DPSDK: Massive improvements to logic, across the board
- Rawr.DPSWarr: Fix for agility miscalculation, better proc handling, better arms/fury rotation handling
- Rawr.Enhance: Minor calculation improvements
- Rawr.Moonkin: Fix for some proc handling
- Rawr.HealPriest: Calculation tweaks
- Rawr.ShadowPriest: Improved haste calculations, and proc calculations
- Rawr.Hunter: Starting to get up to date! Still largely incomplete, but progress is being made!
- Rawr.Tree: Improved rotations, set bonuses.
v2.2.4.0
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all the 3.1 modeling changes.
- Fix for crashing bug when editing gemming templates and custom gemmings
- Fix for the PPMs of several weapon enchants
- Rawr.Retribution: Updated to 3.1 boss armor values
- Rawr.Cat: Fix for stacking of temporary ArPen effects, with different uptimes.
- Rawr.HealPriest: Better support for a few trinkets.
v2.2.3.0
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all the 3.1 modeling changes.
- Batch Optimizer supports using multiple models
- Optimizer doesn't report changes where it just swapped ring or trinket slots.
- Rawr.Cat: Fixes and improvements to rotations
- Rawr.Enhance: Lots of fixes for calculations
- Rawr.ProtPaladin: Support for more procs and effects
- Rawr.Retribution: Added some optimizable values, support for more procs and effects, and a Consecration effectiveness option
- Rawr.Healadin: Added some optimizable values
- Rawr.Warlock: Support for glyphs, and fix for Supression double dipping, lots of haste fixes
- Rawr.DPSWarr: Many calculation improvements
- Rawr.HealPriest: Support for 2T8, new default talents
- Rawr.ShadowPriest: Support for 2T8, gemmings fixed
- Rawr.Mage: Improvements to the advanced solver, updated 4T8 to 25% chance, and added support for Frost Warding as a mana regen source
- Rawr.ProtWarr: Added support for Vigilance threat and glyph.
- Rawr.Moonkin: Updated Spirit->SpellPower conversion for 3.1.2
v2.2.2.0
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all the 3.1 modeling changes.
- Fix for a couple armory/wowhead parsing bugs (currently, Armory STILL doesn't return socket bonus info; use Wowhead to get socket bonus data)
- Chart items with negative values will now be displayed properly
- Rawr.Healadin: Fix for Icewalker not being relevant
- Rawr.Tree: Added support for spell mana reduction. Added Wild Growth healing. More trinket support
- Rawr.Mage: Further updates for 3.1 changes
- Rawr.Enhance: Further calculation improvements
- Rawr.DPSDK: More 3.1 updates
- Rawr.ShadowPriest: Updated to 3.1
- Rawr.HealPriest: Updated built-in rotations
- Rawr.Retribution: Better proc support
- Rawr.Moonkin: Updated set bonuses, glyphs, innervate calculations, added support for more trinkets
- Rawr.ProtPaladin: Support for a few more buffs, calculation improvements
- Rawr.DPSWarr: Added support for Mace Specialization
v2.2.1.0
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all the 3.1 modeling changes.
- Updated to the new ArPen model for 3.1
- New Load from Wowhead Filter feature in the Tools menu
- Fix for a few bugs with the Optimizer
- Fix for parsing several items
- Fix for CharacterProfiler support in foreign languages
- Rawr.Cat: More 3.1 updates
- Rawr.Bear: More 3.1 updates
- Rawr.Moonkin: More 3.1 updates
- Rawr.HealPriest: More 3.1 updates
- Rawr.ShadowPriest: More 3.1 updates
- Rawr.Mage: More 3.1 updates
- Rawr.EnhSham: More 3.1 updates
- Rawr.Tree: More 3.1 updates
- Rawr.Retribution: More 3.1 updates
- Rawr.ProtPaladin: More 3.1 updates
- Rawr.DPSWarr: More 3.1 updates
- Rawr.DPSDK: More 3.1 updates
v2.2.0.9
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all the 3.1 modeling changes.
- All talent trees and tooltips updated to 3.1
- Option to display gem names in tooltips
- Fix for tooltip rendering
- Rawr.ProtPaladin: calculation fixes
- Rawr.TankDK: updated for 3.1
- Rawr.HealPriest, Rawr.ShadowPriest: glyph updates
- Rawr.Tree: Nature's Bounty, Revitalize
v2.2.0.8
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all the 3.1 modeling changes.
- Fix for armory parsing, glyph parsing
- Fix for optimizer enchant filtering
- Talent tree updates in some models
- Rawr.DPSWarr: Update Improved Berserker Stance to Str instead of AP.
- Rawr.Moonkin: More support for special effects.
- Rawr.EnhSham: Display enhancements.
- Rawr.RestoSham: Updates for new glyph system.
- Rawr.Bear: Fix for lacerate always being able to crit.
- Rawr.Cat: Added special effects handling.
v2.2.0.7
- Not all models are completely ready for final release. Specifically in some models the trinket effects might be missing. If that is the case please manually edit the items and give them average stats until we make everything work. We have decided that even not being completely ready we should make a release so that you can work with all the 3.1 modeling changes.
- There have been many many changes since 2.1.9. For a full list of changes check the ReadMe.txt. The following are the most important changes and some recent changes since 2.2.0.b6.
- Gemming Revamp! Rawr will now automatically handle gems, just as you'd expect. See Help > Gemmings for details.
- Multithreading! Rawr will now better utilize your processor, resulting in a 40% to 100% speed boost for rendering most charts, and optimizing.
- Special Effects Revamp! Rawr now uses a new system for describing special effects that most trinkets have. You can edit the effects in the item editor. The old custom stats are still in because not all models have transitioned to the new system, but we will be phasing them out in new versions.
- Talent Optimizer! You can now use optimizer to optimize talents. Not all models have talent optimization constraints available, so in those cases it might be of limited value since it will otherwise tend to skip nonmodeled but otherwise important talents.
- Glyphs are now part of talent specs! Glyphs now get saved together with the talent spec and there is a glyph chart available now for all models.
- Default buffs/glyphs! When loading character from armory the models can now automatically enable common buffs and glyphs.
- NOTE: Rawr 2.2 is not backwards compatible. Please do not copy data files from previous versions of Rawr. Your existing character files should load into Rawr 2.2 just fine, except you'll have to reselect enchants on your gear and glyphs.
- Rawr.Healadin: More 3.1 changes.
- Rawr.EnhSham: More 3.1 changes. Updated EnhSim export.
- Rawr.Retribution: More 3.1 changes.
- Rawr.Mage: More 3.1 changes. Performance Improvements.
- Rawr.ProtPaladin: More 3.1 changes and fixes.
- Rawr.Cat: More 3.1 changes. Updated combo point model.
- Rawr.Bear: More 3.1 changes.
- Rawr.Warlock: More 3.1 changes.
- Rawr.Tree: More 3.1 changes.
- Rawr.RestoSham: More 3.1 changes.
- Rawr.TankDK and Rawr.Hunter are not updated for 3.1
v2.2.0b6
- PLEASE NOTE: This is a beta of Rawr 2.2. It has not received the same level of testing that we normally put into releases, but we're releasing it in its current form, due to the large number of changes. If you do run into bugs, please post them on our Issue Tracker. Please use the current release version, Rawr 2.1.9, if you encounter showstopping bugs in Rawr 2.2.0b6. Thanks!
- Start Page! There's now a start page when you launch Rawr, which helps you get started. We're still filling in some of the content on this page, but we're looking for lots of feedback on how you like it, and what else you might want on it.
- Chart Selection Interface! There is now a more streamlined interface for choosing charts!
- Chart Exports! There's now an Exports menu above the charts, which allow you to export the data in the current chart to either Clipboard, CSV, or Image.
- Multilingual Support! In the options, you'll find a locale setting. After setting that, items loaded from wowhead will load their foreign names.
- Food/Flask/Elixirs Optimization! There are now options to optimize food/flask/elixirs in the Optimizer dialog.
- On the Relative Stat Values chart, there are 3 additional exports: Copy a Pawn string to Clipboard, View weighted upgrades on Wowhead, and View weighted upgrades on Lootrank.
- You can now load an individual item from PTR Wowhead by pasting in the PTR Wowhead link to it on the Add Item dialog.
- There's now a setting in the Options dialog to add the source class/spec to buffs on the Buffs tab.
- Rawr.Tree: More 3.1 changes. More optimizer additional requirements.
- Rawr.Cat: More 3.1 changes.
- Rawr.Bear: More 3.1 changes.
- Rawr.Mage: Added Mana Source/Usage charts. More 3.1 changes. Improved advanced calculations. Incanter's Absorbtion is now (simply) modeled.
- Rawr.Moonkin: More 3.1 changes.
- Rawr.RestoSham: Couple bugfixes.
- Rawr.Retribution: Added Glyph chart. More 3.1 changes.
- Rawr.Healadin: Added Glyph chart. More 3.1 changes.
- Rawr.EnhSham: Coupled bugfixes. More 3.1 changes.
- Rawr.ProtWarr: More 3.1 changes.
- Rawr.Warlock: More 3.1 changes. Improvements to talent/spell support.
v2.2.0b5
- PLEASE NOTE: This is a beta of Rawr 2.2. It has not received the same level of testing that we normally put into releases, but we're releasing it in its current form, due to the large number of changes. If you do run into bugs, please post them on our Issue Tracker. Please use the current release version, Rawr 2.1.9, if you encounter showstopping bugs in Rawr 2.2.0b5. Thanks!
- Fixed a bug where relevant items and gemmings wouldn't be updated immediately upon switching models.
- Fix for the Direct Upgrades chart being broken in some models.
- More performance improvements to the Optimizer
- Added 'Load Possible Upgrades from Wowhead' feature. Check the 'Use PTR Data' item inside of it to load upgrades from the PTR Wowhead, as they're discovered on the PTR.
- Rawr.Bear: Fix for a minor issue with Savage Defense. Support for more 3.1 changes.
- Rawr.Cat: Support for more 3.1 changes.
- Rawr.Moonkin: Support for more 3.1 changes.
- Rawr.Mage: Support for more 3.1 changes.
- Rawr.HealPriest: New Custom Role feature (please test this!)
- Rawr.Retribution: Support for more 3.1 changes.
- Rawr.Healadin: Support for more 3.1 changes.
- Rawr.Tankadin: Support for more 3.1 changes.
- Rawr.Warlock: Fixes for several more talents, pets, and glyphs.
- Rawr.RestoSham: Support for more 3.1 changes and some bugfixes.
- Rawr.Hunter: Fix for a display bug with AP.
- Rawr.ProtWarr: Support for more 3.1 changes.
v2.2.0b4
- PLEASE NOTE: This is a beta of Rawr 2.2. It has not received the same level of testing that we normally put into releases, but we're releasing it in its current form, due to the large number of changes. If you do run into bugs, please post them on our Issue Tracker. Please use the current release version, Rawr 2.1.9, if you encounter showstopping bugs in Rawr 2.2.0b4. Thanks!
- Multithreading! Rawr will now better utilize your processor, resulting in a 40% to 100% speed boost for rendering most charts, and optimizing. There is potential for hangs from this, so please test as much as you can, and report if you can make it hang, along with very explicitly telling us what you were doing when it hung, and including the character file. NOTE: If you encounter frequent hangs in b4, you can turn off Multithreading in the Tools > Options dialog. If you can't get to that dialog before it hangs, you can edit the config file at /Data/Rawr.Base.dll.config. PLEASE report any hangs you experience!
- Addition to the new dynamic gemming feature: You can now choose to display the Top X gemmings for an item. Check it out on the Tools > Edit Gemming Templates dialog.
- Fixes for a few crashes and minor bugs.
- Batch tools now include a batch optimizer.
- You can now save, load, and export Upgrade Lists.
- Rawr.Bear: Support for more 3.1 changes, and presets for some options.
- Rawr.Cat: Support for more 3.1 changes.
- Rawr.Moonkin: Fix for a few minor bugs. Support for 3.1 changes.
- Rawr.Tankadin: Improved base stat accuracy, and support for several more librams, set bonuses, and trinkets. Minor fixes to the effects of several stats.
- Rawr.Enhance: Minor fixes to the effects of several stats. Improved Flametongue calculations. Support for more buffs, trinkets, and totems, and set bonuses. Several bug fixes. Support for 3.1 changes.
- Rawr.RestoSham: Support for selecting a healing style. Support for more totems. Added more optimizable stats.
- Rawr.Elemental: Updated to use calculations from Binkenstein's latest spreadsheet. Added support for custom rotations.
- Rawr.Retribution: Fix for rounding on a few stats. Support for WoW 3.1 changes.
- Rawr.Tree: Support for WoW 3.1 changes.
- Rawr.Mage: Improvements to the advanced rotation solver. Now supports hasted Evocations and Power Infusion. Updates to a few racial base stats.
- Rawr.DPSWarr: Added Mail armor, and fixes for a few racials.
- Rawr.ProtWarr: Fixes for a few racial base stats.
- Rawr.Warlock: Support for 3.1 changes, glyphs, and some more stats and talents.
v2.2.0b3
- b3 is just a fix for b2 being a bad build. Sorry about that.
v2.2.0b2
- PLEASE NOTE: This is a beta of Rawr 2.2. It has not received the same level of testing that we normally put into releases, but we're releasing it in its current form, due to the large number of changes. If you do run into bugs, please post them on our Issue Tracker. Please use the current release version, Rawr 2.1.9, if you encounter showstopping bugs in Rawr 2.2.0b2. Thanks!
- Gemming Revamp! Rawr will now automatically handle gems, just as you'd expect. See Help > Gemmings for details. NOTE: Rawr 2.2 is not backawards compatible most of your existing data files. Please do not copy data files from previous versions of Rawr. Your existing character files should load into Rawr 2.2 just fine, except you'll have to reselect enchants on your gear.
- Armor Penetration has been adjusted, for all Rawr models, to match new 3.1 Armor Penetration mechanics. Note that Rawr assumes the bugs with ArPen calculations on the current PTR are fixed, and ArPenRating is multiplicative with ArPen debuffs.
- Fix a crash in Optimizer.
- Rawr.Cat: Support for new 3.1 changes.
- Rawr.Bear: Support for new 3.1 changes.
- Rawr.Mage: Major solver changes.
- Rawr.Elemental: Bug fixes and added more glyphs.
- Rawr.Tankadin: Bug fixes and new optimizable stats.
- Rawr.Enhance: Bug fixes and support for many more trinkets and totems.
- Rawr.Warlock: Major additions and bug fixes.
- Rawr.Moonkin: Fix for Skull of Gul'dan.
- Rawr.ProtWarr: Bug fixes.
- Rawr.RestoSham: Bug fixes.
v2.2.0b1
- PLEASE NOTE: This is a beta of Rawr 2.2. It has not received the same level of testing that we normally put into releases, but we're releasing it in its current form, due to the large number of changes. If you do run into bugs, please post them on our Issue Tracker. Please use the current release version, Rawr 2.1.9, if you encounter showstopping bugs in Rawr 2.2.0b1. Thanks!
- Gemming Revamp! Rawr will now automatically handle gems, just as you'd expect. See Help > Gemmings for details. NOTE: Rawr 2.2 is not backawards compatible most of your existing data files. Please do not copy data files from previous versions of Rawr. Your existing character files should load into Rawr 2.2 just fine, except you'll have to reselect enchants on your gear.
- Rawr.Bear: Support for Savage Defense.
- Rawr.Cat: Fixes for hit calculations.
- Rawr.Mage: Support for 3.0.9 changes. Fixes for a few obscure calcultion bugs.
- Rawr.Moonkin: Brand new spell calculation engine, powered by WrathCalcs.
- Rawr.ProtWarr: Significant improvements to accuracy. Added additional rating choices, and additional customization to existing rating ratios. See the Options tab for details. Added support for parry hasting
- Rawr.HealPriest: Fix for Build Upgrade List, several calculation improvements. Support for 3.1 Mana Regen model.
- Rawr.ShadowPriest: Fix for Build Upgrade List, several calculation improvements.
- Rawr.Tree: Overhaul of casting system, should provide much more useful results.
- Rawr.Elemental: Significant fixes and new features.
- Rawr.RestoSham: Now includes Activity, Overhealing, and Burst Healing. Many calculation fixes/improvements.
- Rawr.Enhance: Lots of calculation improvements.
- Rawr.TankDK: Wide variety of calculation fixes, UI improvements.
- Rawr.DPSDK: Many calculation fixes and new features.
- Rawr.Tankadin: Fixes for armor calculations.
- Rawr.Healadin: Support for 3.0.9 changes.
- Rawr.Hunter: Fix for several calculation bugs.
- Rawr.Retribution: Many calculation changes, new features, improvements, and bug fixes.
- Rawr.Warlock: Initial release. Not fully complete yet, but included in this release of Rawr so that you can see how we're progressing. We still advise using Rawr.Warlock in conjunction with other theorycrafting tools. In particular, pets are not modeled yet, so Demonology specs will be significantly undervalued.
Here's a quick rundown of the status of each model:
Rawr.Base: Fully functional for 3.0 & level 80.
Rawr.Bear: Fully functional for 3.0 & level 80.
Rawr.Cat: Fully functional for 3.0 & level 80.
Rawr.DPSDK: Fully functional for 3.0 & level 80.
Rawr.DPSWarr: Partially functional for 3.0 & level 80.
Rawr.Elemental: Partially functional for 3.0 & level 80.
Rawr.Enhance: Partially functional for 3.0 & level 80.
Rawr.Healadin: Fully functional for 3.0 & level 80.
Rawr.HealPriest: Fully functional for 3.0 & level 80.
Rawr.Hunter: Partially functional for 3.0 & level 80.
Rawr.Mage: Fully functional for 3.0 & level 80.
Rawr.Moonkin: Fully functional for 3.0 & level 80.
Rawr.ProtWarr: Partially functional for 3.0 & level 80.
Rawr.RestoSham: Partially functional for 3.0 & level 80.
Rawr.Retribution: Fully functional for 3.0 & level 80.
Rawr.Rogue: Not functional for 3.0.
Rawr.ShadowPriest: Fully functional for 3.0 & level 80.
Rawr.TankDK: Partially functional for 3.0 & level 80.
Rawr.Tankadin: Fully functional for 3.0 & level 80.
Rawr.Tree: Fully functional for 3.0 & level 80.
Rawr.Warlock: Partially functional for 3.0 & level 80.