# HG changeset patch # User Zerotorescue # Date 1296398864 -3600 # Node ID dd0e7e00bb9dad804e5374e01f94b4a0b991f9e3 # Parent 05b4f8ad6445e7009b8c67b2cf8db2467e48d2fc Alert options are no longer NYI. Untagged them as such. diff -r 05b4f8ad6445 -r dd0e7e00bb9d Modules/Config.lua --- a/Modules/Config.lua Sun Jan 30 15:44:27 2011 +0100 +++ b/Modules/Config.lua Sun Jan 30 15:47:44 2011 +0100 @@ -474,7 +474,7 @@ alertBelowLocalMinimum = { order = 16, type = "toggle", - name = "Alert when below local minimum (NYI)", + name = "Alert when below local minimum", desc = "Show an alert when an item in this group gets below the local minimum stock threshold.", arg = "overrideAlertBelowLocalMinimum", }, @@ -521,7 +521,7 @@ alertBelowGlobalMinimum = { order = 26, type = "toggle", - name = "Alert when below global minimum (NYI)", + name = "Alert when below global minimum", desc = "Show an alert when an item in this group gets below the global minimum stock threshold.", arg = "overrideAlertBelowGlobalMinimum", }, @@ -1549,7 +1549,7 @@ alertBelowLocalMinimum = { order = 11, type = "toggle", - name = "Alert when below local minimum (NYI)", + name = "Alert when below local minimum", desc = "Show an alert when this item gets below this threshold.", get = function() return addon.db.profile.defaults.alertBelowLocalMinimum; end, set = function(i, v) addon.db.profile.defaults.alertBelowLocalMinimum = v; end, @@ -1578,7 +1578,7 @@ alertBelowGlobalMinimum = { order = 21, type = "toggle", - name = "Alert when below global minimum (NYI)", + name = "Alert when below global minimum", desc = "Show an alert when this item gets below this threshold.", get = function() return addon.db.profile.defaults.alertBelowGlobalMinimum; end, set = function(i, v) addon.db.profile.defaults.alertBelowGlobalMinimum = v; end,