From 1b54fefb6ddd5458a8938133ea72bcb53ce331b9 Mon Sep 17 00:00:00 2001 From: urnati Date: Thu, 4 May 2023 23:02:22 -0400 Subject: [PATCH] - Config : Clarify recent changes history - Couple more addon meta data changes --- Titan/TitanConfig.lua | 10 +++++++++- Titan/TitanLDB.lua | 2 +- Titan/TitanUtils.lua | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Titan/TitanConfig.lua b/Titan/TitanConfig.lua index e86f091..7089568 100644 --- a/Titan/TitanConfig.lua +++ b/Titan/TitanConfig.lua @@ -35,13 +35,21 @@ local notes = "" local changes = "" do -- recent change history changes = changes - ..TitanUtils_GetGoldText("7.00.02.100007 : 2023/03/31\n") + ..TitanUtils_GetGoldText("7.00.03.100007 : 2023/05/07\n") ..TitanUtils_GetGreenText("Titan : \n") ..TitanUtils_GetHighlightText("" .."- Beta Release\n" .."- Update for API changes in 10.1.\n" ) .."\n\n" + ..TitanUtils_GetGoldText("7.00.02.100007 : 2023/04/26\n") + ..TitanUtils_GetGreenText("Titan : \n") + ..TitanUtils_GetHighlightText("" + .."- Beta Release on Discord\n" + .."- Fix for events arriving before Bars initialized.\n" + .."- Add localized bar name to the plugin name in right click menu. Green if current Bar or Gold if not\n" + ) + .."\n\n" ..TitanUtils_GetGoldText("6.00.16.100100 : 2023/05/03\n") ..TitanUtils_GetGreenText("Titan : \n") ..TitanUtils_GetHighlightText("" diff --git a/Titan/TitanLDB.lua b/Titan/TitanLDB.lua index 82ac037..fb5fbd1 100644 --- a/Titan/TitanLDB.lua +++ b/Titan/TitanLDB.lua @@ -770,7 +770,7 @@ function TitanLDBCreateObject(self, name_str, obj) or (obj.version) or "" registry["version"]= addonversion; - registry["notes"]= (GetAddOnMetadata(tempname, "Notes") or "").."\n" + registry["notes"]= (TitanUtils_GetAddOnMetadata(tempname, "Notes") or "").."\n" -- end -- Depending on the LDB type set the control and saved Variables appropriately diff --git a/Titan/TitanUtils.lua b/Titan/TitanUtils.lua index ab589b2..c06aaa0 100644 --- a/Titan/TitanUtils.lua +++ b/Titan/TitanUtils.lua @@ -2070,7 +2070,7 @@ OUT: - string containing the version --]] function TitanPanel_GetVersion() - return tostring(GetAddOnMetadata(TITAN_ID, "Version")) or L["TITAN_NA"]; + return tostring(TitanUtils_GetAddOnMetadata(TITAN_ID, "Version")) or L["TITAN_NA"]; end --[[ Titan NAME: TitanPrint -- 1.7.9.5