Didn't mean to seem pushy about the solution -- if you're maintaining the mod I definitely leave it to you to figure out the best fix, you definitely know the code better than I do. That was just a suggestion that seems to work for me. :-)
Edit: Incidentally, I don't have custom groups set up either -- I just have made a custom string within the default group.
First, thanks for whoever's working on and maintaining this mod. I really like the customizability of it (just switched from Chronometer).
Found one bug though -- it's not paying attention to custom formatting strings defined in groups, it's only using the default strings, regardless of whether you've got a custom string defined.
The fix (in version 58056), file SorrenTimers.lua, line 668. Change it to:
if name then
display = string.gsub(group.targetstring, "$target", name);
display = string.gsub(display, "$name", skill);
else
display = string.gsub(group.skillstring, "$name", skill);
end
Previously it was just using the default strings directly rather than using whatever strings are specified in the appropriate group.
Oh, I didn't realize that you could embed libraries in lua files, I thought each library needed its own directory. The whole "embedded libs" thing has me sort of confused though...isn't the point of a lib that it's shared among multiple addons?
Anyways, I've installed PerfectTargets with and without externals now, and removed it and re-downloaded it from scratch, and I still get this error.
I did my standard WoWAceUpdater a couple days ago and now I'm getting the following error on login:
Interface\AddOns\PerfectTargets\PerfectTargets.lua:6 Cannot find a library with name 'MetrognomeNano-Beta0'
Sure enough, I find no reference to a lib by that name anywhere, and can't find any reference to it here on WowAce or any other site. Anyone know what changed, and what might be causing this? I always found PerfectTargets nice and useful, I'd hate to lose it.
Is there any way that I can turn off the tooltip that pops up when I mouseover party frames? It's getting in the way of seeing the other partyframe bars.
And yes, I've turned off all tooltips in the Blizzard UI menu.
0
Didn't mean to seem pushy about the solution -- if you're maintaining the mod I definitely leave it to you to figure out the best fix, you definitely know the code better than I do. That was just a suggestion that seems to work for me. :-)
Edit: Incidentally, I don't have custom groups set up either -- I just have made a custom string within the default group.
0
Found one bug though -- it's not paying attention to custom formatting strings defined in groups, it's only using the default strings, regardless of whether you've got a custom string defined.
The fix (in version 58056), file SorrenTimers.lua, line 668. Change it to:
if name then
display = string.gsub(group.targetstring, "$target", name);
display = string.gsub(display, "$name", skill);
else
display = string.gsub(group.skillstring, "$name", skill);
end
Previously it was just using the default strings directly rather than using whatever strings are specified in the appropriate group.
0
Anyways, I've installed PerfectTargets with and without externals now, and removed it and re-downloaded it from scratch, and I still get this error.
0
Interface\AddOns\PerfectTargets\PerfectTargets.lua:6 Cannot find a library with name 'MetrognomeNano-Beta0'
Sure enough, I find no reference to a lib by that name anywhere, and can't find any reference to it here on WowAce or any other site. Anyone know what changed, and what might be causing this? I always found PerfectTargets nice and useful, I'd hate to lose it.
0
And yes, I've turned off all tooltips in the Blizzard UI menu.
Thanks!