mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 22:51:53 -05:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
43aa303887 | |||
30ec3750c1
|
|||
73891bca4b
|
@ -1,5 +1,5 @@
|
|||||||
## Interface: 110000
|
## Interface: 110002
|
||||||
## Interface-Retail: 110000
|
## Interface-Retail: 110002
|
||||||
## Interface-Classic: 11503
|
## Interface-Classic: 11503
|
||||||
## Interface-BCC: 20504
|
## Interface-BCC: 20504
|
||||||
## Interface-Wrath: 30403
|
## Interface-Wrath: 30403
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
## Interface: 110000
|
## Interface: 110002
|
||||||
## Interface-Retail: 110000
|
## Interface-Retail: 110002
|
||||||
## Interface-Classic: 11503
|
## Interface-Classic: 11503
|
||||||
## Interface-BCC: 20504
|
## Interface-BCC: 20504
|
||||||
## Interface-Wrath: 30403
|
## Interface-Wrath: 30403
|
||||||
|
12
changelog.md
12
changelog.md
@ -1,5 +1,17 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
v1.15.6:
|
||||||
|
|
||||||
|
- Package new version of LibDogTag-Unit to fix an error with some units on 11.0.2
|
||||||
|
|
||||||
|
v1.15.5:
|
||||||
|
|
||||||
|
- Fix error when using an invalid spell with a custom bar on 11.x
|
||||||
|
|
||||||
|
v1.15.4:
|
||||||
|
|
||||||
|
- Update TOC for TWW
|
||||||
|
|
||||||
v1.15.3:
|
v1.15.3:
|
||||||
|
|
||||||
- Fix custom cooldown bars not working in 11.x (wowace issue #363)
|
- Fix custom cooldown bars not working in 11.x (wowace issue #363)
|
||||||
|
@ -20,8 +20,14 @@ end
|
|||||||
local GetSpellInfo = GetSpellInfo
|
local GetSpellInfo = GetSpellInfo
|
||||||
if not GetSpellInfo and C_Spell and C_Spell.GetSpellInfo then
|
if not GetSpellInfo and C_Spell and C_Spell.GetSpellInfo then
|
||||||
GetSpellInfo = function(id)
|
GetSpellInfo = function(id)
|
||||||
|
if not id then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
local info = C_Spell.GetSpellInfo(id)
|
local info = C_Spell.GetSpellInfo(id)
|
||||||
return info.name, nil, info.iconID
|
if info then
|
||||||
|
return info.name, nil, info.iconID
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -30,8 +30,14 @@ end
|
|||||||
local GetSpellInfo = GetSpellInfo
|
local GetSpellInfo = GetSpellInfo
|
||||||
if not GetSpellInfo and C_Spell and C_Spell.GetSpellInfo then
|
if not GetSpellInfo and C_Spell and C_Spell.GetSpellInfo then
|
||||||
GetSpellInfo = function(id)
|
GetSpellInfo = function(id)
|
||||||
|
if not id then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
local info = C_Spell.GetSpellInfo(id)
|
local info = C_Spell.GetSpellInfo(id)
|
||||||
return info.name, nil, info.iconID
|
if info then
|
||||||
|
return info.name, nil, info.iconID
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -10,8 +10,14 @@ local DefaultAuraIcon = "Interface\\Icons\\Spell_Frost_Frost"
|
|||||||
local GetSpellInfo = GetSpellInfo
|
local GetSpellInfo = GetSpellInfo
|
||||||
if not GetSpellInfo and C_Spell and C_Spell.GetSpellInfo then
|
if not GetSpellInfo and C_Spell and C_Spell.GetSpellInfo then
|
||||||
GetSpellInfo = function(id)
|
GetSpellInfo = function(id)
|
||||||
|
if not id then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
local info = C_Spell.GetSpellInfo(id)
|
local info = C_Spell.GetSpellInfo(id)
|
||||||
return info.name, nil, info.iconID
|
if info then
|
||||||
|
return info.name, nil, info.iconID
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -9,8 +9,14 @@ end
|
|||||||
local GetSpellInfo = GetSpellInfo
|
local GetSpellInfo = GetSpellInfo
|
||||||
if not GetSpellInfo and C_Spell and C_Spell.GetSpellInfo then
|
if not GetSpellInfo and C_Spell and C_Spell.GetSpellInfo then
|
||||||
GetSpellInfo = function(id)
|
GetSpellInfo = function(id)
|
||||||
|
if not id then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
local info = C_Spell.GetSpellInfo(id)
|
local info = C_Spell.GetSpellInfo(id)
|
||||||
return info.name, nil, info.iconID, info.castTime
|
if info then
|
||||||
|
return info.name, nil, info.iconID, info.castTime
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
v1.15.6:
|
||||||
|
|
||||||
|
- Package new version of LibDogTag-Unit to fix an error with some units on 11.0.2
|
||||||
|
|
||||||
|
v1.15.5:
|
||||||
|
|
||||||
|
- Fix error when using an invalid spell with a custom bar on 11.x
|
||||||
|
|
||||||
|
v1.15.4:
|
||||||
|
|
||||||
|
- Update TOC for TWW
|
||||||
|
|
||||||
v1.15.3:
|
v1.15.3:
|
||||||
|
|
||||||
- Fix custom cooldown bars not working in 11.x (wowace issue #363)
|
- Fix custom cooldown bars not working in 11.x (wowace issue #363)
|
||||||
|
Reference in New Issue
Block a user