vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1  
2 --> Upgrading: You'll need to restart wow.exe to get this working. Additionally, most of the files have changed, so it's recommended you delete the contents of the KLHThreatMeter directory first.
3  
4 --> Patch 1.11 compliant. Also added the new mage and shaman talents, see below.
5  
6 --> Compatability: R16 will work fine alongside older versions. It's still recommended that you upgrade, as many new talents and abilities were added. There are a few minor breaking changes to the UI, mentioned later.
7  
8 --> New GUI. Thanks to Lukon@Perenolde for coding this. A massive amount of work went into this, and the result looks awesome. A few features are:
9 New colour schemes, fonts, textures. It's pretty!
10 A MasterTarget Button (hunter's mark texture). Click with a mob targetted to set, click with no mob targetted to clear.
11 An options frame, replacing most of the command line. e.g. slider for scale, and one for number of rows displayed
12 Option to make the frame fixed width and height
13 raid frame and personal frame have been combined, and there's a button to toggle them
14 Click on a column in the personal view to sort by that column.
15 chose the buttons that are displayed when the frame is minimised
16 per-character settings
17 lots of tooltips
18 heaps more things i can't think of!
19  
20 The new GUI might be a bit confusing at first, but the tooltips are very descriptive and should help you figure out how things work.
21  
22 Note that by default, the window has a fixed height (room for 10 people). If you prefer the old style, where it will shrink when there are only a few entries, click the options button, then in the raid tab check the "resize frame" box.
23  
24 --> oRA support. The mod will use your oRA channel, if it exists.
25  
26 --> Added new abilities and talents:
27  
28 Shamans:
29 Healing Grace - up to -15% threat. Healing only. Multiplicative.
30 Rockbiter Weapon - added threat on melee hits.
31 Earth Shock - 2 threat / damage
32  
33 Mages:
34 Arcane Subtlety (updated in 1.11) - 20% per point. Additive.
35 Frost Channeling - 10% per point. Additive.
36 Burning Soul - 15% per point. Additive.
37  
38 Priests:
39 Holy Nova - no threat
40 Mind Blast - 2 threat / damage
41 Silent Resolve - now treated as an additive modifier.
42 Fade - temporary reduction in threat, not affected by modifiers.
43  
44 Warlocks:
45 Siphon Life - no threat from healing.
46 Drain Life - no threat from healing
47 Searing Pain - 2 threat / damage
48  
49 Druids:
50 Improved Tranquility - up to 80% reduction. Multiplicative.
51  
52 Paladins:
53 Holy Shield - 1.2 multiplier on this ability. Multiplicative.
54  
55 Hunters:
56 Distracting Shot - all ranks added.
57  
58  
59 --> Localisation
60 --> Each locale now has its own localisation file, to make it easier to manage and in particular update. e.g. the French localisation file is stored in \KLHThreatMeter\Code\Localisation\KTM_frFR.lua
61  
62 --> Added a command "/ktm test local" which will print out a list of localisation strings that are missing for your locale.
63  
64 --> Still need localisations for the many new GUI strings for French (frFR) and Chinese (zhCN)! Thanks Leidbringer and CuteMiyu for the German and Taiwanese versions!
65  
66 --> Major code changes under the hood. Interested readers should check out "Implementation Notes.txt" for more details. For example, removed string.gfind from the mod, which was creating heaps of heap memory.
67  
68 --> Fixed Lua Error in KLHTM_Combat.lua:15 that occasionally occurred on ReloadUI()
69  
70 --> New Console Commands:
71  
72 --> Console commands are now easier to abbreviate. When the mod prints out a list of commands, the letters needed to abbreviate a command are printed in blue.
73  
74 --> The mod can be disabled at runtime with the command "/ktm disable" or "/ktm d". It won't react to events or run OnUpdate, so it will pretty much stop doing anything. Use the command "/ktm enable" or "/ktm e" to restart it.
75  
76 --> As a bit of a joke, you can now advertise KLHTM to other members of the raid! Run the command "/ktm version advertise", or "/ktm v a", and occasionally (at most every 5 minutes), the mod will look for people who don't have the mod installed and have pulled aggro (non-warriors who are being targetted by a mob), and whisper them to go and download it!
77  
78 --> Check the memory usage of separate modules of the mod. Type "/ktm test memory" or "/ktm t m" to see a rundown of memory usage.
79  
80  
81 --> Players not in a party or group will no longer send idle updates, which should stop "KLHTM threat 0" spam.
82  
83 --> Documentation Changes:
84 --> Added "Implementation Notes.txt" for interested addon authors
85 --> Clarified the Warrior readme
86  
87  
88 --> Minor Incompatibilities / Things That Work Differently.
89  
90 1) There's no "/ktm mastertarget" command now. Instead just click the button on the GUI, which looks like a hunter's mark. If you want to add this command to a macro, the script command to create a master target is
91  
92 /script klhtm.net.sendmastertarget()
93  
94 2) Similarly, there is no longer a "/ktm raid clear" to clear the raid's threat. There is now a GUI button, which does not appear by default (click the options button, then go to the general tab, and there is a section for which buttons are shown), which does this. Alternatively, the macro command is
95  
96 /script klhtm.net.clearraidthreat()
97  
98 Remember that the above two commands still require you to be a raid assistant or the party leader.
99  
100 3) Onyxia phase 3 threat wipe. This no longer happens. If people are still using the old version, their threat will clear and yours wont, so the meter won't work very well. But with the threat wipe it wasn't working in phase 3 anyway, so you can't complain. And it might just work in phase 3 now, too.
101  
102 --------------------------------------------------------------------------------------------------------
103  
104 Changes from Test 5 to Test 6
105  
106 --> 1.11 compliant. Well, i really just edited the TOC file to say so, but don't tell WoW :D
107  
108 --> Mage Talents: Arcane Subtlety, Frost Channeling, and that Fire one.
109  
110 --> Shaman Talent: Healing Grace.
111  
112 --> Fixed that disasterous implementation of fade.
113  
114 --> Threat wipes won't get added to your personal data's threat total, so the nonnegative percentages add up to 100.
115  
116 --> Mind Blast Added. 2x threat per damage. This isn't firmly tested, speak up if it doesn't work out.
117  
118 --> Added Taiwanese localisation for the GUI. Thanks CuteMiyu.
119  
120 --------------------------------------------------------------------------------------------------------
121  
122 Changes from Test 4 to Test 5
123  
124 --> Fixed a memory "leak" in the GUI code, that would create excess memory in a raid when the raid table was visible.
125  
126 --> Trimming " ...hic!" suffixes. Do they localise?
127  
128 --> Fixed an error with /afk detection which could cause players to stop updating their threat.
129  
130 --> The values for "total" in "/ktm test netlog" was not being calculated correctly.
131  
132 --> Added Leidbringer's latest German Localisation
133  
134 --------------------------------------------------------------------------------------------------------
135  
136 Changes from Test 3 to Test 4
137  
138 --> Added memory diagnostics! "/ktm test memory" will tell you how much memory each of the modules are paging, with average, burst, total, recent values, in kB/sec.
139  
140 --> "/ktm test time" is now working again
141  
142 --> My:40 typo causing feign death resists to be ignored. Thanks Keter.
143  
144 --> Combat:348 the source of non-periodic power gains was not being reported. Thanks Graguk.
145  
146 --> Added more colour to the command line printouts to make it clearer how to abbreviate commands. The minimum abbreviation of each command is written in blue letters.
147  
148 --> Added distracting shot (all ranks). Affected by global threat. (Not strongly tested)
149  
150 --> Added Fade (all ranks). Not affected by any threat modifiers. (Not strongly tested)
151  
152 --------------------------------------------------------------------------------------------------------
153  
154 Changes from Test 2 to Test 3
155  
156 --> fixed a typo in the maul code. Thanks Dimarius!
157  
158 --> some GUI code was changed for compatability w/ test server... but not tested yet.
159  
160 --> The "/script klhtest()" functionality will now work again.
161  
162 --> Shaman Tanking!
163 --> Added earth shock - 2x threat per damage.
164  
165 --> Added Rockbiter (all ranks). A separate column will come up in your personal table for it. However, the value shown does not include the increased attack power that Rockbiter gives you, only the threat from actual procs. When evaluating Rockbiter Weapon, remember to take this into account. The threat added per attack will show up in "/ktm test threat".
166  
167 Thanks Praetorian for the inspiration!
168  
169 --> Added these localisations:
170  
171 ["combatlog"]["weaponbuff"] = "You cast (.+) on your (.+)%.", -- ITEMENCHANTMENTADDSELFSELF
172 ["spell"]["rockbiter"] = "Rockbiter",
173 ["print"]["data"]["rockbiter"] = "Your rank %d Rockbiter adds %d threat to successful melee attacks.",
174  
175 --> Turned off "Received this invalid message ..." trace, too much spamming when people are drunk.
176  
177 --> Added German Localisation for the new GUI. Thanks Leidbringer!
178  
179 --> Added a command "/ktm test local", or "ktm t l" that will print out all the missing / unknown strings for your localisation!
180  
181 --------------------------------------------------------------------------------------------------------
182  
183 Changes from Test 1 to Test 2
184  
185 --> Advertising feature Buffs:
186 will no longer whisper to yourself.
187 Also, will check the raid group in a random order, to quit bugging the same person all the time. Also, fixed a printout typo.
188 Also, will only advertise to people who don't have the meter
189  
190 --> Fixed a typo at My: 304 which caused an error after a feign death.
191  
192 --> Clarified some tooltips.
193  
194 --> Onyxia threat wipe in phase 3 is disabled for this testing phase. need more anecdotal evidence! :D
195  
196 --> Other stuff that would be too small to mention.
197  
198 Thanks Qrt, Leidbringer, et al.
199  
200 Todo:
201 localise some stuff in net. More comments too.
202  
203 --------------------------------------------------------------------------------------------------------
204  
205  
206  
207