From 1ce8c01da877fac42f9d5a50b390bb941a02c5ca Mon Sep 17 00:00:00 2001 From: Simpy Date: Tue, 19 Nov 2024 15:46:05 -0500 Subject: [PATCH] 13.81 --- CHANGELOG.md | 9 +++++++++ ElvUI/Core/init.lua | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 151bcee2b6..c31ddf8666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### Version 13.81 [ November 19th 2024 ] +* Blacklisted Auras: Well-Honed Instincts +* Unitframe color options added to set Health Breakpoint, only for Friendly units, and Color Backdrop. (Thanks BeeVa) +* Chat would error when attempting to move it. +* Attempted a fix for old Dropdowns from other addons causing a Skin error. +* Minimap Right Click for Tracking works on Cataclysm. +* Mover selection uses the new dropdown on Cataclysm. +* Spellbook Tooltips not working on Cataclysm. + ### 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. diff --git a/ElvUI/Core/init.lua b/ElvUI/Core/init.lua index 56b9061bd0..4f90170b8e 100644 --- a/ElvUI/Core/init.lua +++ b/ElvUI/Core/init.lua @@ -227,7 +227,7 @@ end function E:ParseVersionString(addon) local version = GetAddOnMetadata(addon, 'Version') if strfind(version, 'project%-version') then - return 13.80, '13.80-git', nil, true + return 13.81, '13.81-git', nil, true else local release, extra = strmatch(version, '^v?([%d.]+)(.*)') return tonumber(release), release..extra, extra ~= ''