Skip to content

Commit 09e14ac

Browse files
committed
Merge branch 'main' into ptr
2 parents 169c61e + afef374 commit 09e14ac

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### Version 13.86 [ March 4th 2025 ]
2+
* Auction house skin error.
3+
* Actionbar Flyout direction not correct.
4+
* Spellbook Flyouts are skinned again.
5+
* Datatext Specialization erroring.
6+
* Renown labels fixed in Databars and Datatexts.
7+
* Circle Minimap is now a setting.
8+
* Rotate Minimap can now be set in settings.
9+
* Start Group Button skinned again finally _(and shouldn't break reporting groups this time)_.
10+
* Evoker Disintegrate to have 4 ticks when using Azure Celerity.
11+
* Worldmap skin updated.
12+
113
### Version 13.85 [ February 25th 2025 ]
214
* **Cataclysm fixes:**
315
* Boss Button

ElvUI/Classic/Modules/Skins/LFG.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ function S:Blizzard_GroupFinder_VanillaStyle()
5151
_G.LFGListingFrameActivityViewBarLeft:StripTextures()
5252
_G.LFGListingFrameActivityViewBarMiddle:StripTextures()
5353
_G.LFGListingFrameActivityViewBarRight:StripTextures()
54+
-- S:HandleTrimScrollBar(_G.LFGListingFrameActivityViewScrollBar) -- confirmed to taint
5455

5556
local LFGListingFrame = _G.LFGListingFrame
5657
S:HandleFrame(LFGListingFrame, true, nil, 11, -12, -30, 72)
5758
LFGListingFrame:HookScript('OnShow', LFGTabs)
5859

5960
local LFGBrowseFrame = _G.LFGBrowseFrame
60-
--S:HandleTrimScrollBar(_G.LFGListingFrameActivityViewScrollBar) -- Testing, cause it can cause a Taint
6161
S:HandleTrimScrollBar(_G.LFGBrowseFrameScrollBar)
6262
S:HandleFrame(LFGBrowseFrame, true, nil, 11, -12, -30, 72)
6363
LFGBrowseFrame:HookScript('OnShow', LFGTabs)

ElvUI/Core/Modules/Chat/Chat.lua

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ local ToggleQuickJoinPanel = ToggleQuickJoinPanel
4747
local UIParent = UIParent
4848
local UnitExists = UnitExists
4949
local UnitGroupRolesAssigned = UnitGroupRolesAssigned
50-
local UnitIsGroupLeader = UnitIsGroupLeader
5150
local UnitIsUnit = UnitIsUnit
5251
local UnitName = UnitName
5352

ElvUI/Core/Modules/UnitFrames/Elements/CastBar.lua

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@ local ElvUF = E.oUF
66
local abs, next = abs, next
77
local unpack = unpack
88

9-
local GetTime = GetTime
109
local CreateFrame = CreateFrame
11-
local GetTalentInfo = GetTalentInfo
10+
local GetTime = GetTime
11+
local IsPlayerSpell = IsPlayerSpell
1212
local UnitCanAttack = UnitCanAttack
1313
local UnitClass = UnitClass
1414
local UnitIsPlayer = UnitIsPlayer
1515
local UnitName = UnitName
1616
local UnitReaction = UnitReaction
1717
local UnitSpellHaste = UnitSpellHaste
18-
local IsPlayerSpell = IsPlayerSpell
1918
local IsSpellKnownOrOverridesKnown = IsSpellKnownOrOverridesKnown
2019

2120
do

ElvUI/Core/init.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
]]
66

77
local _G = _G
8-
local gsub, tinsert, next, type, wipe = gsub, tinsert, next, type, wipe
8+
local gsub, tinsert, next, type = gsub, tinsert, next, type
99
local tostring, tonumber, strfind, strmatch = tostring, tonumber, strfind, strmatch
1010

1111
local CreateFrame = CreateFrame
@@ -127,7 +127,7 @@ end
127127
function E:ParseVersionString(addon)
128128
local version = GetAddOnMetadata(addon, 'Version')
129129
if strfind(version, 'project%-version') then
130-
return 13.85, '13.85-git', nil, true
130+
return 13.86, '13.86-git', nil, true
131131
else
132132
local release, extra = strmatch(version, '^v?([%d.]+)(.*)')
133133
return tonumber(release), release..extra, extra ~= ''

ElvUI_Libraries/Core/LibActionButton-1.0/LibActionButton-1.0.lua

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- License: LICENSE.txt
22

33
local MAJOR_VERSION = "LibActionButton-1.0-ElvUI"
4-
local MINOR_VERSION = 60 -- the real minor version is 119
4+
local MINOR_VERSION = 61 -- the real minor version is 119
55

66
local LibStub = LibStub
77
if not LibStub then error(MAJOR_VERSION .. " requires LibStub.") end
@@ -25,8 +25,6 @@ local WoWBCC = (WOW_PROJECT_ID == WOW_PROJECT_BURNING_CRUSADE_CLASSIC)
2525
local WoWWrath = (WOW_PROJECT_ID == WOW_PROJECT_WRATH_CLASSIC)
2626
local WoWCata = (WOW_PROJECT_ID == WOW_PROJECT_CATACLYSM_CLASSIC)
2727

28-
local noop = function() end
29-
3028
local GetSpellInfo
3129
do -- backwards compatibility for GetSpellInfo
3230
local C_Spell_GetSpellInfo = not _G.GetSpellInfo and C_Spell.GetSpellInfo

0 commit comments

Comments
 (0)