Quantcast

5.0.5

Munglunch [10-16-14 - 15:21]
5.0.5
Filename
Interface/AddOns/SVUI/assets/artwork/Icons/Thumbs.db
Interface/AddOns/SVUI/system/common.lua
Interface/AddOns/SVUI/system/timers.lua
Interface/AddOns/SVUI_StyleOMatic/components/blizzard/quest.lua
Interface/BUTTONS/Thumbs.db
diff --git a/Interface/AddOns/SVUI/assets/artwork/Icons/Thumbs.db b/Interface/AddOns/SVUI/assets/artwork/Icons/Thumbs.db
deleted file mode 100644
index 15d6ea3..0000000
Binary files a/Interface/AddOns/SVUI/assets/artwork/Icons/Thumbs.db and /dev/null differ
diff --git a/Interface/AddOns/SVUI/system/common.lua b/Interface/AddOns/SVUI/system/common.lua
index 122ff40..ae2b968 100644
--- a/Interface/AddOns/SVUI/system/common.lua
+++ b/Interface/AddOns/SVUI/system/common.lua
@@ -627,7 +627,8 @@ local function CreateButtonPanel(frame, noChecked, brightChecked)
     local cd = HasCooldown(frame:GetName())
     if cd then
         cd:ClearAllPoints()
-        cd:SetAllPoints()
+        cd:FillInner(frame.Panel)
+        cd:SetSwipeColor(0, 0, 0, 1)
     end
 end
 --[[
@@ -870,7 +871,8 @@ local function SetButtonTemplate(self, invisible, overridePadding, xOffset, yOff
     local cd = HasCooldown(self:GetName())
     if cd then
         cd:ClearAllPoints()
-        cd:SetAllPoints()
+        cd:FillInner(self.Panel)
+        cd:SetSwipeColor(0, 0, 0, 1)
     end
 end

diff --git a/Interface/AddOns/SVUI/system/timers.lua b/Interface/AddOns/SVUI/system/timers.lua
index b1f67d9..df74793 100644
--- a/Interface/AddOns/SVUI/system/timers.lua
+++ b/Interface/AddOns/SVUI/system/timers.lua
@@ -266,6 +266,7 @@ function Timers:AddCooldown(origin)
 	if(origin.HookedCooldown or not SV.db.general.cooldown) then return end
 	hooksecurefunc(origin, "SetCooldown", Cooldown_OnLoad)
 	origin.HookedCooldown = true
+	origin:SetHideCountdownNumbers(true)
 end

 SV.Timers = Timers;
\ No newline at end of file
diff --git a/Interface/AddOns/SVUI_StyleOMatic/components/blizzard/quest.lua b/Interface/AddOns/SVUI_StyleOMatic/components/blizzard/quest.lua
index 658766d..2b07918 100644
--- a/Interface/AddOns/SVUI_StyleOMatic/components/blizzard/quest.lua
+++ b/Interface/AddOns/SVUI_StyleOMatic/components/blizzard/quest.lua
@@ -72,12 +72,14 @@ local Hook_QuestInfo_Display = function(self, ...)
 		local item = _G[name]
 		if(item and item:IsShown()) then
 			local initialAnchor, anchorParent, relativeAnchor, xPosition, yPosition = item:GetPoint()
-			if(i == 1) then
-				item:Point(initialAnchor, anchorParent, relativeAnchor, 0, yPosition)
-			elseif(relativeAnchor == "BOTTOMLEFT") then
-				item:Point(initialAnchor, anchorParent, relativeAnchor, 0, -4)
-			else
-				item:Point(initialAnchor, anchorParent, relativeAnchor, 4, 0)
+			if(initialAnchor) then
+				if(i == 1) then
+					item:SetPoint(initialAnchor, anchorParent, relativeAnchor, 0, yPosition)
+				elseif(relativeAnchor == "BOTTOMLEFT") then
+					item:SetPoint(initialAnchor, anchorParent, relativeAnchor, 0, -4)
+				else
+					item:SetPoint(initialAnchor, anchorParent, relativeAnchor, 4, 0)
+				end
 			end
 			if(not item.isStyled) then
 				local cLvl = item:GetFrameLevel() + 1
@@ -211,7 +213,7 @@ local function QuestFrameStyle()
 	QuestInfoSkillPointFrame:SetBackdropColor(1, 1, 0, 0.5)
 	QuestInfoSkillPointFrameIconTexture:SetTexCoord(0.1, 0.9, 0.1, 0.9)
 	QuestInfoSkillPointFrameIconTexture:SetDrawLayer("OVERLAY")
-	QuestInfoSkillPointFrameIconTexture:Point("TOPLEFT", 2, -2)
+	QuestInfoSkillPointFrameIconTexture:SetPoint("TOPLEFT", 2, -2)
 	QuestInfoSkillPointFrameIconTexture:Size(QuestInfoSkillPointFrameIconTexture:GetWidth()-2, QuestInfoSkillPointFrameIconTexture:GetHeight()-2)
 	QuestInfoSkillPointFrameCount:SetDrawLayer("OVERLAY")
 	QuestInfoItemHighlight:RemoveTextures()
@@ -255,7 +257,7 @@ local function QuestFrameStyle()
 		i:Width(_G["QuestProgressItem"..j]:GetWidth() - 4)
 		texture:SetTexCoord(0.1, 0.9, 0.1, 0.9)
 		texture:SetDrawLayer("OVERLAY")
-		texture:Point("TOPLEFT", 2, -2)
+		texture:SetPoint("TOPLEFT", 2, -2)
 		texture:Size(texture:GetWidth() - 2, texture:GetHeight() - 2)
 		_G["QuestProgressItem"..j.."Count"]:SetDrawLayer("OVERLAY")
 	end
@@ -265,7 +267,7 @@ local function QuestFrameStyle()

 	QuestNPCModelTextFrame:RemoveTextures()
 	QuestNPCModelTextFrame:SetPanelTemplate("Default")
-	QuestNPCModelTextFrame.Panel:Point("TOPLEFT", QuestNPCModel.Panel, "BOTTOMLEFT", 0, -2)
+	QuestNPCModelTextFrame.Panel:SetPoint("TOPLEFT", QuestNPCModel.Panel, "BOTTOMLEFT", 0, -2)

 	hooksecurefunc("QuestFrame_ShowQuestPortrait", Hook_QuestNPCModel)

diff --git a/Interface/BUTTONS/Thumbs.db b/Interface/BUTTONS/Thumbs.db
deleted file mode 100644
index 9a524d6..0000000
Binary files a/Interface/BUTTONS/Thumbs.db and /dev/null differ