diff Modules/Config.lua @ 184:679d3664849d

The stock alert should now properly scan immediately after a login. Setting the stock scan speed at fast or higher now properly speeds things up when your FPS is below 100. Renamed ?instant? speed to ?(Near) instant? and changed it to 100 steps per scan rather than everything at once.
author Zerotorescue
date Sun, 30 Jan 2011 20:53:13 +0100
parents dd0e7e00bb9d
children 90e5911a2ff1
line wrap: on
line diff
--- a/Modules/Config.lua	Sun Jan 30 15:48:18 2011 +0100
+++ b/Modules/Config.lua	Sun Jan 30 20:53:13 2011 +0100
@@ -492,6 +492,11 @@
 							desc = "Automatically refill items from your storage (bank/mailbox - unless this is included in the local count - or the guild bank) when below the minimum local stock.",
 							arg = "overrideAutoRefill",
 						},
+						spacer = {
+							order = 19,
+							type = "description",
+							name = "",
+						},
 						
 						overrideMinGlobalStock = {
 							order = 20,
@@ -1562,6 +1567,11 @@
 						get = function() return addon.db.profile.defaults.autoRefill; end,
 						set = function(i, v) addon.db.profile.defaults.autoRefill = v; end,
 					},
+					spacer = {
+						order = 19,
+						type = "description",
+						name = "",
+					},
 					
 					minGlobalStock = {
 						order = 20,
@@ -1888,8 +1898,8 @@
 						name = "Stock scan speed",
 						desc = "Select the speed at which items should be scanned for stock alerts. Faster requires more resources and may drastically reduce your frame rate during a scan.",
 						values = {
-							["0"] = "Instant", -- chains everything, no delay used
-							["0.01"] = "Very fast", -- < 100 fps: once every frame, >= 100 fps, 100 scans per second
+							["0"] = "(Near) instant", -- scans in steps of 100
+							["0.01"] = "Very fast", -- scans in steps of 2
 							["0.05"] = "Fast",
 							["0.1"] = "Default",
 							["0.2"] = "Medium",
@@ -1903,7 +1913,6 @@
 						order = 26,
 						type = "description",
 						name = "",
-						width = "double",
 					},
 					removeCharacter = {
 						order = 30,