Compare commits

...

2 Commits

Author SHA1 Message Date
268a6c6fbc Update TOCs 2024-11-13 08:58:17 -06:00
b75112db79 Fix error in CD module set to WhenReady mode 2024-08-30 21:54:08 -05:00
5 changed files with 27 additions and 8 deletions

View File

@ -1,9 +1,9 @@
## Interface: 110002
## Interface-Retail: 110002
## Interface-Classic: 11503
## Interface: 110005
## Interface-Retail: 110005
## Interface-Classic: 11504
## Interface-BCC: 20504
## Interface-Wrath: 30403
## Interface-Cata: 40400
## Interface-Cata: 40401
## Author: Parnic, originally created by Iceroth
## Name: IceHUD
## Title: IceHUD |cff7fff7f-Ace3-|r

View File

@ -1,9 +1,9 @@
## Interface: 110002
## Interface-Retail: 110002
## Interface-Classic: 11503
## Interface: 110005
## Interface-Retail: 110005
## Interface-Classic: 11504
## Interface-BCC: 20504
## Interface-Wrath: 30403
## Interface-Cata: 40400
## Interface-Cata: 40401
## Title: IceHUD |cff7fff7f-Options-|r
## Author: Parnic
## Version: @project-version@

View File

@ -1,5 +1,15 @@
# Changelog
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)
v1.15.7:
- Fix cooldown display for overridden spells (such as Evoker spells where Font of Magic replaces the base spell with an override with the same name).

View File

@ -61,6 +61,11 @@ if not IsUsableSpell and C_Spell then
IsUsableSpell = C_Spell.IsSpellUsable
end
local SpellHasRange = SpellHasRange
if not SpellHasRange and C_Spell then
SpellHasRange = C_Spell.SpellHasRange
end
IceCustomCDBar.prototype.cooldownDuration = 0
IceCustomCDBar.prototype.cooldownEndTime = 0
IceCustomCDBar.prototype.coolingDown = false

View File

@ -1,5 +1,9 @@
# Changelog
v1.15.8:
- Fix reported error with custom cooldown bars set to "when ready" mode due to deprecation in 11.x (wowace issue #368)
v1.15.7:
- Fix cooldown display for overridden spells (such as Evoker spells where Font of Magic replaces the base spell with an override with the same name).