Skip to content

Commit

Permalink
v1.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
d4kir92 committed Feb 10, 2025
1 parent b0f08ce commit 42b47cd
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion MoveAny.toc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Interface-Cata: 40401
## Interface: 110007, 110100

## Version: 1.8.9
## Version: 1.8.10
## Title: MoveAny by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Move Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion MoveAny_Cata.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 40401
## Version: 1.8.9
## Version: 1.8.10
## Title: MoveAny |T135994:16:16:0:0|t by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Move Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion MoveAny_TBC.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 20504
## Version: 1.8.9
## Version: 1.8.10
## Title: MoveAny |T135994:16:16:0:0|t by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Move Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion MoveAny_Vanilla.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 11506
## Version: 1.8.9
## Version: 1.8.10
## Title: MoveAny |T135994:16:16:0:0|t by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Move Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion MoveAny_Wrath.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 30403
## Version: 1.8.9
## Version: 1.8.10
## Title: MoveAny |T135994:16:16:0:0|t by |cff3FC7EBD4KiR |T132115:16:16:0:0|t
## Notes: Move Any Ui or Frame
## Author: D4KiR
Expand Down
2 changes: 1 addition & 1 deletion locale/deDE.lua
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ function MoveAny:LangdeDE()
["LID_LFGMinimapFrame"] = "LFG Minimapknopf",
["LID_QUESTTIMERFRAME"] = "Questzeit-Fenster",
["LID_BATTLEFIELDMAPFRAME"] = "Schlachtfeld Karte",
["LID_EXTRAACTIONBARFRAME"] = "Extra Aktionsleiste (ExtraActionButton1)",
["LID_ExtraActionButton1"] = "Extra Aktionsleiste (ExtraActionButton1)",
}

if MoveAny:GetWoWBuild() ~= "RETAIL" then
Expand Down
2 changes: 1 addition & 1 deletion locale/enUS.lua
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ function MoveAny:LangenUS()
["LID_LFGMinimapFrame"] = "LFG Minimap Button",
["LID_QUESTTIMERFRAME"] = "Quest Timer Frame",
["LID_BATTLEFIELDMAPFRAME"] = "Battlefield Map",
["LID_EXTRAACTIONBARFRAME"] = "Extra Actionbar (ExtraActionButton1)",
["LID_ExtraActionButton1"] = "Extra Actionbar (ExtraActionButton1)",
}

if MoveAny:GetWoWBuild() ~= "RETAIL" then
Expand Down
13 changes: 5 additions & 8 deletions settings.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local AddonName, MoveAny = ...
local version = "1.8.9"
local version = "1.8.10"
local PREFIX = "MOAN"
local MASendProfiles = {}
local MAWantProfiles = {}
Expand Down Expand Up @@ -601,7 +601,7 @@ function MoveAny:InitMALock()
if ExtraAbilityContainer then
AddCheckBox(posx, "EXTRAABILITYCONTAINER", false, nil, nil, "ShowExtraAbilities")
elseif MoveAny:GetWoWBuild() == "CATA" then
AddCheckBox(posx, "EXTRAACTIONBARFRAME", false, nil, nil, "ShowExtraAbilities")
AddCheckBox(posx, "ExtraActionButton1", true, nil, nil, "ShowExtraAbilities")
end

AddCheckBox(posx, "CASTINGBAR", false, nil, nil, "ShowCastBar")
Expand Down Expand Up @@ -2938,14 +2938,11 @@ function MoveAny:LoadAddon()
["userplaced"] = true
}
)
elseif MoveAny:GetWoWBuild() == "CATA" and MoveAny:IsEnabled("EXTRAACTIONBARFRAME", false) then
ExtraActionBarFrame = CreateFrame("Frame", "ExtraActionBarFrame", UIParent)
ExtraActionBarFrame:SetSize(180, 100)
ExtraActionBarFrame:SetPoint("CENTER", UIParent, "CENTER", 0, 0)
elseif MoveAny:GetWoWBuild() == "CATA" and MoveAny:IsEnabled("ExtraActionButton1", true) then
MoveAny:RegisterWidget(
{
["name"] = "ExtraActionBarFrame",
["lstr"] = "LID_EXTRAACTIONBARFRAME",
["name"] = "ExtraActionButton1",
["lstr"] = "LID_ExtraActionButton1",
["userplaced"] = true
}
)
Expand Down

0 comments on commit 42b47cd

Please sign in to comment.