Skip to content

Commit 59eb808

Browse files
committed
13.77
1 parent 285d9ec commit 59eb808

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### Version 13.77 [ September 10th 2024 ]
2+
* Unitframe range issue with Shaman resolved.
3+
* Castbar option to allow BigWigs to rename spells to something better to understand (Example: 'Impaling Eruption' becomes 'Frontal').
4+
* Nameplate Stylefilter that use Spell Cooldown trigger would cause an error.
5+
* Nameplate Stylefilter ElvUI_Target disabled by default.
6+
* Priest form paging readjusted on Classic Era.
7+
* Actionbar Fade updated more for Skyriding.
8+
* Raid Menu button not working on Classic Era.
9+
* Button button scaled wrong when displayed during combat.
10+
* Guild members getting an Achievement would sometimes cause an error.
11+
* Auction house opening bags when Auto Toggle was unchecked.
12+
* Cleaned up Zone Map skin.
13+
114
### Version 13.76 [ August 27th 2024 ]
215
* More Unitframe range issues resolved.
316
* Fader updated again for Skyriding.

ElvUI/Core/General/Core.lua

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ local GetSpecialization = (E.Classic or E.Cata) and LCS.GetSpecialization or Get
2929
local PlayerGetTimerunningSeasonID = PlayerGetTimerunningSeasonID
3030

3131
local DisableAddOn = C_AddOns.DisableAddOn
32-
local GetAddOnMetadata = C_AddOns.GetAddOnMetadata
3332
local GetCVarBool = C_CVar.GetCVarBool
3433

3534
local LE_PARTY_CATEGORY_HOME = LE_PARTY_CATEGORY_HOME

ElvUI/Core/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ end
116116
function E:ParseVersionString(addon)
117117
local version = GetAddOnMetadata(addon, 'Version')
118118
if strfind(version, 'project%-version') then
119-
return 13.76, '13.76-git', nil, true
119+
return 13.77, '13.77-git', nil, true
120120
else
121121
local release, extra = strmatch(version, '^v?([%d.]+)(.*)')
122122
return tonumber(release), release..extra, extra ~= ''

ElvUI_Libraries/Core/LibAceConfigHelper/LibAceConfigHelper.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local LibStub = _G.LibStub
2-
local MAJOR, MINOR = 'LibAceConfigHelper', 11
2+
local MAJOR, MINOR = 'LibAceConfigHelper', 12
33
local ACH = LibStub:NewLibrary(MAJOR, MINOR)
44
local LSM = LibStub('LibSharedMedia-3.0')
55

0 commit comments

Comments
 (0)