- 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:
Parnic
2010-09-05 20:11:33 +00:00
parent 5a7f8ffa38
commit 59344a134a
45 changed files with 676 additions and 749 deletions

View File

@ -84,7 +84,7 @@ function IceCastBar.prototype:GetOptions()
get = function()
return self.moduleSettings.showCastTime
end,
set = function(value)
set = function(info, value)
self.moduleSettings.showCastTime = value
end,
disabled = function()
@ -101,7 +101,7 @@ function IceCastBar.prototype:GetOptions()
get = function()
return self.moduleSettings.showSpellRank
end,
set = function(value)
set = function(info, value)
self.moduleSettings.showSpellRank = value
end,
disabled = function()
@ -123,7 +123,7 @@ function IceCastBar.prototype:GetOptions()
get = function()
return self.moduleSettings.displayAuraIcon
end,
set = function(v)
set = function(info, v)
self.moduleSettings.displayAuraIcon = v
if self.barFrame.icon then
if v then
@ -136,7 +136,6 @@ function IceCastBar.prototype:GetOptions()
disabled = function()
return not self.moduleSettings.enabled
end,
usage = "<whether or not to display an icon for this bar's tracked spell>",
order = 51,
}
@ -150,14 +149,13 @@ function IceCastBar.prototype:GetOptions()
get = function()
return self.moduleSettings.auraIconXOffset
end,
set = function(v)
set = function(info, v)
self.moduleSettings.auraIconXOffset = v
self:PositionIcons()
end,
disabled = function()
return not self.moduleSettings.enabled or not self.moduleSettings.displayAuraIcon
end,
usage = "<adjusts the spell icon's horizontal position>",
order = 52,
}
@ -171,14 +169,13 @@ function IceCastBar.prototype:GetOptions()
get = function()
return self.moduleSettings.auraIconYOffset
end,
set = function(v)
set = function(info, v)
self.moduleSettings.auraIconYOffset = v
self:PositionIcons()
end,
disabled = function()
return not self.moduleSettings.enabled or not self.moduleSettings.displayAuraIcon
end,
usage = "<adjusts the spell icon's vertical position>",
order = 53,
}
@ -192,14 +189,13 @@ function IceCastBar.prototype:GetOptions()
get = function()
return self.moduleSettings.auraIconScale
end,
set = function(v)
set = function(info, v)
self.moduleSettings.auraIconScale = v
self:PositionIcons()
end,
disabled = function()
return not self.moduleSettings.enabled or not self.moduleSettings.displayAuraIcon
end,
usage = "<adjusts the spell icon's size>",
order = 54,
}
@ -210,13 +206,12 @@ function IceCastBar.prototype:GetOptions()
get = function()
return self.moduleSettings.reverseChannel
end,
set = function(v)
set = function(info, v)
self.moduleSettings.reverseChannel = v
end,
disabled = function()
return not self.moduleSettings.enabled
end,
usage = "<whether or not to reverse the direction of a channel's castbar>",
order = 32.5,
}