From 4fcc6927735f9fbbbd137cd7bde8685910cd1dfb Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Tue, 29 Oct 2024 15:23:18 +0100 Subject: [PATCH 01/13] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20details=20embedded?= =?UTF-8?q?=20frame=20strata?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Addon/ElvUI_mMediaTag/modules/misc/details.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Addon/ElvUI_mMediaTag/modules/misc/details.lua b/Addon/ElvUI_mMediaTag/modules/misc/details.lua index f44b699d..da2f437e 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/details.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/details.lua @@ -185,6 +185,8 @@ function mMT:DetailsEmbedded() end) end + detailsEmbedded:SetFrameStrata("BACKGROUND") + chat:Hide() detailsEmbedded:Show() end From fba2fdd487f0a45630fb24588516b0cbe489a65e Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:50:08 +0100 Subject: [PATCH 02/13] =?UTF-8?q?=F0=9F=A7=BD=20UPDATE:=20boss=20id,=20min?= =?UTF-8?q?imap=20wip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/misc/minimap_aspect_ratio.lua | 9 ++++----- Addon/ElvUI_mMediaTag/modules/misc/misc.lua | 2 ++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua index a1fbc0ab..f7fe5891 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua @@ -40,7 +40,7 @@ local function GetYOffset() local width = E.MinimapSize local height = width / aspectRatio.aspectratio local difference = width - height - return -ceil(difference / 2) + aspectRatio.offset + return -ceil(difference / 2) --+ aspectRatio.offset end local function HandleButton(button, iconType, hideSetting) @@ -79,17 +79,16 @@ local function SetAspectRatio() Minimap.backdrop:ClearAllPoints() Minimap.backdrop:SetOutside(Minimap, 1, yOffset) - local yOffsetOther = yOffset + aspectRatio.offset + --local yOffsetOther = yOffset + aspectRatio.offset Minimap:ClearAllPoints() - Minimap:SetPoint("TOPLEFT", M.MapHolder, "TOPLEFT", 0, -yOffsetOther) + Minimap:SetPoint("TOPLEFT", M.MapHolder, "TOPLEFT") ---yOffsetOther) if Minimap.location then Minimap.location:ClearAllPoints() - Minimap.location:SetPoint("TOP", Minimap, 0, yOffsetOther - 2) + Minimap.location:SetPoint("TOP", Minimap, 0, yOffset - 2) end end - function module:Initialize() if not module.hooked then hooksecurefunc(M, "UpdateSettings", SetAspectRatio) diff --git a/Addon/ElvUI_mMediaTag/modules/misc/misc.lua b/Addon/ElvUI_mMediaTag/modules/misc/misc.lua index 4d933898..f46a9123 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/misc.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/misc.lua @@ -40,6 +40,8 @@ mMT.BossIDs = { ["213216"] = true, ["213217"] = true, + ["208745"] = true, + -- TWW S1 ["164517"] = true, ["164501"] = true, From 5b7953d6eece454a14fcdaf859378b4002fec3f9 Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Fri, 1 Nov 2024 17:25:15 +0100 Subject: [PATCH 03/13] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20minimap=20skin=20an?= =?UTF-8?q?d=20button=20+=20icon=20positions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/misc/minimap_aspect_ratio.lua | 68 +++++++++++-------- 1 file changed, 41 insertions(+), 27 deletions(-) diff --git a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua index f7fe5891..69a78a79 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua @@ -10,50 +10,43 @@ local ceil = math.ceil local aspectRatios = { ["3:2"] = { mask = "Interface\\Addons\\ElvUI_mMediaTag\\media\\minimap\\aspectratio\\3-2.tga", - aspectratio = 1.5, + aspectratio = 3 / 2, offset = 2, }, ["4:3"] = { mask = "Interface\\Addons\\ElvUI_mMediaTag\\media\\minimap\\aspectratio\\4-3.tga", - aspectratio = 1.33333, + aspectratio = 4 / 3, offset = 1, }, ["16:8"] = { mask = "Interface\\Addons\\ElvUI_mMediaTag\\media\\minimap\\aspectratio\\16-8.tga", - aspectratio = 2, + aspectratio = 16 / 8, offset = 1, }, ["16:9"] = { mask = "Interface\\Addons\\ElvUI_mMediaTag\\media\\minimap\\aspectratio\\16-9.tga", - aspectratio = 1.77777, + aspectratio = 16 / 9, offset = 1, }, ["16:10"] = { mask = "Interface\\Addons\\ElvUI_mMediaTag\\media\\minimap\\aspectratio\\16-10.tga", - aspectratio = 1.6, + aspectratio = 16 / 10, offset = 1, }, } -local function GetYOffset() - local aspectRatio = aspectRatios[E.db.mMT.minimapAspectRatio.aspectRatio] - local width = E.MinimapSize - local height = width / aspectRatio.aspectratio - local difference = width - height - return -ceil(difference / 2) --+ aspectRatio.offset -end - local function HandleButton(button, iconType, hideSetting) - if not button then return end + if not (button and Minimap.mMT_Offset) then return end - local hidden = not Minimap:IsShown() - if not hidden or E.private.general.minimap[hideSetting] then - local _, position, xOffset, y = M:GetIconSettings(iconType) - local yOffset = GetYOffset() - y + local hidden = hideSetting and (not Minimap:IsShown() or E.private.general.minimap[hideSetting]) or false + if hidden then return end - button:ClearAllPoints() - button:SetPoint(position, Minimap, xOffset, -yOffset) - end + local _, position, xOffset, y = M:GetIconSettings(iconType) + local yOffset = Minimap.mMT_Offset + y + + button:ClearAllPoints() + local isTop = position == "TOP" or position == "TOPLEFT" or position == "TOPRIGHT" + button:SetPoint(position, Minimap, xOffset, isTop and -yOffset or yOffset) end local function HandleTrackingButton() @@ -66,26 +59,43 @@ local function HandleExpansionButton() HandleButton(garrison, "classHall", "hideClassHallReport") end +local function HandleDifficulty() + local difficulty = MinimapCluster.InstanceDifficulty or _G.MiniMapInstanceDifficulty + HandleButton(difficulty, "difficulty") +end + +local function HandleIcons() + local mailFrame = (MinimapCluster.IndicatorFrame and MinimapCluster.IndicatorFrame.MailFrame) or _G.MiniMapMailFrame + HandleButton(mailFrame, "mail") + + local gameTime = _G.GameTimeFrame + HandleButton(gameTime, "calendar") + + local craftingFrame = MinimapCluster.IndicatorFrame and MinimapCluster.IndicatorFrame.CraftingOrderFrame + HandleButton(craftingFrame, "crafting") +end + local function SetAspectRatio() local aspectRatio = aspectRatios[E.db.mMT.minimapAspectRatio.aspectRatio] local width = E.MinimapSize local height = width / aspectRatio.aspectratio + local difference = width - height + local borderSize = E.PixelMode and 1 or 3 + local offset = ceil(difference / 2) + Minimap.mMT_Offset = offset - Minimap:SetSize(width, width) M.MapHolder:SetSize(width, height) Minimap:SetMaskTexture(aspectRatio.mask) - local yOffset = GetYOffset() Minimap.backdrop:ClearAllPoints() - Minimap.backdrop:SetOutside(Minimap, 1, yOffset) + Minimap.backdrop:SetOutside(Minimap, borderSize, -offset + borderSize) - --local yOffsetOther = yOffset + aspectRatio.offset Minimap:ClearAllPoints() - Minimap:SetPoint("TOPLEFT", M.MapHolder, "TOPLEFT") ---yOffsetOther) + Minimap:SetPoint("TOP", M.MapHolder, "TOP", 0, -offset) if Minimap.location then Minimap.location:ClearAllPoints() - Minimap.location:SetPoint("TOP", Minimap, 0, yOffset - 2) + Minimap.location:SetPoint("TOP", Minimap, 0, -offset - 2) end end @@ -94,12 +104,16 @@ function module:Initialize() hooksecurefunc(M, "UpdateSettings", SetAspectRatio) hooksecurefunc(M, "HandleTrackingButton", HandleTrackingButton) hooksecurefunc(M, "HandleExpansionButton", HandleExpansionButton) + hooksecurefunc(M, "HandleDifficulty", HandleDifficulty) + hooksecurefunc(M, "UpdateIcons", HandleIcons) module.hooked = true end SetAspectRatio() HandleTrackingButton() HandleExpansionButton() + HandleDifficulty() + HandleIcons() module.needReloadUI = true module.loaded = true From bc2db720f23253000533841af3a9277ff7b15177 Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Fri, 1 Nov 2024 17:29:57 +0100 Subject: [PATCH 04/13] =?UTF-8?q?=F0=9F=A7=BD=20UPDATE:=20menu=20functions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua | 6 ------ Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua | 6 ------ 2 files changed, 12 deletions(-) diff --git a/Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua b/Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua index c76d96f8..978eeb2e 100644 --- a/Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua +++ b/Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua @@ -97,12 +97,6 @@ local function OnClick(self, button) ShowUIPanel(_G.GameMenuFrame) else HideUIPanel(_G.GameMenuFrame) - - if E.Retail then - MainMenuMicroButton:SetButtonState("NORMAL") - else - MainMenuMicroButton_SetNormal() - end end else E:ToggleOptions() diff --git a/Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua b/Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua index 3cbf9c23..a6a3cb81 100644 --- a/Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua +++ b/Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua @@ -245,12 +245,6 @@ local function BuildMenu() ShowUIPanel(_G.GameMenuFrame) else HideUIPanel(_G.GameMenuFrame) - - if E.Retail then - MainMenuMicroButton:SetButtonState("NORMAL") - else - MainMenuMicroButton_SetNormal() - end end end, }) From 7bcdaf553b451401c4bb0f51750cf23df9aec0d8 Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Fri, 1 Nov 2024 17:41:19 +0100 Subject: [PATCH 05/13] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20menu=20settings=20f?= =?UTF-8?q?or=20cata=20and=20classic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Addon/ElvUI_mMediaTag/modules/Dock/mFPSMS.lua | 16 ---------------- Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua | 10 ---------- Addon/ElvUI_mMediaTag/modules/Dock/mVolume.lua | 4 ---- .../modules/datatexts/gamemenu.lua | 10 ---------- 4 files changed, 40 deletions(-) diff --git a/Addon/ElvUI_mMediaTag/modules/Dock/mFPSMS.lua b/Addon/ElvUI_mMediaTag/modules/Dock/mFPSMS.lua index 1b007d14..f4037cf5 100644 --- a/Addon/ElvUI_mMediaTag/modules/Dock/mFPSMS.lua +++ b/Addon/ElvUI_mMediaTag/modules/Dock/mFPSMS.lua @@ -135,27 +135,11 @@ local function OnClick(self, button) mMT:Dock_Click(self, Config) if button == "LeftButton" then if not _G.GameMenuFrame:IsShown() then - if not E.Retail then - if _G.VideoOptionsFrame:IsShown() then - _G.VideoOptionsFrameCancel:Click() - elseif _G.AudioOptionsFrame:IsShown() then - _G.AudioOptionsFrameCancel:Click() - elseif _G.InterfaceOptionsFrame:IsShown() then - _G.InterfaceOptionsFrameCancel:Click() - end - end - CloseMenus() CloseAllWindows() ShowUIPanel(_G.GameMenuFrame) else HideUIPanel(_G.GameMenuFrame) - - if E.Retail then - MainMenuMicroButton:SetButtonState("NORMAL") - else - MainMenuMicroButton_SetNormal() - end end else E:ToggleOptions() diff --git a/Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua b/Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua index 978eeb2e..cd4b2edf 100644 --- a/Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua +++ b/Addon/ElvUI_mMediaTag/modules/Dock/mMainMenu.lua @@ -82,16 +82,6 @@ local function OnClick(self, button) if button == "LeftButton" then mMT:Dock_Click(self, Config) if not _G.GameMenuFrame:IsShown() then - if not E.Retail then - if _G.VideoOptionsFrame:IsShown() then - _G.VideoOptionsFrameCancel:Click() - elseif _G.AudioOptionsFrame:IsShown() then - _G.AudioOptionsFrameCancel:Click() - elseif _G.InterfaceOptionsFrame:IsShown() then - _G.InterfaceOptionsFrameCancel:Click() - end - end - CloseMenus() CloseAllWindows() ShowUIPanel(_G.GameMenuFrame) diff --git a/Addon/ElvUI_mMediaTag/modules/Dock/mVolume.lua b/Addon/ElvUI_mMediaTag/modules/Dock/mVolume.lua index dd53dab6..4110d853 100644 --- a/Addon/ElvUI_mMediaTag/modules/Dock/mVolume.lua +++ b/Addon/ElvUI_mMediaTag/modules/Dock/mVolume.lua @@ -212,11 +212,7 @@ local function OnClick(self, button) mMT:Dock_Click(self, Config) if button == "LeftButton" then if IsShiftKeyDown() then - if E.Retail then _G.Settings.OpenToCategory(_G.Settings.AUDIO_CATEGORY_ID) - else - ShowOptionsPanel(_G.VideoOptionsFrame, _G.GameMenuFrame, SOUND) - end return end diff --git a/Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua b/Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua index a6a3cb81..22dcd475 100644 --- a/Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua +++ b/Addon/ElvUI_mMediaTag/modules/datatexts/gamemenu.lua @@ -230,16 +230,6 @@ local function BuildMenu() icon = AddIcon("gears"), func = function() if not _G.GameMenuFrame:IsShown() then - if not E.Retail then - if _G.VideoOptionsFrame:IsShown() then - _G.VideoOptionsFrameCancel:Click() - elseif _G.AudioOptionsFrame:IsShown() then - _G.AudioOptionsFrameCancel:Click() - elseif _G.InterfaceOptionsFrame:IsShown() then - _G.InterfaceOptionsFrameCancel:Click() - end - end - CloseMenus() CloseAllWindows() ShowUIPanel(_G.GameMenuFrame) From fd0dc804764f06b89cf8ad11a5b07649067d11d5 Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Fri, 1 Nov 2024 18:43:55 +0100 Subject: [PATCH 06/13] =?UTF-8?q?=F0=9F=A7=BD=20UPDATE:=20add=20boss=20ids?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua | 2 +- Addon/ElvUI_mMediaTag/modules/misc/misc.lua | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua index 69a78a79..2215964b 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua @@ -91,7 +91,7 @@ local function SetAspectRatio() Minimap.backdrop:SetOutside(Minimap, borderSize, -offset + borderSize) Minimap:ClearAllPoints() - Minimap:SetPoint("TOP", M.MapHolder, "TOP", 0, -offset) + Minimap:SetPoint("TOP", M.MapHolder, "TOP", 0, offset) if Minimap.location then Minimap.location:ClearAllPoints() diff --git a/Addon/ElvUI_mMediaTag/modules/misc/misc.lua b/Addon/ElvUI_mMediaTag/modules/misc/misc.lua index f46a9123..0bebf385 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/misc.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/misc.lua @@ -41,6 +41,8 @@ mMT.BossIDs = { ["213217"] = true, ["208745"] = true, + ["218002"] = true, + ["214661"] = true, -- TWW S1 ["164517"] = true, From da4460b4746df2c9f786ef3ebbd24229cc18b1ac Mon Sep 17 00:00:00 2001 From: Dlarge Date: Sat, 2 Nov 2024 08:15:29 +0100 Subject: [PATCH 07/13] added german Locals, sorting Locals --- Addon/ElvUI_mMediaTag/localization/deDE.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/enUS.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/esMX.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/frFR.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/itIT.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/koKR.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/ptBR.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/ruRU.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/zhCN.lua | 10 ++++------ Addon/ElvUI_mMediaTag/localization/zhTW.lua | 10 ++++------ 10 files changed, 40 insertions(+), 60 deletions(-) diff --git a/Addon/ElvUI_mMediaTag/localization/deDE.lua b/Addon/ElvUI_mMediaTag/localization/deDE.lua index 3cfe85c6..43462736 100644 --- a/Addon/ElvUI_mMediaTag/localization/deDE.lua +++ b/Addon/ElvUI_mMediaTag/localization/deDE.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = "Ankerpunkt des zusätzliches Symbols" L["Anchor"] = "Anker" L["Apply"] = "Anwenden" L["Arena"] = true +L["Aspect ratio"] = "Seitenverhältnis" L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = "Wichtig der Pfad zu der Textur muss den WoW Standards entsprechen. Beispiel: Interface\\MYFOLDER\\MYFILE.tga. Wenn nur eine grüne Box zu sehen ist, dann ist ein Tipfehler im Dataipfad." L["Attributes"] = "Attribute" L["Auto Hover grow size"] = "Automatische Hover Größe" @@ -71,6 +72,7 @@ L["CENTER"] = "MITTE" L["CIRCLE/ MOON"] = "KREIS/MOND" L["Calendar"] = "Kalender" L["Call To Arms"] = "Ruf zu den Waffen" +L["Cardinal Point"] = "Himmelsrichtung" L["Cast Icon"] = "Zaubersymbol" L["Cast is out of range"] = "Zauber ist außer Reichweite" L["Castbar Background Color"] = "Zauberleisten Hintergrundfarbe" @@ -258,6 +260,7 @@ L["ENEMY"] = "Gegner" L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = "Fehler! Bitte öffne das Mythisch+ Fenster im LFG Tool oder versuche ein Neuladen des Interfaces (/rl)." L["EVOKER"] = "Rufer" L["Earned:"] = "Verdient" +L["Effect"] = "Wirkung" L["Elite - Border"] = "Elite - Rand" L["Elite - Shadow"] = "Elite - Schatten" L["Elite Textures"] = "Elite Texturen" @@ -414,6 +417,7 @@ L["Indicator Color"] = "Indikatorfarbe" L["Individual Professions"] = "Einzelne Berufe" L["Info Screen"] = "Info Bildschirm" L["Info! These styles are only available for the new textures."] = "Info! Diese Stile sind nur für die neuen Texturen verfügbar." +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = "Info! Um ein optimales Ergebnis mit der Minimap zu erzielen, sollte bei Textur und Maske eine Textur hinterlegt werden.\nDie Maske wird immer benötigt, ohne sie ist keine Minimap sichtbar.\n\n" L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = "Info! Um ein optimales Ergebnis bei den Portraits zu erzielen, sollte bei Textur, Rand und Maske eine Textur eingestellt werden.\nDie Maske ist immer erforderlich und ohne sie, ist kein Portrait sichtbar.\n\n" L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = "Info: Der Skin kann durch andere Addons beeinträchtigt werden, wenn diese ein Skin für alle Fenster hinzufügen. Um das Problem zu beheben, muss der Skin im anderen Addon deaktiviert werden. Dies ist kein Bug von mMT." L["Inner Shadow Color"] = "Farbe des Inneren Schattens" @@ -802,9 +806,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = "|cffFFFFFFStrg + Linksk L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = "|cffFFFFFFLinks Klick:|r Talent Spezialisierung ändern" L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = "|cffFFFFFFRechtsklick:|r Beutespezialisierung ändern" L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = "|cffFFFFFFShift + Links Klick:|r Zeige Talent Spezialisierungs Interface" - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/enUS.lua b/Addon/ElvUI_mMediaTag/localization/enUS.lua index 15096f7a..60d6c4c0 100644 --- a/Addon/ElvUI_mMediaTag/localization/enUS.lua +++ b/Addon/ElvUI_mMediaTag/localization/enUS.lua @@ -29,6 +29,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -72,6 +73,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -259,6 +261,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -415,6 +418,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -803,9 +807,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/esMX.lua b/Addon/ElvUI_mMediaTag/localization/esMX.lua index b0c61bd1..9b292a2b 100644 --- a/Addon/ElvUI_mMediaTag/localization/esMX.lua +++ b/Addon/ElvUI_mMediaTag/localization/esMX.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -71,6 +72,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -258,6 +260,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -414,6 +417,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -802,9 +806,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/frFR.lua b/Addon/ElvUI_mMediaTag/localization/frFR.lua index 85c5bb16..f86c67d5 100644 --- a/Addon/ElvUI_mMediaTag/localization/frFR.lua +++ b/Addon/ElvUI_mMediaTag/localization/frFR.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -71,6 +72,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -258,6 +260,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -414,6 +417,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -801,9 +805,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/itIT.lua b/Addon/ElvUI_mMediaTag/localization/itIT.lua index 2a4cf024..58d5638d 100644 --- a/Addon/ElvUI_mMediaTag/localization/itIT.lua +++ b/Addon/ElvUI_mMediaTag/localization/itIT.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -71,6 +72,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -258,6 +260,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -414,6 +417,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -802,9 +806,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/koKR.lua b/Addon/ElvUI_mMediaTag/localization/koKR.lua index 8c46f331..a0219e95 100644 --- a/Addon/ElvUI_mMediaTag/localization/koKR.lua +++ b/Addon/ElvUI_mMediaTag/localization/koKR.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -71,6 +72,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -258,6 +260,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -414,6 +417,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -802,9 +806,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/ptBR.lua b/Addon/ElvUI_mMediaTag/localization/ptBR.lua index 8064df71..2fbda2a6 100644 --- a/Addon/ElvUI_mMediaTag/localization/ptBR.lua +++ b/Addon/ElvUI_mMediaTag/localization/ptBR.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -71,6 +72,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -258,6 +260,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -414,6 +417,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -802,9 +806,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/ruRU.lua b/Addon/ElvUI_mMediaTag/localization/ruRU.lua index 9e563dbe..f9d97376 100644 --- a/Addon/ElvUI_mMediaTag/localization/ruRU.lua +++ b/Addon/ElvUI_mMediaTag/localization/ruRU.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -71,6 +72,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -258,6 +260,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -414,6 +417,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -802,9 +806,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/zhCN.lua b/Addon/ElvUI_mMediaTag/localization/zhCN.lua index a6949c0f..d21150bf 100644 --- a/Addon/ElvUI_mMediaTag/localization/zhCN.lua +++ b/Addon/ElvUI_mMediaTag/localization/zhCN.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -71,6 +72,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -258,6 +260,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -414,6 +417,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -802,9 +806,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/zhTW.lua b/Addon/ElvUI_mMediaTag/localization/zhTW.lua index 17f3e5f1..32432676 100644 --- a/Addon/ElvUI_mMediaTag/localization/zhTW.lua +++ b/Addon/ElvUI_mMediaTag/localization/zhTW.lua @@ -28,6 +28,7 @@ L["Anchor point for the extra Icon."] = true L["Anchor"] = true L["Apply"] = true L["Arena"] = true +L["Aspect ratio"] = true L["Attention! The path of the custom texture must comply with WoW standards. Example: Interface\\MYFOLDER\\MYFILE.tga. If you see a green box, the path is incorrect or you have a typo."] = true L["Attributes"] = true L["Auto Hover grow size"] = true @@ -71,6 +72,7 @@ L["CENTER"] = true L["CIRCLE/ MOON"] = true L["Calendar"] = true L["Call To Arms"] = true +L["Cardinal Point"] = true L["Cast Icon"] = true L["Cast is out of range"] = true L["Castbar Background Color"] = true @@ -258,6 +260,7 @@ L["ENEMY"] = true L["ERROR! Please open the Mythic+ window, LFG Tool or Reload UI!"] = true L["EVOKER"] = true L["Earned:"] = true +L["Effect"] = true L["Elite - Border"] = true L["Elite - Shadow"] = true L["Elite Textures"] = true @@ -414,6 +417,7 @@ L["Indicator Color"] = true L["Individual Professions"] = true L["Info Screen"] = true L["Info! These styles are only available for the new textures."] = true +L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true L["Info! To achieve an optimal result with the portraits, a texture should be set for the texture, border and mask.\nThe mask is always required and no portrait will be visible without it.\n\n"] = true L["Info: The Skin can be affected by other addons if they add a skin for all windows. To fix the problem, the skin must be deactivated in the other addon. This is not a bug of mMT."] = true L["Inner Shadow Color"] = true @@ -802,9 +806,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Aspect ratio"] = true -L["Effect"] = true -L["Cardinal Point"] = true -L["Info! To achieve an optimal result with the minimap, a texture should be set for the texture and mask.\nThe mask is always required and no minimap will be visible without it.\n\n"] = true From 2d30516e505810c52fe864e0403d11b67c096d00 Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Sat, 2 Nov 2024 17:53:28 +0100 Subject: [PATCH 08/13] =?UTF-8?q?=F0=9F=A7=BD=20UPDATE:=20=20add=20alterna?= =?UTF-8?q?tive=20mode=20to=20minimap=20aspect=20ration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ElvUI_mMediaTag/core/options/minimap.lua | 19 ++++++++++++++++++- .../core/settings/defaultSettings.lua | 1 + .../modules/misc/minimap_aspect_ratio.lua | 15 ++++++++++----- 3 files changed, 29 insertions(+), 6 deletions(-) diff --git a/Addon/ElvUI_mMediaTag/core/options/minimap.lua b/Addon/ElvUI_mMediaTag/core/options/minimap.lua index 2563aa62..30dacf7c 100644 --- a/Addon/ElvUI_mMediaTag/core/options/minimap.lua +++ b/Addon/ElvUI_mMediaTag/core/options/minimap.lua @@ -57,6 +57,11 @@ local function configTable() return not E.db.mMT.minimapAspectRatio.enable or E.db.mMT.minimapSkin.enable end, args = { + desc_note = { + order = 1, + type = "description", + name = L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."], + }, aspectratio = { order = 2, type = "select", @@ -70,6 +75,18 @@ local function configTable() mMT.Modules.MinimapAspectRatio:Initialize() end, }, + alternative = { + order = 3, + type = "toggle", + name = L["Alternative mode"], + get = function(info) + return E.db.mMT.minimapAspectRatio.alternative + end, + set = function(info, value) + E.db.mMT.minimapAspectRatio.alternative = value + E:StaticPopup_Show("CONFIG_RL") + end, + }, }, }, }, @@ -128,7 +145,7 @@ local function configTable() end, }, effect = { - order = 2, + order = 3, type = "toggle", name = L["Effect"], get = function(info) diff --git a/Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua b/Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua index ed65b57f..bf0dc3f4 100644 --- a/Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua +++ b/Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua @@ -568,6 +568,7 @@ P.mMT = { minimapAspectRatio = { enable = false, aspectRatio = "16:8", + alternative = false, }, minimapSkin = { enable = false, diff --git a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua index 2215964b..53d77bcc 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua @@ -85,13 +85,18 @@ local function SetAspectRatio() Minimap.mMT_Offset = offset M.MapHolder:SetSize(width, height) - Minimap:SetMaskTexture(aspectRatio.mask) - Minimap.backdrop:ClearAllPoints() - Minimap.backdrop:SetOutside(Minimap, borderSize, -offset + borderSize) + if not E.db.mMT.minimapAspectRatio.alternative then + Minimap:SetMaskTexture(aspectRatio.mask) - Minimap:ClearAllPoints() - Minimap:SetPoint("TOP", M.MapHolder, "TOP", 0, offset) + Minimap.backdrop:ClearAllPoints() + Minimap.backdrop:SetOutside(Minimap, borderSize, -offset + borderSize) + + Minimap:ClearAllPoints() + Minimap:SetPoint("TOP", M.MapHolder, "TOP", 0, offset) + else + Minimap:SetSize(width, height) + end if Minimap.location then Minimap.location:ClearAllPoints() From a2f0f126c42c4d35430888717e188e0a1f3f91a0 Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Sat, 2 Nov 2024 17:55:05 +0100 Subject: [PATCH 09/13] =?UTF-8?q?=F0=9F=A7=BD=20UPDATE:=20locals?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Addon/ElvUI_mMediaTag/localization/deDE.lua | 5 +++++ Addon/ElvUI_mMediaTag/localization/enUS.lua | 4 ++++ Addon/ElvUI_mMediaTag/localization/esMX.lua | 4 ++++ Addon/ElvUI_mMediaTag/localization/frFR.lua | 4 ++++ Addon/ElvUI_mMediaTag/localization/itIT.lua | 4 ++++ Addon/ElvUI_mMediaTag/localization/koKR.lua | 4 ++++ Addon/ElvUI_mMediaTag/localization/ptBR.lua | 4 ++++ Addon/ElvUI_mMediaTag/localization/ruRU.lua | 4 ++++ Addon/ElvUI_mMediaTag/localization/zhCN.lua | 4 ++++ Addon/ElvUI_mMediaTag/localization/zhTW.lua | 4 ++++ 10 files changed, 41 insertions(+) diff --git a/Addon/ElvUI_mMediaTag/localization/deDE.lua b/Addon/ElvUI_mMediaTag/localization/deDE.lua index 43462736..b10be1bd 100644 --- a/Addon/ElvUI_mMediaTag/localization/deDE.lua +++ b/Addon/ElvUI_mMediaTag/localization/deDE.lua @@ -806,3 +806,8 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = "|cffFFFFFFStrg + Linksk L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = "|cffFFFFFFLinks Klick:|r Talent Spezialisierung ändern" L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = "|cffFFFFFFRechtsklick:|r Beutespezialisierung ändern" L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = "|cffFFFFFFShift + Links Klick:|r Zeige Talent Spezialisierungs Interface" + + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/enUS.lua b/Addon/ElvUI_mMediaTag/localization/enUS.lua index 60d6c4c0..0e2df49d 100644 --- a/Addon/ElvUI_mMediaTag/localization/enUS.lua +++ b/Addon/ElvUI_mMediaTag/localization/enUS.lua @@ -807,3 +807,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/esMX.lua b/Addon/ElvUI_mMediaTag/localization/esMX.lua index 9b292a2b..b7e99ef2 100644 --- a/Addon/ElvUI_mMediaTag/localization/esMX.lua +++ b/Addon/ElvUI_mMediaTag/localization/esMX.lua @@ -806,3 +806,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/frFR.lua b/Addon/ElvUI_mMediaTag/localization/frFR.lua index f86c67d5..887ea0e3 100644 --- a/Addon/ElvUI_mMediaTag/localization/frFR.lua +++ b/Addon/ElvUI_mMediaTag/localization/frFR.lua @@ -805,3 +805,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/itIT.lua b/Addon/ElvUI_mMediaTag/localization/itIT.lua index 58d5638d..f07c1b6a 100644 --- a/Addon/ElvUI_mMediaTag/localization/itIT.lua +++ b/Addon/ElvUI_mMediaTag/localization/itIT.lua @@ -806,3 +806,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/koKR.lua b/Addon/ElvUI_mMediaTag/localization/koKR.lua index a0219e95..b0e0b5ae 100644 --- a/Addon/ElvUI_mMediaTag/localization/koKR.lua +++ b/Addon/ElvUI_mMediaTag/localization/koKR.lua @@ -806,3 +806,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/ptBR.lua b/Addon/ElvUI_mMediaTag/localization/ptBR.lua index 2fbda2a6..f495791d 100644 --- a/Addon/ElvUI_mMediaTag/localization/ptBR.lua +++ b/Addon/ElvUI_mMediaTag/localization/ptBR.lua @@ -806,3 +806,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/ruRU.lua b/Addon/ElvUI_mMediaTag/localization/ruRU.lua index f9d97376..0b26b105 100644 --- a/Addon/ElvUI_mMediaTag/localization/ruRU.lua +++ b/Addon/ElvUI_mMediaTag/localization/ruRU.lua @@ -806,3 +806,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/zhCN.lua b/Addon/ElvUI_mMediaTag/localization/zhCN.lua index d21150bf..5001f417 100644 --- a/Addon/ElvUI_mMediaTag/localization/zhCN.lua +++ b/Addon/ElvUI_mMediaTag/localization/zhCN.lua @@ -806,3 +806,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/zhTW.lua b/Addon/ElvUI_mMediaTag/localization/zhTW.lua index 32432676..c262794d 100644 --- a/Addon/ElvUI_mMediaTag/localization/zhTW.lua +++ b/Addon/ElvUI_mMediaTag/localization/zhTW.lua @@ -806,3 +806,7 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true + +-- new +L["Alternative mode"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true From ee610dbac4fd85515f11ebded5de12299dbd01ac Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Sat, 2 Nov 2024 19:19:28 +0100 Subject: [PATCH 10/13] =?UTF-8?q?=F0=9F=A7=BD=20UPDATE:=20details=20embedd?= =?UTF-8?q?ed=20takes=20care=20of=20the=20chat=20texture?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .luarc.json | 3 ++- Addon/ElvUI_mMediaTag/modules/misc/details.lua | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.luarc.json b/.luarc.json index 4dd5b5e0..ac35bc4d 100644 --- a/.luarc.json +++ b/.luarc.json @@ -19513,7 +19513,8 @@ "GREAT_VAULT_REWARDS", "ShowOptionsPanel", "LFG_ROLE_NUM_SHORTAGE_TYPES", - "GREAT_VAULT_REWARDS_WAITING" + "GREAT_VAULT_REWARDS_WAITING", + "NUM_CHAT_WINDOWS" ], "diagnostics.disable": ["deprecated", "inject-field", "undefined-field", "cast-local-type"] diff --git a/Addon/ElvUI_mMediaTag/modules/misc/details.lua b/Addon/ElvUI_mMediaTag/modules/misc/details.lua index da2f437e..6cd6f8cd 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/details.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/details.lua @@ -153,6 +153,19 @@ function mMT:DetailsEmbedded() detailsEmbedded:SetPoint(point, chat, relativePoint, xOfs, yOfs) end + -- Chat Panel Background Texture + if chat.tex then + local texture = (chatEmbedded == "RightChat") and E.db.chat.panelBackdropNameRight or E.db.chat.panelBackdropNameLeft + detailsEmbedded.tex = detailsEmbedded:CreateTexture(nil, 'OVERLAY') + detailsEmbedded.tex:ClearAllPoints() + detailsEmbedded.tex:SetPoint("TOPLEFT", chat, "TOPLEFT", 1, -1) + detailsEmbedded.tex:SetPoint("BOTTOMRIGHT", chat, "BOTTOMRIGHT", -1, 1) + detailsEmbedded.tex:SetTexture(texture) + + local a = E.db.general.backdropfadecolor.a or 0.5 + detailsEmbedded.tex:SetAlpha(a) + end + if windows > 1 then local windowsWidth = (windows == 1) and chatWidth or chatWidth / 2 local windowsHeight = (windows <= 2) and chatHeight or chatHeight / 2 From 520709f77c97fa629d3c25568ba59b3dd750684f Mon Sep 17 00:00:00 2001 From: Dlarge Date: Sun, 3 Nov 2024 08:22:07 +0100 Subject: [PATCH 11/13] added German Locals, sorting Locals --- Addon/ElvUI_mMediaTag/localization/deDE.lua | 7 ++----- Addon/ElvUI_mMediaTag/localization/enUS.lua | 6 ++---- Addon/ElvUI_mMediaTag/localization/esMX.lua | 6 ++---- Addon/ElvUI_mMediaTag/localization/frFR.lua | 6 ++---- Addon/ElvUI_mMediaTag/localization/itIT.lua | 6 ++---- Addon/ElvUI_mMediaTag/localization/koKR.lua | 6 ++---- Addon/ElvUI_mMediaTag/localization/ptBR.lua | 6 ++---- Addon/ElvUI_mMediaTag/localization/ruRU.lua | 6 ++---- Addon/ElvUI_mMediaTag/localization/zhCN.lua | 6 ++---- Addon/ElvUI_mMediaTag/localization/zhTW.lua | 6 ++---- 10 files changed, 20 insertions(+), 41 deletions(-) diff --git a/Addon/ElvUI_mMediaTag/localization/deDE.lua b/Addon/ElvUI_mMediaTag/localization/deDE.lua index b10be1bd..be004b38 100644 --- a/Addon/ElvUI_mMediaTag/localization/deDE.lua +++ b/Addon/ElvUI_mMediaTag/localization/deDE.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = "Alle Instanzteleporter" L["Alliance: "] = "Allianz" L["Allways withe"] = "Immer weiß" L["Alpha"] = "Alpha/ Transparents" +L["Alternative mode"] = "Alternativer Modus" L["Anchor Point"] = "Ankerpunkt" L["Anchor point for the extra Icon."] = "Ankerpunkt des zusätzliches Symbols" L["Anchor"] = "Anker" @@ -405,6 +406,7 @@ L["Icon out of Combat"] = "Symbol außerhalb des Kampfes" L["Icon seize if not Auto size is enabled."] = "Symbolgröße, wenn Auto Größe nicht aktiviert ist." L["Icon"] = "Symbol" L["Icons"] = "Symbole" +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = "Wenn die Minikarte zu nah am Rand ist, kann es sein, dass oben oder unten ein Balken sichtbar wird. Dies liegt an den Limitationen von Blizzard. Alternativ kannst Du den „Alternativen Modus“ aktivieren, allerdings kann es sein, dass die Minikarte in manchen Bereichen verzerrt dargestellt wird." L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = "Wenn deine Textur bzw. der Ausschnitt für das Portrait in der Mitte nicht symmetrisch ist, benötigst du eine 2. Maskentextur, die exakt spiegelverkehrt sein muss. Verwende hierfür die 2. Maskentextur." L["Import"] = "Importieren" L["Import/ Export of Spell IDs"] = "Importieren/ Exportieren der Zauber-IDs" @@ -806,8 +808,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = "|cffFFFFFFStrg + Linksk L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = "|cffFFFFFFLinks Klick:|r Talent Spezialisierung ändern" L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = "|cffFFFFFFRechtsklick:|r Beutespezialisierung ändern" L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = "|cffFFFFFFShift + Links Klick:|r Zeige Talent Spezialisierungs Interface" - - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/enUS.lua b/Addon/ElvUI_mMediaTag/localization/enUS.lua index 0e2df49d..08b3a591 100644 --- a/Addon/ElvUI_mMediaTag/localization/enUS.lua +++ b/Addon/ElvUI_mMediaTag/localization/enUS.lua @@ -24,6 +24,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,6 +407,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -807,7 +809,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/esMX.lua b/Addon/ElvUI_mMediaTag/localization/esMX.lua index b7e99ef2..69e38ca3 100644 --- a/Addon/ElvUI_mMediaTag/localization/esMX.lua +++ b/Addon/ElvUI_mMediaTag/localization/esMX.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -405,6 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -806,7 +808,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/frFR.lua b/Addon/ElvUI_mMediaTag/localization/frFR.lua index 887ea0e3..631f07bf 100644 --- a/Addon/ElvUI_mMediaTag/localization/frFR.lua +++ b/Addon/ElvUI_mMediaTag/localization/frFR.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -405,6 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -805,7 +807,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/itIT.lua b/Addon/ElvUI_mMediaTag/localization/itIT.lua index f07c1b6a..5ce6d833 100644 --- a/Addon/ElvUI_mMediaTag/localization/itIT.lua +++ b/Addon/ElvUI_mMediaTag/localization/itIT.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -405,6 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -806,7 +808,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/koKR.lua b/Addon/ElvUI_mMediaTag/localization/koKR.lua index b0e0b5ae..c5d0c3d4 100644 --- a/Addon/ElvUI_mMediaTag/localization/koKR.lua +++ b/Addon/ElvUI_mMediaTag/localization/koKR.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -405,6 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -806,7 +808,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/ptBR.lua b/Addon/ElvUI_mMediaTag/localization/ptBR.lua index f495791d..a27f0c7e 100644 --- a/Addon/ElvUI_mMediaTag/localization/ptBR.lua +++ b/Addon/ElvUI_mMediaTag/localization/ptBR.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -405,6 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -806,7 +808,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/ruRU.lua b/Addon/ElvUI_mMediaTag/localization/ruRU.lua index 0b26b105..ec5edb27 100644 --- a/Addon/ElvUI_mMediaTag/localization/ruRU.lua +++ b/Addon/ElvUI_mMediaTag/localization/ruRU.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -405,6 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -806,7 +808,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/zhCN.lua b/Addon/ElvUI_mMediaTag/localization/zhCN.lua index 5001f417..48e14c0c 100644 --- a/Addon/ElvUI_mMediaTag/localization/zhCN.lua +++ b/Addon/ElvUI_mMediaTag/localization/zhCN.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -405,6 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -806,7 +808,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true diff --git a/Addon/ElvUI_mMediaTag/localization/zhTW.lua b/Addon/ElvUI_mMediaTag/localization/zhTW.lua index c262794d..6da7c766 100644 --- a/Addon/ElvUI_mMediaTag/localization/zhTW.lua +++ b/Addon/ElvUI_mMediaTag/localization/zhTW.lua @@ -23,6 +23,7 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true +L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -405,6 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true @@ -806,7 +808,3 @@ L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L["|cffFFFFFFLeft Click:|r Change Talent Specialization"] = true L["|cffFFFFFFRight Click:|r Change Loot Specialization"] = true L["|cffFFFFFFShift + Left Click:|r Show Talent Specialization UI"] = true - --- new -L["Alternative mode"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true From 7bdae2e32478554f77028b4b3b095520a166ba3c Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Sun, 3 Nov 2024 18:02:03 +0100 Subject: [PATCH 12/13] =?UTF-8?q?=F0=9F=A7=BD=20UPDATE:=20revert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Addon/ElvUI_mMediaTag/core/options/minimap.lua | 14 +------------- .../core/settings/defaultSettings.lua | 1 - Addon/ElvUI_mMediaTag/localization/deDE.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/enUS.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/esMX.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/frFR.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/itIT.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/koKR.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/ptBR.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/ruRU.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/zhCN.lua | 3 +-- Addon/ElvUI_mMediaTag/localization/zhTW.lua | 3 +-- .../modules/misc/minimap_aspect_ratio.lua | 14 +++++--------- 13 files changed, 16 insertions(+), 43 deletions(-) diff --git a/Addon/ElvUI_mMediaTag/core/options/minimap.lua b/Addon/ElvUI_mMediaTag/core/options/minimap.lua index 30dacf7c..8e01ce2b 100644 --- a/Addon/ElvUI_mMediaTag/core/options/minimap.lua +++ b/Addon/ElvUI_mMediaTag/core/options/minimap.lua @@ -60,7 +60,7 @@ local function configTable() desc_note = { order = 1, type = "description", - name = L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."], + name = L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."], }, aspectratio = { order = 2, @@ -75,18 +75,6 @@ local function configTable() mMT.Modules.MinimapAspectRatio:Initialize() end, }, - alternative = { - order = 3, - type = "toggle", - name = L["Alternative mode"], - get = function(info) - return E.db.mMT.minimapAspectRatio.alternative - end, - set = function(info, value) - E.db.mMT.minimapAspectRatio.alternative = value - E:StaticPopup_Show("CONFIG_RL") - end, - }, }, }, }, diff --git a/Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua b/Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua index bf0dc3f4..ed65b57f 100644 --- a/Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua +++ b/Addon/ElvUI_mMediaTag/core/settings/defaultSettings.lua @@ -568,7 +568,6 @@ P.mMT = { minimapAspectRatio = { enable = false, aspectRatio = "16:8", - alternative = false, }, minimapSkin = { enable = false, diff --git a/Addon/ElvUI_mMediaTag/localization/deDE.lua b/Addon/ElvUI_mMediaTag/localization/deDE.lua index be004b38..f948f216 100644 --- a/Addon/ElvUI_mMediaTag/localization/deDE.lua +++ b/Addon/ElvUI_mMediaTag/localization/deDE.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = "Alle Instanzteleporter" L["Alliance: "] = "Allianz" L["Allways withe"] = "Immer weiß" L["Alpha"] = "Alpha/ Transparents" -L["Alternative mode"] = "Alternativer Modus" L["Anchor Point"] = "Ankerpunkt" L["Anchor point for the extra Icon."] = "Ankerpunkt des zusätzliches Symbols" L["Anchor"] = "Anker" @@ -406,7 +405,7 @@ L["Icon out of Combat"] = "Symbol außerhalb des Kampfes" L["Icon seize if not Auto size is enabled."] = "Symbolgröße, wenn Auto Größe nicht aktiviert ist." L["Icon"] = "Symbol" L["Icons"] = "Symbole" -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = "Wenn die Minikarte zu nah am Rand ist, kann es sein, dass oben oder unten ein Balken sichtbar wird. Dies liegt an den Limitationen von Blizzard. Alternativ kannst Du den „Alternativen Modus“ aktivieren, allerdings kann es sein, dass die Minikarte in manchen Bereichen verzerrt dargestellt wird." +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = "Wenn die Minikarte zu nah am Rand ist, kann es sein, dass oben oder unten ein Balken sichtbar wird. Dies liegt an den Limitationen von Blizzard." L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = "Wenn deine Textur bzw. der Ausschnitt für das Portrait in der Mitte nicht symmetrisch ist, benötigst du eine 2. Maskentextur, die exakt spiegelverkehrt sein muss. Verwende hierfür die 2. Maskentextur." L["Import"] = "Importieren" L["Import/ Export of Spell IDs"] = "Importieren/ Exportieren der Zauber-IDs" diff --git a/Addon/ElvUI_mMediaTag/localization/enUS.lua b/Addon/ElvUI_mMediaTag/localization/enUS.lua index 08b3a591..a2d55e0b 100644 --- a/Addon/ElvUI_mMediaTag/localization/enUS.lua +++ b/Addon/ElvUI_mMediaTag/localization/enUS.lua @@ -24,7 +24,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -407,7 +406,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/esMX.lua b/Addon/ElvUI_mMediaTag/localization/esMX.lua index 69e38ca3..2c50e7fc 100644 --- a/Addon/ElvUI_mMediaTag/localization/esMX.lua +++ b/Addon/ElvUI_mMediaTag/localization/esMX.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,7 +405,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/frFR.lua b/Addon/ElvUI_mMediaTag/localization/frFR.lua index 631f07bf..2ac6364f 100644 --- a/Addon/ElvUI_mMediaTag/localization/frFR.lua +++ b/Addon/ElvUI_mMediaTag/localization/frFR.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,7 +405,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/itIT.lua b/Addon/ElvUI_mMediaTag/localization/itIT.lua index 5ce6d833..2e330686 100644 --- a/Addon/ElvUI_mMediaTag/localization/itIT.lua +++ b/Addon/ElvUI_mMediaTag/localization/itIT.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,7 +405,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/koKR.lua b/Addon/ElvUI_mMediaTag/localization/koKR.lua index c5d0c3d4..347b7f50 100644 --- a/Addon/ElvUI_mMediaTag/localization/koKR.lua +++ b/Addon/ElvUI_mMediaTag/localization/koKR.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,7 +405,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/ptBR.lua b/Addon/ElvUI_mMediaTag/localization/ptBR.lua index a27f0c7e..b3ab0585 100644 --- a/Addon/ElvUI_mMediaTag/localization/ptBR.lua +++ b/Addon/ElvUI_mMediaTag/localization/ptBR.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,7 +405,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/ruRU.lua b/Addon/ElvUI_mMediaTag/localization/ruRU.lua index ec5edb27..a85f266e 100644 --- a/Addon/ElvUI_mMediaTag/localization/ruRU.lua +++ b/Addon/ElvUI_mMediaTag/localization/ruRU.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,7 +405,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/zhCN.lua b/Addon/ElvUI_mMediaTag/localization/zhCN.lua index 48e14c0c..e3d0fa4e 100644 --- a/Addon/ElvUI_mMediaTag/localization/zhCN.lua +++ b/Addon/ElvUI_mMediaTag/localization/zhCN.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,7 +405,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/localization/zhTW.lua b/Addon/ElvUI_mMediaTag/localization/zhTW.lua index 6da7c766..5a9638ed 100644 --- a/Addon/ElvUI_mMediaTag/localization/zhTW.lua +++ b/Addon/ElvUI_mMediaTag/localization/zhTW.lua @@ -23,7 +23,6 @@ L["All Dungeon Teleports"] = true L["Alliance: "] = true L["Allways withe"] = true L["Alpha"] = true -L["Alternative mode"] = true L["Anchor Point"] = true L["Anchor point for the extra Icon."] = true L["Anchor"] = true @@ -406,7 +405,7 @@ L["Icon out of Combat"] = true L["Icon seize if not Auto size is enabled."] = true L["Icon"] = true L["Icons"] = true -L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations. Alternatively, you can activate the “Alternative Mode” but this might cause the minimap to appear distorted in some areas."] = true +L["If the minimap is too close to the edge, a bar may become visible at the top or bottom. This is due to Blizzard’s limitations."] = true L["If your texture or the cutout for the portrait is not symmetrical in the middle, you need a 2nd mask texture, which must be exactly mirror-inverted. Use the 2nd mask texture for this."] = true L["Import"] = true L["Import/ Export of Spell IDs"] = true diff --git a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua index 53d77bcc..0daf9e16 100644 --- a/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua +++ b/Addon/ElvUI_mMediaTag/modules/misc/minimap_aspect_ratio.lua @@ -86,17 +86,13 @@ local function SetAspectRatio() M.MapHolder:SetSize(width, height) - if not E.db.mMT.minimapAspectRatio.alternative then - Minimap:SetMaskTexture(aspectRatio.mask) + Minimap:SetMaskTexture(aspectRatio.mask) - Minimap.backdrop:ClearAllPoints() - Minimap.backdrop:SetOutside(Minimap, borderSize, -offset + borderSize) + Minimap.backdrop:ClearAllPoints() + Minimap.backdrop:SetOutside(Minimap, borderSize, -offset + borderSize) - Minimap:ClearAllPoints() - Minimap:SetPoint("TOP", M.MapHolder, "TOP", 0, offset) - else - Minimap:SetSize(width, height) - end + Minimap:ClearAllPoints() + Minimap:SetPoint("TOP", M.MapHolder, "TOP", 0, offset) if Minimap.location then Minimap.location:ClearAllPoints() From 615830cb19980157d20dbc389cc054c3c10ad04f Mon Sep 17 00:00:00 2001 From: Blinkii <92640275+mBlinkii@users.noreply.github.com> Date: Sun, 3 Nov 2024 18:15:04 +0100 Subject: [PATCH 13/13] =?UTF-8?q?=F0=9F=A7=BD=20UPDATE:=20cl=20&=20vers.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Addon/!mMT_MediaPack/!mMT_MediaPack.toc | 2 +- Addon/!mMT_MediaPack/!mMT_MediaPack_Cata.toc | 4 ++-- Addon/!mMT_MediaPack/!mMT_MediaPack_Mainline.toc | 2 +- Addon/!mMT_MediaPack/!mMT_MediaPack_Vanilla.toc | 2 +- Addon/ElvUI_mMediaTag/ElvUI_mMediaTag.toc | 2 +- Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Cata.toc | 4 ++-- Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Mainline.toc | 2 +- Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Vanilla.toc | 2 +- Addon/ElvUI_mMediaTag/core/changelog/3.64.lua | 14 ++++++++++++++ .../core/changelog/load_changelogs.xml | 1 + CHANGELOG.md | 11 +++++++++++ 11 files changed, 36 insertions(+), 10 deletions(-) create mode 100644 Addon/ElvUI_mMediaTag/core/changelog/3.64.lua diff --git a/Addon/!mMT_MediaPack/!mMT_MediaPack.toc b/Addon/!mMT_MediaPack/!mMT_MediaPack.toc index 31ce122c..9f625d5f 100644 --- a/Addon/!mMT_MediaPack/!mMT_MediaPack.toc +++ b/Addon/!mMT_MediaPack/!mMT_MediaPack.toc @@ -1,6 +1,6 @@ ## Interface: 30403 ## Author: Blinkii -## Version: 1.26 +## Version: 1.27 ## Title: |CFF8308AEm|r|CFFCA07A7M|r|CFFFF06A2T -|r |CFFFF06A2M|r|CFFFF108Ce|r|CFFFF197Ad|r|CFFFF216Bi|r|CFFFF275Da|r |CFFFF3441P|r|CFFFF3F2Ca|r|CFFFF461Cc|r|CFFFF4E0Ck|r ## Notes: mMT Media Pack by Blinkii | Support: mMediaTag@gmx.de ## IconTexture: Interface\AddOns\!mMT_MediaPack\media\logo\mmt_icon diff --git a/Addon/!mMT_MediaPack/!mMT_MediaPack_Cata.toc b/Addon/!mMT_MediaPack/!mMT_MediaPack_Cata.toc index 46f8fcfc..edd2f04f 100644 --- a/Addon/!mMT_MediaPack/!mMT_MediaPack_Cata.toc +++ b/Addon/!mMT_MediaPack/!mMT_MediaPack_Cata.toc @@ -1,6 +1,6 @@ -## Interface: 40400 +## Interface: 40401 ## Author: Blinkii -## Version: 1.26 +## Version: 1.27 ## Title: |CFF8308AEm|r|CFFCA07A7M|r|CFFFF06A2T -|r |CFFFF06A2M|r|CFFFF108Ce|r|CFFFF197Ad|r|CFFFF216Bi|r|CFFFF275Da|r |CFFFF3441P|r|CFFFF3F2Ca|r|CFFFF461Cc|r|CFFFF4E0Ck|r ## Notes: mMT Media Pack by Blinkii | Support: mMediaTag@gmx.de ## IconTexture: Interface\AddOns\!mMT_MediaPack\media\logo\mmt_icon diff --git a/Addon/!mMT_MediaPack/!mMT_MediaPack_Mainline.toc b/Addon/!mMT_MediaPack/!mMT_MediaPack_Mainline.toc index 3f239eaf..b6a925c5 100644 --- a/Addon/!mMT_MediaPack/!mMT_MediaPack_Mainline.toc +++ b/Addon/!mMT_MediaPack/!mMT_MediaPack_Mainline.toc @@ -1,6 +1,6 @@ ## Interface: 110005 ## Author: Blinkii -## Version: 1.26 +## Version: 1.27 ## Title: |CFF8308AEm|r|CFFCA07A7M|r|CFFFF06A2T -|r |CFFFF06A2M|r|CFFFF108Ce|r|CFFFF197Ad|r|CFFFF216Bi|r|CFFFF275Da|r |CFFFF3441P|r|CFFFF3F2Ca|r|CFFFF461Cc|r|CFFFF4E0Ck|r ## Notes: mMT Media Pack by Blinkii | Support: mMediaTag@gmx.de ## IconTexture: Interface\AddOns\!mMT_MediaPack\media\logo\mmt_icon diff --git a/Addon/!mMT_MediaPack/!mMT_MediaPack_Vanilla.toc b/Addon/!mMT_MediaPack/!mMT_MediaPack_Vanilla.toc index 5528b993..665ebef2 100644 --- a/Addon/!mMT_MediaPack/!mMT_MediaPack_Vanilla.toc +++ b/Addon/!mMT_MediaPack/!mMT_MediaPack_Vanilla.toc @@ -1,6 +1,6 @@ ## Interface: 11504 ## Author: Blinkii -## Version: 1.26 +## Version: 1.27 ## Title: |CFF8308AEm|r|CFFCA07A7M|r|CFFFF06A2T -|r |CFFFF06A2M|r|CFFFF108Ce|r|CFFFF197Ad|r|CFFFF216Bi|r|CFFFF275Da|r |CFFFF3441P|r|CFFFF3F2Ca|r|CFFFF461Cc|r|CFFFF4E0Ck|r ## Notes: mMT Media Pack by Blinkii | Support: mMediaTag@gmx.de ## IconTexture: Interface\AddOns\!mMT_MediaPack\media\logo\mmt_icon diff --git a/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag.toc b/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag.toc index 350d8d9e..6afbfe8b 100644 --- a/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag.toc +++ b/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag.toc @@ -1,6 +1,6 @@ ## Interface: 30403 ## Author: Blinkii -## Version: 3.63 +## Version: 3.64 ## Title: |CFF3650D5m|r|CFF4148C3M|r|CFF4743B6T -|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. diff --git a/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Cata.toc b/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Cata.toc index 1b428f3d..d6fe515b 100644 --- a/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Cata.toc +++ b/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Cata.toc @@ -1,6 +1,6 @@ -## Interface: 40400 +## Interface: 40401 ## Author: Blinkii -## Version: 3.63 +## Version: 3.64 ## Title: |CFF3650D5m|r|CFF4148C3M|r|CFF4743B6T -|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 diff --git a/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Mainline.toc b/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Mainline.toc index 1e53125c..1ce28b30 100644 --- a/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Mainline.toc +++ b/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Mainline.toc @@ -1,6 +1,6 @@ ## Interface: 110005 ## Author: Blinkii -## Version: 3.63 +## Version: 3.64 ## Title: |CFF3650D5m|r|CFF4148C3M|r|CFF4743B6T -|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: mMediaTag@gmx.de ## IconTexture: Interface\AddOns\ElvUI_mMediaTag\media\logo\mmt_icon diff --git a/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Vanilla.toc b/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Vanilla.toc index cd9383e7..18273802 100644 --- a/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Vanilla.toc +++ b/Addon/ElvUI_mMediaTag/ElvUI_mMediaTag_Vanilla.toc @@ -1,6 +1,6 @@ ## Interface: 11504 ## Author: Blinkii -## Version: 3.63 +## Version: 3.64 ## Title: |CFF3650D5m|r|CFF4148C3M|r|CFF4743B6T -|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. diff --git a/Addon/ElvUI_mMediaTag/core/changelog/3.64.lua b/Addon/ElvUI_mMediaTag/core/changelog/3.64.lua new file mode 100644 index 00000000..fc2e1fa9 --- /dev/null +++ b/Addon/ElvUI_mMediaTag/core/changelog/3.64.lua @@ -0,0 +1,14 @@ +mMT.Changelog[364] = { + DATE = "03.11.2024", + UPDATE = { + "[Details-Embedded]: Chatframe texture.", + "[System]: Boss IDs.", + "[System]: TOC Update" + }, + FIX = { + "[Details-Embedded]: Fixed Strata and Frame Level.", + "Bug where the Border is not adjust correctly.", + "[Minimap-Aspectration]: Fixed Icon positions.", + "[System]: Bug in Cata wich prevents to open the Game menu from the mMT Dock & Datatexts." + }, +} diff --git a/Addon/ElvUI_mMediaTag/core/changelog/load_changelogs.xml b/Addon/ElvUI_mMediaTag/core/changelog/load_changelogs.xml index ccab3880..d3924f9b 100644 --- a/Addon/ElvUI_mMediaTag/core/changelog/load_changelogs.xml +++ b/Addon/ElvUI_mMediaTag/core/changelog/load_changelogs.xml @@ -18,4 +18,5 @@