comparison Modules/Config.lua @ 39:b79bb7b449c3

Reworded the QuickAuctions automail status changer config options. (old: auto mailing, new: auto mail status) Changelog rewording to make more sense.
author Zerotorescue
date Sat, 11 Sep 2010 14:12:23 +0200
parents 90d58723ac0a
children 8168280420ae
comparison
equal deleted inserted replaced
38:5dd069184eb9 39:b79bb7b449c3
308 set = function(i, v) MailOpener.db.profile.general.continueOpeningStackableItems = v; end, 308 set = function(i, v) MailOpener.db.profile.general.continueOpeningStackableItems = v; end,
309 }, 309 },
310 autoDisableQAAutoMail = { 310 autoDisableQAAutoMail = {
311 order = 20, 311 order = 20,
312 type = "toggle", 312 type = "toggle",
313 name = "Turn Quick Auction's auto mailing |cffff0000off|r when opening mail", 313 name = "Turn Quick Auction's auto mail status |cffff0000off|r when opening mail",
314 desc = "Quick Auction's auto mailing 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.", 314 desc = "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.",
315 width = "full", 315 width = "full",
316 get = function() return MailOpener.db.profile.general.autoDisableQAAutoMail; end, 316 get = function() return MailOpener.db.profile.general.autoDisableQAAutoMail; end,
317 set = function(i, v) MailOpener.db.profile.general.autoDisableQAAutoMail = v; end, 317 set = function(i, v) MailOpener.db.profile.general.autoDisableQAAutoMail = v; end,
318 hidden = (not MailOpener.QuickAuctionsEnabled), 318 hidden = (not MailOpener.QuickAuctionsEnabled),
319 }, 319 },
320 autoReenableQAAutoMail = { 320 autoReenableQAAutoMail = {
321 order = 30, 321 order = 30,
322 type = "toggle", 322 type = "toggle",
323 name = "Turn Quick Auction's auto mailing |cff00ff00on|r after opening mail has finished", 323 name = "Turn Quick Auction's auto mail status |cff00ff00on|r after opening mail has finished",
324 desc = "Quick Auction's auto mailing 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.", 324 desc = "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.",
325 width = "full", 325 width = "full",
326 get = function() return MailOpener.db.profile.general.autoReenableQAAutoMail; end, 326 get = function() return MailOpener.db.profile.general.autoReenableQAAutoMail; end,
327 set = function(i, v) MailOpener.db.profile.general.autoReenableQAAutoMail = v; end, 327 set = function(i, v) MailOpener.db.profile.general.autoReenableQAAutoMail = v; end,
328 hidden = (not MailOpener.QuickAuctionsEnabled), 328 hidden = (not MailOpener.QuickAuctionsEnabled),
329 disabled = function() return (MailOpener.db.profile.general.autoSetBackQAAutoMail and not MailOpener.db.profile.general.autoReenableQAAutoMail); end, 329 disabled = function() return (MailOpener.db.profile.general.autoSetBackQAAutoMail and not MailOpener.db.profile.general.autoReenableQAAutoMail); end,
330 }, 330 },
331 autoSetBackQAAutoMail = { 331 autoSetBackQAAutoMail = {
332 order = 40, 332 order = 40,
333 type = "toggle", 333 type = "toggle",
334 name = "Set Quick Auction's auto mailing |cff00ffffback|r after opening mail has finished (remember it)", 334 name = "Set Quick Auction's auto mail status |cff00ffffback|r after opening mail has finished (remember it)",
335 desc = "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.", 335 desc = "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.",
336 width = "full", 336 width = "full",
337 get = function() return MailOpener.db.profile.general.autoSetBackQAAutoMail; end, 337 get = function() return MailOpener.db.profile.general.autoSetBackQAAutoMail; end,
338 set = function(i, v) MailOpener.db.profile.general.autoSetBackQAAutoMail = v; end, 338 set = function(i, v) MailOpener.db.profile.general.autoSetBackQAAutoMail = v; end,
339 hidden = (not MailOpener.QuickAuctionsEnabled), 339 hidden = (not MailOpener.QuickAuctionsEnabled),