Version 2.5.1

willneedit [03-28-20 - 09:31]
Version 2.5.1
 * Copy/Paste mistake in CraftStoreLink refactoring, disabling usability for recipes et.al. fixed
Filename
CraftStoreLink.lua
InventoryManager.lua
InventoryManager.txt
diff --git a/CraftStoreLink.lua b/CraftStoreLink.lua
index ff48880..3107c6f 100644
--- a/CraftStoreLink.lua
+++ b/CraftStoreLink.lua
@@ -71,15 +71,15 @@ function CSL:IsItemNeeded(itemLink, uID)
 end


-function CSL:IsStyleNeeded(link)
+function CSL:IsStyleNeeded(itemLink)
 	return self:parseNeeded(CS.IsStyleNeeded(itemLink))
 end

-function CSL:IsRecipeNeeded(link)
+function CSL:IsRecipeNeeded(itemLink)
 	return self:parseNeeded(CS.IsRecipeNeeded(itemLink))
 end

-function CSL:IsBlueprintNeeded(link)
+function CSL:IsBlueprintNeeded(itemLink)
 	return self:parseNeeded(CS.IsBlueprintNeeded(itemLink))
 end

diff --git a/InventoryManager.lua b/InventoryManager.lua
index 4945bf6..6b9a56a 100644
--- a/InventoryManager.lua
+++ b/InventoryManager.lua
@@ -23,7 +23,7 @@ IM.opssuspended = false
 -- The current ruleset we're working with
 IM.currentRuleset = { }

-local ADDON_VERSION = "2.5.0"
+local ADDON_VERSION = "2.5.1"
 local ADDON_WEBSITE = "https://www.esoui.com/downloads/info1642-InventoryManager.html"

 function IM:ProcessSingleItem(dryrun, data)
diff --git a/InventoryManager.txt b/InventoryManager.txt
index fd4fac3..b7d3b99 100644
--- a/InventoryManager.txt
+++ b/InventoryManager.txt
@@ -2,7 +2,7 @@
 ## APIVersion: 100030
 ## DependsOn: LibAddonMenu-2.0
 ## SavedVariables: IMSavedVars
-## Version: 2.5.0
+## Version: 2.5.1
 ## Author: iwontsay & iFedix
 ## Description: Automatically stash, retrieve and dispose your items with custom rules!