Yes, this fixed it! I tried it before but I guess I was using the 32 bit libraries, which is not needed anymore. Works right away with the current versions of DarkThumbs and XYplorer, no other steps needed.admin wrote: ↑05 Dec 2024 19:16 Try this script:Code: Select all
extlist("thumbs64", "epub", "a"); //add epub to the 64-bit Thumbnails
missing epub thumbs, again :'(
Re: missing epub thumbs, again :'(
Re: missing epub thumbs, again :'(
I already had this entry.admin wrote: ↑05 Dec 2024 19:16 Try this script:Code: Select all
extlist("thumbs64", "epub", "a"); //add epub to the 64-bit Thumbnails
It doesn't fix it for me.
The culprit must be one more setting ?
Windows 11 Home, Version 25H2 (OS Build 26200.7019)
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1400a (x64), Everything Toolbar 2.1.0, Listary Pro 6.3.6.99
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1400a (x64), Everything Toolbar 2.1.0, Listary Pro 6.3.6.99
Re: missing epub thumbs, again :'(
And from the very first post:
Also in the forums I found mention of a new Thumbs64Ext option in the ini file, again not sure if related but I added epub there as well. no change.
One of my scripts helped you out? Please donate via Paypal
Re: missing epub thumbs, again :'(
Yes, my own post
Re: missing epub thumbs, again :'(
Thank you admin for pointing me in the right direction!
Re: missing epub thumbs, again :'(
Fun fact: I don't have either pdf or epub thumbnails in Windows Explorer, but I don't care 'cause I never use it 
-
admin
- Site Admin
- Posts: 64835
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: missing epub thumbs, again :'(
Another fun fact: all the things you did to make EPUB thumbs work have been factory defaults for many versions.
FAQ | XY News RSS | XY X
Re: missing epub thumbs, again :'(
Well, I finally upgraded!
Good to see that the latest XYplorer is still fully compatible with Windows 7, for most other software you have to dig into older versions and find out the latest one that worked.
Good to see that the latest XYplorer is still fully compatible with Windows 7, for most other software you have to dig into older versions and find out the latest one that worked.
Re: missing epub thumbs, again :'(
It's already in Document files.
Windows 11 Home, Version 25H2 (OS Build 26200.7019)
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1400a (x64), Everything Toolbar 2.1.0, Listary Pro 6.3.6.99
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1400a (x64), Everything Toolbar 2.1.0, Listary Pro 6.3.6.99
-
admin
- Site Admin
- Posts: 64835
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: missing epub thumbs, again :'(
It should be in document files (and be checked there), and in thumbs64. If it still doesn't work, I'm out of ideas.
FAQ | XY News RSS | XY X
Re: missing epub thumbs, again :'(
It is in both places
Tested with a fresh instance, there it works !
Here my ini file,(License info removed)
- Attachments
-
- XYplorer.zip
- (36 KiB) Downloaded 59 times
Windows 11 Home, Version 25H2 (OS Build 26200.7019)
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1400a (x64), Everything Toolbar 2.1.0, Listary Pro 6.3.6.99
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1400a (x64), Everything Toolbar 2.1.0, Listary Pro 6.3.6.99
Re: missing epub thumbs, again :'(
Try this,
If you are in thumbnail view when you run it, afterwards you'll need to refresh the epub thumbnails.
tweak("PreviewEarlyFactory", 0);If you are in thumbnail view when you run it, afterwards you'll need to refresh the epub thumbnails.
Re: missing epub thumbs, again :'(
Works perfect now
Many thanks for your help.
Windows 11 Home, Version 25H2 (OS Build 26200.7019)
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1400a (x64), Everything Toolbar 2.1.0, Listary Pro 6.3.6.99
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1400a (x64), Everything Toolbar 2.1.0, Listary Pro 6.3.6.99
-
klownboy
- Posts: 4397
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.7171 at 100% 2560x1440
Re: missing epub thumbs, again :'(
I was curious what my PreviewEarlyFactory was set to on seeing this. My setting is "2". For history and background info see viewtopic.php?p=208701#p208701 Don's post from last year.
Code: Select all
There are many ways to create thumbnails (IShellItemImageFactory, IExtractImage, GDI, native code), and many factors (file types, Windows version, installed CODECs and thumbnail handlers) that control performance, quality, problems. The situation is almost infinitely complex. It is pointless to expose all of this mess to the user -- it would make him a programmer rather than a user. But there are at least some options available to the user:
Configuration:
- Configuration | Preview | Previewed Formats
- Configuration | Preview | Thumbnails | Show thumbnails for RAW files
- Configuration | Preview | Thumbnails | Show thumbnails for non-images
- Configuration | Preview | Thumbnails | Quality
Tweaks:
- Thumbs64Skip
- Thumbs64Ext
- PreviewEarlyFactory
PreviewEarlyFactory originally controlled the sequence of attempts (which way to try first); in the meantime its function became it bit broader:
0 = [default] try IShellItemImageFactory first for some file types (internally hard-coded after years of experience), on failure fall back to IExtractImage
1 = try IShellItemImageFactory first for all file types, on failure fall back to IExtractImage
2 = try IExtractImage first for all file types, on failure fall back to IShellItemImageFactory
3 = try IExtractImage only for all file types, never try IShellItemImageFactory (added 20230309, not yet documented until now :) )
4 = [planned], bit OR-ed to the above values, making them 4,5,6,7: run IShellItemImageFactory in separate (64-bit) thread
XYplorer Beta Club