Search found 30 matches

by zhaowu
30 Mar 2023 17:51
Forum: Bug Reports
Topic: Thumbnails of some filetypes show in Windows Explorer but XYplorer
Replies: 66
Views: 3869

Re: Thumbnails of some filetypes show in Windows Explorer but XYplorer

One more thing...... Is it configurable to add those filetypes including svg, ai, and eps as candidates for Folder Thumbnail?
by zhaowu
30 Mar 2023 17:32
Forum: Bug Reports
Topic: Thumbnails of some filetypes show in Windows Explorer but XYplorer
Replies: 66
Views: 3869

Re: Thumbnails of some filetypes show in Windows Explorer but XYplorer

Just to make sure, I repeat: If any of these lines produce an image on the preview pane, then a thumbnail and a Hover Box can definitely be shown for that file: preview , t; preview , te32; preview , tf32; preview , tf64; At the moment I cannot really see why this should not work. :? It all depends...
by zhaowu
30 Mar 2023 12:45
Forum: Bug Reports
Topic: Thumbnails of some filetypes show in Windows Explorer but XYplorer
Replies: 66
Views: 3869

Re: Thumbnails of some filetypes show in Windows Explorer but XYplorer

For me this 2 works preview , tf32; preview , tf64; The normal preview is fine but the Hoverbox doesn't show anything. Here my test file Steps.zip Explorer has no problem to show thumbnails of it. For me, besides the two you mentioned, preview , t; works too. https://files.catbox.moe/p95tvp.png
by zhaowu
30 Mar 2023 12:39
Forum: Bug Reports
Topic: Thumbnails of some filetypes show in Windows Explorer but XYplorer
Replies: 66
Views: 3869

Re: Thumbnails of some filetypes show in Windows Explorer but XYplorer

admin wrote: 30 Mar 2023 11:22

Code: Select all

preview , t;
preview , te32;
preview , tf32;
preview , tf64;
Which work, which don't work?
Test on avg, ai, and eps filetypes, all 4 preview code snippets work except that preview , te32; is not working for svg.
by zhaowu
30 Mar 2023 10:23
Forum: Bug Reports
Topic: Thumbnails of some filetypes show in Windows Explorer but XYplorer
Replies: 66
Views: 3869

Re: Thumbnails of some filetypes show in Windows Explorer but XYplorer

For the svg files, the hover preview is not working at first. After I add svg to `Preview Formats| Preview as Thumbnails`, it shows up. Does this mean XYplorer can get the thumbnail correctly for preview? Attached is the cached thumbnail files for the referred folder. Don't know if it is helpful.
by zhaowu
30 Mar 2023 09:51
Forum: Bug Reports
Topic: Thumbnails of some filetypes show in Windows Explorer but XYplorer
Replies: 66
Views: 3869

Re: Thumbnails of some filetypes show in Windows Explorer but XYplorer

1) What are your settings here, ticked or unticked? Configuration | Preview | Thumbnails | Show thumbnails for non-images Configuration | Other | Shell Integration | 64-bit Windows | Use 64-bit preview handlers for preview Configuration | Other | Shell Integration | 64-bit Windows | Fall back to pr...
by zhaowu
29 Mar 2023 19:21
Forum: Bug Reports
Topic: Thumbnails of some filetypes show in Windows Explorer but XYplorer
Replies: 66
Views: 3869

Re: Thumbnails of some filetypes show in Windows Explorer but XYplorer

It doesn't work. I double checked the editconf , "Thumbs64Ext"; for the Thumbs64Ext value. I can even see the preview from Hoverbox, but the thumbnails are not showing. I tried to refresh thumbnails and move the images to different drives. They just work in Windows Explorer but XYplorer. h...
by zhaowu
29 Mar 2023 05:55
Forum: Bug Reports
Topic: Thumbnails of some filetypes show in Windows Explorer but XYplorer
Replies: 66
Views: 3869

Thumbnails of some filetypes show in Windows Explorer but XYplorer

Thumbnails of filetypes including svg, eps, ai show in Windows Explorer but XYplorer. Why and how to fix it?

Image
by zhaowu
26 Feb 2020 04:11
Forum: Wishes
Topic: External copy handlers and tags
Replies: 2
Views: 1592

Re: External copy handlers and tags

Same wish!
by zhaowu
13 Jan 2019 03:47
Forum: Bug Reports
Topic: '<xyicons>' is interpolated within single-quotes
Replies: 8
Views: 1495

Re: '<xyicons>' is interpolated within single-quotes

admin wrote: 12 Jan 2019 10:40 I see. So, since v19.50.0116 it works again, right?
Yes, it is working now. Thanks!
by zhaowu
12 Jan 2019 06:00
Forum: Bug Reports
Topic: '<xyicons>' is interpolated within single-quotes
Replies: 8
Views: 1495

Re: '<xyicons>' is interpolated within single-quotes

Damn, I just decided the other way. The correct code for double-resolving should be this: $var = '<xyicons>'; msg eval($var); The current behavior is simply wrong. :| This is how I found this problem. The code was intended to replace copy path with shorter and portable path when I add custom icons ...
by zhaowu
06 Jan 2019 06:45
Forum: Bug Reports
Topic: '<xyicons>' is interpolated within single-quotes
Replies: 8
Views: 1495

'<xyicons>' is interpolated within single-quotes

Code: Select all

    $var = '<xyicons>';
    msg $var;
The $var is interpolated and the msg is something like C:\xxx\XYplorer\Data\Icons
by zhaowu
10 Nov 2016 10:56
Forum: Bug Reports
Topic: writefile() default mode bug: text is unexpectedly chopped
Replies: 14
Views: 2589

Re: writefile() default mode bug: text is unexpectedly chopp

This should be the Raw View of the created file: 00000000: E7 BA BD E7 BA A6 E7 81 BE E6 98 9F 20 54 68 65 ; 纽约灾星 The 00000010: 20 4A 69 6E 78 3A 20 54 68 65 20 4C 69 66 65 20 ; Jinx: The Life 00000020: 61 6E 64 20 44 65 61 74 68 73 20 6F 66 20 52 6F ; and Deaths of Ro 00000030: 62 65 72 74...
by zhaowu
10 Nov 2016 09:14
Forum: Bug Reports
Topic: writefile() default mode bug: text is unexpectedly chopped
Replies: 14
Views: 2589

Re: writefile() default mode bug: text is unexpectedly chopp

SC writefile does not support utf-8 conversion. You can use utf8encode() on the string to convert it before passing it to writefile. $text = "纽约灾星 The Jinx: The Life and Deaths of Robert Durst (2015)"; writefile("<xydata>\Log\XYplorer.log", utf8encode($text.<crlf>), 'a', 't'); T...
by zhaowu
10 Nov 2016 06:06
Forum: Bug Reports
Topic: writefile() default mode bug: text is unexpectedly chopped
Replies: 14
Views: 2589

Re: writefile() default mode bug: text is unexpectedly chopp

v17.30.0102 - 2016-11-09 20:53 ! SC writefile: On DBCS locales (using double-byte character sets: Chinese, Japanese, Korean) text with Unicode characters would be cropped at the end when you passed 't' as mode parameter. Fixed. Thanks for the fix. However, this update writes file as utf-16le which ...