# HG changeset patch # User Zerotorescue # Date 1295307580 -3600 # Node ID 396c2960d54da80d2d6c6193ab889250a8279f86 # Parent 43c6750df18f0d9b6b32f0e6e3456cc5f73ca795 Queueing = queuing. :p diff -r 43c6750df18f -r 396c2960d54d Changelog.txt --- a/Changelog.txt Tue Jan 18 00:36:48 2011 +0100 +++ b/Changelog.txt Tue Jan 18 00:39:40 2011 +0100 @@ -1,6 +1,6 @@ v0.4.0-BETA Zerotorescue Tue, Jan 18 2011 00:30:00 +0200 - ! Added GUI for item queueing and rewrote the queueing module. + ! Added GUI for item queuing and rewrote the queuing module. - Fixed Glyphs by class - Druid and Glyphs by ink - Jadefire Ink premade groups to include 3 more glyphs. - Fixed WotLK epic gem premade item groups to no longer include removed items. - Fixed premade group updating. diff -r 43c6750df18f -r 396c2960d54d Modules/Queue.lua --- a/Modules/Queue.lua Tue Jan 18 00:36:48 2011 +0100 +++ b/Modules/Queue.lua Tue Jan 18 00:39:40 2011 +0100 @@ -294,7 +294,7 @@ end if amount > 0 and amount >= minCraftingQueue then - -- If we are queueing at least one AND more than the minimum amount, then proceed + -- If we are queuing at least one AND more than the minimum amount, then proceed -- Auction value settings local value = (priceThreshold ~= 0 and addon:GetAuctionValue(itemLink, groupName)); diff -r 43c6750df18f -r 396c2960d54d Modules/Summary.lua --- a/Modules/Summary.lua Tue Jan 18 00:36:48 2011 +0100 +++ b/Modules/Summary.lua Tue Jan 18 00:39:40 2011 +0100 @@ -255,7 +255,7 @@ name = "Queue", desc = "Queue all items in this group.", exec = function() - addon:Print(("Queueing all items within %s craftable by the currently open profession."):format(groupName)); + addon:Print(("Queuing all items within %s craftable by the currently open profession."):format(groupName)); self:SendMessage("IM_QUEUE_GROUP", groupName); end, });