Skip to content

Commit ca4cfdf

Browse files
committed
Merge branch 'main' into ptr
2 parents cad6abf + b3379cc commit ca4cfdf

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### Version 13.84 [ February 18th 2025 ]
2+
* Fallback checking for Range of Unitframes slightly adjusted (should help Hunters and Rogues).
3+
* Datatexts Mana Regen and Heal Power have a label option now.
4+
* Castbar won't snap (rubberband) when using Smoothing.
5+
* Skin errors on Cataclysm.
6+
17
### Version 13.83 [ January 29th 2025 ]
28
* Fists of Fury ticks changed to 4 on Castbars.
39
* Roles can be enabled in Tooltip on anniversary realms.

ElvUI/Cata/Modules/Skins/Friends.lua

-4
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@ local function UpdateWhoList()
9393
end
9494
end
9595

96-
local function RaidInfoFrame_OnShow()
97-
_G.RaidInfoFrame:Point('TOPLEFT', _G.RaidFrame, 'TOPRIGHT', 0, 0)
98-
end
99-
10096
function S:FriendsFrame()
10197
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.friends) then return end
10298

ElvUI/Core/General/StaticPopups.lua

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ local AutoCompleteEditBox_OnTextChanged = AutoCompleteEditBox_OnTextChanged
2222
local ChatEdit_FocusActiveWindow = ChatEdit_FocusActiveWindow
2323

2424
local DisableAddOn = C_AddOns.DisableAddOn
25-
local EnableAddOn = C_AddOns.EnableAddOn
2625
local IsAddOnLoaded = C_AddOns.IsAddOnLoaded
2726

2827
local STATICPOPUP_TEXTURE_ALERT = STATICPOPUP_TEXTURE_ALERT

ElvUI/Core/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.83, '13.83-git', nil, true
130+
return 13.84, '13.84-git', nil, true
131131
else
132132
local release, extra = strmatch(version, '^v?([%d.]+)(.*)')
133133
return tonumber(release), release..extra, extra ~= ''

0 commit comments

Comments
 (0)