Skip to content

Commit

Permalink
Merge branch 'main' into ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
Luckyone961 committed Jan 29, 2025
2 parents 966b34a + 0c71b34 commit d80d8e6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion ElvUI/Core/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 ~= ''
Expand Down
2 changes: 1 addition & 1 deletion ElvUI/ElvUI_Vanilla.toc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ElvUI_Libraries/ElvUI_Libraries_Vanilla.toc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ElvUI_Options/Core/ActionBars.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 })
Expand Down
2 changes: 1 addition & 1 deletion ElvUI_Options/ElvUI_Options_Vanilla.toc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d80d8e6

Please sign in to comment.