Mercurial > wow > inventory
comparison Modules/Config.lua @ 181:dd0e7e00bb9d
Alert options are no longer NYI. Untagged them as such.
author | Zerotorescue |
---|---|
date | Sun, 30 Jan 2011 15:47:44 +0100 |
parents | 26c750a10b14 |
children | 679d3664849d |
comparison
equal
deleted
inserted
replaced
180:05b4f8ad6445 | 181:dd0e7e00bb9d |
---|---|
472 arg = "alertBelowLocalMinimum", | 472 arg = "alertBelowLocalMinimum", |
473 }, | 473 }, |
474 alertBelowLocalMinimum = { | 474 alertBelowLocalMinimum = { |
475 order = 16, | 475 order = 16, |
476 type = "toggle", | 476 type = "toggle", |
477 name = "Alert when below local minimum (NYI)", | 477 name = "Alert when below local minimum", |
478 desc = "Show an alert when an item in this group gets below the local minimum stock threshold.", | 478 desc = "Show an alert when an item in this group gets below the local minimum stock threshold.", |
479 arg = "overrideAlertBelowLocalMinimum", | 479 arg = "overrideAlertBelowLocalMinimum", |
480 }, | 480 }, |
481 overrideAutoRefill = { | 481 overrideAutoRefill = { |
482 order = 17, | 482 order = 17, |
519 arg = "alertBelowGlobalMinimum", | 519 arg = "alertBelowGlobalMinimum", |
520 }, | 520 }, |
521 alertBelowGlobalMinimum = { | 521 alertBelowGlobalMinimum = { |
522 order = 26, | 522 order = 26, |
523 type = "toggle", | 523 type = "toggle", |
524 name = "Alert when below global minimum (NYI)", | 524 name = "Alert when below global minimum", |
525 desc = "Show an alert when an item in this group gets below the global minimum stock threshold.", | 525 desc = "Show an alert when an item in this group gets below the global minimum stock threshold.", |
526 arg = "overrideAlertBelowGlobalMinimum", | 526 arg = "overrideAlertBelowGlobalMinimum", |
527 }, | 527 }, |
528 | 528 |
529 overrideSummaryThresholdShow = { | 529 overrideSummaryThresholdShow = { |
1547 set = function(i, v) addon.db.profile.defaults.minLocalStock = v; end, | 1547 set = function(i, v) addon.db.profile.defaults.minLocalStock = v; end, |
1548 }, | 1548 }, |
1549 alertBelowLocalMinimum = { | 1549 alertBelowLocalMinimum = { |
1550 order = 11, | 1550 order = 11, |
1551 type = "toggle", | 1551 type = "toggle", |
1552 name = "Alert when below local minimum (NYI)", | 1552 name = "Alert when below local minimum", |
1553 desc = "Show an alert when this item gets below this threshold.", | 1553 desc = "Show an alert when this item gets below this threshold.", |
1554 get = function() return addon.db.profile.defaults.alertBelowLocalMinimum; end, | 1554 get = function() return addon.db.profile.defaults.alertBelowLocalMinimum; end, |
1555 set = function(i, v) addon.db.profile.defaults.alertBelowLocalMinimum = v; end, | 1555 set = function(i, v) addon.db.profile.defaults.alertBelowLocalMinimum = v; end, |
1556 }, | 1556 }, |
1557 autoRefill = { | 1557 autoRefill = { |
1576 set = function(i, v) addon.db.profile.defaults.minGlobalStock = v; end, | 1576 set = function(i, v) addon.db.profile.defaults.minGlobalStock = v; end, |
1577 }, | 1577 }, |
1578 alertBelowGlobalMinimum = { | 1578 alertBelowGlobalMinimum = { |
1579 order = 21, | 1579 order = 21, |
1580 type = "toggle", | 1580 type = "toggle", |
1581 name = "Alert when below global minimum (NYI)", | 1581 name = "Alert when below global minimum", |
1582 desc = "Show an alert when this item gets below this threshold.", | 1582 desc = "Show an alert when this item gets below this threshold.", |
1583 get = function() return addon.db.profile.defaults.alertBelowGlobalMinimum; end, | 1583 get = function() return addon.db.profile.defaults.alertBelowGlobalMinimum; end, |
1584 set = function(i, v) addon.db.profile.defaults.alertBelowGlobalMinimum = v; end, | 1584 set = function(i, v) addon.db.profile.defaults.alertBelowGlobalMinimum = v; end, |
1585 }, | 1585 }, |
1586 | 1586 |