mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
- converted most of the mod to ace3. the only ace2 remaining is AceEvent-2 (probably easy to get away from) and AceOO-2 (not so easy)
- the ace3 conversion also broke the dependence on Waterfall and gave a much better configuration screen through AceConfigDialog; plus Waterfall is very broken in Cataclysm and it's unclear whether anyone will bother to fix it or not - fixed a bug with the custom CD bar when changing profiles where it would generate endless errors until a reloadui - removed DewDrop library as it was no longer in use - temporarily removed FuBar plugin as it doesn't work as a mixin with AceAddon-3. i will eventually be bringing this back in some form (before the next full release version) - removed an unused 'about' button on the config page and some empty headers...not sure why they were ever there
This commit is contained in:
@ -58,7 +58,7 @@ function RangeCheck.prototype:GetOptions()
|
||||
get = function()
|
||||
return self.moduleSettings.vpos
|
||||
end,
|
||||
set = function(v)
|
||||
set = function(info, v)
|
||||
self.moduleSettings.vpos = v
|
||||
self:Redraw()
|
||||
end,
|
||||
@ -78,7 +78,7 @@ function RangeCheck.prototype:GetOptions()
|
||||
get = function()
|
||||
return self.moduleSettings.hpos
|
||||
end,
|
||||
set = function(v)
|
||||
set = function(info, v)
|
||||
self.moduleSettings.hpos = v
|
||||
self:Redraw()
|
||||
end,
|
||||
@ -92,13 +92,13 @@ function RangeCheck.prototype:GetOptions()
|
||||
}
|
||||
|
||||
opts["rangeString"] = {
|
||||
type = 'text',
|
||||
type = 'input',
|
||||
name = 'Range string',
|
||||
desc = 'DogTag-formatted string to use for the range display (only available if LibDogTag is being used)\n\nType /dogtag for a list of available tags',
|
||||
get = function()
|
||||
return self.moduleSettings.rangeString
|
||||
end,
|
||||
set = function(v)
|
||||
set = function(info, v)
|
||||
v = DogTag:CleanCode(v)
|
||||
self.moduleSettings.rangeString = v
|
||||
self:RegisterFontStrings()
|
||||
@ -171,4 +171,4 @@ function RangeCheck.prototype:UpdateRange()
|
||||
end
|
||||
end
|
||||
|
||||
IceHUD.RangeCheck = RangeCheck:new()
|
||||
IceHUD.RangeCheck = RangeCheck:new()
|
||||
|
Reference in New Issue
Block a user