Mercurial > wow > mailopener
comparison Modules/Config.lua @ 123:b21c39ea338c
Removed all ?QuickAuctions? checks and replaced them with ZeroAuctions checks instead.
Fixed the copy dialog window.
| author | Zerotorescue |
|---|---|
| date | Sat, 16 Oct 2010 14:46:04 +0200 |
| parents | 91fe61693247 |
| children | 42d8e16e8483 |
comparison
equal
deleted
inserted
replaced
| 122:6a51405c7733 | 123:b21c39ea338c |
|---|---|
| 398 _enabled = L["Enabled"], | 398 _enabled = L["Enabled"], |
| 399 disabled = L["Disabled"], | 399 disabled = L["Disabled"], |
| 400 }, | 400 }, |
| 401 get = function() return MailOpener.db.profile.general.defaultQAStatus; end, | 401 get = function() return MailOpener.db.profile.general.defaultQAStatus; end, |
| 402 set = function(i, v) MailOpener.db.profile.general.defaultQAStatus = v; end, | 402 set = function(i, v) MailOpener.db.profile.general.defaultQAStatus = v; end, |
| 403 hidden = (not MailOpener.QuickAuctionsEnabled), | 403 hidden = (not MailOpener.ZeroAuctionsEnabled), |
| 404 }, | 404 }, |
| 405 overrideCheckInbox = { | 405 overrideCheckInbox = { |
| 406 order = 12, | 406 order = 12, |
| 407 type = "toggle", | 407 type = "toggle", |
| 408 name = L["Don't refresh the mailbox while there is still mail waiting to be opened"], | 408 name = L["Don't refresh the mailbox while there is still mail waiting to be opened"], |
| 435 name = L["Turn Quick Auction's auto mail status |cffff0000off|r when opening mail"], | 435 name = L["Turn Quick Auction's auto mail status |cffff0000off|r when opening mail"], |
| 436 desc = L["Quick Auction's auto mail is buggy when using other mail opening addons. If you are collecting mail while auto mailer is enabled wrong items may be send to the wrong character.\n\nTo solve this you must disable Quick Auction's auto mail while opening mail and you can re-enable it when mail opening is finished."], | 436 desc = L["Quick Auction's auto mail is buggy when using other mail opening addons. If you are collecting mail while auto mailer is enabled wrong items may be send to the wrong character.\n\nTo solve this you must disable Quick Auction's auto mail while opening mail and you can re-enable it when mail opening is finished."], |
| 437 width = "full", | 437 width = "full", |
| 438 get = function() return MailOpener.db.profile.general.autoDisableQAAutoMail; end, | 438 get = function() return MailOpener.db.profile.general.autoDisableQAAutoMail; end, |
| 439 set = function(i, v) MailOpener.db.profile.general.autoDisableQAAutoMail = v; end, | 439 set = function(i, v) MailOpener.db.profile.general.autoDisableQAAutoMail = v; end, |
| 440 hidden = (not MailOpener.QuickAuctionsEnabled), | 440 hidden = (not MailOpener.ZeroAuctionsEnabled), |
| 441 }, | 441 }, |
| 442 autoReenableQAAutoMail = { | 442 autoReenableQAAutoMail = { |
| 443 order = 30, | 443 order = 30, |
| 444 type = "toggle", | 444 type = "toggle", |
| 445 name = L["Turn Quick Auction's auto mail status |cff00ff00on|r after opening mail has finished"], | 445 name = L["Turn Quick Auction's auto mail status |cff00ff00on|r after opening mail has finished"], |
| 446 desc = L["Quick Auction's auto mail is buggy when using other mail opening addons. If you are collecting mail while auto mailer is enabled wrong items may be send to the wrong character.\n\nTo solve this you must disable Quick Auction's auto mail while opening mail and you can re-enable it when mail opening is finished."], | 446 desc = L["Quick Auction's auto mail is buggy when using other mail opening addons. If you are collecting mail while auto mailer is enabled wrong items may be send to the wrong character.\n\nTo solve this you must disable Quick Auction's auto mail while opening mail and you can re-enable it when mail opening is finished."], |
| 447 width = "full", | 447 width = "full", |
| 448 get = function() return MailOpener.db.profile.general.autoReenableQAAutoMail; end, | 448 get = function() return MailOpener.db.profile.general.autoReenableQAAutoMail; end, |
| 449 set = function(i, v) MailOpener.db.profile.general.autoReenableQAAutoMail = v; end, | 449 set = function(i, v) MailOpener.db.profile.general.autoReenableQAAutoMail = v; end, |
| 450 hidden = (not MailOpener.QuickAuctionsEnabled), | 450 hidden = (not MailOpener.ZeroAuctionsEnabled), |
| 451 disabled = function() return (MailOpener.db.profile.general.autoSetBackQAAutoMail and not MailOpener.db.profile.general.autoReenableQAAutoMail); end, | 451 disabled = function() return (MailOpener.db.profile.general.autoSetBackQAAutoMail and not MailOpener.db.profile.general.autoReenableQAAutoMail); end, |
| 452 }, | 452 }, |
| 453 autoSetBackQAAutoMail = { | 453 autoSetBackQAAutoMail = { |
| 454 order = 40, | 454 order = 40, |
| 455 type = "toggle", | 455 type = "toggle", |
| 456 name = L["Set Quick Auction's auto mail status |cff00ffffback|r after opening mail has finished (remember it)"], | 456 name = L["Set Quick Auction's auto mail status |cff00ffffback|r after opening mail has finished (remember it)"], |
| 457 desc = L["Instead of always turning Quick Auction's auto mail on after mail opening you can choose to set it back to the value it was prior to opening mail."], | 457 desc = L["Instead of always turning Quick Auction's auto mail on after mail opening you can choose to set it back to the value it was prior to opening mail."], |
| 458 width = "full", | 458 width = "full", |
| 459 get = function() return MailOpener.db.profile.general.autoSetBackQAAutoMail; end, | 459 get = function() return MailOpener.db.profile.general.autoSetBackQAAutoMail; end, |
| 460 set = function(i, v) MailOpener.db.profile.general.autoSetBackQAAutoMail = v; end, | 460 set = function(i, v) MailOpener.db.profile.general.autoSetBackQAAutoMail = v; end, |
| 461 hidden = (not MailOpener.QuickAuctionsEnabled), | 461 hidden = (not MailOpener.ZeroAuctionsEnabled), |
| 462 disabled = function() return (MailOpener.db.profile.general.autoReenableQAAutoMail and not MailOpener.db.profile.general.autoSetBackQAAutoMail); end, | 462 disabled = function() return (MailOpener.db.profile.general.autoReenableQAAutoMail and not MailOpener.db.profile.general.autoSetBackQAAutoMail); end, |
| 463 }, | 463 }, |
| 464 }, | 464 }, |
| 465 }, -- end General config inline group | 465 }, -- end General config inline group |
| 466 -- Profile config inline group | 466 -- Profile config inline group |
