Skip to content

Commit

Permalink
## [ver. 3.38] - 10.05.2024
Browse files Browse the repository at this point in the history
### FIX
- FIX - Fixed nil Error with the new Locales and Dock LFD
- FIX - Fixed wrong function name in Cata
### Update
- UPDATE - Update more Locales, Thx for the Help of Dlarge
- UPDATE - Functions for Cata and Retail
- UPDATE - For all Datatext M+ and Vault infos will now only load on Max Level
- UPDATE - Datatext M+ Score shows below max Level the Player Level
  • Loading branch information
mBlinkii committed May 12, 2024
1 parent bcbe204 commit e44511c
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Addon/!mMT_MediaPack/media/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -766,4 +766,4 @@ mAddSound("mMT - Frontal 2 - female", "frontal_b_female.ogg")
mAddSound("mMT - Incorp - male", "incorp_male.ogg")
mAddSound("mMT - Incorp - female", "incorp_female.ogg")
mAddSound("mMT - Incorporeal - male", "incorporeal_male.ogg")
mAddSound("mMT - Incorporeal - female", "incorporeal_female.ogg")
mAddSound("mMT - Incorporeal - female", "incorporeal_female.ogg")
2 changes: 1 addition & 1 deletion Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Cata.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 40400
## Author: Blinkii
## Version: 3.37
## Version: 3.38
## Title: |CFF6559F1m|r|CFFA037E9M|r|CFFDD14E0T|r - |CFF6559F1m|r|CFF7A4DEFM|r|CFF8845ECe|r|CFFA037E9d|r|CFFA435E8i|r|CFFB32DE6a|r|CFFBC26E5T|r|CFFCB1EE3a|r|CFFDD14E0g|r |CFFFF006C&|r |CFFFF4C00T|r|CFFFF7300o|r|CFFFF9300o|r|CFFFFA800l|r|CFFFFC900s|r
## IconTexture: Interface\AddOns\ElvUI_mMediaTag\media\logo\mmt_icon
## AddonCompartmentFunc: ElvUI_mMediaTag_OnAddonCompartmentClick
Expand Down
2 changes: 1 addition & 1 deletion Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Classic.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 11502
## Author: Blinkii
## Version: 3.37
## Version: 3.38
## Title: |CFF6559F1m|r|CFFA037E9M|r|CFFDD14E0T|r - |CFF6559F1m|r|CFF7A4DEFM|r|CFF8845ECe|r|CFFA037E9d|r|CFFA435E8i|r|CFFB32DE6a|r|CFFBC26E5T|r|CFFCB1EE3a|r|CFFDD14E0g|r |CFFFF006C&|r |CFFFF4C00T|r|CFFFF7300o|r|CFFFF9300o|r|CFFFFA800l|r|CFFFFC900s|r
## Notes: mMediaTag & Tools is a plugin for ElvUI. mMediaTag adds many media files like textures/ fonts/ icons and some tools to ElvUI.
## Notes-deDE: mMediaTag & Tools ist ein Plugin für ElvUI. mMediaTag fügt viele Mediendateien wie Texturen/ Schriften/ Symbole und einige Tools zu ElvUI hinzu.
Expand Down
2 changes: 1 addition & 1 deletion Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Mainline.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 100207
## Author: Blinkii
## Version: 3.37
## Version: 3.38
## Title: |CFF6559F1m|r|CFFA037E9M|r|CFFDD14E0T|r - |CFF6559F1m|r|CFF7A4DEFM|r|CFF8845ECe|r|CFFA037E9d|r|CFFA435E8i|r|CFFB32DE6a|r|CFFBC26E5T|r|CFFCB1EE3a|r|CFFDD14E0g|r |CFFFF006C&|r |CFFFF4C00T|r|CFFFF7300o|r|CFFFF9300o|r|CFFFFA800l|r|CFFFFC900s|r
## Notes: ElvUI Plugin from Blinkii | Support: [email protected]
## IconTexture: Interface\AddOns\ElvUI_mMediaTag\media\logo\mmt_icon
Expand Down
24 changes: 24 additions & 0 deletions Addon/ElvUI_mMediaTag/core/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,30 @@ function mMT:UpdateClassColor()
return { class = class, r = class.r, g = class.g, b = class.b, hex = hex, string = strjoin("", hex, "%s|r"), gradient = gradient }
end

function mMT:Update_MP_Settings()
if IsAddOnLoaded("!mMT_MediaPack") then
mMTSettings.all = E.db.mMT.mp_textures.all
mMTSettings.a = E.db.mMT.mp_textures.a
mMTSettings.b = E.db.mMT.mp_textures.b
mMTSettings.c = E.db.mMT.mp_textures.c
mMTSettings.d = E.db.mMT.mp_textures.d
mMTSettings.e = E.db.mMT.mp_textures.e
mMTSettings.f = E.db.mMT.mp_textures.f
mMTSettings.g = E.db.mMT.mp_textures.g
mMTSettings.h = E.db.mMT.mp_textures.h
mMTSettings.i = E.db.mMT.mp_textures.i
mMTSettings.j = E.db.mMT.mp_textures.j
mMTSettings.k = E.db.mMT.mp_textures.k
mMTSettings.l = E.db.mMT.mp_textures.l
mMTSettings.n = E.db.mMT.mp_textures.n
mMTSettings.m = E.db.mMT.mp_textures.m
mMTSettings.o = E.db.mMT.mp_textures.o
mMTSettings.p = E.db.mMT.mp_textures.p
mMTSettings.q = E.db.mMT.mp_textures.q
mMTSettings.r = E.db.mMT.mp_textures.r
end
end

function mMT:CheckEltruism()
local elt_tbl = {
loaded = IsAddOnLoaded("ElvUI_EltreumUI"),
Expand Down
19 changes: 8 additions & 11 deletions Addon/ElvUI_mMediaTag/core/options/changelog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,22 @@ local change_log_important = {
"This update will reset the Spell DB."
}

local releasdate = "10.05.2024"
local releasdate = "12.05.2024"

local change_log_new = {
"Add Sound files to mMT Media"
}

local change_log_update = {
"Update German Locale",
"Update Spelling and Locales",
"Add sound delay for important spell filters",
"TOC for new Retail Version",
"Add more Icons to Important Spells Icons.",
"Update more Locales, Thx for the Help of Dlarge",
"Functions for Cata and Retail",
"For all Datatext M+ and Vault infos will now only load on Max Level",
"Datatext M+ Score shows below max Level the Player Level",
}

local change_log_fix = {
"Incorrect Execute Rage for Warriors",
"Bug with Monk ToD Execute Range",
"Wrong variable for Dock LFD Call to Arms",
"Fixed Bug with the new Locales, Thx for the Help of Tsxy and Dlarge",
"Fixed nil Error with the new Locales and Dock LFD",
"Fixed wrong function name in Cata",
}

local function Concatenation(tbl, icon, color)
Expand All @@ -55,7 +52,7 @@ end

local function configTable()
--change_log_important_string = Concatenation(change_log_important)
change_log_new_string = Concatenation(change_log_new)
--change_log_new_string = Concatenation(change_log_new)
change_log_update_string = Concatenation(change_log_update)
change_log_fix_string = Concatenation(change_log_fix)
E.Options.args.mMT.args.changelog.args = {
Expand Down
22 changes: 22 additions & 0 deletions Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,28 @@ P.mMT = {
EVOKER = { r = 0.20, g = 0.58, b = 0.50 },
},
},
mp_textures = {
isChanged = false,
all = true,
a = true,
b = true,
c = true,
d = true,
e = true,
f = true,
g = true,
h = true,
i = true,
j = true,
k = true,
l = true,
n = true,
m = true,
o = true,
p = true,
q = true,
r = true,
},
portraits = {
player = {
enable = true,
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog - ElvUI_mMediaTag
[Eng] - All changes to this project will be documented in this file. The latest changes are at the top.

## [ver. 3.38] - 10.05.2024
### FIX
- FIX - Fixed nil Error with the new Locales and Dock LFD
- FIX - Fixed wrong function name in Cata
### Update
- UPDATE - Update more Locales, Thx for the Help of Dlarge
- UPDATE - Functions for Cata and Retail
- UPDATE - For all Datatext M+ and Vault infos will now only load on Max Level
- UPDATE - Datatext M+ Score shows below max Level the Player Level

## [ver. 3.37] - 10.05.2024
### FIX
- FIX - Fixed Bug with the new Locales, Thx for the Help of Tsxy and Dlarge
Expand Down

0 comments on commit e44511c

Please sign in to comment.