diff --git a/Titan/Titan.toc b/Titan/Titan.toc index 4ce3be6..ba93fa1 100644 --- a/Titan/Titan.toc +++ b/Titan/Titan.toc @@ -1,7 +1,7 @@ -## Interface: 80000 -## Title: Titan Panel |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel |cff00aa005.15.2.80100|r ## Author: Titan Development Team -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## SavedVariables: TitanAll, TitanSettings, TitanSkins, ServerTimeOffsets, ServerHourFormat ## OptionalDeps: Ace3, AceGUI-3.0-SharedMediaWidgets, LibSharedMedia-3.0, LibQTip-1.0, !LibUIDropDownMenu ## Notes: Adds a display bar on the top and/or bottom of the screen. Allows users to show and control information/launcher plugins. diff --git a/Titan/libs/LibStub/LibStub.lua b/Titan/libs/LibStub/LibStub.lua index f5fc919..cfc97de 100755 --- a/Titan/libs/LibStub/LibStub.lua +++ b/Titan/libs/LibStub/LibStub.lua @@ -1,22 +1,13 @@ --- $Id: LibStub.lua 76 2007-09-03 01:50:17Z mikk $ -- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/wiki/LibStub for more info --- LibStub is hereby placed in the Public Domain --- Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke +-- LibStub is hereby placed in the Public Domain Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke local LIBSTUB_MAJOR, LIBSTUB_MINOR = "LibStub", 2 -- NEVER MAKE THIS AN SVN REVISION! IT NEEDS TO BE USABLE IN ALL REPOS! local LibStub = _G[LIBSTUB_MAJOR] --- Check to see is this version of the stub is obsolete if not LibStub or LibStub.minor < LIBSTUB_MINOR then LibStub = LibStub or {libs = {}, minors = {} } _G[LIBSTUB_MAJOR] = LibStub LibStub.minor = LIBSTUB_MINOR - -- LibStub:NewLibrary(major, minor) - -- major (string) - the major version of the library - -- minor (string or number ) - the minor version of the library - -- - -- returns nil if a newer or same version of the lib is already present - -- returns empty library object or old library object if upgrade is needed function LibStub:NewLibrary(major, minor) assert(type(major) == "string", "Bad argument #2 to `NewLibrary' (string expected)") minor = assert(tonumber(strmatch(minor, "%d+")), "Minor version must either be a number or contain a number.") @@ -27,12 +18,6 @@ if not LibStub or LibStub.minor < LIBSTUB_MINOR then return self.libs[major], oldminor end - -- LibStub:GetLibrary(major, [silent]) - -- major (string) - the major version of the library - -- silent (boolean) - if true, library is optional, silently return nil if its not found - -- - -- throws an error if the library can not be found (except silent is set) - -- returns the library object if found function LibStub:GetLibrary(major, silent) if not self.libs[major] and not silent then error(("Cannot find a library instance of %q."):format(tostring(major)), 2) @@ -40,12 +25,6 @@ if not LibStub or LibStub.minor < LIBSTUB_MINOR then return self.libs[major], self.minors[major] end - -- LibStub:IterateLibraries() - -- - -- Returns an iterator for the currently registered libraries - function LibStub:IterateLibraries() - return pairs(self.libs) - end - + function LibStub:IterateLibraries() return pairs(self.libs) end setmetatable(LibStub, { __call = LibStub.GetLibrary }) end diff --git a/TitanBag/TitanBag.toc b/TitanBag/TitanBag.toc index 93a1046..15b1b8e 100644 --- a/TitanBag/TitanBag.toc +++ b/TitanBag/TitanBag.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fBag|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fBag|r] |cff00aa005.15.2.80100|r ## Notes: Adds bag and free slot information to Titan Panel ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanBag.xml diff --git a/TitanClock/TitanClock.toc b/TitanClock/TitanClock.toc index ba3e1dd..b8c1fcd 100644 --- a/TitanClock/TitanClock.toc +++ b/TitanClock/TitanClock.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fClock|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fClock|r] |cff00aa005.15.2.80100|r ## Notes: Adds a clock to Titan Panel ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanClock.xml diff --git a/TitanGold/TitanGold.toc b/TitanGold/TitanGold.toc index 7460e77..ef09f5e 100644 --- a/TitanGold/TitanGold.toc +++ b/TitanGold/TitanGold.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fGold|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fGold|r] |cff00aa005.15.2.80100|r ## Notes: Keeps track of all gold held by a player's toons on a per server/faction basis. ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: GoldSave ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanGold.xml diff --git a/TitanLocation/TitanLocation.toc b/TitanLocation/TitanLocation.toc index 3539002..eebf05e 100644 --- a/TitanLocation/TitanLocation.toc +++ b/TitanLocation/TitanLocation.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fLocation|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fLocation|r] |cff00aa005.15.2.80100|r ## Notes: Adds coordinates and location information to Titan Panel ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanLocation.xml diff --git a/TitanLootType/TitanLootType.toc b/TitanLootType/TitanLootType.toc index b865107..1e0d351 100644 --- a/TitanLootType/TitanLootType.toc +++ b/TitanLootType/TitanLootType.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fLootType|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fLootType|r] |cff00aa005.15.2.80100|r ## Notes: Adds group loot and instance difficulty information to Titan Panel ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanLootType.xml diff --git a/TitanPerformance/TitanPerformance.toc b/TitanPerformance/TitanPerformance.toc index d926ed6..5a3723c 100644 --- a/TitanPerformance/TitanPerformance.toc +++ b/TitanPerformance/TitanPerformance.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fPerformance|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fPerformance|r] |cff00aa005.15.2.80100|r ## Notes: Adds FPS and Garbage collection information to Titan Panel ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanPerformance.xml diff --git a/TitanRepair/TitanRepair.toc b/TitanRepair/TitanRepair.toc index a9e022f..2ef03d7 100644 --- a/TitanRepair/TitanRepair.toc +++ b/TitanRepair/TitanRepair.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fRepair|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fRepair|r] |cff00aa005.15.2.80100|r ## Notes: Provides a configurable durability display. Also adds the ability to auto repair items and inventory at vendors ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanRepair.xml diff --git a/TitanVolume/TitanVolume.toc b/TitanVolume/TitanVolume.toc index 5127de9..9a6d17f 100644 --- a/TitanVolume/TitanVolume.toc +++ b/TitanVolume/TitanVolume.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fVolume|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fVolume|r] |cff00aa005.15.2.80100|r ## Notes: Adds a volume control icon on your Titan Bar ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanVolume.xml diff --git a/TitanXP/TitanXP.toc b/TitanXP/TitanXP.toc index adb824b..c74d7d3 100644 --- a/TitanXP/TitanXP.toc +++ b/TitanXP/TitanXP.toc @@ -1,10 +1,10 @@ -## Interface: 80000 -## Title: Titan Panel [|cffeda55fXP|r] |cff00aa005.15.1.80000|r +## Interface: 80100 +## Title: Titan Panel [|cffeda55fXP|r] |cff00aa005.15.2.80100|r ## Notes: Adds information to Titan Panel about XP earned and time to level ## Author: Titan Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: Titan -## Version: 5.15.1.80000 +## Version: 5.15.2.80100 ## X-Child-Of: Titan TitanXP.xml