Change all use of heroclass to use RAID_CLASS_COLORS instead. This can be changed to CUSTOM_CLASS_COLORS later with a color picker for each class, but to support CoA classes need to go back to being colored properly.
Fix remaining lua errors covered by ascension patches Add Addon Skins Add Enhanced Friends List
This commit is contained in:
@@ -0,0 +1,331 @@
|
||||
local E, L, V, P, G = unpack(ElvUI)
|
||||
local S = E:GetModule("Skins")
|
||||
local AS = E:GetModule("AddOnSkins")
|
||||
|
||||
if not AS:IsAddonLODorEnabled("PowerAuras") then return end
|
||||
|
||||
local _G = _G
|
||||
|
||||
-- Power Auras Classic 3.0.0S
|
||||
-- https://www.curseforge.com/wow/addons/powerauras-classic/files/452580
|
||||
|
||||
S:AddCallbackForAddon("PowerAuras", "PowerAuras", function()
|
||||
if not E.private.addOnSkins.PowerAuras then return end
|
||||
|
||||
local frames = {
|
||||
-- Options
|
||||
"PowaOptionsFrame",
|
||||
"PowaOptionsPlayerListFrame",
|
||||
"PowaOptionsGlobalListFrame",
|
||||
"PowaOptionsSelectorFrame",
|
||||
-- Config
|
||||
"PowaBarConfigFrame",
|
||||
"PowaBarConfigFrameEditor",
|
||||
"PowaBarConfigFrameEditor2",
|
||||
"PowaBarConfigFrameEditor3",
|
||||
"PowaBarConfigFrameEditor4",
|
||||
"PowaBarConfigFrameEditor5",
|
||||
"PowaBarConfigFrameEditor6",
|
||||
"PowaEquipmentSlotsFrame",
|
||||
}
|
||||
|
||||
local buttons = {
|
||||
-- Blizzard Options
|
||||
"PowaShowAuraBrowserButton",
|
||||
"PowaResetPositionButton",
|
||||
-- Options
|
||||
"PowaOptionsRename",
|
||||
"PowaMainTestAllButton",
|
||||
"PowaMainTestButton",
|
||||
"PowaOptionsSelectorNew",
|
||||
"PowaOptionsMove",
|
||||
"PowaOptionsSelectorImport",
|
||||
"PowaOptionsSelectorImportSet",
|
||||
"PowaMainHideAllButton",
|
||||
"PowaOptionsSelectorDelete",
|
||||
"PowaOptionsCopy",
|
||||
"PowaOptionsSelectorExport",
|
||||
"PowaOptionsSelectorExportSet",
|
||||
"PowaEditButton",
|
||||
-- Config Main
|
||||
"PowaBarAuraTextureSliderMinus",
|
||||
"PowaBarAuraTextureSliderPlus",
|
||||
"PowaFontsButton",
|
||||
"PowaBarAuraCoordXSliderMinus",
|
||||
"PowaBarAuraCoordXSliderPlus",
|
||||
"PowaBarAuraCoordSliderMinus",
|
||||
"PowaBarAuraCoordSliderPlus",
|
||||
-- Config Animation
|
||||
"PowaBarAuraAnimSpeedSliderMinus",
|
||||
"PowaBarAuraAnimSpeedSliderPlus",
|
||||
"PowaBarAuraDurationSliderMinus",
|
||||
"PowaBarAuraDurationSliderPlus",
|
||||
-- Config Timer
|
||||
"PowaTimerCoordXSliderMinus",
|
||||
"PowaTimerCoordXSliderPlus",
|
||||
"PowaTimerCoordSliderMinus",
|
||||
"PowaTimerCoordSliderPlus",
|
||||
"PowaTimerSizeSliderMinus",
|
||||
"PowaTimerSizeSliderPlus",
|
||||
"PowaTimerAlphaSliderMinus",
|
||||
"PowaTimerAlphaSliderPlus",
|
||||
"PowaTimerInvertAuraSliderMinus",
|
||||
"PowaTimerInvertAuraSliderPlus",
|
||||
"PowaTimerDurationSliderMinus",
|
||||
"PowaTimerDurationSliderPlus",
|
||||
-- Config Stacks
|
||||
"PowaStacksCoordXSliderMinus",
|
||||
"PowaStacksCoordXSliderPlus",
|
||||
"PowaStacksCoordSliderMinus",
|
||||
"PowaStacksCoordSliderPlus",
|
||||
"PowaStacksSizeSliderMinus",
|
||||
"PowaStacksSizeSliderPlus",
|
||||
"PowaStacksAlphaSliderMinus",
|
||||
"PowaStacksAlphaSliderPlus",
|
||||
}
|
||||
|
||||
local checkBoxes = {
|
||||
-- Blizzard Options
|
||||
"PowaEnableButton",
|
||||
"PowaDebugButton",
|
||||
"PowaTimerRoundingButton",
|
||||
"PowaAllowInspectionsButton",
|
||||
-- Config Main
|
||||
"PowaTexModeButton",
|
||||
"PowaWowTextureButton",
|
||||
"PowaCustomTextureButton",
|
||||
"PowaTextAuraButton",
|
||||
"PowaRandomColorButton",
|
||||
"PowaOwntexButton",
|
||||
-- Config Activation
|
||||
"PowaExactButton",
|
||||
"PowaIngoreCaseButton",
|
||||
"PowaInverseButton",
|
||||
"PowaMineButton",
|
||||
"PowaPvPButton",
|
||||
"PowaInCombatButton",
|
||||
"PowaRestingButton",
|
||||
"PowaIsAliveButton",
|
||||
"PowaIsInPartyButton",
|
||||
"PowaIsInRaidButton",
|
||||
"PowaIsMountedButton",
|
||||
"PowaInVehicleButton",
|
||||
"PowaTargetButton",
|
||||
"PowaTargetFriendButton",
|
||||
"PowaFocusButton",
|
||||
"PowaGroupOrSelfButton",
|
||||
"PowaPartyButton",
|
||||
"PowaRaidButton",
|
||||
"PowaOptunitnButton",
|
||||
"Powa5ManInstanceButton",
|
||||
"Powa5ManHeroicInstanceButton",
|
||||
"Powa10ManInstanceButton",
|
||||
"Powa10ManHeroicInstanceButton",
|
||||
"Powa25ManInstanceButton",
|
||||
"Powa25ManHeroicInstanceButton",
|
||||
"PowaBgInstanceButton",
|
||||
"PowaArenaInstanceButton",
|
||||
"PowaRoleTankButton",
|
||||
"PowaRoleHealerButton",
|
||||
"PowaRoleMeleDpsButton",
|
||||
"PowaRoleRangeDpsButton",
|
||||
"PowaTalentGroup1Button",
|
||||
"PowaTalentGroup2Button",
|
||||
"PowaGroupAnyButton",
|
||||
"PowaAuraDebugButton",
|
||||
"PowaThresholdInvertButton",
|
||||
"PowaExtraButton",
|
||||
-- Config Animation
|
||||
"PowaShowSpinAtBeginning",
|
||||
"PowaOldAnimation",
|
||||
-- Config Timer
|
||||
"PowaShowTimerButton",
|
||||
"PowaBuffTimerCentsButton",
|
||||
"PowaBuffTimerLeadingZerosButton",
|
||||
"PowaBuffTimerTransparentButton",
|
||||
"PowaBuffTimerUseOwnColorButton",
|
||||
"PowaBuffTimerUpdatePingButton",
|
||||
"PowaBuffTimerActivationTime",
|
||||
-- Config Stacks
|
||||
"PowaShowStacksButton",
|
||||
"PowaBuffStacksTransparentButton",
|
||||
"PowaBuffStacksUseOwnColorButton",
|
||||
"PowaBuffStacksUpdatePingButton",
|
||||
}
|
||||
|
||||
local sliders = {
|
||||
-- Blizzard Options
|
||||
"PowaOptionsUpdateSlider2",
|
||||
"PowaOptionsAnimationsSlider2",
|
||||
"PowaOptionsTimerUpdateSlider2",
|
||||
-- Config Main
|
||||
"PowaBarAuraTextureSlider",
|
||||
"PowaBarAuraAlphaSlider",
|
||||
"PowaBarAuraSymSlider",
|
||||
"PowaBarAuraDeformSlider",
|
||||
"PowaBarAuraSizeSlider",
|
||||
"PowaBarAuraCoordXSlider",
|
||||
"PowaBarAuraCoordSlider",
|
||||
-- Config Activation
|
||||
"PowaBarThresholdSlider",
|
||||
-- Config Animation
|
||||
"PowaBarAuraAnimSpeedSlider",
|
||||
"PowaBarAuraDurationSlider",
|
||||
-- Config Timer
|
||||
"PowaTimerCoordXSlider",
|
||||
"PowaTimerCoordSlider",
|
||||
"PowaTimerSizeSlider",
|
||||
"PowaTimerAlphaSlider",
|
||||
"PowaTimerInvertAuraSlider",
|
||||
"PowaTimerDurationSlider",
|
||||
-- Config Stacks
|
||||
"PowaStacksCoordXSlider",
|
||||
"PowaStacksCoordSlider",
|
||||
"PowaStacksSizeSlider",
|
||||
"PowaStacksAlphaSlider",
|
||||
}
|
||||
|
||||
local editBoxes = {
|
||||
-- Options
|
||||
"PowaOptionsRenameEditBox",
|
||||
-- Config Main
|
||||
"PowaBarAuraTextureEdit",
|
||||
"PowaBarCustomTexName",
|
||||
"PowaBarAurasText",
|
||||
"PowaBarAuraCoordXEdit",
|
||||
"PowaBarAuraCoordYEdit",
|
||||
-- Config Activation
|
||||
"PowaBarBuffStacks",
|
||||
"PowaBarBuffName",
|
||||
"PowaBarMultiID",
|
||||
"PowaBarTooltipCheck",
|
||||
-- Config Sound
|
||||
"PowaBarCustomSound",
|
||||
"PowaBarCustomSoundEnd",
|
||||
}
|
||||
|
||||
local dropDownBoxes = {
|
||||
-- Blizzard Options
|
||||
"PowaDropDownDefaultTimerTexture",
|
||||
"PowaDropDownDefaultStacksTexture",
|
||||
-- Config Activation
|
||||
"PowaDropDownBuffType",
|
||||
"PowaDropDownPowerType",
|
||||
"PowaDropDownStance",
|
||||
"PowaDropDownGTFO",
|
||||
-- Config Animation
|
||||
"PowaDropDownAnimBegin",
|
||||
"PowaDropDownAnimEnd",
|
||||
"PowaDropDownAnim1",
|
||||
"PowaDropDownAnim2",
|
||||
-- Config Sound
|
||||
"PowaDropDownSound",
|
||||
"PowaDropDownSound2",
|
||||
"PowaDropDownSoundEnd",
|
||||
"PowaDropDownSound2End",
|
||||
-- Config Timer
|
||||
"PowaDropDownTimerTexture",
|
||||
"PowaBuffTimerRelative",
|
||||
-- Config Stacks
|
||||
"PowaDropDownStacksTexture",
|
||||
"PowaBuffStacksRelative",
|
||||
}
|
||||
|
||||
local itemButtons = {
|
||||
"PowaHeadSlot",
|
||||
"PowaNeckSlot",
|
||||
"PowaShoulderSlot",
|
||||
"PowaBackSlot",
|
||||
"PowaChestSlot",
|
||||
"PowaShirtSlot",
|
||||
"PowaTabardSlot",
|
||||
"PowaWristSlot",
|
||||
"PowaHandsSlot",
|
||||
"PowaWaistSlot",
|
||||
"PowaLegsSlot",
|
||||
"PowaFeetSlot",
|
||||
"PowaFinger0Slot",
|
||||
"PowaFinger1Slot",
|
||||
"PowaTrinket0Slot",
|
||||
"PowaTrinket1Slot",
|
||||
"PowaMainHandSlot",
|
||||
"PowaSecondaryHandSlot",
|
||||
"PowaRangedSlot",
|
||||
}
|
||||
|
||||
for _, frame in ipairs(frames) do
|
||||
frame = _G[frame]
|
||||
frame:StripTextures()
|
||||
frame:SetTemplate("Transparent")
|
||||
end
|
||||
for _, button in ipairs(buttons) do
|
||||
S:HandleButton(_G[button])
|
||||
end
|
||||
for _, checkBox in ipairs(checkBoxes) do
|
||||
S:HandleCheckBox(_G[checkBox])
|
||||
end
|
||||
for _, slider in ipairs(sliders) do
|
||||
S:HandleSliderFrame(_G[slider])
|
||||
end
|
||||
for _, editBox in ipairs(editBoxes) do
|
||||
S:HandleEditBox(_G[editBox])
|
||||
end
|
||||
for _, dropDownBox in ipairs(dropDownBoxes) do
|
||||
S:HandleDropDownBox(_G[dropDownBox])
|
||||
end
|
||||
for _, itemButton in ipairs(itemButtons) do
|
||||
S:HandleItemButton(_G[itemButton], true)
|
||||
end
|
||||
|
||||
local icon
|
||||
for i = 1, 24 do
|
||||
icon = _G["PowaIcone"..i]
|
||||
icon:SetTemplate()
|
||||
icon:GetNormalTexture():SetTexCoord(unpack(E.TexCoords))
|
||||
icon:GetNormalTexture():SetInside(icon)
|
||||
icon:StyleButton(false, true)
|
||||
end
|
||||
|
||||
PowaSelected:SetFrameStrata(PowaSelected:GetParent():GetFrameStrata())
|
||||
PowaSelected:SetFrameLevel(PowaSelected:GetParent():GetFrameLevel() + 2)
|
||||
PowaSelected:StripTextures()
|
||||
PowaSelected:SetTemplate("Default", nil, true)
|
||||
PowaSelected:SetBackdropColor(0, 0, 0, 0)
|
||||
PowaSelected:SetBackdropBorderColor(1, 0.82, 0)
|
||||
PowaSelected:Hide()
|
||||
|
||||
local tab
|
||||
for i = 1, 5 do
|
||||
tab = _G["PowaEditorTab"..i]
|
||||
S:HandleTab(tab)
|
||||
tab:Height(29)
|
||||
end
|
||||
|
||||
PowaOptionsFrame:Height(463)
|
||||
|
||||
PowaOptionsSelectorFrame:Height(390)
|
||||
PowaOptionsSelectorNew:Point("BOTTOMLEFT", 5, 86)
|
||||
|
||||
PowaOptionsRename:Point("TOP", PowaOptionsGlobalListFrame, "BOTTOM", 0, -5)
|
||||
|
||||
PowaOptionsRenameEditBox:Size(88, 20)
|
||||
PowaOptionsRenameEditBox:Point("TOP", PowaOptionsRename, "TOP", 0, -1)
|
||||
|
||||
PowaEquipmentSlotsFrame:Height(370)
|
||||
|
||||
PowaHeadSlot:Point("TOPLEFT", 11, -25)
|
||||
PowaHandsSlot:Point("TOPRIGHT", -11, -25)
|
||||
|
||||
PowaOptionsHeader:Point("TOP", 0, -10)
|
||||
PowaHeader:Point("TOP", 0, -8)
|
||||
PowaTitleText:Point("TOP", 0, -8)
|
||||
|
||||
S:HandleCloseButton(PowaOptionsFrameCloseButton, PowaOptionsFrame)
|
||||
S:HandleCloseButton(PowaCloseButton, PowaBarConfigFrame)
|
||||
S:HandleCloseButton(PowaFrameCloseButton, PowaEquipmentSlotsFrame)
|
||||
|
||||
PowaBuffTimerCentsButton:Size(25)
|
||||
|
||||
PowaAuthorText.Show = E.noop
|
||||
PowaAuthorText:Hide()
|
||||
end)
|
||||
Reference in New Issue
Block a user