Skip to content

Commit

Permalink
v0.9.109
Browse files Browse the repository at this point in the history
  • Loading branch information
d4kir92 committed Oct 8, 2024
1 parent ff3545c commit 3159727
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion ImproveAny.toc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Interface-Cata: 40400
## Interface: 110002

## Version: 0.9.108
## Version: 0.9.109
## Title: ImproveAny by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Improve Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion ImproveAny_Cata.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 40400
## Version: 0.9.108
## Version: 0.9.109
## Title: ImproveAny |T136033:16:16:0:0|t by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Improve Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion ImproveAny_TBC.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 20504
## Version: 0.9.108
## Version: 0.9.109
## Title: ImproveAny |T136033:16:16:0:0|t by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Improve Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion ImproveAny_Vanilla.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 11504
## Version: 0.9.108
## Version: 0.9.109
## Title: ImproveAny |T136033:16:16:0:0|t by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Improve Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion ImproveAny_Wrath.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 30403
## Version: 0.9.108
## Version: 0.9.109
## Title: ImproveAny |T136033:16:16:0:0|t by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Improve Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ function ImproveAny:Event(event, ...)
["icon"] = 136033,
["var"] = mmbtn,
["dbtab"] = IATAB,
["vTT"] = {{"ImproveAny |T136033:16:16:0:0|t", "v|cff3FC7EB0.9.108"}, {ImproveAny:GT("LEFTCLICK"), ImproveAny:GT("MMBTNLEFT")}, {ImproveAny:GT("RIGHTCLICK"), ImproveAny:GT("MMBTNRIGHT")}},
["vTT"] = {{"ImproveAny |T136033:16:16:0:0|t", "v|cff3FC7EB0.9.109"}, {ImproveAny:GT("LEFTCLICK"), ImproveAny:GT("MMBTNLEFT")}, {ImproveAny:GT("RIGHTCLICK"), ImproveAny:GT("MMBTNRIGHT")}},
["funcL"] = function()
ImproveAny:ToggleSettings()
end,
Expand Down
10 changes: 4 additions & 6 deletions ele/partymember.lua
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ local function OnEventXPInit(self, event, ...)
end

function PartyFrameXPBar.think()
if UnitExists("PARTY" .. i) and UnitLevel("PARTY" .. i) < ImproveAny:GetMaxLevel() then
local co = GetQuestDifficultyColor(UnitLevel("PARTY" .. i))
PartyFrameXPBar.levelText:SetText(UnitLevel("PARTY" .. i))
PartyFrameXPBar.levelText:SetTextColor(co.r, co.g, co.b, 1)
if UnitExists("PARTY" .. i) then
PartyFrameXPBar:SetAlpha(1)
local co = GetQuestDifficultyColor(UnitLevel("PARTY" .. i))
PartyFrameXPBar.levelText:SetText(UnitLevel("PARTY" .. i))
PartyFrameXPBar.levelText:SetTextColor(co.r, co.g, co.b, 1)
local xp = ImproveAny:UnitXP("PARTY" .. i, 0)
local xpmax = ImproveAny:UnitXPMax("PARTY" .. i, 1)
if (xp > 0 or xpmax > 1) and not ImproveAny:IAGV("nochanges") then
Expand Down Expand Up @@ -198,8 +198,6 @@ local function OnEventXPInit(self, event, ...)
PartyFrameXPBar.textureBar:SetAlpha(0)
PartyFrameXPBar.textureBorder:SetAlpha(0)
end
else
PartyFrameXPBar:SetAlpha(0)
end

_G["PartyMemberFrame" .. i .. "Debuff" .. 1]:SetPoint(_G["PartyMemberFrame" .. i .. "Debuff" .. 1]:GetPoint())
Expand Down
4 changes: 2 additions & 2 deletions settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,8 @@ function ImproveAny:InitIASettings()
IASettings:Hide()
end

ImproveAny:SetVersion(AddonName, 136033, "0.9.108")
IASettings.TitleText:SetText(format("ImproveAny |T136033:16:16:0:0|t v|cff3FC7EB%s", "0.9.108"))
ImproveAny:SetVersion(AddonName, 136033, "0.9.109")
IASettings.TitleText:SetText(format("ImproveAny |T136033:16:16:0:0|t v|cff3FC7EB%s", "0.9.109"))
IASettings.CloseButton:SetScript(
"OnClick",
function()
Expand Down

0 comments on commit 3159727

Please sign in to comment.