Download
(149 Kb)
Download
Updated: 05/31/18 02:37 AM
Pictures
File Info
Updated:05/31/18 02:37 AM
Created:02/25/17 01:24 PM
Monthly downloads:232
Total downloads:204,307
Favorites:246
MD5:
Categories:Homestead, Discontinued & Outdated
ItemPreview (discontinued)  Popular! (More than 5000 hits)
Version: 1.14b
by: Shinni [More]
This addon allows you to preview items such as armor, weapons, furniture and furniture recipes.
Simply click on the item to preview it.
The addon works anywhere in the UI. You can preview items from the trading window, the inventory, the mail window, the guild trader etc.
You can also preview furniture and recipes when right clicking on an item link (eg in the chat) and selecting "Preview".
# 1.14
- fixed the armor option in the addon settings
(a) removed a forgotten debug output
(b) fixed preview on click from the addon settings

# 1.13
- compatible with the Summerset update
- added settings to enable/disable the preview on certain scenes

# 1.12
- fixed a bug where the /previewarmor toggle would not work outside the inventory screen.

# 1.11
- compatible with dragon bones update
- weapons can now be previewed

# 1.10
- added some debug output to help with the failed preview issues

# 1.9
- added the CustomMenu library, which I accidentally removed in the last update

# 1.8
- added clockwork items to the preview
- added quaternary keybind (default T) to end preview
- added armor preview

# 1.7
- compatible with the CC update

# 1.6
- added new furniture from the HotR update

# 1.5
- fixed a bug which prevented the /previewonclick toggle to be saved
- fixed preview at the bank

# 1.4
- fixed a bug where the addon would try to preview non-furniture items

# 1.3
- compatible with the Morrowind update
- added option to disable left click for previewing
- it's possible to preview via right click -> preview
- thanks to the API update guild and NPC stores work more reliably now for rare furniture

# 1.2
- the preview is now started by clicking on the item
- preview works for recipes and furniture
- preview works in the trading window, the inventory, the mail window, the guild trader, NPC merchants, personal and guild bank

# 1.1
- Added preview for recipes

# 1.0
- Release
Archived Files (17)
File Name
Version
Size
Uploader
Date
1.14a
149kB
Shinni
05/31/18 02:33 AM
1.14
149kB
Shinni
05/31/18 02:30 AM
1.13
149kB
Shinni
05/27/18 07:04 AM
1.12
96kB
Shinni
02/16/18 04:56 PM
1.11
96kB
Shinni
02/12/18 05:06 PM
1.10
94kB
Shinni
12/23/17 02:06 PM
1.9
94kB
Shinni
12/11/17 01:18 PM
1.8
89kB
Shinni
12/10/17 08:07 AM
1.7a
87kB
Shinni
10/21/17 08:56 AM
1.7
5kB
Shinni
10/21/17 08:09 AM
1.6
87kB
Shinni
08/14/17 03:10 PM
1.5
87kB
Shinni
07/23/17 07:04 AM
1.4
82kB
Shinni
05/22/17 01:24 PM
1.3
82kB
Shinni
05/22/17 01:11 PM
1.2
64kB
Shinni
02/26/17 11:53 AM
1.1
58kB
Shinni
02/25/17 04:59 PM
1.0
58kB
02/25/17 01:24 PM


Post A Reply Comment Options
Unread 08/12/19, 10:07 PM  
chinamicah
 
chinamicah's Avatar

Forum posts: 0
File comments: 1
Uploads: 0
Workaround for Scalebreaker addon error

  1. Get the updated LibPreview files from ESO Master Recipe List. You want both LibPreview.lua and PreviewData.lua
  2. Paste both over the versions that came with ItemPreview/CraftingPreview/FurniturePreview
  3. Add the following line after line 296:
Code:
        return nil
The resulting code should look something like this:
Code:
294	if IsOutfitStyleArmor(outfitStyleId) then
295		categoryIndex = 12
296		numSubCategories = 7 -- 7 armor types
297		return nil -- continuing crashes the addon
298	end
299 if not categoryIndex then return nil end
Please note that this is a workaround, not a real fix. It disables armor preview - which wasn't working anyway, I think? - so that the rest of the addon will work
Report comment to moderator  
Reply With Quote
Unread 08/12/19, 10:31 PM  
JusticePlague

Forum posts: 0
File comments: 3
Uploads: 0
Re: Workaround for Scalebreaker addon error

Originally Posted by chinamicah
  1. Get the updated LibPreview files from ESO Master Recipe List. You want both LibPreview.lua and PreviewData.lua
  2. Paste both over the versions that came with ItemPreview/CraftingPreview/FurniturePreview
  3. Add the following line after line 296:
Code:
        return nil
I've never done something like this, Im a newb as screwing with these files, but I NEED my previews back. So, in that spirit, this may be the DUMBEST question...
Which file am I editing that into? XD
Report comment to moderator  
Reply With Quote
Unread 08/13/19, 10:34 AM  
ReallyRilee

Forum posts: 1
File comments: 9
Uploads: 0
Re: Re: Workaround for Scalebreaker addon error

Originally Posted by JusticePlague
Originally Posted by chinamicah
  1. Get the updated LibPreview files from ESO Master Recipe List. You want both LibPreview.lua and PreviewData.lua
  2. Paste both over the versions that came with ItemPreview/CraftingPreview/FurniturePreview
  3. Add the following line after line 296:
Code:
        return nil
I've never done something like this, Im a newb as screwing with these files, but I NEED my previews back. So, in that spirit, this may be the DUMBEST question...
Which file am I editing that into? XD
It looks like you're going to be editing the LibPreview.lua file that you paste in.


Edit: Can confirm that adding this line in the code fixes the issues with errors! Thank you for posting it!
Last edited by ReallyRilee : 08/13/19 at 12:58 PM.
Report comment to moderator  
Reply With Quote
Unread 08/13/19, 04:03 PM  
JusticePlague

Forum posts: 0
File comments: 3
Uploads: 0
AHA! Thank you. ReallyRilee! Dont know why that didnt even OCCUR to me <3 Got it working now, you guys rock!
Report comment to moderator  
Reply With Quote
Unread 08/13/19, 04:07 PM  
Neverlands
 
Neverlands's Avatar

Forum posts: 7
File comments: 570
Uploads: 0
Re: Workaround for Scalebreaker addon error

Originally Posted by chinamicah
  1. Get the updated LibPreview files from ESO Master Recipe List. You want both LibPreview.lua and PreviewData.lua
  2. Paste both over the versions that came with ItemPreview/CraftingPreview/FurniturePreview
  3. Add the following line after line 296:
Code:
        return nil
The resulting code should look something like this:
Code:
294    if IsOutfitStyleArmor(outfitStyleId) then
295        categoryIndex = 12
296        numSubCategories = 7 -- 7 armor types
297        return nil -- continuing crashes the addon
298    end
 299 if not categoryIndex then return nil end

Thank you I am so glad I can now keep this useful addon .
Report comment to moderator  
Reply With Quote
Unread 08/13/19, 05:50 PM  
Stabbitydoom

Forum posts: 0
File comments: 17
Uploads: 0
Re: Re: Workaround for Scalebreaker addon error

For us newbs, anyone want to throw that up as a file?

Originally Posted by Neverlands
Originally Posted by chinamicah
  1. Get the updated LibPreview files from ESO Master Recipe List. You want both LibPreview.lua and PreviewData.lua
  2. Paste both over the versions that came with ItemPreview/CraftingPreview/FurniturePreview
  3. Add the following line after line 296:
Code:
        return nil
The resulting code should look something like this:
Code:
294    if IsOutfitStyleArmor(outfitStyleId) then
295        categoryIndex = 12
296        numSubCategories = 7 -- 7 armor types
297        return nil -- continuing crashes the addon
298    end
 299 if not categoryIndex then return nil end

Thank you I am so glad I can now keep this useful addon .
Report comment to moderator  
Reply With Quote
Unread 08/15/19, 01:13 PM  
Amaljia

Forum posts: 0
File comments: 32
Uploads: 0
Re: Re: Re: Workaround for Scalebreaker addon error

Originally Posted by Stabbitydoom
For us newbs, anyone want to throw that up as a file?

Originally Posted by Neverlands
Originally Posted by chinamicah
  1. Get the updated LibPreview files from ESO Master Recipe List. You want both LibPreview.lua and PreviewData.lua
  2. Paste both over the versions that came with ItemPreview/CraftingPreview/FurniturePreview
  3. Add the following line after line 296:
Code:
        return nil
The resulting code should look something like this:
Code:
294    if IsOutfitStyleArmor(outfitStyleId) then
295        categoryIndex = 12
296        numSubCategories = 7 -- 7 armor types
297        return nil -- continuing crashes the addon
298    end
 299 if not categoryIndex then return nil end

Thank you I am so glad I can now keep this useful addon .
Would be nice for sure. I tried editing mine, but apparently I'm doing it wrong since I still get the errors
Report comment to moderator  
Reply With Quote
Unread 08/16/19, 05:19 AM  
Gamer1986PAN
AddOn Author - Click to view AddOns

Forum posts: 87
File comments: 651
Uploads: 2
Here is a link to chinamicah's Workaround-Zip-Archive - just replace the existing "Crafting Preview" folder.

Additional you should go with Rhyono's furniture preview fix here https://gofile.io/?c=PlVwEo
found this one here https://www.esoui.com/downloads/info....html#comments
Last edited by Gamer1986PAN : 08/16/19 at 06:44 AM.
Report comment to moderator  
Reply With Quote
Unread 08/20/19, 07:30 AM  
Coatmagic

Forum posts: 0
File comments: 5
Uploads: 0
Slightly different fix for mine but works fine now!

Did this bit: (and thank you for the heads up!)

1.Get the updated LibPreview files from ESO Master Recipe List. You want both LibPreview.lua and PreviewData.lua
2.Paste both over the versions that came with ItemPreview/CraftingPreview/FurniturePreview

but could not for the life of me find the bit of code to ad the next bit into so did tried this instead:

3. Change disablePreviewArmor = false to true
(using Notepad over here so no idea what line it is but it's right up at the top of the lua)

Anyway, hope this helps someone else that is unable to locate any of the code listed
Report comment to moderator  
Reply With Quote
Unread 09/27/19, 09:43 AM  
NeuroticPixels
Addon Addict
 
NeuroticPixels's Avatar
Premium Member

Forum posts: 211
File comments: 868
Uploads: 0
Thumbs up Use Rhyono's Fix

Originally Posted by Gamer1986PAN
you should go with Rhyono's furniture preview fix here https://gofile.io/?c=PlVwEo
Disregard everything else in the comments, and just install Rhyono's version from the link seen here.
https://gofile.io/?c=PlVwEo

Anything else you read on this comment page may just confuse you.

The addon only works for previewing furniture now, and not weapons or armor. This is due to a limitation ZOS implemented, and a workaround doesn't seem possible.

Rhyono has added ItemPreview functionality in their CraftStore addon. (The furniture list the addon provides allows you to preview any of the furniture with a simple click, as long as you have ItemPreview installed, too.)
Last edited by NeuroticPixels : 09/28/19 at 09:21 AM.
Report comment to moderator  
Reply With Quote
Unread 10/24/19, 10:41 AM  
Aliisa

Forum posts: 0
File comments: 17
Uploads: 0
I got the following Error:

Code:
user:/AddOns/FurniturePreview/Libs/LibPreview/LibPreview.lua:290: attempt to index a nil value
stack traceback:
user:/AddOns/FurniturePreview/Libs/LibPreview/LibPreview.lua:290: in function 'lib:GetOutfitCollectibleFromItemLink'
user:/AddOns/FurniturePreview/FurniturePreview.lua:221: in function 'FurPreview:IsItemLinkPreviewableArmor'
user:/AddOns/FurniturePreview/FurniturePreview.lua:331: in function 'FurPreview:CanPreviewItem'
user:/AddOns/FurniturePreview/FurniturePreview.lua:75: in function 'hookFunction'
EsoUI/Libraries/Utility/ZO_Hook.lua:18: in function 'SetInventorySlot'
EsoUI/Ingame/Inventory/InventorySlot.lua:2345: in function 'UpdateMouseoverCommand'
EsoUI/Ingame/Inventory/InventorySlot.lua:2426: in function 'ZO_InventorySlot_OnMouseEnter'
ZO_StackSplitSource_MouseEnter:3: in function '(main chunk)'
Report comment to moderator  
Reply With Quote
Unread 10/24/19, 02:18 PM  
HowellQagan
 
HowellQagan's Avatar

Forum posts: 11
File comments: 437
Uploads: 0
Originally Posted by Aliisa
I got the following Error:

Code:
user:/AddOns/FurniturePreview/Libs/LibPreview/LibPreview.lua:290: attempt to index a nil value
stack traceback:
user:/AddOns/FurniturePreview/Libs/LibPreview/LibPreview.lua:290: in function 'lib:GetOutfitCollectibleFromItemLink'
user:/AddOns/FurniturePreview/FurniturePreview.lua:221: in function 'FurPreview:IsItemLinkPreviewableArmor'
user:/AddOns/FurniturePreview/FurniturePreview.lua:331: in function 'FurPreview:CanPreviewItem'
user:/AddOns/FurniturePreview/FurniturePreview.lua:75: in function 'hookFunction'
EsoUI/Libraries/Utility/ZO_Hook.lua:18: in function 'SetInventorySlot'
EsoUI/Ingame/Inventory/InventorySlot.lua:2345: in function 'UpdateMouseoverCommand'
EsoUI/Ingame/Inventory/InventorySlot.lua:2426: in function 'ZO_InventorySlot_OnMouseEnter'
ZO_StackSplitSource_MouseEnter:3: in function '(main chunk)'
Same and it's because they disabled the furniture previewing option for addons. The weird thing is I don't even have this addon installed anymore, I think. Yet I still got the error. What the hell is happening.

edit: it's most likely Craftstore doing it: https://www.esoui.com/downloads/info....html#comments

edit2: I'm actually dumb, it was this addon, I thought I had it removed already
Last edited by HowellQagan : 10/25/19 at 11:17 AM.
Report comment to moderator  
Reply With Quote
Unread 11/11/19, 08:08 AM  
blindstargazer

Forum posts: 0
File comments: 11
Uploads: 0
Can we pls get a fix to this addon? Rhyonos furniture preview that we can dl and use with crafstore, wont work without itempreview turned on, and itempreview 100% bugs my crafting stations so that i cant deconstruct sometiems, and i sometimes see armor gear at jc station etc. So that workaround is a bit useless right now ;( Really miss being able to see what my recipies in my inventory looks like b4 i decide if i want to learn them or not, and i dont always want to go on external site to find out.
Report comment to moderator  
Reply With Quote
Unread 11/16/19, 04:42 PM  
HowellQagan
 
HowellQagan's Avatar

Forum posts: 11
File comments: 437
Uploads: 0
Originally Posted by blindstargazer
Can we pls get a fix to this addon? Rhyonos furniture preview that we can dl and use with crafstore, wont work without itempreview turned on, and itempreview 100% bugs my crafting stations so that i cant deconstruct sometiems, and i sometimes see armor gear at jc station etc. So that workaround is a bit useless right now ;( Really miss being able to see what my recipies in my inventory looks like b4 i decide if i want to learn them or not, and i dont always want to go on external site to find out.
ZOS disabled the preview via addons in the API, now we can only preview things at merchants if they have it enabled.
Report comment to moderator  
Reply With Quote
Unread 11/23/19, 10:53 AM  
NeuroticPixels
Addon Addict
 
NeuroticPixels's Avatar
Premium Member

Forum posts: 211
File comments: 868
Uploads: 0
Exclamation Re: Use Rhyono's Fix

Originally Posted by amber1019
Originally Posted by Gamer1986PAN
you should go with Rhyono's furniture preview fix here https://gofile.io/?c=PlVwEo
Disregard everything else in the comments, and just install Rhyono's version from the link seen here.
https://gofile.io/?c=PlVwEo

Anything else you read on this comment page may just confuse you.

The addon only works for previewing furniture now, and not weapons or armor. This is due to a limitation ZOS implemented, and a workaround doesn't seem possible.

Rhyono has added ItemPreview functionality in their CraftStore addon. (The furniture list the addon provides allows you to preview any of the furniture with a simple click, as long as you have ItemPreview installed, too.)
Update: ZOS changed the API more so that things can't be previewed in other ways. This addon is pretty much dead at this point.
ItemPreview still allowed me to view furnishings from my bag, but that's about it.

Plus, even Rhyono's version has a bug in it that adds multiple entries of things to the chat drop-down menu.
Seen here: https://www.esoui.com/forums/showthr...9716#post39716
If this ever gets working again, please fix that bug, too.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: