Quantcast

4.4.5

Steven Jackson [09-18-14 - 01:00]
4.4.5
Filename
Interface/AddOns/SVUI/assets/artwork/Icons/CLOSE-BUTTON.blp
Interface/AddOns/SVUI/libs/oUF_Villain/oUF/elements/eclipsebar.lua
Interface/AddOns/SVUI/packages/map/SVMap.lua
Interface/AddOns/SVUI/packages/unit/SVUnit.lua
Interface/AddOns/SVUI/packages/unit/config.lua
Interface/AddOns/SVUI/system/common.lua
Interface/AddOns/SVUI/system/setup.lua
Interface/AddOns/SVUI_AnsweringService/SVUI_AnsweringService.lua
Interface/AddOns/SVUI_ConfigOMatic/modules/units/core.lua
Interface/AddOns/SVUI_LogOMatic/SVUI_LogOMatic.lua
Interface/AddOns/SVUI_StyleOMatic/addons/auctionhouse.lua
Interface/AddOns/SVUI_StyleOMatic/addons/calendar.lua
Interface/AddOns/SVUI_StyleOMatic/common/methods.lua
Interface/AddOns/SVUI_TrackingDevice/SVUI_TrackingDevice.lua
diff --git a/Interface/AddOns/SVUI/assets/artwork/Icons/CLOSE-BUTTON.blp b/Interface/AddOns/SVUI/assets/artwork/Icons/CLOSE-BUTTON.blp
new file mode 100644
index 0000000..faf517b
Binary files /dev/null and b/Interface/AddOns/SVUI/assets/artwork/Icons/CLOSE-BUTTON.blp differ
diff --git a/Interface/AddOns/SVUI/libs/oUF_Villain/oUF/elements/eclipsebar.lua b/Interface/AddOns/SVUI/libs/oUF_Villain/oUF/elements/eclipsebar.lua
index b794c0b..8653f0f 100644
--- a/Interface/AddOns/SVUI/libs/oUF_Villain/oUF/elements/eclipsebar.lua
+++ b/Interface/AddOns/SVUI/libs/oUF_Villain/oUF/elements/eclipsebar.lua
@@ -92,7 +92,7 @@ local ECLIPSE_DIRECTION_CHANGE = function(self, event, status)
 	local eb = self.EclipseBar

 	if(status and eb:IsVisible() and eb.PostDirectionChange[status]) then
-		return eb.PostDirectionChange[status](self.unit)
+		return eb.PostDirectionChange[status](eb)
 	end
 end

diff --git a/Interface/AddOns/SVUI/packages/map/SVMap.lua b/Interface/AddOns/SVUI/packages/map/SVMap.lua
index fd86ca5..79ffa70 100644
--- a/Interface/AddOns/SVUI/packages/map/SVMap.lua
+++ b/Interface/AddOns/SVUI/packages/map/SVMap.lua
@@ -41,6 +41,7 @@ local L = LibLocale()
 local Registry = LibStub("LibSystemRegistry-1.0");
 local CONFIGS = SV.private
 local MOD = {};
+MOD.MinimapButtons = {}
 --[[
 ##########################################################
 LOCALIZED GLOBALS
@@ -112,10 +113,7 @@ local MiniMap_MouseWheel = function(self, delta)
 end

 do
-	local buttonCache = {
-		{"Node", "Tab", "Pin", "SVUI_ConsolidatedBuffs", "GameTimeframe", "HelpOpenTicketButton", "SVUI_MinimapFrame", "SVUI_EnhancedMinimap", "QueueStatusMinimapButton", "TimeManagerClockButton", "Archy", "GatherMatePin", "GatherNote", "GuildInstance", "HandyNotesPin", "MinimMap", "Spy_MapNoteList_mini", "ZGVMarker"},
-		{}
-	}
+	local reserved = {"Node", "Tab", "Pin", "SVUI_ConsolidatedBuffs", "GameTimeframe", "HelpOpenTicketButton", "SVUI_MinimapFrame", "SVUI_EnhancedMinimap", "QueueStatusMinimapButton", "TimeManagerClockButton", "Archy", "GatherMatePin", "GatherNote", "GuildInstance", "HandyNotesPin", "MinimMap", "Spy_MapNoteList_mini", "ZGVMarker"}

 	local function UpdateMinimapButtons()
 		if(not MOD.db.minimapbar.enable) then return end
@@ -125,11 +123,10 @@ do
 		MMBBar:Width(MOD.db.minimapbar.buttonSize + 4)

 		local lastButton, anchor, relative, xPos, yPos;
-		local list  = buttonCache[2]
-		local count = #list
+		local list  = MOD.MinimapButtons
+		local count = 1

-		for i = 1, count do
-			local btn = _G[list[i]]
+		for name,btn in pairs(list) do
 			local preset = btn.preset;
 			if(MOD.db.minimapbar.styleType == "NOANCHOR") then
 				btn:SetParent(preset.Parent)
@@ -172,7 +169,8 @@ do
 					btn:SetPoint(anchor, lastButton, relative, xPos, yPos)
 				end
 			end
-			lastButton = btn
+			lastButton = btn
+			count = count + 1
 		end
 		if (MOD.db.minimapbar.styleType ~= "NOANCHOR" and (count > 0)) then
 			if MOD.db.minimapbar.styleType == "HORIZONTAL" then
@@ -193,7 +191,6 @@ do
 		local isLib = false;
 		if name:sub(1,len("LibDBIcon")) == "LibDBIcon" then isLib = true end
 		if(not isLib) then
-			local reserved = buttonCache[1]
 			local count = #reserved
 			for i = 1, count do
 				if name:sub(1,len(reserved[i])) == reserved[i] then return end
@@ -253,8 +250,7 @@ do

 			btn.isStyled = true

-			local nextindex = #buttonCache[2] + 1
-			buttonCache[2][nextindex] = name
+			MOD.MinimapButtons[name] = btn
 		end
 	end

diff --git a/Interface/AddOns/SVUI/packages/unit/SVUnit.lua b/Interface/AddOns/SVUI/packages/unit/SVUnit.lua
index d57860c..6e0a8de 100644
--- a/Interface/AddOns/SVUI/packages/unit/SVUnit.lua
+++ b/Interface/AddOns/SVUI/packages/unit/SVUnit.lua
@@ -500,6 +500,8 @@ function MOD:RefreshUnitLayout(frame, template)
 		end
 	end

+	if GRID_MODE then portraitOverlay = false end
+
 	if frame.Portrait then
 		frame.Portrait:Hide()
 		frame.Portrait:ClearAllPoints()
@@ -1143,8 +1145,13 @@ function MOD:RefreshUnitLayout(frame, template)

 	--[[ RANGE CHECK LAYOUT ]]--

-	if frame.Range then
-		frame.Range.outsideAlpha = self.db.OORAlpha or 1;
+	if frame.Range then
+		if(template:find("raid") or template:find("party")) then
+			frame.Range.outsideAlpha = self.db.groupOORAlpha or 1
+		else
+			frame.Range.outsideAlpha = self.db.OORAlpha or 1
+		end
+
 		if db.rangeCheck then
 			if not frame:IsElementEnabled('Range')then
 				frame:EnableElement('Range')
diff --git a/Interface/AddOns/SVUI/packages/unit/config.lua b/Interface/AddOns/SVUI/packages/unit/config.lua
index 96ec2de..5b0c2f0 100644
--- a/Interface/AddOns/SVUI/packages/unit/config.lua
+++ b/Interface/AddOns/SVUI/packages/unit/config.lua
@@ -49,7 +49,8 @@ CONFIGS["SVUnit"] = {
 	["auraFontSize"] = 12,
 	["auraFontOutline"] = "OUTLINE",

-	["OORAlpha"] = 0.65,
+	["OORAlpha"] = 0.65,
+	["groupOORAlpha"] = 0.45,
 	["combatFadeRoles"] = true,
 	["combatFadeNames"] = true,
 	["debuffHighlighting"] = true,
diff --git a/Interface/AddOns/SVUI/system/common.lua b/Interface/AddOns/SVUI/system/common.lua
index 7ded30a..0c3de1c 100644
--- a/Interface/AddOns/SVUI/system/common.lua
+++ b/Interface/AddOns/SVUI/system/common.lua
@@ -819,11 +819,11 @@ end
 TEMPLATE HELPERS
 ##########################################################
 ]]--
-local function CreatePanelTemplate(frame, templateName, underlay, noupdate, padding, xOffset, yOffset)
+local function CreatePanelTemplate(frame, templateName, underlay, noupdate, padding, xOffset, yOffset, defaultColor)
     if(not templateName or not _templates[templateName]) then templateName = frame._template or 'Default' end

     local settings = _templates[templateName]
-    local colorName = settings.color
+    local colorName = defaultColor or settings.color or "default"
     local gradientName = settings.gradient
     local texFile = settings.texture
     local hasShadow = settings.shadow
@@ -1191,13 +1191,13 @@ local function SetBasicPanel(self, topX, topY, bottomX, bottomY, hasShadow)
     end
 end

-local function SetPanelTemplate(self, templateName, noupdate, overridePadding, xOffset, yOffset)
+local function SetPanelTemplate(self, templateName, noupdate, overridePadding, xOffset, yOffset, defaultColor)
     local padding = false
     if(overridePadding and type(overridePadding) == "number") then
         padding = overridePadding
     end

-    CreatePanelTemplate(self, templateName, true, noupdate, padding, xOffset, yOffset)
+    CreatePanelTemplate(self, templateName, true, noupdate, padding, xOffset, yOffset, defaultColor)

     if(not self._noupdate and not self.__registered) then
         TemplateUpdateFrames[self] = true
@@ -1205,13 +1205,13 @@ local function SetPanelTemplate(self, templateName, noupdate, overridePadding, x
     end
 end

-local function SetFixedPanelTemplate(self, templateName, noupdate, overridePadding, xOffset, yOffset)
+local function SetFixedPanelTemplate(self, templateName, noupdate, overridePadding, xOffset, yOffset, defaultColor)
     local padding = false
     if(overridePadding and type(overridePadding) == "number") then
         padding = overridePadding
     end

-    CreatePanelTemplate(self, templateName, false, noupdate, padding, xOffset, yOffset)
+    CreatePanelTemplate(self, templateName, false, noupdate, padding, xOffset, yOffset, defaultColor)

     if(not self._noupdate and not self.__registered) then
         TemplateUpdateFrames[self] = true
@@ -1264,22 +1264,28 @@ end
 APPENDED BUTTON TEMPLATING METHODS
 ##########################################################
 ]]--
-local function SetButtonTemplate(self, invisible, overridePadding, xOffset, yOffset, keepNormal)
+local function SetButtonTemplate(self, invisible, overridePadding, xOffset, yOffset, keepNormal, defaultColor)
     if(not self) then return end

     local padding = 1
     if(overridePadding and type(overridePadding) == "number") then
         padding = overridePadding
     end
-    xOffset = xOffset or -1
-    yOffset = yOffset or -1
+
+    local x,y = -1,-1
+    local underlay = false
+    if(xOffset or yOffset) then
+        x = xOffset or -1
+        y = yOffset or -1
+        underlay = true
+    end

     if(invisible) then
-        CreatePanelTemplate(self, "Transparent", false, true, padding, xOffset, yOffset)
+        CreatePanelTemplate(self, "Transparent", underlay, true, padding, x, y, defaultColor)
         self:SetBackdropColor(0,0,0,0)
         self:SetBackdropBorderColor(0,0,0,0)
     else
-        CreatePanelTemplate(self, "Button", false, true, padding, xOffset, yOffset)
+        CreatePanelTemplate(self, "Button", underlay, true, padding, x, y, defaultColor)
     end

     if(self.Left) then
diff --git a/Interface/AddOns/SVUI/system/setup.lua b/Interface/AddOns/SVUI/system/setup.lua
index bb6f54b..ffd317a 100644
--- a/Interface/AddOns/SVUI/system/setup.lua
+++ b/Interface/AddOns/SVUI/system/setup.lua
@@ -1117,6 +1117,12 @@ local function LoadAllPresets()
 				["gridAllowed"] = true,
 				["wrapXOffset"] = 1,
 				["wrapYOffset"] = 1,
+				["power"] = {
+					["enable"] = false,
+				},
+				portrait = {
+					enable = false,
+				},
 			},
 			["raid10"] = {
 				["gridAllowed"] = true,
diff --git a/Interface/AddOns/SVUI_AnsweringService/SVUI_AnsweringService.lua b/Interface/AddOns/SVUI_AnsweringService/SVUI_AnsweringService.lua
index 32b82e1..cdb4e40 100644
--- a/Interface/AddOns/SVUI_AnsweringService/SVUI_AnsweringService.lua
+++ b/Interface/AddOns/SVUI_AnsweringService/SVUI_AnsweringService.lua
@@ -58,6 +58,8 @@ PLUGIN = Registry:NewPrototype(SVUIAddOnName)
 local SCHEMA = PLUGIN.___schema;

 _G["WhisperVillain"] = PLUGIN;
+
+local PlayersName = UnitName("player")
 --[[
 ##########################################################
 LOCAL VARS
@@ -684,7 +686,11 @@ do
 		if(not outbound) then
 			outbound = PhraseSearch(sInput, mapkey, data)
 		end
-		return outbound
+		if(SV.db[SCHEMA].prefix == true) then
+			return ("%s's Answering Service: %s"):format(PlayersName, outbound)
+		else
+			return outbound
+		end
 	end

 	function PLUGIN:TakeAMessage(caller, inbound)
diff --git a/Interface/AddOns/SVUI_ConfigOMatic/modules/units/core.lua b/Interface/AddOns/SVUI_ConfigOMatic/modules/units/core.lua
index 8ed9bfe..819fe39 100644
--- a/Interface/AddOns/SVUI_ConfigOMatic/modules/units/core.lua
+++ b/Interface/AddOns/SVUI_ConfigOMatic/modules/units/core.lua
@@ -1545,6 +1545,19 @@ SV.Options.args.SVUnit = {
 								MOD:ChangeDBVar(value, key[#key]);
 							end
 						},
+						groupOORAlpha = {
+							order = 7,
+							name = L["Group Range Fading"],
+							desc = L["The transparency of group units that are out of range."],
+							type = "range",
+							min = 0,
+							max = 1,
+							step = 0.01,
+							width = "full",
+							set = function(key, value)
+								MOD:ChangeDBVar(value, key[#key]);
+							end
+						},
 					}
 				},
 				backgroundGroup = {
diff --git a/Interface/AddOns/SVUI_LogOMatic/SVUI_LogOMatic.lua b/Interface/AddOns/SVUI_LogOMatic/SVUI_LogOMatic.lua
index a95dac1..50f1949 100644
--- a/Interface/AddOns/SVUI_LogOMatic/SVUI_LogOMatic.lua
+++ b/Interface/AddOns/SVUI_LogOMatic/SVUI_LogOMatic.lua
@@ -284,7 +284,7 @@ BUILD FUNCTION
 ##########################################################
 ]]--
 function PLUGIN:Load()
-	if not SV.db[SCHEMA].enable then return end
+	if IsAddOnLoaded("Altoholic") or not SV.db[SCHEMA].enable then return end

 	self.db = SV.db[SCHEMA]

diff --git a/Interface/AddOns/SVUI_StyleOMatic/addons/auctionhouse.lua b/Interface/AddOns/SVUI_StyleOMatic/addons/auctionhouse.lua
index 5d811ba..37941d4 100644
--- a/Interface/AddOns/SVUI_StyleOMatic/addons/auctionhouse.lua
+++ b/Interface/AddOns/SVUI_StyleOMatic/addons/auctionhouse.lua
@@ -103,11 +103,14 @@ local function AuctionStyle()
 	--ExactMatchCheckButton:SetCheckboxTemplate(true)

 	SideDressUpFrame:RemoveTextures(true)
-	SideDressUpFrame:SetPanelTemplate("Halftone")
-	SideDressUpFrame:Point("TOPLEFT", AuctionFrame, "TOPRIGHT", 7, 0)
+	SideDressUpFrame:Size(300, 400)
+	SideDressUpFrame:SetPoint("LEFT", AuctionFrame, "RIGHT", 16, 0)
+	SideDressUpFrame.SetPoint = SV.fubar
 	SideDressUpModel:RemoveTextures(true)
+	SideDressUpModel:SetAllPoints(SideDressUpFrame)
 	SideDressUpModel:SetFixedPanelTemplate("ModelComic")
 	SideDressUpModelResetButton:SetButtonTemplate()
+	SideDressUpModelResetButton:SetPoint("BOTTOM", SideDressUpModel, "BOTTOM", 0, 20)
 	STYLE:ApplyCloseButtonStyle(SideDressUpModelCloseButton)

 	AuctionProgressFrame:RemoveTextures()
diff --git a/Interface/AddOns/SVUI_StyleOMatic/addons/calendar.lua b/Interface/AddOns/SVUI_StyleOMatic/addons/calendar.lua
index f65006b..dc0a3f4 100644
--- a/Interface/AddOns/SVUI_StyleOMatic/addons/calendar.lua
+++ b/Interface/AddOns/SVUI_StyleOMatic/addons/calendar.lua
@@ -40,7 +40,7 @@ local function CalendarStyle()
 	STYLE:ApplyWindowStyle(CalendarFrame)

 	STYLE:ApplyCloseButtonStyle(CalendarCloseButton)
-	CalendarCloseButton:Point("TOPRIGHT", CalendarFrame, "TOPRIGHT", -4, -4)
+	CalendarCloseButton:SetPoint("TOPRIGHT", CalendarFrame, "TOPRIGHT", -4, -4)
 	STYLE:ApplyPaginationStyle(CalendarPrevMonthButton)
 	STYLE:ApplyPaginationStyle(CalendarNextMonthButton)

@@ -55,24 +55,24 @@ local function CalendarStyle()
 			local cftext = _G["CalendarFilterFrameText"]
 			if(cftext) then
 				cftext:ClearAllPoints()
-				cftext:Point("RIGHT", cfbutton, "LEFT", -2, 0)
+				cftext:SetPoint("RIGHT", cfbutton, "LEFT", -2, 0)
 			end

 			local cfbutton = _G["CalendarFilterButton"];
 			if(cfbutton) then
 				cfbutton:ClearAllPoints()
-				cfbutton:Point("RIGHT", cfframe, "RIGHT", -10, 3)
+				cfbutton:SetPoint("RIGHT", cfframe, "RIGHT", -10, 3)
 				STYLE:ApplyPaginationStyle(cfbutton, true)
-				cfframe.Panel:Point("TOPLEFT", 20, 2)
-				cfframe.Panel:Point("BOTTOMRIGHT", cfbutton, "BOTTOMRIGHT", 2, -2)
+				cfframe.Panel:SetPoint("TOPLEFT", 20, 2)
+				cfframe.Panel:SetPoint("BOTTOMRIGHT", cfbutton, "BOTTOMRIGHT", 2, -2)
 			end
 		end
 	end

 	local l = CreateFrame("Frame", "CalendarFrameBackdrop", CalendarFrame)
 	l:SetFixedPanelTemplate("Default")
-	l:Point("TOPLEFT", 10, -72)
-	l:Point("BOTTOMRIGHT", -8, 3)
+	l:SetPoint("TOPLEFT", 10, -72)
+	l:SetPoint("BOTTOMRIGHT", -8, 3)
 	CalendarContextMenu:SetFixedPanelTemplate("Default")
 	hooksecurefunc(CalendarContextMenu, "SetBackdropColor", function(f, r, g, b, a)
 		if r ~= 0 or g ~= 0 or b ~= 0 or a ~= 0.5 then
@@ -89,12 +89,12 @@ local function CalendarStyle()
 	end
 	CalendarCreateEventFrame:RemoveTextures()
 	CalendarCreateEventFrame:SetFixedPanelTemplate("Transparent", true)
-	CalendarCreateEventFrame:Point("TOPLEFT", CalendarFrame, "TOPRIGHT", 3, -24)
+	CalendarCreateEventFrame:SetPoint("TOPLEFT", CalendarFrame, "TOPRIGHT", 3, -24)
 	CalendarCreateEventTitleFrame:RemoveTextures()
 	CalendarCreateEventCreateButton:SetButtonTemplate()
 	CalendarCreateEventMassInviteButton:SetButtonTemplate()
 	CalendarCreateEventInviteButton:SetButtonTemplate()
-	CalendarCreateEventInviteButton:Point("TOPLEFT", CalendarCreateEventInviteEdit, "TOPRIGHT", 4, 1)
+	CalendarCreateEventInviteButton:SetPoint("TOPLEFT", CalendarCreateEventInviteEdit, "TOPRIGHT", 4, 1)
 	CalendarCreateEventInviteEdit:Width(CalendarCreateEventInviteEdit:GetWidth()-2)
 	CalendarCreateEventInviteList:RemoveTextures()
 	CalendarCreateEventInviteList:SetFixedPanelTemplate("Default")
@@ -126,7 +126,7 @@ local function CalendarStyle()
 			F:SetTexture("Interface\\Glues\\CharacterCreate\\UI-CharacterCreate-Classes")
 			F:SetTexCoord(E[1]+0.015, E[2]-0.02, E[3]+0.018, E[4]-0.02)
 		end
-		CalendarClassButton1:Point("TOPLEFT", CalendarClassButtonContainer, "TOPLEFT", 5, 0)
+		CalendarClassButton1:SetPoint("TOPLEFT", CalendarClassButtonContainer, "TOPLEFT", 5, 0)
 		CalendarClassTotalsButton:RemoveTextures()
 		CalendarClassTotalsButton:SetPanelTemplate("Default")
 	end)
@@ -148,17 +148,17 @@ local function CalendarStyle()
 	CalendarMassInviteGuildMaxLevelEdit:SetEditboxTemplate()
 	CalendarViewRaidFrame:RemoveTextures()
 	CalendarViewRaidFrame:SetFixedPanelTemplate("Transparent", true)
-	CalendarViewRaidFrame:Point("TOPLEFT", CalendarFrame, "TOPRIGHT", 3, -24)
+	CalendarViewRaidFrame:SetPoint("TOPLEFT", CalendarFrame, "TOPRIGHT", 3, -24)
 	CalendarViewRaidTitleFrame:RemoveTextures()
 	STYLE:ApplyCloseButtonStyle(CalendarViewRaidCloseButton)
 	CalendarViewHolidayFrame:RemoveTextures(true)
 	CalendarViewHolidayFrame:SetFixedPanelTemplate("Transparent", true)
-	CalendarViewHolidayFrame:Point("TOPLEFT", CalendarFrame, "TOPRIGHT", 3, -24)
+	CalendarViewHolidayFrame:SetPoint("TOPLEFT", CalendarFrame, "TOPRIGHT", 3, -24)
 	CalendarViewHolidayTitleFrame:RemoveTextures()
 	STYLE:ApplyCloseButtonStyle(CalendarViewHolidayCloseButton)
 	CalendarViewEventFrame:RemoveTextures()
 	CalendarViewEventFrame:SetFixedPanelTemplate("Transparent", true)
-	CalendarViewEventFrame:Point("TOPLEFT", CalendarFrame, "TOPRIGHT", 3, -24)
+	CalendarViewEventFrame:SetPoint("TOPLEFT", CalendarFrame, "TOPRIGHT", 3, -24)
 	CalendarViewEventTitleFrame:RemoveTextures()
 	CalendarViewEventDescriptionContainer:RemoveTextures()
 	CalendarViewEventDescriptionContainer:SetFixedPanelTemplate("Transparent", true)
diff --git a/Interface/AddOns/SVUI_StyleOMatic/common/methods.lua b/Interface/AddOns/SVUI_StyleOMatic/common/methods.lua
index 4ef8230..02607b8 100644
--- a/Interface/AddOns/SVUI_StyleOMatic/common/methods.lua
+++ b/Interface/AddOns/SVUI_StyleOMatic/common/methods.lua
@@ -131,7 +131,11 @@ local CloseButton_OnLeave = function(self)
 end

 function STYLE:ApplyCloseButtonStyle(this, anchor)
-	if not this then return end
+	if not this then return end
+	this:RemoveTextures()
+	this:SetButtonTemplate(nil, 1, -7, -7, nil, "red")
+	this:SetFrameLevel(this:GetFrameLevel() + 4)
+	this:SetNormalTexture([[Interface\AddOns\SVUI\assets\artwork\Icons\CLOSE-BUTTON]])
     if not this.hookedColors then
         this:HookScript("OnEnter", CloseButton_OnEnter)
         this:HookScript("OnLeave", CloseButton_OnLeave)
@@ -589,20 +593,20 @@ function STYLE:ApplyAlertStyle(frame)
     alertpanel:SetAllPoints(frame)
     alertpanel:SetFrameLevel(frame:GetFrameLevel() - 1)
     alertpanel:SetBackdrop({
-        bgFile = "Interface\\AddOns\\SVUI\\assets\\artwork\\Template\\Alert\\ALERT-BG"
+        bgFile = [[Interface\AddOns\SVUI\assets\artwork\Template\Alert\ALERT-BG]]
     })
     alertpanel:SetBackdropColor(0.8, 0.2, 0.2)

     --[[ LEFT ]]--
     local left = alertpanel:CreateTexture(nil, "BORDER")
-    left:SetTexture("Interface\\AddOns\\SVUI\\assets\\artwork\\Template\\Alert\\ALERT-LEFT")
+    left:SetTexture([[Interface\AddOns\SVUI\assets\artwork\Template\Alert\ALERT-LEFT]])
     left:Point("TOPRIGHT", alertpanel,"TOPLEFT", 0, 0)
     left:Point("BOTTOMRIGHT", alertpanel, "BOTTOMLEFT", 0, 0)
     left:Width(frame:GetHeight())

     --[[ RIGHT ]]--
     local right = alertpanel:CreateTexture(nil, "BORDER")
-    right:SetTexture("Interface\\AddOns\\SVUI\\assets\\artwork\\Template\\Alert\\ALERT-RIGHT")
+    right:SetTexture([[Interface\AddOns\SVUI\assets\artwork\Template\Alert\ALERT-RIGHT]])
     right:SetVertexColor(0.8, 0.2, 0.2)
     right:Point("TOPLEFT", alertpanel,"TOPRIGHT", -1, 0)
     right:Point("BOTTOMLEFT", alertpanel, "BOTTOMRIGHT", -1, 0)
@@ -610,14 +614,14 @@ function STYLE:ApplyAlertStyle(frame)

     --[[ TOP ]]--
     local top = alertpanel:CreateTexture(nil, "BORDER")
-    top:SetTexture("Interface\\AddOns\\SVUI\\assets\\artwork\\Template\\Alert\\ALERT-TOP")
+    top:SetTexture([[Interface\AddOns\SVUI\assets\artwork\Template\Alert\ALERT-TOP]])
     top:Point("BOTTOMLEFT", alertpanel,"TOPLEFT", 0, 0)
     top:Point("BOTTOMRIGHT", alertpanel, "TOPRIGHT", 0, 0)
     top:Height(frame:GetHeight() * 0.5)

     --[[ BOTTOM ]]--
     local bottom = alertpanel:CreateTexture(nil, "BORDER")
-    bottom:SetTexture("Interface\\AddOns\\SVUI\\assets\\artwork\\Template\\Alert\\ALERT-BOTTOM")
+    bottom:SetTexture([[Interface\AddOns\SVUI\assets\artwork\Template\Alert\ALERT-BOTTOM]])
     bottom:Point("TOPLEFT", alertpanel,"BOTTOMLEFT", 0, 0)
     bottom:Point("TOPRIGHT", alertpanel, "BOTTOMRIGHT", 0, 0)
     bottom:Width(frame:GetHeight() * 0.5)
diff --git a/Interface/AddOns/SVUI_TrackingDevice/SVUI_TrackingDevice.lua b/Interface/AddOns/SVUI_TrackingDevice/SVUI_TrackingDevice.lua
index 48770b2..9e9be5e 100644
--- a/Interface/AddOns/SVUI_TrackingDevice/SVUI_TrackingDevice.lua
+++ b/Interface/AddOns/SVUI_TrackingDevice/SVUI_TrackingDevice.lua
@@ -78,7 +78,7 @@ BUILD
 ]]--
 function SVUI_TrackingDoodad_OnLoad()
     local frame = _G["SVUI_TrackingDoodad"]
-    frame.Border:SetGradient(unpack(SV.Media.gradient.dark))
+    --frame.Border:SetGradient(unpack(SV.Media.gradient.dark))
     frame.Arrow:SetVertexColor(0.1, 0.8, 0.8)
     frame.Range:SetFont(SV.Media.font.roboto, 14, "OUTLINE")
     frame.Range:SetTextColor(1, 1, 1, 0.75)