Skip to content

Commit

Permalink
v2.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
eltreum0 committed Feb 19, 2022
1 parent c5a3810 commit f7cdcaa
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 47 deletions.
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 2.8.4
Updated german translation with additional translations by Khornan\
Added options to change class textures when using light mode in Eltruism > Media > Unitframes\
Added !keys and !key commands adapted from Luckyone's M+ keys weakaura\
Fixed some quests not turning in when using automatic turnin\
Fixed loading german translation\
Fixed enchanting material scroll bar not hiding in TBC
Improved the cursor cooldown mask texture\
___
### 2.8.3
Added German language translation by Khornan\
Added options to change the Player, Target, Target of Target and Focus unitframe textures, this option can be found in Eltruism > Media > Unitframes and needs light mode or class colors enabled in ElvUI unitframes\
Expand Down
2 changes: 1 addition & 1 deletion ElvUI_EltreumUI/ElvUI_EltreumUI.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 90105
## Author: Eltreum
## Version: 2.8.4
## Version: 2.8.5
## Title: |cff1784d1ElvUI|r Eltruism
## Notes: Eltruism is an ElvUI plugin with profiles and other features not available in ElvUI
## Dependencies: ElvUI, AddOnSkins
Expand Down
2 changes: 1 addition & 1 deletion ElvUI_EltreumUI/ElvUI_EltreumUI_TBC.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 20503
## Author: Eltreum
## Version: 2.8.4
## Version: 2.8.5
## Title: |cff1784d1ElvUI|r Eltruism TBC
## Notes: Eltruism is an ElvUI plugin with profiles and other features not available in ElvUI
## Dependencies: ElvUI, AddOnSkins
Expand Down
2 changes: 1 addition & 1 deletion ElvUI_EltreumUI/ElvUI_EltreumUI_Vanilla.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 11402
## Author: Eltreum
## Version: 2.8.4
## Version: 2.8.5
## Title: |cff1784d1ElvUI|r Eltruism Classic
## Notes: Eltruism is an ElvUI plugin with profiles and other features not available in ElvUI
## Dependencies: ElvUI, AddOnSkins
Expand Down
72 changes: 36 additions & 36 deletions ElvUI_EltreumUI/Modules/Skins/Unitframes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -182,73 +182,73 @@ function ElvUI_EltreumUI:ChangeRaidTexture()
local b = tostring(b1)
if (r == paladin.r) and (g == paladin.g) and (b == paladin.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.paladintexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.paladintexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-PL.tga")
end
elseif (r == warrior.r) and (g == warrior.g) and (b == warrior.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.warriortexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.warriortexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-WA.tga")
end
elseif (r == shaman.r) and (g == shaman.g) and (b == shaman.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.shamantexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.shamantexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-SH.tga")
end
elseif (r == druid.r) and (g == druid.g) and (b == druid.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.druidtexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.druidtexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DR.tga")
end
elseif (r == deathknight.r) and (g == deathknight.g) and (b == deathknight.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.deathknighttexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.deathknighttexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DK.tga")
end
elseif (r == demonhunter.r) and (g == demonhunter.g) and (b == demonhunter.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.demonhuntertexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.demonhuntertexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DH.tga")
end
elseif (r == monk.r) and (g == monk.g) and (b == monk.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.monktexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.monktexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-MK.tga")
end
elseif (r == rogue.r) and (g == rogue.g) and (b == rogue.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.roguetexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.roguetexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-RG.tga")
end
elseif (r == priest.r) and (g == priest.g) and (b == priest.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.priesttexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.priesttexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-PR.tga")
end
elseif (r == mage.r) and (g == mage.g) and (b == mage.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.magetexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.magetexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-MG.tga")
end
elseif (r == hunter.r) and (g == hunter.g) and (b == hunter.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.huntertexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.huntertexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-HT.tga")
end
elseif (r == warlock.r) and (g == warlock.g) and (b == warlock.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.warlocktexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.warlocktexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-WL.tga")
end
Expand Down Expand Up @@ -276,73 +276,73 @@ function ElvUI_EltreumUI:ChangeRaid40Texture()
local b = tostring(b1)
if (r == paladin.r) and (g == paladin.g) and (b == paladin.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.paladintexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.paladintexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-PL.tga")
end
elseif (r == warrior.r) and (g == warrior.g) and (b == warrior.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.warriortexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.warriortexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-WA.tga")
end
elseif (r == shaman.r) and (g == shaman.g) and (b == shaman.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.shamantexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.shamantexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-SH.tga")
end
elseif (r == druid.r) and (g == druid.g) and (b == druid.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.druidtexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.druidtexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DR.tga")
end
elseif (r == deathknight.r) and (g == deathknight.g) and (b == deathknight.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.deathknighttexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.deathknighttexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DK.tga")
end
elseif (r == demonhunter.r) and (g == demonhunter.g) and (b == demonhunter.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.demonhuntertexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.demonhuntertexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DH.tga")
end
elseif (r == monk.r) and (g == monk.g) and (b == monk.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.monktexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.monktexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-MK.tga")
end
elseif (r == rogue.r) and (g == rogue.g) and (b == rogue.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.roguetexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.roguetexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-RG.tga")
end
elseif (r == priest.r) and (g == priest.g) and (b == priest.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.priesttexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.priesttexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-PR.tga")
end
elseif (r == mage.r) and (g == mage.g) and (b == mage.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.magetexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.magetexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-MG.tga")
end
elseif (r == hunter.r) and (g == hunter.g) and (b == hunter.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.huntertexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.huntertexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-HT.tga")
end
elseif (r == warlock.r) and (g == warlock.g) and (b == warlock.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.warlocktexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.warlocktexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-WL.tga")
end
Expand Down Expand Up @@ -370,73 +370,73 @@ function ElvUI_EltreumUI:ChangePartyTexture()
local b = tostring(b1)
if (r == paladin.r) and (g == paladin.g) and (b == paladin.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.paladintexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.paladintexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-PL.tga")
end
elseif (r == warrior.r) and (g == warrior.g) and (b == warrior.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.warriortexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.warriortexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-WA.tga")
end
elseif (r == shaman.r) and (g == shaman.g) and (b == shaman.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.shamantexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.shamantexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-SH.tga")
end
elseif (r == druid.r) and (g == druid.g) and (b == druid.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.druidtexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.druidtexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DR.tga")
end
elseif (r == deathknight.r) and (g == deathknight.g) and (b == deathknight.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.deathknighttexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.deathknighttexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DK.tga")
end
elseif (r == demonhunter.r) and (g == demonhunter.g) and (b == demonhunter.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.demonhuntertexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.demonhuntertexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-DH.tga")
end
elseif (r == monk.r) and (g == monk.g) and (b == monk.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.monktexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.monktexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-MK.tga")
end
elseif (r == rogue.r) and (g == rogue.g) and (b == rogue.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.roguetexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.roguetexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-RG.tga")
end
elseif (r == priest.r) and (g == priest.g) and (b == priest.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.priesttexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.priesttexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-PR.tga")
end
elseif (r == mage.r) and (g == mage.g) and (b == mage.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.magetexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.magetexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-MG.tga")
end
elseif (r == hunter.r) and (g == hunter.g) and (b == hunter.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.huntertexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.huntertexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-HT.tga")
end
elseif (r == warlock.r) and (g == warlock.g) and (b == warlock.b) then
if E.db.ElvUI_EltreumUI.ufcustomtexture.enable then
unitbutton.Health:SetStatusBarTexture(E.db.ElvUI_EltreumUI.ufcustomtexture.warlocktexture)
unitbutton.Health:SetStatusBarTexture(E.LSM:Fetch("statusbar", E.db.ElvUI_EltreumUI.ufcustomtexture.warlocktexture))
else
unitbutton.Health:SetStatusBarTexture("Interface\\Addons\\ElvUI_EltreumUI\\Media\\Statusbar\\Eltreum-WL.tga")
end
Expand Down
10 changes: 2 additions & 8 deletions Latest.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
### 2.8.4 [Complete Changelog](https://github.com/eltreum0/eltruism/blob/main/Changelog.md)
### 2.8.5 [Complete Changelog](https://github.com/eltreum0/eltruism/blob/main/Changelog.md)
___
Updated german translation with additional translations by Khornan\
Added options to change class textures when using light mode in Eltruism > Media > Unitframes\
Added !keys and !key commands adapted from Luckyone's M+ keys weakaura\
Fixed some quests not turning in when using automatic turnin\
Fixed loading german translation\
Fixed enchanting material scroll bar not hiding in TBC
Improved the cursor cooldown mask texture\
Fixed custom class textures for unitframes

0 comments on commit f7cdcaa

Please sign in to comment.