Compare commits

...

3 Commits

Author SHA1 Message Date
590638a156 Update TOCs 2024-12-20 22:17:35 -06:00
e6bd39352c Fix max chi power not always updating correctly 2024-11-27 14:40:54 -06:00
a4060dff6f Update smaller changelog 2024-11-13 09:00:20 -06:00
5 changed files with 29 additions and 6 deletions

View File

@ -1,6 +1,6 @@
## Interface: 110005
## Interface-Retail: 110005
## Interface-Classic: 11504
## Interface: 110007
## Interface-Retail: 110007
## Interface-Classic: 11505
## Interface-BCC: 20504
## Interface-Wrath: 30403
## Interface-Cata: 40401

View File

@ -1,6 +1,6 @@
## Interface: 110005
## Interface-Retail: 110005
## Interface-Classic: 11504
## Interface: 110007
## Interface-Retail: 110007
## Interface-Classic: 11505
## Interface-BCC: 20504
## Interface-Wrath: 30403
## Interface-Cata: 40401

View File

@ -1,5 +1,10 @@
# Changelog
v1.15.10:
- Fix Chi not updating properly when the player's maximum amount of Chi points changes (e.g. via Ascension talent).
- Update TOCs
v1.15.9:
- Update Cataclysm Classic TOC to 4.4.1

View File

@ -40,6 +40,13 @@ function HarmonyPower.prototype:Enable(core)
HarmonyPower.super.prototype.Enable(self, core)
self:RegisterEvent("UNIT_POWER_FREQUENT", "UpdateRunePower")
if IceHUD.EventExistsUnitMaxPower then
self:RegisterEvent("UNIT_MAXPOWER", "PlayerChiUpdate")
end
end
function HarmonyPower.prototype:PlayerChiUpdate()
self:Redraw()
end
function HarmonyPower.prototype:UpdateRunePower(event, arg1, arg2)

View File

@ -1,5 +1,16 @@
# Changelog
v1.15.10:
- Fix Chi not updating properly when the player's maximum amount of Chi points changes (e.g. via Ascension talent).
- Update TOCs
v1.15.9:
- Update Cataclysm Classic TOC to 4.4.1
- Update Classic-era TOC to 1.15.4
- Update TWW TOC to 11.0.5
v1.15.8:
- Fix reported error with custom cooldown bars set to "when ready" mode due to deprecation in 11.x (wowace issue #368)