From d77d3966d07bdad2237975b905743b51898fa080 Mon Sep 17 00:00:00 2001 From: "Johnny C. Lam" Date: Fri, 19 Jul 2013 05:33:30 +0000 Subject: [PATCH] Update copyright information for correctness. git-svn-id: svn://svn.curseforge.net/wow/ovale/mainline/trunk@978 d5049fe3-3747-40f7-a4b5-f36d6801af5f --- Ovale.lua | 5 +++-- OvaleActionBar.lua | 3 ++- OvaleAura.lua | 5 +++-- OvaleBestAction.lua | 5 +++-- OvaleComboPoints.lua | 2 +- OvaleCompile.lua | 5 +++-- OvaleCondition.lua | 5 +++-- OvaleDamageTaken.lua | 2 +- OvaleData.lua | 5 +++-- OvaleEnemies.lua | 3 ++- OvaleEquipement.lua | 5 +++-- OvaleFrame.lua | 3 ++- OvaleFuture.lua | 5 +++-- OvaleGUID.lua | 3 ++- OvaleIcone.lua | 3 ++- OvaleOptions.lua | 5 +++-- OvaleRecount.lua | 2 +- OvaleSkada.lua | 2 +- OvaleSpellDamage.lua | 3 ++- OvaleState.lua | 5 +++-- OvaleSwing.lua | 15 +++++++++++---- 21 files changed, 57 insertions(+), 34 deletions(-) diff --git a/Ovale.lua b/Ovale.lua index 5ef72a0..66cc6df 100644 --- a/Ovale.lua +++ b/Ovale.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2009, 2010, 2011, 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2009, 2010, 2011, 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]---------------------------------------------------------------------- local _, addonNamespace = ... Ovale = LibStub("AceAddon-3.0"):NewAddon(addonNamespace, "Ovale", "AceConsole-3.0", "AceEvent-3.0") diff --git a/OvaleActionBar.lua b/OvaleActionBar.lua index dce4f57..4b5c927 100644 --- a/OvaleActionBar.lua +++ b/OvaleActionBar.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- Keep data about the player action bars (key bindings mostly) local _, Ovale = ... diff --git a/OvaleAura.lua b/OvaleAura.lua index 04db796..cd63543 100644 --- a/OvaleAura.lua +++ b/OvaleAura.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- This addon keep the list of all the aura for all the units -- Fore each aura, it saves the state of the player when it was refreshed diff --git a/OvaleBestAction.lua b/OvaleBestAction.lua index 9e3599f..be18154 100644 --- a/OvaleBestAction.lua +++ b/OvaleBestAction.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... local OvaleBestAction = {} diff --git a/OvaleComboPoints.lua b/OvaleComboPoints.lua index d83d8eb..cabc92f 100644 --- a/OvaleComboPoints.lua +++ b/OvaleComboPoints.lua @@ -1,6 +1,6 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2012 Sidoine, Johnny C. Lam + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE diff --git a/OvaleCompile.lua b/OvaleCompile.lua index 5bbaa17..cef8867 100644 --- a/OvaleCompile.lua +++ b/OvaleCompile.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2009, 2010, 2011, 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2009, 2010, 2011, 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... local OvaleCompile = Ovale:NewModule("OvaleCompile", "AceEvent-3.0") diff --git a/OvaleCondition.lua b/OvaleCondition.lua index b84bbe8..ea735b0 100644 --- a/OvaleCondition.lua +++ b/OvaleCondition.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2012, 2013 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... local OvaleCondition = {} diff --git a/OvaleDamageTaken.lua b/OvaleDamageTaken.lua index 33e8030..e160ef9 100644 --- a/OvaleDamageTaken.lua +++ b/OvaleDamageTaken.lua @@ -5,7 +5,7 @@ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- This addon tracks the damage taken by the player from non-player sources. diff --git a/OvaleData.lua b/OvaleData.lua index f85ff5b..d689af0 100644 --- a/OvaleData.lua +++ b/OvaleData.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... local OvaleData = Ovale:NewModule("OvaleData", "AceEvent-3.0") diff --git a/OvaleEnemies.lua b/OvaleEnemies.lua index a364295..12f2453 100644 --- a/OvaleEnemies.lua +++ b/OvaleEnemies.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- Gather information about ennemies diff --git a/OvaleEquipement.lua b/OvaleEquipement.lua index 6f0cee9..659bf7c 100644 --- a/OvaleEquipement.lua +++ b/OvaleEquipement.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2011, 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2011, 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... local OvaleEquipement = Ovale:NewModule("OvaleEquipement", "AceEvent-3.0") diff --git a/OvaleFrame.lua b/OvaleFrame.lua index 287beb3..9542b7f 100644 --- a/OvaleFrame.lua +++ b/OvaleFrame.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority Copyright (C) 2009, 2010, 2011, 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... diff --git a/OvaleFuture.lua b/OvaleFuture.lua index cc2ce99..4029d3d 100644 --- a/OvaleFuture.lua +++ b/OvaleFuture.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Sidoine + Copyright (C) 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- The travelling missiles or spells that have been cast but whose effects were not still not applied diff --git a/OvaleGUID.lua b/OvaleGUID.lua index 46a2409..1dc0d8d 100644 --- a/OvaleGUID.lua +++ b/OvaleGUID.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- This addon translates a GUID to a target name -- Usage: OvaleGUID:GetUnitId(guid) diff --git a/OvaleIcone.lua b/OvaleIcone.lua index 865facb..e4234aa 100644 --- a/OvaleIcone.lua +++ b/OvaleIcone.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority Copyright (C) 2009, 2010, 2011, 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... diff --git a/OvaleOptions.lua b/OvaleOptions.lua index 2322fce..130b175 100644 --- a/OvaleOptions.lua +++ b/OvaleOptions.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2012, 2013 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- Ovale options and UI diff --git a/OvaleRecount.lua b/OvaleRecount.lua index 5f4ce37..39fb5e5 100644 --- a/OvaleRecount.lua +++ b/OvaleRecount.lua @@ -6,7 +6,7 @@ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... local OvaleRecount = Ovale:NewModule("OvaleRecount") diff --git a/OvaleSkada.lua b/OvaleSkada.lua index 50e98c4..509f07f 100644 --- a/OvaleSkada.lua +++ b/OvaleSkada.lua @@ -6,7 +6,7 @@ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- local _, Ovale = ... local Skada = LibStub("AceAddon-3.0"):GetAddon("Skada", true) diff --git a/OvaleSpellDamage.lua b/OvaleSpellDamage.lua index e9bbd8e..24f7a6f 100644 --- a/OvaleSpellDamage.lua +++ b/OvaleSpellDamage.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- Add-on that registers how many damage made the last spell cast by the player diff --git a/OvaleState.lua b/OvaleState.lua index 56b1faa..4949f00 100644 --- a/OvaleState.lua +++ b/OvaleState.lua @@ -1,11 +1,12 @@ --[[-------------------------------------------------------------------- Ovale Spell Priority - Copyright (C) 2012, 2013 Sidoine, Johnny C. Lam + Copyright (C) 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License in the LICENSE file accompanying this program. -----------------------------------------------------------------------]] +--]]-------------------------------------------------------------------- -- Keep the current state in the simulation diff --git a/OvaleSwing.lua b/OvaleSwing.lua index cc7c672..5e39867 100644 --- a/OvaleSwing.lua +++ b/OvaleSwing.lua @@ -1,4 +1,4 @@ ---[[ +--[[-------------------------------------------------------------------- Copyright (C) 2006-2007 Nymbia This program is free software; you can redistribute it and/or modify @@ -14,9 +14,16 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - - Modifed for Ovale -]] + + Modified for Ovale. + + Copyright (C) 2009, 2011, 2012 Sidoine + Copyright (C) 2012, 2013 Johnny C. Lam + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License in the LICENSE + file accompanying this program. +--]]-------------------------------------------------------------------- local _, Ovale = ... local OvaleSwing = Ovale:NewModule("OvaleSwing", "AceEvent-3.0") -- 1.7.9.5