Quantcast

- Modified TitanConfig to reverse logic for if 'Disable Screen Adjust' option would be functional. It should now only be disabled in Retail.

HonorGoG [07-16-25 - 22:33]
- Modified TitanConfig to reverse logic for if 'Disable Screen Adjust' option would be functional.  It should now only be disabled in Retail.
- TitanClock : Shortened the length of the slider frame as the '24-hour' button has been moved to the right-click menu.
- Updated TOC for 8.3.1 release.
Filename
Titan/Titan.toc
Titan/TitanConfig.lua
TitanAmmo/TitanAmmo_Vanilla.toc
TitanBag/TitanBag.toc
TitanClassic/TitanClassic.toc
TitanClock/TitanClock.lua
TitanClock/TitanClock.toc
TitanGold/TitanGold.toc
TitanLocation/TitanLocation.toc
TitanLootType/TitanLootType.toc
TitanLootType/TitanLootType_Classic.toc
TitanPerformance/TitanPerformance.toc
TitanRegen/TitanRegen_Vanilla.toc
TitanRepair/TitanRepair.toc
TitanVolume/TitanVolume.toc
TitanXP/TitanXP.toc
diff --git a/Titan/Titan.toc b/Titan/Titan.toc
index d4e4355..84d2b86 100644
--- a/Titan/Titan.toc
+++ b/Titan/Titan.toc
@@ -1,7 +1,7 @@
 ## Interface: 110107, 50500, 11507
-## Title: Titan Panel [|cffeda55f_Core_|r] |cff00aa008.3.0|r
+## Title: Titan Panel [|cffeda55f_Core_|r] |cff00aa008.3.1|r
 ## Author: Titan Panel Dev Team
-## Version: 8.3.0
+## Version: 8.3.1
 ## IconTexture: Interface\Icons\Achievement_Dungeon_UlduarRaid_Titan_01
 ## SavedVariables: TitanAll, TitanSettings, TitanSkins, ServerTimeOffsets, ServerHourFormat
 ## Notes: Adds display bars to show and control information/launcher plugins.
diff --git a/Titan/TitanConfig.lua b/Titan/TitanConfig.lua
index 5401802..88c47fd 100644
--- a/Titan/TitanConfig.lua
+++ b/Titan/TitanConfig.lua
@@ -1137,7 +1137,7 @@ print("Color new:"
 			order = 305,
 			type = "toggle",
 			width = "full",
-			disabled = (Titan_Global.switch.can_edit_ui == false),
+			disabled = (Titan_Global.switch.can_edit_ui == true),
 			get = function() return TitanPanelGetVar("ScreenAdjust") end,
 			set = function() TitanPanel_ScreenAdjustReload() end,
 		},
@@ -1159,7 +1159,7 @@ print("Color new:"
 			order = 405,
 			type = "toggle",
 			width = "full",
-			disabled = (Titan_Global.switch.can_edit_ui == false),
+			disabled = (Titan_Global.switch.can_edit_ui == true),
 			get = function() return TitanPanelGetVar("AuxScreenAdjust") end,
 			set = function() TitanPanel_AuxScreenAdjustReload() end,
 		},
diff --git a/TitanAmmo/TitanAmmo_Vanilla.toc b/TitanAmmo/TitanAmmo_Vanilla.toc
index 915fcf4..cc64b5e 100644
--- a/TitanAmmo/TitanAmmo_Vanilla.toc
+++ b/TitanAmmo/TitanAmmo_Vanilla.toc
@@ -1,6 +1,6 @@
 ## Interface: 11507
-## Title: Titan Panel [|cffeda55fAmmo|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Title: Titan Panel [|cffeda55fAmmo|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## Notes: Adds an ammo monitor to Titan Panel - Classic versions only
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
 ## SavedVariables:
diff --git a/TitanBag/TitanBag.toc b/TitanBag/TitanBag.toc
index 2c413f6..1715da8 100644
--- a/TitanBag/TitanBag.toc
+++ b/TitanBag/TitanBag.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fBag|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fBag|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\AddOns\TitanBag\TitanBag
 ## Notes: Adds bag and free slot information to Titan Panel
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
diff --git a/TitanClassic/TitanClassic.toc b/TitanClassic/TitanClassic.toc
index 33765de..d16616c 100644
--- a/TitanClassic/TitanClassic.toc
+++ b/TitanClassic/TitanClassic.toc
@@ -1,7 +1,7 @@
 ## Interface: 11507, 50500
-## Title: Titan Panel [|cffeda55f_Core_|r] |cff00aa008.3.0|r
+## Title: Titan Panel [|cffeda55f_Core_|r] |cff00aa008.3.1|r
 ## Author: Titan Panel Dev Team
-## Version: 8.3.0
+## Version: 8.3.1
 ## IconTexture: Interface\Icons\Achievement_Dungeon_UlduarRaid_Titan_01
 ## Notes: Adds display bars to show and control information/launcher plugins.
 ## Category-enUS: User Interface
diff --git a/TitanClock/TitanClock.lua b/TitanClock/TitanClock.lua
index 4b99daf..c003202 100644
--- a/TitanClock/TitanClock.lua
+++ b/TitanClock/TitanClock.lua
@@ -534,7 +534,7 @@ local function Create_Frames()
 	config:SetFrameStrata("FULLSCREEN") -- FULLSCREEN
 	config:Hide()                    --
 	config:SetWidth(90)
-	config:SetHeight(200)
+	config:SetHeight(170)

 	config:SetScript("OnShow", function(self)
 	end)
diff --git a/TitanClock/TitanClock.toc b/TitanClock/TitanClock.toc
index e4b816a..095ae55 100644
--- a/TitanClock/TitanClock.toc
+++ b/TitanClock/TitanClock.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fClock|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fClock|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\Icons\Spell_Nature_TimeStop
 ## Notes: Adds a clock to Titan Panel
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
diff --git a/TitanGold/TitanGold.toc b/TitanGold/TitanGold.toc
index 5bf41d9..3f06b08 100644
--- a/TitanGold/TitanGold.toc
+++ b/TitanGold/TitanGold.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fGold|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fGold|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\AddOns\TitanGold\Artwork\TitanGold
 ## 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)
diff --git a/TitanLocation/TitanLocation.toc b/TitanLocation/TitanLocation.toc
index f4afce2..ca2b17b 100644
--- a/TitanLocation/TitanLocation.toc
+++ b/TitanLocation/TitanLocation.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fLocation|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fLocation|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\AddOns\TitanLocation\TitanLocation
 ## Notes: Adds coordinates and location information to Titan Panel
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
diff --git a/TitanLootType/TitanLootType.toc b/TitanLootType/TitanLootType.toc
index 2b61c9f..7015547 100644
--- a/TitanLootType/TitanLootType.toc
+++ b/TitanLootType/TitanLootType.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fLootType|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fLootType|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\AddOns\TitanLootType\TitanLootType
 ## Notes: Adds group loot and instance difficulty information to Titan Panel
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
diff --git a/TitanLootType/TitanLootType_Classic.toc b/TitanLootType/TitanLootType_Classic.toc
index a07b439..813d033 100644
--- a/TitanLootType/TitanLootType_Classic.toc
+++ b/TitanLootType/TitanLootType_Classic.toc
@@ -1,6 +1,6 @@
 ## Interface: 11507, 40401
-## Title: Titan Panel [|cffeda55fLootType|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Title: Titan Panel [|cffeda55fLootType|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## Notes: Adds group loot and instance difficulty information to Titan Panel
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
 ## SavedVariables: TitanClassicLootTypeSaved
diff --git a/TitanPerformance/TitanPerformance.toc b/TitanPerformance/TitanPerformance.toc
index b44c307..c783397 100644
--- a/TitanPerformance/TitanPerformance.toc
+++ b/TitanPerformance/TitanPerformance.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fPerformance|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fPerformance|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\AddOns\TitanPerformance\TitanPerformance
 ## Notes: Adds FPS and Garbage collection information to Titan Panel
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
diff --git a/TitanRegen/TitanRegen_Vanilla.toc b/TitanRegen/TitanRegen_Vanilla.toc
index cd82c70..1168bda 100644
--- a/TitanRegen/TitanRegen_Vanilla.toc
+++ b/TitanRegen/TitanRegen_Vanilla.toc
@@ -1,6 +1,6 @@
 ## Interface: 11507, 50500
-## Title: Titan Panel [|cffeda55fRegen|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Title: Titan Panel [|cffeda55fRegen|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## Notes: Adds a regen monitor to Titan Panel to show HP/MANA regen - Classic versions only
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
 ## SavedVariables:
diff --git a/TitanRepair/TitanRepair.toc b/TitanRepair/TitanRepair.toc
index 4dfeb9c..2365683 100644
--- a/TitanRepair/TitanRepair.toc
+++ b/TitanRepair/TitanRepair.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fRepair|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fRepair|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\AddOns\TitanRepair\TitanRepair
 ## Notes: Provides a configurable durability display. Also adds the ability to auto repair items and inventory at vendors. Adds selling of grey items.
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
diff --git a/TitanVolume/TitanVolume.toc b/TitanVolume/TitanVolume.toc
index 2134129..c357d33 100644
--- a/TitanVolume/TitanVolume.toc
+++ b/TitanVolume/TitanVolume.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fVolume|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fVolume|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\AddOns\TitanVolume\Artwork\TitanVolumeHigh
 ## Notes: Adds a volume control icon on your Titan Bar
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)
diff --git a/TitanXP/TitanXP.toc b/TitanXP/TitanXP.toc
index 5089fe0..a601dfe 100644
--- a/TitanXP/TitanXP.toc
+++ b/TitanXP/TitanXP.toc
@@ -1,6 +1,6 @@
-## Interface: 110105, 40402, 11507
-## Title: Titan Panel [|cffeda55fXP|r] |cff00aa008.3.0|r
-## Version: 8.3.0
+## Interface: 110107, 40402, 11507
+## Title: Titan Panel [|cffeda55fXP|r] |cff00aa008.3.1|r
+## Version: 8.3.1
 ## IconTexture: Interface\Icons\xp_icon
 ## Notes: Adds information to Titan Panel about XP earned and time to level
 ## Author: Titan Panel Development Team (http://www.titanpanel.org)