diff --git a/CHANGELOG.md b/CHANGELOG.md index c0c538a811..95d0a2e8dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### Version 13.83 [ January 29th 2025 ] +* Fists of Fury ticks changed to 4 on Castbars. +* Roles can be enabled in Tooltip on anniversary realms. +* Mages receiving an error RegisterUnitEvent on Classic SoD. +* Aimed Shot and Multishot cause Castbar to appear when disabled. +* Rapid Fire not adjusting cast time for Aimed Shot and Multishot. +* Increased the maximum heights for top and bottom cosmetic panels. (Thanks silverwind) +* Chat Tabs being colored when Chat was disabled. (Thanks silverwind) + ### Version 13.82 [ January 25th 2025 ] * Working on something to profile the performance of ElvUI and oUF functions. * Optimized part of the framework and aura filtering for Unitframes and Nameplates. diff --git a/ElvUI/Core/init.lua b/ElvUI/Core/init.lua index 24fc853e4d..cca4520fe5 100644 --- a/ElvUI/Core/init.lua +++ b/ElvUI/Core/init.lua @@ -127,7 +127,7 @@ end function E:ParseVersionString(addon) local version = GetAddOnMetadata(addon, 'Version') if strfind(version, 'project%-version') then - return 13.82, '13.82-git', nil, true + return 13.83, '13.83-git', nil, true else local release, extra = strmatch(version, '^v?([%d.]+)(.*)') return tonumber(release), release..extra, extra ~= '' diff --git a/ElvUI/ElvUI_Vanilla.toc b/ElvUI/ElvUI_Vanilla.toc index aec694c9aa..d963347308 100644 --- a/ElvUI/ElvUI_Vanilla.toc +++ b/ElvUI/ElvUI_Vanilla.toc @@ -6,7 +6,7 @@ ## SavedVariablesPerCharacter: ElvCharacterDB ## OptionalDeps: SharedMedia, Tukui, Masque ## RequiredDeps: ElvUI_Libraries -## Interface: 11505 +## Interface: 11506 ## X-Tukui-ProjectID: -2 ## X-Tukui-ProjectFolders: ElvUI, ElvUI_Libraries, ElvUI_Options diff --git a/ElvUI_Libraries/ElvUI_Libraries_Vanilla.toc b/ElvUI_Libraries/ElvUI_Libraries_Vanilla.toc index ffe612c082..bbaa07db7a 100644 --- a/ElvUI_Libraries/ElvUI_Libraries_Vanilla.toc +++ b/ElvUI_Libraries/ElvUI_Libraries_Vanilla.toc @@ -2,7 +2,7 @@ ## Notes: Libraries that power ElvUI ## Author: Elv, Simpy ## Version: @project-version@ -## Interface: 11505 +## Interface: 11506 ## OptionalDeps: LibHealComm-4.0 ## X-oUF: ElvUF diff --git a/ElvUI_Options/Core/ActionBars.lua b/ElvUI_Options/Core/ActionBars.lua index 6d0274bbe4..34858be516 100644 --- a/ElvUI_Options/Core/ActionBars.lua +++ b/ElvUI_Options/Core/ActionBars.lua @@ -102,7 +102,7 @@ macroTextGroup.args.macroFontSize = ACH:Range(L["Font Size"], nil, 9, C.Values.F macroTextGroup.args.macroFontOutline = ACH:FontFlags(L["Font Outline"], nil, 10) SharedBarOptions.macroTextGroup = macroTextGroup -local professionQuality = ACH:Group(L["Profession Quality"], nil, 70, nil, function(info) return E.db.actionbar[info[#info-2]].professionQuality[info[#info]] end, function(info, value) E.db.actionbar[info[#info-2]].professionQuality[info[#info]] = value AB:UpdateButtonSettings(info[#info-2]) end) +local professionQuality = ACH:Group(L["Profession Quality"], nil, 70, nil, function(info) return E.db.actionbar[info[#info-2]].professionQuality[info[#info]] end, function(info, value) E.db.actionbar[info[#info-2]].professionQuality[info[#info]] = value AB:UpdateButtonSettings(info[#info-2]) end, nil, not E.Retail) professionQuality.args.enable = ACH:Toggle(L["Enable"], nil, 0, nil, nil, nil, nil, nil, nil, false) professionQuality.args.spacer1 = ACH:Spacer(3, 'full') professionQuality.args.alpha = ACH:Range(L["Alpha"], L["Change the alpha level of the frame."], 1, { min = 0, max = 1, step = 0.01, isPercent = true }) diff --git a/ElvUI_Options/ElvUI_Options_Vanilla.toc b/ElvUI_Options/ElvUI_Options_Vanilla.toc index 3be23d12f5..a34df8a1d4 100644 --- a/ElvUI_Options/ElvUI_Options_Vanilla.toc +++ b/ElvUI_Options/ElvUI_Options_Vanilla.toc @@ -2,7 +2,7 @@ ## Notes: Powers the configuration window.|n|cffff3333Does not store any profile data.|r ## Author: Elv, Simpy ## Version: @project-version@ -## Interface: 11505 +## Interface: 11506 ## RequiredDeps: ElvUI ## LoadOnDemand: 1