From b1aa995b423addd5f607436f28006122828856e8 Mon Sep 17 00:00:00 2001 From: HonorGoG Date: Sat, 11 Feb 2023 15:44:54 -0800 Subject: [PATCH] - TitanClassicAmmo: Change trigger event from PLAYER_LOGIN to PLAYER_ENTERING_WORLD as there may be a timing issue causing a problem with slot contents. - Updated toc to 1.5.1.20503 for release. --- TitanClassic/TitanClassic.toc | 4 ++-- TitanClassicAmmo/TitanClassicAmmo.lua | 12 ++++++------ TitanClassicAmmo/TitanClassicAmmo.toc | 4 ++-- TitanClassicBag/TitanClassicBag.toc | 4 ++-- TitanClassicClock/TitanClassicClock.toc | 4 ++-- TitanClassicGold/TitanClassicGold.toc | 4 ++-- TitanClassicLocation/TitanClassicLocation.toc | 4 ++-- TitanClassicLootType/TitanClassicLootType.toc | 4 ++-- .../TitanClassicPerformance.toc | 4 ++-- TitanClassicRegen/TitanClassicRegen.toc | 4 ++-- TitanClassicRepair/TitanClassicRepair.toc | 4 ++-- TitanClassicVolume/TitanClassicVolume.toc | 4 ++-- TitanClassicXP/TitanClassicXP.toc | 4 ++-- 13 files changed, 30 insertions(+), 30 deletions(-) diff --git a/TitanClassic/TitanClassic.toc b/TitanClassic/TitanClassic.toc index 755c940..f95dd92 100644 --- a/TitanClassic/TitanClassic.toc +++ b/TitanClassic/TitanClassic.toc @@ -1,7 +1,7 @@ ## Interface: 30401 -## Title: Titan Panel Classic |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic |cff00aa001.5.5.30401|r ## Author: Titan Panel Development Team -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## 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/TitanClassicAmmo/TitanClassicAmmo.lua b/TitanClassicAmmo/TitanClassicAmmo.lua index 2f2adf9..8cdb97d 100644 --- a/TitanClassicAmmo/TitanClassicAmmo.lua +++ b/TitanClassicAmmo/TitanClassicAmmo.lua @@ -165,8 +165,8 @@ function TitanPanelAmmoButton_OnLoad(self) }; self:SetScript("OnEvent", function(_, event, arg1, ...) - if event == "PLAYER_LOGIN" then - TitanPanelAmmoButton_PLAYER_LOGIN() + if event == "PLAYER_ENTERING_WORLD" then + TitanPanelAmmoButton_PLAYER_ENTERING_WORLD() elseif event == "UNIT_INVENTORY_CHANGED" then TitanPanelAmmoButton_UNIT_INVENTORY_CHANGED(arg1, ...) elseif event == "UPDATE_INVENTORY_DURABILITY" then @@ -178,13 +178,13 @@ function TitanPanelAmmoButton_OnLoad(self) end end) - TitanPanelAmmoButton:RegisterEvent("PLAYER_LOGIN") + TitanPanelAmmoButton:RegisterEvent("PLAYER_ENTERING_WORLD") end -function TitanPanelAmmoButton_PLAYER_LOGIN() +function TitanPanelAmmoButton_PLAYER_ENTERING_WORLD() -- Class check if class ~= "ROGUE" and class ~= "WARRIOR" and class ~= "HUNTER" then - TitanPanelAmmoButton_PLAYER_LOGIN = nil + TitanPanelAmmoButton_PLAYER_ENTERING_WORLD = nil ClrAmmoInfo() return end @@ -200,7 +200,7 @@ function TitanPanelAmmoButton_PLAYER_LOGIN() TitanPanelAmmoButton:RegisterEvent("UNIT_INVENTORY_CHANGED") TitanPanelAmmoButton:RegisterEvent("MERCHANT_CLOSED") TitanPanelAmmoButton:RegisterEvent("PLAYER_ENTERING_WORLD") - TitanPanelAmmoButton_PLAYER_LOGIN = nil + TitanPanelAmmoButton_PLAYER_ENTERING_WORLD = nil end function TitanPanelAmmoButton_UNIT_INVENTORY_CHANGED(arg1, ...) diff --git a/TitanClassicAmmo/TitanClassicAmmo.toc b/TitanClassicAmmo/TitanClassicAmmo.toc index 853d029..7e48e24 100644 --- a/TitanClassicAmmo/TitanClassicAmmo.toc +++ b/TitanClassicAmmo/TitanClassicAmmo.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fAmmo|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fAmmo|r] |cff00aa001.5.5.30401|r ## Notes: Adds an ammo monitor to Titan Panel ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicAmmo.xml \ No newline at end of file diff --git a/TitanClassicBag/TitanClassicBag.toc b/TitanClassicBag/TitanClassicBag.toc index 660becc..0ef7f36 100644 --- a/TitanClassicBag/TitanClassicBag.toc +++ b/TitanClassicBag/TitanClassicBag.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fBag|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fBag|r] |cff00aa001.5.5.30401|r ## Notes: Adds bag and free slot information to Titan Panel ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicBag.xml diff --git a/TitanClassicClock/TitanClassicClock.toc b/TitanClassicClock/TitanClassicClock.toc index 1f63134..af0cb91 100644 --- a/TitanClassicClock/TitanClassicClock.toc +++ b/TitanClassicClock/TitanClassicClock.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fClock|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fClock|r] |cff00aa001.5.5.30401|r ## Notes: Adds a clock to Titan Panel ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicClock.xml diff --git a/TitanClassicGold/TitanClassicGold.toc b/TitanClassicGold/TitanClassicGold.toc index 072f4ae..cbe62e3 100644 --- a/TitanClassicGold/TitanClassicGold.toc +++ b/TitanClassicGold/TitanClassicGold.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fGold|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fGold|r] |cff00aa001.5.5.30401|r ## Notes: Keeps track of all gold held by a player's toons on a per server/faction basis. ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: GoldSave ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicGold.xml diff --git a/TitanClassicLocation/TitanClassicLocation.toc b/TitanClassicLocation/TitanClassicLocation.toc index a229121..72aeb0b 100644 --- a/TitanClassicLocation/TitanClassicLocation.toc +++ b/TitanClassicLocation/TitanClassicLocation.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fLocation|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fLocation|r] |cff00aa001.5.5.30401|r ## Notes: Adds coordinates and location information to Titan Panel ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicLocation.xml diff --git a/TitanClassicLootType/TitanClassicLootType.toc b/TitanClassicLootType/TitanClassicLootType.toc index e65add1..23a815b 100644 --- a/TitanClassicLootType/TitanClassicLootType.toc +++ b/TitanClassicLootType/TitanClassicLootType.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fLootType|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fLootType|r] |cff00aa001.5.5.30401|r ## Notes: Adds group loot and instance difficulty information to Titan Panel ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: TitanClassicLootTypeSaved ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicLootType.xml diff --git a/TitanClassicPerformance/TitanClassicPerformance.toc b/TitanClassicPerformance/TitanClassicPerformance.toc index 21a96bc..050c35d 100644 --- a/TitanClassicPerformance/TitanClassicPerformance.toc +++ b/TitanClassicPerformance/TitanClassicPerformance.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fPerformance|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fPerformance|r] |cff00aa001.5.5.30401|r ## Notes: Adds FPS and Garbage collection information to Titan Panel ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicPerformance.xml diff --git a/TitanClassicRegen/TitanClassicRegen.toc b/TitanClassicRegen/TitanClassicRegen.toc index 3746493..11b088d 100644 --- a/TitanClassicRegen/TitanClassicRegen.toc +++ b/TitanClassicRegen/TitanClassicRegen.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fRegen|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fRegen|r] |cff00aa001.5.5.30401|r ## Notes: Adds a regen monitor to Titan panel to show HP/MANA regen ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicRegen.xml \ No newline at end of file diff --git a/TitanClassicRepair/TitanClassicRepair.toc b/TitanClassicRepair/TitanClassicRepair.toc index cfe81f6..1a9ed92 100644 --- a/TitanClassicRepair/TitanClassicRepair.toc +++ b/TitanClassicRepair/TitanClassicRepair.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fRepair|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fRepair|r] |cff00aa001.5.5.30401|r ## Notes: Provides a configurable durability display. Also adds the ability to auto repair items and inventory at vendors ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicRepair.xml diff --git a/TitanClassicVolume/TitanClassicVolume.toc b/TitanClassicVolume/TitanClassicVolume.toc index a014548..cceb2bc 100644 --- a/TitanClassicVolume/TitanClassicVolume.toc +++ b/TitanClassicVolume/TitanClassicVolume.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fVolume|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fVolume|r] |cff00aa001.5.5.30401|r ## Notes: Adds a volume control icon on your Titan Bar ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicVolume.xml diff --git a/TitanClassicXP/TitanClassicXP.toc b/TitanClassicXP/TitanClassicXP.toc index 1e62345..004e488 100644 --- a/TitanClassicXP/TitanClassicXP.toc +++ b/TitanClassicXP/TitanClassicXP.toc @@ -1,10 +1,10 @@ ## Interface: 30401 -## Title: Titan Panel Classic [|cffeda55fXP|r] |cff00aa001.5.4.30401|r +## Title: Titan Panel Classic [|cffeda55fXP|r] |cff00aa001.5.5.30401|r ## Notes: Adds information to Titan Panel about XP earned and time to level ## Author: Titan Panel Development Team (http://www.titanpanel.org) ## SavedVariables: ## OptionalDeps: ## Dependencies: TitanClassic -## Version: 1.5.4.30401 +## Version: 1.5.5.30401 ## X-Child-Of: TitanClassic TitanClassicXP.xml -- 1.7.9.5