diff Core.lua @ 161:35612aee8e15

Added junk list.
author yellowfive
date Mon, 06 May 2019 14:08:03 -0700
parents df1596b1a744
children 3be9cc6f7d20
line wrap: on
line diff
--- a/Core.lua	Wed Apr 24 18:00:57 2019 -0700
+++ b/Core.lua	Mon May 06 14:08:03 2019 -0700
@@ -52,6 +52,7 @@
 			BagItemsAndCounts = {},    -- used mainly for the shopping list
 			BankItemsAndCounts = {},   -- used mainly for the shopping list			
 			GearSetups = {},           -- imported gear sets
+			JunkData = {},             -- imported data about items that can be vendored/scrapped/disenchanted
 			ExtraEnchantData = {},     -- enchant id to enchant display information and material information
 			Logging = {                -- character logging settings
 				Enabled = false,       -- whether logging is currently on or not
@@ -66,8 +67,10 @@
 			},
 			window = {},               -- main window position settings
 			shopWindow = {},           -- shopping list window position settings
+			junkWindow = {},           -- junk list window position settings
 			options = {
 				autoGear = false,      -- auto-equip saved gear sets when changing specs
+				junkVendor = false,    -- auto-show junk list at vendor/scrapper
 				shopAh = false,        -- auto-show shopping list at AH
 				disableEm = false,     -- disable auto-creation of equipment manager sets
 				uiScale = 1            -- custom scale for AMR UI
@@ -245,6 +248,7 @@
 	toggle    = "Toggle",
 	equip     = "EquipGearSet",
 	version   = "PrintVersions",
+	junk      = "ShowJunkWindow",
 	--wipe      = "Wipe",
 	--undowipe  = "UndoWipe",
 	reset     = "Reset",