Could I get a quick explanation on how to set up range for 40 yards? A few versions ago I had a 40 yard button that I could click. Now I just have 10, 28, 100 yard range options.
I'm setting up Grid but I just can't find the option to change the Font. I have the latest versions of every addon (including SharedMedia) but I simply can't find the option for it :( Checked Frame->Advanced and I have the options to change font size, etc, but not the font itself :(
Is it possible to change the font on Grid? Do I need any additional addon to do it? (like ClearFont2 or something)
Could I get a quick explanation on how to set up range for 40 yards? A few versions ago I had a 40 yard button that I could click. Now I just have 10, 28, 100 yard range options.
What class are you? The 10-, 28-, and 100-yard ranges are usable for all classes, since they don't depend on checking the range of a spell or ability. If your class does have a spell or ability with a 40-yard range, you should see a 40-yard range in there too.
Check box
Check box
Corner Size slider
Font Dropdown
That's exactly what I meant Otto, I DON'T have any Font dropdown :S I don't understand why since I got both Grid and SharedMedia from "files.wowace.com" today, so I know they ARE updated :S
When entering/leaving combat in a battleground, my game is freezing for 2-3 seconds. I'm only using Grid, not any grid addons. Anyone else having this issue?
When entering/leaving combat in a battleground, my game is freezing for 2-3 seconds. I'm only using Grid, not any grid addons. Anyone else having this issue?
This is happening to me as well...and yeah only in BGs.
That's exactly what I meant Otto, I DON'T have any Font dropdown :S I don't understand why since I got both Grid and SharedMedia from "files.wowace.com" today, so I know they ARE updated :S
Can anyone give me a hand on this issue?
Thanks in advance!
bump. Can any of you guru guys help me plz?? :)
I realy would like to use a font from SharedMedia in Grid and I don't know how :S
I'm guessing you use embedded libraries. I just checked and found that Grid doesn't actually embed LibSharedMedia-2.0, so unless you're using another addon that does embed it (and is loaded before Grid) you won't get the font and texture options, since they're only created if LibSharedMedia-2.0 is available. I'll fix this; look for an update in 20 minutes or so.
@ Pastamancer:
Do you mind if I convert Grid to LibSharedMedia-3.0 and LibBabble-Class-3.0? I've already converted in my local version, and it's been working fine for weeks.
@ Pastamancer:
Do you mind if I convert Grid to LibSharedMedia-3.0 and LibBabble-Class-3.0? I've already converted in my local version, and it's been working fine for weeks.
Remind me again what was going on with all the different LSM versions?
Basically, a bunch of politics with ckknight LibStub'ing Elkano's SML-1.0 and calling it LSM-2.0, and then Elkano creating LSM-3.0. LSM-3.0 does have some additional locale-related stuff for fonts, and support for callbacks, but nothing major.... I mainly just want to not have to run two versions of the same thing.
My local version also converts to LibGratuity-3.0, for the same reason.
Also, I've written a (probably inefficient) fix for the problem of "show when missing" auras not showing up until they're gained and lost again, if you want to take a look. GridStatusAuras.lua, added into ScanUnitAuras function, around line 420:
for k, v in pairs(self.db.profile) do
if string.find(k, "^buff_") and v.missing then
local buff = string.match(v.desc, "^Buff: (.*)")
if not Aura:UnitHasBuff(unit, buff) then
self:UnitBuff(unit, false, buff)
end
end
end
Basically, a bunch of politics with ckknight LibStub'ing Elkano's SML-1.0 and calling it LSM-2.0, and then Elkano creating LSM-3.0. LSM-3.0 does have some additional locale-related stuff for fonts, and support for callbacks, but nothing major.... I mainly just want to not have to run two versions of the same thing.
Wasn't there some sort of backwards-compatability issue between LSM-3 and LSM-2 & 1?
As for that fix, I'd like to avoid using string.find but I'll take a look at it later.
Wasn't there some sort of backwards-compatability issue between LSM-3 and LSM-2 & 1?
LSM-2 picks up anything registered to SML-1 at load time. LSM-3 does not; as a result, fonts or textures registered to SML-1 or LSM-2 will not be available to addons using LSM-3. However, I don't really see this as a problem, as SharedMedia and ClearFont2 (the biggest sources of fonts and textures) both register to all three, and the general trend seems to be existing addons converting to LSM-3 and new addons written to use LSM-3 from the start.
As for that fix, I'd like to avoid using string.find but I'll take a look at it later.
Well, on second thought, you could use v.text instead of string.match(v.desc, "^Buff: (.*)") since the text isn't actually customizable. But the string.find is unavoidable since there is no other way to distinguish buffs from debuffs by looking at the settings table.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Line 7:
Line 599:
Results in an "attempt to index global BabbleSpell (a nil value)" error.
Ah crap, there really isn't a way around that.
Can someone help me plz?
I'm setting up Grid but I just can't find the option to change the Font. I have the latest versions of every addon (including SharedMedia) but I simply can't find the option for it :( Checked Frame->Advanced and I have the options to change font size, etc, but not the font itself :(
Is it possible to change the font on Grid? Do I need any additional addon to do it? (like ClearFont2 or something)
Thanks in advance!
Check box
Check box
Corner Size slider
Font Dropdown
What class are you? The 10-, 28-, and 100-yard ranges are usable for all classes, since they don't depend on checking the range of a spell or ability. If your class does have a spell or ability with a 40-yard range, you should see a 40-yard range in there too.
That's exactly what I meant Otto, I DON'T have any Font dropdown :S I don't understand why since I got both Grid and SharedMedia from "files.wowace.com" today, so I know they ARE updated :S
Can anyone give me a hand on this issue?
Thanks in advance!
This is happening to me as well...and yeah only in BGs.
bump. Can any of you guru guys help me plz?? :)
I realy would like to use a font from SharedMedia in Grid and I don't know how :S
@ Pastamancer:
Do you mind if I convert Grid to LibSharedMedia-3.0 and LibBabble-Class-3.0? I've already converted in my local version, and it's been working fine for weeks.
Remind me again what was going on with all the different LSM versions?
BC-3 is cool.
My local version also converts to LibGratuity-3.0, for the same reason.
Also, I've written a (probably inefficient) fix for the problem of "show when missing" auras not showing up until they're gained and lost again, if you want to take a look. GridStatusAuras.lua, added into ScanUnitAuras function, around line 420:
Wasn't there some sort of backwards-compatability issue between LSM-3 and LSM-2 & 1?
As for that fix, I'd like to avoid using string.find but I'll take a look at it later.
LSM-2 picks up anything registered to SML-1 at load time. LSM-3 does not; as a result, fonts or textures registered to SML-1 or LSM-2 will not be available to addons using LSM-3. However, I don't really see this as a problem, as SharedMedia and ClearFont2 (the biggest sources of fonts and textures) both register to all three, and the general trend seems to be existing addons converting to LSM-3 and new addons written to use LSM-3 from the start.
Well, on second thought, you could use v.text instead of string.match(v.desc, "^Buff: (.*)") since the text isn't actually customizable. But the string.find is unavoidable since there is no other way to distinguish buffs from debuffs by looking at the settings table.