Compare commits

...

6 Commits

Author SHA1 Message Date
fc009492cb Update TOC for BC-Classic and Classic
WowAce ticket 317
2021-09-10 14:08:45 -05:00
e2ef8e6cb1 Rename closure variable to avoid shadowing a global/implicit var 2021-09-05 09:35:27 -05:00
da5498d1a2 Fix leaking variable 2021-09-05 09:33:46 -05:00
e8c8172298 Update changelog 2021-09-05 09:32:16 -05:00
345d12263c Add license 2021-09-01 09:53:57 -05:00
843292eda7 Use different GCD spell for Paladins in Classic 2021-08-25 21:41:50 -05:00
7 changed files with 44 additions and 13 deletions

View File

@ -1,7 +1,7 @@
## Interface: 90100
## Interface-Retail: 90100
## Interface-Classic: 11306
## Interface-BCC: 20501
## Interface-Classic: 11307
## Interface-BCC: 20502
## Author: Parnic, originally created by Iceroth
## Name: IceHUD
## Title: IceHUD |cff7fff7f-Ace3-|r

View File

@ -1,7 +1,7 @@
## Interface: 90100
## Interface-Retail: 90100
## Interface-Classic: 11306
## Interface-BCC: 20501
## Interface-Classic: 11307
## Interface-BCC: 20502
## Title: IceHUD |cff7fff7f-Options-|r
## Author: Parnic
## Version: @project-version@

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2021 parnic
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -1,5 +1,13 @@
# Changelog
v1.13.8.1:
- Updated TOC for BC-Classic and Classic.
v1.13.8:
- Fixed Paladin GCD not functioning in BC-Classic.
v1.13.7:
- Fixed energy ticker when zoning back into an instance after dying (Classic builds)

View File

@ -286,6 +286,10 @@ function GlobalCoolDown.prototype:GetSpellId()
MONK=100780, -- jab
}
if IceHUD.WowClassicBC or IceHUD.WowClassic then
defaultSpells["PALADIN"] = 635
end
local _, unitClass = UnitClass("player")
return defaultSpells[unitClass]
end

View File

@ -287,10 +287,9 @@ function Totems.prototype:CreateTotemFrame()
self.frame.graphical = {}
end
local totemType
for i=1, self.numTotems do
slot = TOTEM_PRIORITIES[i]
self:CreateTotem(slot, self.totemNames[slot])
local slot = TOTEM_PRIORITIES[i]
self:CreateTotem(slot, self.totemNames[slot])
end
end
@ -376,9 +375,9 @@ function Totems.prototype:CreateTotem(i, name)
self.graphicalOnLeave = function() GameTooltip:Hide() end
end
if not self.graphicalOnMouseUp then
self.graphicalOnMouseUp = function (self, mouseButton)
self.graphicalOnMouseUp = function (button, mouseButton)
if mouseButton == "RightButton" then
DestroyTotem(self.slot)
DestroyTotem(button.slot)
end
end
end

View File

@ -1,7 +1,6 @@
# Changelog
v1.13.7:
v1.13.8.1:
- Fixed energy ticker when zoning back into an instance after dying (Classic builds)
- Added newer Fear spell to CC modules.
- Fixed the straight textures (Tanks) not showing the lowest or highest values appropriately (10% could look empty, 90% could look full).
- Fixed Paladin GCD not functioning in BC-Classic.
- Updated TOC for BC-Classic and Classic.