# HG changeset patch # User Zerotorescue # Date 1295306904 -3600 # Node ID a2794859115977dc5ac209917b666b7bea92453c # Parent 9027cf1810f48cd5ba9a320d2bc52b5f6c48a7c6 Fixed premade group updating. Autorefill options now indicate storage rather than (guild) bank (as this now includes the mailbox too). diff -r 9027cf1810f4 -r a27948591159 Modules/Config.lua --- a/Modules/Config.lua Tue Jan 18 00:27:29 2011 +0100 +++ b/Modules/Config.lua Tue Jan 18 00:28:24 2011 +0100 @@ -528,8 +528,8 @@ autoRefill = { order = 18, type = "toggle", - name = "Auto refill from (guild) bank", - desc = "Automatically refill items from the bank (unless this is included in the local count) or guild bank when below the minimum local stock.", + name = "Auto refill from storage", + 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.", arg = "overrideAutoRefill", }, @@ -1502,8 +1502,8 @@ autoRefill = { order = 12, type = "toggle", - name = "Auto refill from (guild) bank", - desc = "Automatically refill items from the bank (unless this is included in the local count) or guild bank when below the minimum local stock.", + name = "Auto refill from storage", + 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.", get = function() return addon.db.profile.defaults.autoRefill; end, set = function(i, v) addon.db.profile.defaults.autoRefill = v; end, }, @@ -1680,8 +1680,8 @@ order = 20, type = "toggle", width = "full", - name = "Skip the confirmation window for (guild) bank refilling", - desc = "Automatically start moving items from the (guild) bank without showing the confirmation window.", + name = "Skip the confirmation window for storage refilling", + desc = "Automatically start moving items from the storage (bank, guild bank or mailbox) without showing the confirmation window.", get = function() return addon.db.profile.defaults.autoRefillSkipConfirm; end, set = function(i, v) addon.db.profile.defaults.autoRefillSkipConfirm = v; end, }, @@ -1928,6 +1928,7 @@ type = "description", name = "|cfffed000My groups don't appear in the summary window.|r\nPlease ensure your current character is toggled on at the \"track at\" option beneath the \"minimum stock\" category within a group or the defaults.\n\n" .. "|cfffed000The auction value collumn always shows a \"-\".|r\nThe auction value will not be cached when you set the \"price threshold\" beneath the \"replenishing stock\" category to |cfffed0000c|r. You can change this behavior by adjusting this value or toggling the \"Always show auction value\" option on.\n\n" .. + "|cfffed000Some items appear in the \"unqueueable\" frame while I can find them in the profession.|r\nOld items from before Cataclysm (such as any old gems) may have been renamed and their crafting skill removed. This might have resulted in certain items having the same name as others but with different ids, for example for Smooth King's Amber (search that at Wowhead for more info). Remove both items with the same name and add the one in your profession window again and this should no longer occur.\n\n" .. "|cfffed000What relation does Inventorium have to ZeroAuctions or AuctionProfitMaster?|r\nNone. ZA/APM and IM are two completely seperate addons and do not interfere with eachother. At best you can use the auction pricing data displayed at the ZA/APM summary window as pricing source by selecting either addon as pricing addon, but neither IM nor ZA/APM will adjust any settings nor execute any other actions at one another. ZA/APM is an auction house addon. IM is a stock management addon. We are not related. We do not work together. We probably never will.\n\n" .. "|cfffed000What use do profiles have?|r\nBecause there is already the \"track at\" option, profiles may not be useful to anyone. Nevertheless someone might find a use for it in some way and thus it is left available. You can use it to test certain things for example without the risk of your main groups being destroyed (although this should never be an excuse not to back up your settings from time to time).\n\n" .. "|cfffed000Can you provide me with a sample scenario for virtual groups?|r\nNot really. If you are just getting to know Inventorium then I suggest leaving this functionality for the moment. It only makes things more complicated.\n\nAnyway, the simplest (and possibly most popular) setup to imagine are glyphs. There are over 300 glyphs available distributed over 10 classes. Glyphs for certain classes (such as the tribrids; Druids & Paladins) might sell a lot more often than those for others (such as pure DPS; Hunters, etc.).\n\nTo get an easily adjustable setup you can make one virtual group, called \"Glyphs\" and override all your prefered settings in there. After you are done, make a glyph-group for each class (such as \"Glyphs (Death Knight)\" etc.) and select \"Glyphs\" as virtual group for every one of them (you can easily insert item data to these class specific groups by selecting premade data).\n\nNow, to change the settings for all glyph groups you can just change the settings within the virtual \"Glyph\" group. To change the settings for one class in particular, such as Paladins because they sell more often than others, you can click this group and override the appropriate settings for just that group. There are many more possibilities for you to find out.\n\n" .. @@ -2160,11 +2161,11 @@ button1 = YES, button2 = NO, OnAccept = function() - addon:PremadeGroupsCheck(groupName, premadeGroupName, true); + mod:PremadeGroupsCheck(groupName, premadeGroupName, true); end, OnCancel = function(_, _, reason) if reason == "clicked" then - addon:PremadeGroupsCheck(groupName, premadeGroupName, false); + mod:PremadeGroupsCheck(groupName, premadeGroupName, false); end end, timeout = 0,