diff --git a/CHANGELOG.md b/CHANGELOG.md index 87a9a910a3..151bcee2b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +### Version 13.80 [ October 29th 2024 ] +* Currency Transfer skin updated. +* Blacklisted Auras: Flight Style, Call of the Elder Druid, DK Blood Draw, WoW's Anniversary, and Warband Mentored Leveling. +* Shift + Left click ElvUI Menu Datatext to toggle mover mode actually works now. +* Unitframe Health Dead Backdrop using multiplier when it shouldn't. +* Guild Datatext error when online members is invalid. +* Guild Datatext will now show which faction members are on. +* Tooltip option to hide Stack Size on items. +* Stylefilter error when Importing Profiles, also reduced wasteful execution of filters. +* Simplify AddonList skin, which should make it more clear what addons are actually enabled. + ### Version 13.79 [ October 22nd 2024 ] * Unitframe range issue with Mage resolved. * Reorganized Aura Filter priority list for all Unitframes and merged PlayerBuffs filter into Whitelist. diff --git a/ElvUI/Core/init.lua b/ElvUI/Core/init.lua index 17c9a72033..e16480b81b 100644 --- a/ElvUI/Core/init.lua +++ b/ElvUI/Core/init.lua @@ -116,7 +116,7 @@ end function E:ParseVersionString(addon) local version = GetAddOnMetadata(addon, 'Version') if strfind(version, 'project%-version') then - return 13.79, '13.79-git', nil, true + return 13.80, '13.80-git', nil, true else local release, extra = strmatch(version, '^v?([%d.]+)(.*)') return tonumber(release), release..extra, extra ~= ''