mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 22:51:53 -05:00
Compare commits
6 Commits
v1.13.1-al
...
1.13.2-alp
Author | SHA1 | Date | |
---|---|---|---|
9a38c4b3ea
|
|||
ab6b662ac4
|
|||
a2addcb627
|
|||
7f84c28538
|
|||
924bd4a6ef
|
|||
0f753448d7
|
@ -1,5 +1,5 @@
|
|||||||
#@retail@
|
#@retail@
|
||||||
## Interface: 90001
|
## Interface: 90002
|
||||||
#@end-retail@
|
#@end-retail@
|
||||||
#@non-retail@
|
#@non-retail@
|
||||||
# ## Interface: 11305
|
# ## Interface: 11305
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#@retail@
|
#@retail@
|
||||||
## Interface: 90001
|
## Interface: 90002
|
||||||
#@end-retail@
|
#@end-retail@
|
||||||
#@non-retail@
|
#@non-retail@
|
||||||
# ## Interface: 11305
|
# ## Interface: 11305
|
||||||
|
@ -1,8 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
vNext:
|
v1.13.2:
|
||||||
|
|
||||||
|
- Fixed which version of LibDogTag was being packaged. The previous version did not have 9.0 compatibility and was generating errors (ticket #293).
|
||||||
|
|
||||||
|
v1.13.1:
|
||||||
|
|
||||||
- Added support for Anima-charged combo points for Kyrian covenant (ticket #291).
|
- Added support for Anima-charged combo points for Kyrian covenant (ticket #291).
|
||||||
|
- Updated TOC for 9.0.2
|
||||||
|
|
||||||
v1.13.0:
|
v1.13.0:
|
||||||
|
|
||||||
|
@ -223,8 +223,29 @@ function ComboPoints.prototype:GetOptions()
|
|||||||
disabled = function()
|
disabled = function()
|
||||||
return not self.moduleSettings.enabled
|
return not self.moduleSettings.enabled
|
||||||
end,
|
end,
|
||||||
|
order = 35
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if IceHUD.WowVer >= 90000 then
|
||||||
|
opts["bShowAnimaCharged"] = {
|
||||||
|
type = 'toggle',
|
||||||
|
width = 'double',
|
||||||
|
name = L["Show Anima-charged points"],
|
||||||
|
desc = L["Whether or not to color an anima-charged combo point a separate color. Set the KyrianAnimaComboPoint color to the color you would like it to be."],
|
||||||
|
get = function()
|
||||||
|
return self.moduleSettings.bShowAnimaCharged
|
||||||
|
end,
|
||||||
|
set = function(info, v)
|
||||||
|
self.moduleSettings.bShowAnimaCharged = v
|
||||||
|
self:UpdateChargedComboPoints()
|
||||||
|
end,
|
||||||
|
disabled = function()
|
||||||
|
return not self.moduleSettings.enabled
|
||||||
|
end,
|
||||||
|
order = 36
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
return opts
|
return opts
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -243,6 +264,7 @@ function ComboPoints.prototype:GetDefaultSettings()
|
|||||||
defaults["comboGap"] = 0
|
defaults["comboGap"] = 0
|
||||||
defaults["showAnticipation"] = true
|
defaults["showAnticipation"] = true
|
||||||
defaults["bShowWithNoTarget"] = true
|
defaults["bShowWithNoTarget"] = true
|
||||||
|
defaults["bShowAnimaCharged"] = true
|
||||||
return defaults
|
return defaults
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -420,7 +442,7 @@ function ComboPoints.prototype:CreateComboFrame(forceTextureUpdate)
|
|||||||
g = g - ((1 / maxComboPoints)*i)
|
g = g - ((1 / maxComboPoints)*i)
|
||||||
end
|
end
|
||||||
|
|
||||||
if i == self.chargedPowerPointIndex then
|
if i == self.chargedPowerPointIndex and self.moduleSettings.bShowAnimaCharged then
|
||||||
self.frame.graphical[i].texture:SetVertexColor(self:GetColor("KyrianAnimaComboPoint"))
|
self.frame.graphical[i].texture:SetVertexColor(self:GetColor("KyrianAnimaComboPoint"))
|
||||||
else
|
else
|
||||||
self.frame.graphical[i].texture:SetVertexColor(r, g, b)
|
self.frame.graphical[i].texture:SetVertexColor(r, g, b)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
vNext:
|
v1.13.2:
|
||||||
|
|
||||||
- Added support for Anima-charged combo points for Kyrian covenant (ticket #291).
|
- Fixed which version of LibDogTag was being packaged. The previous version did not have 9.0 compatibility and was generating errors (ticket #293).
|
||||||
|
Reference in New Issue
Block a user