Skip to content

Commit

Permalink
13.68
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Jul 9, 2024
1 parent b85cd17 commit 1a4b697
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 9 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.68 [ July 9th 2024 ]
* Enchant info to display with Item Level on Character and Inspect frames.
* Player nameplate not obeying Use Class Color option for Power.
* Translit tags sometimes not returning properly.
* Frame Level and Strata options for Unitframe power, auras, and frames.
* Hit Datatext not updating in some situtations.
* Attack Power Datatext now has label options.
* Role Checkboxes set to the correct level on Guild Finder.

### Version 13.67 [ June 26th 2024 ]
* Skinned LFG and Dressing Room scrollbar.
* Guild reputation progress bar fixed.
Expand Down
1 change: 0 additions & 1 deletion ElvUI/Core/Modules/UnitFrames/Units/Focus.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ local E, L, V, P, G = unpack(ElvUI)
local UF = E:GetModule('UnitFrames')
local ElvUF = E.oUF

local _G = _G
local tinsert = tinsert

function UF:Construct_FocusFrame(frame)
Expand Down
1 change: 0 additions & 1 deletion ElvUI/Core/Modules/UnitFrames/Units/FocusTarget.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ local E, L, V, P, G = unpack(ElvUI)
local UF = E:GetModule('UnitFrames')
local ElvUF = E.oUF

local _G = _G
local tinsert = tinsert

function UF:Construct_FocusTargetFrame(frame)
Expand Down
1 change: 0 additions & 1 deletion ElvUI/Core/Modules/UnitFrames/Units/Pet.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ local E, L, V, P, G = unpack(ElvUI)
local UF = E:GetModule('UnitFrames')
local ElvUF = E.oUF

local _G = _G
local tinsert = tinsert

function UF:Construct_PetFrame(frame)
Expand Down
1 change: 0 additions & 1 deletion ElvUI/Core/Modules/UnitFrames/Units/PetTarget.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ local E, L, V, P, G = unpack(ElvUI)
local UF = E:GetModule('UnitFrames')
local ElvUF = E.oUF

local _G = _G
local tinsert = tinsert

function UF:Construct_PetTargetFrame(frame)
Expand Down
1 change: 0 additions & 1 deletion ElvUI/Core/Modules/UnitFrames/Units/Target.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ local E, L, V, P, G = unpack(ElvUI)
local UF = E:GetModule('UnitFrames')
local ElvUF = E.oUF

local _G = _G
local tinsert = tinsert

function UF:Construct_TargetFrame(frame)
Expand Down
1 change: 0 additions & 1 deletion ElvUI/Core/Modules/UnitFrames/Units/TargetTarget.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ local E, L, V, P, G = unpack(ElvUI)
local UF = E:GetModule('UnitFrames')
local ElvUF = E.oUF

local _G = _G
local tinsert = tinsert

function UF:Construct_TargetTargetFrame(frame)
Expand Down
1 change: 0 additions & 1 deletion ElvUI/Core/Modules/UnitFrames/Units/TargetTargetTarget.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ local E, L, V, P, G = unpack(ElvUI)
local UF = E:GetModule('UnitFrames')
local ElvUF = E.oUF

local _G = _G
local tinsert = tinsert

function UF:Construct_TargetTargetTargetFrame(frame)
Expand Down
2 changes: 1 addition & 1 deletion ElvUI/Core/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ end
function E:ParseVersionString(addon)
local version = GetAddOnMetadata(addon, 'Version')
if strfind(version, 'project%-version') then
return 13.67, '13.67-git', nil, true
return 13.68, '13.68-git', nil, true
else
local release, extra = strmatch(version, '^v?([%d.]+)(.*)')
return tonumber(release), release..extra, extra ~= ''
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local MAJOR, MINOR = 'LibClassicSpecs-ElvUI', 1002
local MAJOR, MINOR = 'LibClassicSpecs-ElvUI', 1003
local LCS = LibStub:NewLibrary(MAJOR, MINOR)
if not LCS then return end

Expand Down

0 comments on commit 1a4b697

Please sign in to comment.