Quantcast

various changes to damage font handling and license files

Munglunch [03-26-15 - 18:38]
various changes to damage font handling and license files
Filename
SVUITheme_Simple/LICENSE.txt
SVUI_!Core/License.txt
SVUI_!Core/SVUI_!Core.xml
SVUI_!Core/assets/fonts/!DAMAGE.ttf
SVUI_!Core/assets/fonts/DAMAGE_TEXT_FONT.ttf
SVUI_!Core/libs/AceVillain/widgets/AceGUIContainer-Frame.lua
SVUI_!Core/libs/_SVUI_Lib/LUA.lua
SVUI_!Core/system/damage_text.lua
SVUI_!Core/system/funstuff.lua
SVUI_!Core/system/media.lua
SVUI_!Core/xml/widgets.xml
SVUI_!Options/License.txt
SVUI_ActionBars/LICENSE.txt
SVUI_Auras/LICENSE.txt
SVUI_Chat/LICENSE.txt
SVUI_CraftOMatic/License.txt
SVUI_FightOMatic/License.txt
SVUI_Inventory/LICENSE.txt
SVUI_Maps/LICENSE.txt
SVUI_NamePlates/LICENSE.txt
SVUI_QuestTracker/LICENSE.txt
SVUI_Skins/License.txt
SVUI_Skins/components/blizzard/quest.lua
SVUI_Tooltip/LICENSE.txt
SVUI_TrackOMatic/License.txt
SVUI_UnitFrames/LICENSE.txt
diff --git a/SVUITheme_Simple/LICENSE.txt b/SVUITheme_Simple/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUITheme_Simple/LICENSE.txt
+++ b/SVUITheme_Simple/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_!Core/License.txt b/SVUI_!Core/License.txt
index 9078d12..fd3bdf8 100644
--- a/SVUI_!Core/License.txt
+++ b/SVUI_!Core/License.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
@@ -28,4 +28,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 IN
-THE SOFTWARE.
\ No newline at end of file
+THE SOFTWARE.
diff --git a/SVUI_!Core/SVUI_!Core.xml b/SVUI_!Core/SVUI_!Core.xml
index a799ec3..4646e09 100644
--- a/SVUI_!Core/SVUI_!Core.xml
+++ b/SVUI_!Core/SVUI_!Core.xml
@@ -6,8 +6,9 @@
     <Include file="xml\styles.xml"/>
     <Include file="xml\widgets.xml"/>
     <Include file="xml\docks.xml"/>
+    <Script file="system\damage_text.lua"/>
     <Script file="system\core.lua"/>
-	<Script file="system\media.lua"/>
+	  <Script file="system\media.lua"/>
     <Script file="system\api.lua"/>
     <Script file="system\utilities.lua"/>
     <Script file="system\alerts.lua"/>
@@ -54,4 +55,4 @@

     <Script file="system\credits.lua"/>
     <Include file="filtering\_load.xml"/>
-</Ui>
\ No newline at end of file
+</Ui>
diff --git a/SVUI_!Core/assets/fonts/!DAMAGE.ttf b/SVUI_!Core/assets/fonts/!DAMAGE.ttf
deleted file mode 100644
index fb09813..0000000
Binary files a/SVUI_!Core/assets/fonts/!DAMAGE.ttf and /dev/null differ
diff --git a/SVUI_!Core/assets/fonts/DAMAGE_TEXT_FONT.ttf b/SVUI_!Core/assets/fonts/DAMAGE_TEXT_FONT.ttf
new file mode 100644
index 0000000..fb09813
Binary files /dev/null and b/SVUI_!Core/assets/fonts/DAMAGE_TEXT_FONT.ttf differ
diff --git a/SVUI_!Core/libs/AceVillain/widgets/AceGUIContainer-Frame.lua b/SVUI_!Core/libs/AceVillain/widgets/AceGUIContainer-Frame.lua
index d055f7b..e4b7d1e 100644
--- a/SVUI_!Core/libs/AceVillain/widgets/AceGUIContainer-Frame.lua
+++ b/SVUI_!Core/libs/AceVillain/widgets/AceGUIContainer-Frame.lua
@@ -194,7 +194,7 @@ local function SetHeadingStyle(frame)
 	top:SetPoint("TOPRIGHT", -1, 1)
 	top:SetHeight(2)

-	return backdrop
+	return backdrop
 end

 local function Constructor()
@@ -241,8 +241,9 @@ local function Constructor()

 	local titlebg = SetHeadingStyle(frame)

-	local title = CreateFrame("Frame", nil, titlebg)
+	local title = CreateFrame("Frame", nil, frame)
 	title:EnableMouse(true)
+	title:SetFrameLevel(titlebg:GetFrameLevel() + 20)
 	title:SetScript("OnMouseDown", Title_OnMouseDown)
 	title:SetScript("OnMouseUp", LayoutSizer_OnMouseUp)
 	title:SetAllPoints(titlebg)
diff --git a/SVUI_!Core/libs/_SVUI_Lib/LUA.lua b/SVUI_!Core/libs/_SVUI_Lib/LUA.lua
index 9503e71..d882c72 100644
--- a/SVUI_!Core/libs/_SVUI_Lib/LUA.lua
+++ b/SVUI_!Core/libs/_SVUI_Lib/LUA.lua
@@ -1,5 +1,5 @@
 --[[
-These are some appended LUA methods used frequently
+These are some appended LUA methods used frequently
 --]]
 local _G            = getfenv(0)
 local select        = _G.select;
@@ -36,6 +36,13 @@ local math          = _G.math;
 local floor         = math.floor;
 local huge          = math.huge;
 -------------------------------------------------------------------
+--FILE UTILITY
+
+function file_exists(name)
+   local f = io.open(name, "r")
+   if f ~= nil then io.close(f) return true else return false end
+end
+-------------------------------------------------------------------
 --MATH METHODS

 function math.parsefloat(value, decimal)
@@ -58,11 +65,11 @@ function pickle(t)
 end

 Pickle = {
-  clone = function (t) local nt={}; for i, v in pairs(t) do nt[i]=v end return nt end
+  clone = function (t) local nt={}; for i, v in pairs(t) do nt[i]=v end return nt end
 }

 function Pickle:pickle_(root)
-  if type(root) ~= "table" then
+  if type(root) ~= "table" then
     error("can only pickle tables, not ".. type(root).."s")
   end
   self._tableToRef = {}
@@ -91,12 +98,12 @@ function Pickle:value_(v)
   elseif vtype == "boolean" then return tostring(v)
   elseif vtype == "table" then return "{"..self:ref_(v).."}"
   else --error("pickle a "..type(v).." is not supported")
-  end
+  end
 end

 function Pickle:ref_(t)
   local ref = self._tableToRef[t]
-  if not ref then
+  if not ref then
     if t == self then error("can't pickle the pickle class") end
     table.insert(self._refToTable, t)
     ref = table.getn(self._refToTable)
@@ -115,7 +122,7 @@ function unpickle(s)
   end
   local gentables = loadstring("return "..s)
   local tables = gentables()
-
+
   for tnum = 1, table.getn(tables) do
     local t = tables[tnum]
     local tcopy = {}; for i, v in pairs(t) do tcopy[i] = v end
@@ -136,7 +143,7 @@ end
 local char_table='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'

 function string.encode(data)
-    return ((data:gsub('.', function(x)
+    return ((data:gsub('.', function(x)
         local r,b='',x:byte()
         for i=8,1,-1 do r=r..(b%2^i-b%2^(i-1)>0 and '1' or '0') end
         return r;
@@ -507,7 +514,7 @@ end
 function table.tostring(tbl, pretty)
 	if(pretty) then
 		return prettify(tbl)
-	else
+	else
 		local result, done = {}, {}
 		for k, v in ipairs(tbl) do
 			tinsert(result, table.val_to_str(v))
@@ -537,4 +544,4 @@ function table.copy(targetTable, deepCopy, mergeTable)
 	setmetatable(replacementTable, table.copy(getmetatable(targetTable), deepCopy, mergeTable))
 	mergeTable[targetTable] = replacementTable;
 	return replacementTable
-end
\ No newline at end of file
+end
diff --git a/SVUI_!Core/system/damage_text.lua b/SVUI_!Core/system/damage_text.lua
new file mode 100644
index 0000000..4a0af0d
--- /dev/null
+++ b/SVUI_!Core/system/damage_text.lua
@@ -0,0 +1,49 @@
+--[[
+##########################################################
+S V U I   By: Munglunch
+##########################################################
+LOCALIZED LUA FUNCTIONS
+##########################################################
+]]--
+--[[ GLOBALS ]]--
+local _G 		= _G;
+local type 	= type;
+--[[
+##########################################################
+FORCIBLY CHANGE THE GAME WORLD COMBAT TEXT FONT
+##########################################################
+]]--
+local FONT_NAME = "DAMAGE_TEXT_FONT";
+
+local MAIN_DIR = "Fonts\\%s.ttf";
+local BASE_DIR = "Interface\\AddOns\\SVUI_!Core\\%s.ttf";
+local FONT_DIR = "Interface\\AddOns\\SVUI_!Core\\assets\\fonts\\%s.ttf";
+
+--local FONTSIZE = 32;
+local USER_FONT1 = BASE_DIR:format(FONT_NAME);
+local USER_FONT2 = MAIN_DIR:format(FONT_NAME);
+local SVUI_FONT  = FONT_DIR:format(FONT_NAME);
+local FALLBACK   = DEFAULT_FONT_DIR:format(DEFAULT_FONT_NAME);
+
+local function ForceDamageFont()
+	local NEW_DAMAGE_FONT;
+	if(file_exists and type(file_exists) == 'function') then
+		if(file_exists(SVUI_FONT)) then
+			NEW_DAMAGE_FONT = SVUI_FONT;
+		elseif(file_exists(USER_FONT1)) then
+			NEW_DAMAGE_FONT = USER_FONT1;
+		elseif(file_exists(USER_FONT2)) then
+			NEW_DAMAGE_FONT = USER_FONT2;
+		end
+
+		if(not NEW_DAMAGE_FONT) then return end
+	else
+		NEW_DAMAGE_FONT = "Interface\\AddOns\\SVUI_!Core\\assets\\fonts\\DAMAGE_TEXT_FONT.ttf"
+	end
+
+	_G.DAMAGE_TEXT_FONT = NEW_DAMAGE_FONT
+	_G.COMBAT_TEXT_CRIT_SCALE_TIME = 0.7;
+	_G.COMBAT_TEXT_SPACING = 15;
+end
+
+ForceDamageFont();
diff --git a/SVUI_!Core/system/funstuff.lua b/SVUI_!Core/system/funstuff.lua
index 67cd97e..e24a253 100644
--- a/SVUI_!Core/system/funstuff.lua
+++ b/SVUI_!Core/system/funstuff.lua
@@ -480,6 +480,7 @@ local function InitializeFunStuff()
 	comix.Basic.tex:SetTexCoord(0,0.25,0,0.25)
 	SV.Animate:Kapow(comix.Basic, true, true)
 	comix.Basic:SetAlpha(0)
+	comix.Basic:Show()
 	comix.Basic.anim[2]:SetScript("OnFinished", Comix_OnUpdate)

 	comix.Deluxe:SetParent(SV.Screen)
@@ -487,12 +488,14 @@ local function InitializeFunStuff()
 	comix.Deluxe.tex:SetTexCoord(0,0.25,0,0.25)
 	SV.Animate:RandomSlide(comix.Deluxe, true)
 	comix.Deluxe:SetAlpha(0)
+	comix.Deluxe:Show()
 	comix.Deluxe.anim[3]:SetScript("OnFinished", Comix_OnUpdate)

 	comix.Premium:SetParent(SV.Screen)
 	comix.Premium.tex:SetTexCoord(0,0.25,0,0.25)
 	SV.Animate:RandomSlide(comix.Premium, true)
 	comix.Premium:SetAlpha(0)
+	comix.Premium:Show()
 	comix.Premium.anim[3]:SetScript("OnFinished", Comix_OnUpdate)

 	comix.Premium.bg.tex:SetTexCoord(0,0.25,0,0.25)
diff --git a/SVUI_!Core/system/media.lua b/SVUI_!Core/system/media.lua
index 8169ee4..e9ec3ea 100644
--- a/SVUI_!Core/system/media.lua
+++ b/SVUI_!Core/system/media.lua
@@ -557,21 +557,6 @@ do
 end
 --[[
 ##########################################################
-FORCIBLY CHANGE THE GAME WORLD COMBAT TEXT FONT
-##########################################################
-]]--
-local SVUI_DAMAGE_FONT = "Interface\\AddOns\\SVUI_!Core\\assets\\fonts\\!DAMAGE.ttf";
-local SVUI_DAMAGE_FONTSIZE = 32;
-
-local function ForceDamageFont()
-	_G.DAMAGE_TEXT_FONT = SVUI_DAMAGE_FONT
-	_G.COMBAT_TEXT_CRIT_SCALE_TIME = 0.7;
-	_G.COMBAT_TEXT_SPACING = 15;
-end
-
-ForceDamageFont();
---[[
-##########################################################
 SOME CORE VARS
 ##########################################################
 ]]--
@@ -581,7 +566,7 @@ if(GetLocale() ~= "enUS") then
 end
 SV.SplashImage 	= [[Interface\AddOns\SVUI_!Core\assets\textures\SPLASH]];
 SV.BaseTexture 	= [[Interface\AddOns\SVUI_!Core\assets\backgrounds\TRANSPARENT]];
-SV.NoTexture 	= [[Interface\AddOns\SVUI_!Core\assets\textures\EMPTY]];
+SV.NoTexture 	  = [[Interface\AddOns\SVUI_!Core\assets\textures\EMPTY]];
 --[[
 ##########################################################
 CORE FUNCTIONS
diff --git a/SVUI_!Core/xml/widgets.xml b/SVUI_!Core/xml/widgets.xml
index 5d84fcb..0bb7390 100644
--- a/SVUI_!Core/xml/widgets.xml
+++ b/SVUI_!Core/xml/widgets.xml
@@ -1,7 +1,7 @@
 <Ui xmlns="http://www.blizzard.com/wow/ui/">

     <Frame name="SVUI_DropdownFrame" frameStrata="DIALOG" hidden="true" />
-
+
     <Frame name="SVUI_MailMinion" parent="InboxFrame" hidden="true">
         <Size x="150" y="25"/>
         <Anchors>
@@ -77,7 +77,7 @@
                 </FontString>
             </Layer>
         </Layers>
-        <Frames>
+        <Frames>
             <EditBox name="$parentSetX" inherits="InputBoxTemplate" autoFocus="false">
                 <Size x="50" y="17"/>
                 <Anchors>
@@ -387,7 +387,7 @@

     <Frame name="SVUI_ComixFrame" frameStrata="DIALOG" hidden="true" />

-    <Frame name="SVUI_ComixPopup1" frameStrata="DIALOG">
+    <Frame name="SVUI_ComixPopup1" frameStrata="DIALOG" hidden="true">
         <Size x="100" y="100"/>
         <Anchors>
             <Anchor point="CENTER" relativePoint="CENTER" x="0" y="0" />
@@ -399,7 +399,7 @@
         </Layers>
     </Frame>

-    <Frame name="SVUI_ComixPopup2" frameStrata="DIALOG">
+    <Frame name="SVUI_ComixPopup2" frameStrata="DIALOG" hidden="true">
         <Size x="100" y="100"/>
         <Anchors>
             <Anchor point="BOTTOM" relativePoint="BOTTOM" x="0" y="100" />
@@ -411,7 +411,7 @@
         </Layers>
     </Frame>

-    <Frame name="SVUI_ComixPopup3" frameStrata="DIALOG">
+    <Frame name="SVUI_ComixPopup3" frameStrata="DIALOG" hidden="true">
         <Size x="100" y="100"/>
         <Anchors>
             <Anchor point="CENTER" relativePoint="CENTER" x="0" y="0" />
@@ -488,7 +488,7 @@
                 </FontString>
             </Layer>
         </Layers>
-        <Frames>
+        <Frames>
             <ScrollFrame name="$parentDialog" parentKey="Dialog" inherits="MinimalScrollFrameTemplate">
                 <Size x="443" y="484"/>
                 <Anchors>
@@ -616,7 +616,7 @@
                         </FontString>
                     </Layer>
                 </Layers>
-            </Frame>
+            </Frame>
             <ScrollFrame name="$parentDialog" parentKey="Dialog" inherits="MinimalScrollFrameTemplate">
                 <Size x="443" y="484"/>
                 <Anchors>
@@ -702,4 +702,4 @@
             </OnDragStop>
         </Scripts>
     </Frame>
-</Ui>
\ No newline at end of file
+</Ui>
diff --git a/SVUI_!Options/License.txt b/SVUI_!Options/License.txt
index 44b0dd3..fd3bdf8 100644
--- a/SVUI_!Options/License.txt
+++ b/SVUI_!Options/License.txt
@@ -1,23 +1,31 @@
-###############################################################################
-# S V U I   By: Munglunch
-###############################################################################

-ModKit_!Options License Copyright 2014 http://wowinterface.com
-
-The contents of this addon, excluding third-party resources, are
-copyrighted to their authors with all rights reserved.
-
-Authors of this addon hereby grant you the following rights:
-
-1. 	You may NOT make any modification inside this addon. If you want
-	to create your own edited version, please create it from outside.
-
-2. 	Do not modify the name of this addon, including the addon folders.
-
-3. 	This copyright notice shall be included in all copies or substantial
-	portions of the Software.
-
-All rights not explicitly addressed in this license are reserved by
-the copyright holders.
-
-You can write Munglunch at Wowinterface.com for reporting abuse / bugs.
\ No newline at end of file
+The MIT License
+
+Copyright (c) 2010, Munglunch (Steve Jackson)
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy
+of this software and associated documentation files (the "Software"), to
+deal
+in the Software without restriction, including without limitation the
+rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN
+THE SOFTWARE.
diff --git a/SVUI_ActionBars/LICENSE.txt b/SVUI_ActionBars/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_ActionBars/LICENSE.txt
+++ b/SVUI_ActionBars/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_Auras/LICENSE.txt b/SVUI_Auras/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_Auras/LICENSE.txt
+++ b/SVUI_Auras/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_Chat/LICENSE.txt b/SVUI_Chat/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_Chat/LICENSE.txt
+++ b/SVUI_Chat/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_CraftOMatic/License.txt b/SVUI_CraftOMatic/License.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_CraftOMatic/License.txt
+++ b/SVUI_CraftOMatic/License.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_FightOMatic/License.txt b/SVUI_FightOMatic/License.txt
index cc92e9b..fd3bdf8 100644
--- a/SVUI_FightOMatic/License.txt
+++ b/SVUI_FightOMatic/License.txt
@@ -1,34 +1,31 @@
-###############################################################################
-#_____/\\\\\\\\\\\____/\\\________/\\\__/\\\________/\\\__/\\\\\\\\\\\_       #
-# ___/\\\/////////\\\_\/\\\_______\/\\\_\/\\\_______\/\\\_\/////\\\///__      #
-#  __\//\\\______\///__\//\\\______/\\\__\/\\\_______\/\\\_____\/\\\_____     #
-#   ___\////\\\__________\//\\\____/\\\___\/\\\_______\/\\\_____\/\\\_____    #
-#    ______\////\\\________\//\\\__/\\\____\/\\\_______\/\\\_____\/\\\_____   #
-#     _________\////\\\______\//\\\/\\\_____\/\\\_______\/\\\_____\/\\\_____  #
-#      __/\\\______\//\\\______\//\\\\\______\//\\\______/\\\______\/\\\_____ #
-#       _\///\\\\\\\\\\\/________\//\\\________\///\\\\\\\\\/____/\\\\\\\\\\\_#
-#        ___\///////////___________\///___________\/////////_____\///////////_#
-###############################################################################
-# S U P E R - V I L L A I N - U I   By: Munglunch                             #
-###############################################################################

-SVUI_FightOMatic License Copyright 2014 http://wowinterface.com
-
-The contents of this addon, excluding third-party resources, are
-copyrighted to their authors with all rights reserved.
-
-Authors of this addon hereby grant you the following rights:
-
-1. 	You may NOT make any modification inside this addon. If you want
-	to create your own edited version, please create it from outside.
-
-2. 	Do not modify the name of this addon, including the addon folders.
-
-3. 	This copyright notice shall be included in all copies or substantial
-	portions of the Software.
-
-All rights not explicitly addressed in this license are reserved by
-the copyright holders.
-
-You can write Munglunch at Wowinterface.com for reporting abuse / bugs,
-or regarding grants allowed for this license.
\ No newline at end of file
+The MIT License
+
+Copyright (c) 2010, Munglunch (Steve Jackson)
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy
+of this software and associated documentation files (the "Software"), to
+deal
+in the Software without restriction, including without limitation the
+rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN
+THE SOFTWARE.
diff --git a/SVUI_Inventory/LICENSE.txt b/SVUI_Inventory/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_Inventory/LICENSE.txt
+++ b/SVUI_Inventory/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_Maps/LICENSE.txt b/SVUI_Maps/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_Maps/LICENSE.txt
+++ b/SVUI_Maps/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_NamePlates/LICENSE.txt b/SVUI_NamePlates/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_NamePlates/LICENSE.txt
+++ b/SVUI_NamePlates/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_QuestTracker/LICENSE.txt b/SVUI_QuestTracker/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_QuestTracker/LICENSE.txt
+++ b/SVUI_QuestTracker/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_Skins/License.txt b/SVUI_Skins/License.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_Skins/License.txt
+++ b/SVUI_Skins/License.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_Skins/components/blizzard/quest.lua b/SVUI_Skins/components/blizzard/quest.lua
index 91e728f..517095c 100644
--- a/SVUI_Skins/components/blizzard/quest.lua
+++ b/SVUI_Skins/components/blizzard/quest.lua
@@ -1,4 +1,4 @@
---[[
+l--[[
 ##############################################################################
 S V U I   By: Munglunch
 ##############################################################################
@@ -125,12 +125,9 @@ local function QuestFrameStyle()
 	QuestInfoItemHighlight:ModSize(148, 40)

 	local choiceBG = QuestInfoItemHighlight:CreateTexture(nil, "BACKGROUND")
-	choiceBG:SetPoint("CENTER", QuestInfoItemHighlight, "CENTER", 0, 0)
-	choiceBG:ModSize(148, 40)
+	choiceBG:SetAllPoints(QuestInfoItemHighlight)
 	choiceBG:SetTexture(0.35, 1, 0, 0.35)

-	--QuestInfoItemHighlight:ModSize(142, 40)
-
 	local width = QuestLogPopupDetailFrameScrollFrame:GetWidth()
 	QuestLogPopupDetailFrame.ShowMapButton:SetWidth(width)
 	QuestLogPopupDetailFrame.ShowMapButton:SetStyle("Button")
diff --git a/SVUI_Tooltip/LICENSE.txt b/SVUI_Tooltip/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_Tooltip/LICENSE.txt
+++ b/SVUI_Tooltip/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy
diff --git a/SVUI_TrackOMatic/License.txt b/SVUI_TrackOMatic/License.txt
index 6832ca7..fd3bdf8 100644
--- a/SVUI_TrackOMatic/License.txt
+++ b/SVUI_TrackOMatic/License.txt
@@ -1,34 +1,31 @@
-###############################################################################
-#_____/\\\\\\\\\\\____/\\\________/\\\__/\\\________/\\\__/\\\\\\\\\\\_       #
-# ___/\\\/////////\\\_\/\\\_______\/\\\_\/\\\_______\/\\\_\/////\\\///__      #
-#  __\//\\\______\///__\//\\\______/\\\__\/\\\_______\/\\\_____\/\\\_____     #
-#   ___\////\\\__________\//\\\____/\\\___\/\\\_______\/\\\_____\/\\\_____    #
-#    ______\////\\\________\//\\\__/\\\____\/\\\_______\/\\\_____\/\\\_____   #
-#     _________\////\\\______\//\\\/\\\_____\/\\\_______\/\\\_____\/\\\_____  #
-#      __/\\\______\//\\\______\//\\\\\______\//\\\______/\\\______\/\\\_____ #
-#       _\///\\\\\\\\\\\/________\//\\\________\///\\\\\\\\\/____/\\\\\\\\\\\_#
-#        ___\///////////___________\///___________\/////////_____\///////////_#
-###############################################################################
-# S U P E R - V I L L A I N - U I   By: Munglunch                             #
-###############################################################################

-SVUI_TrackOMatic License Copyright 2014 http://wowinterface.com
-
-The contents of this addon, excluding third-party resources, are
-copyrighted to their authors with all rights reserved.
-
-Authors of this addon hereby grant you the following rights:
-
-1. 	You may NOT make any modification inside this addon. If you want
-	to create your own edited version, please create it from outside.
-
-2. 	Do not modify the name of this addon, including the addon folders.
-
-3. 	This copyright notice shall be included in all copies or substantial
-	portions of the Software.
-
-All rights not explicitly addressed in this license are reserved by
-the copyright holders.
-
-You can write Munglunch at Wowinterface.com for reporting abuse / bugs,
-or regarding grants allowed for this license.
\ No newline at end of file
+The MIT License
+
+Copyright (c) 2010, Munglunch (Steve Jackson)
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy
+of this software and associated documentation files (the "Software"), to
+deal
+in the Software without restriction, including without limitation the
+rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN
+THE SOFTWARE.
diff --git a/SVUI_UnitFrames/LICENSE.txt b/SVUI_UnitFrames/LICENSE.txt
index 9078d12..9ab8cc9 100644
--- a/SVUI_UnitFrames/LICENSE.txt
+++ b/SVUI_UnitFrames/LICENSE.txt
@@ -1,7 +1,7 @@

 The MIT License

-Copyright (c) <year> <copyright holders>
+Copyright (c) 2010, Munglunch (Steve Jackson)

 Permission is hereby granted, free of charge, to any person obtaining a
 copy