Mercurial > wow > inventory
comparison 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 |
comparison
equal
deleted
inserted
replaced
183:2443cee61262 | 184:679d3664849d |
---|---|
490 type = "toggle", | 490 type = "toggle", |
491 name = "Auto refill from storage", | 491 name = "Auto refill from storage", |
492 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.", | 492 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.", |
493 arg = "overrideAutoRefill", | 493 arg = "overrideAutoRefill", |
494 }, | 494 }, |
495 spacer = { | |
496 order = 19, | |
497 type = "description", | |
498 name = "", | |
499 }, | |
495 | 500 |
496 overrideMinGlobalStock = { | 501 overrideMinGlobalStock = { |
497 order = 20, | 502 order = 20, |
498 type = "toggle", | 503 type = "toggle", |
499 name = "Override min global stock", | 504 name = "Override min global stock", |
1560 name = "Auto refill from storage", | 1565 name = "Auto refill from storage", |
1561 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.", | 1566 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.", |
1562 get = function() return addon.db.profile.defaults.autoRefill; end, | 1567 get = function() return addon.db.profile.defaults.autoRefill; end, |
1563 set = function(i, v) addon.db.profile.defaults.autoRefill = v; end, | 1568 set = function(i, v) addon.db.profile.defaults.autoRefill = v; end, |
1564 }, | 1569 }, |
1570 spacer = { | |
1571 order = 19, | |
1572 type = "description", | |
1573 name = "", | |
1574 }, | |
1565 | 1575 |
1566 minGlobalStock = { | 1576 minGlobalStock = { |
1567 order = 20, | 1577 order = 20, |
1568 type = "range", | 1578 type = "range", |
1569 min = 0, | 1579 min = 0, |
1886 type = "select", | 1896 type = "select", |
1887 width = "double", | 1897 width = "double", |
1888 name = "Stock scan speed", | 1898 name = "Stock scan speed", |
1889 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.", | 1899 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.", |
1890 values = { | 1900 values = { |
1891 ["0"] = "Instant", -- chains everything, no delay used | 1901 ["0"] = "(Near) instant", -- scans in steps of 100 |
1892 ["0.01"] = "Very fast", -- < 100 fps: once every frame, >= 100 fps, 100 scans per second | 1902 ["0.01"] = "Very fast", -- scans in steps of 2 |
1893 ["0.05"] = "Fast", | 1903 ["0.05"] = "Fast", |
1894 ["0.1"] = "Default", | 1904 ["0.1"] = "Default", |
1895 ["0.2"] = "Medium", | 1905 ["0.2"] = "Medium", |
1896 ["0.3"] = "Slow", | 1906 ["0.3"] = "Slow", |
1897 ["0.5"] = "Very slow", | 1907 ["0.5"] = "Very slow", |
1901 }, | 1911 }, |
1902 spacer = { | 1912 spacer = { |
1903 order = 26, | 1913 order = 26, |
1904 type = "description", | 1914 type = "description", |
1905 name = "", | 1915 name = "", |
1906 width = "double", | |
1907 }, | 1916 }, |
1908 removeCharacter = { | 1917 removeCharacter = { |
1909 order = 30, | 1918 order = 30, |
1910 type = "select", | 1919 type = "select", |
1911 width = "double", | 1920 width = "double", |