Search found 51 matches

by sj515064
11 Mar 2019 15:34
Forum: Reviews
Topic: Like a new feature? Say thanks here
Replies: 880
Views: 312623

Re: Like a new feature? Say thanks here

Thanks for supporting wrapped file names in the report :D
by sj515064
11 Mar 2019 13:33
Forum: Bug Reports
Topic: File information prompts Chinese garbled
Replies: 42
Views: 7829

Re: File information prompts Chinese garbled

Tested with the latest beta, still no luck :|

Code: Select all

text dbcsdecode("ÃɹÅÌìÔÏ ¢ò", 936);
produces "?é1?ìì?? ¢ò"

So do the other two scripts.

This is really mysterious, simply forget it... :veryconfused:
by sj515064
11 Mar 2019 11:23
Forum: Bug Reports
Topic: File information prompts Chinese garbled
Replies: 42
Views: 7829

Re: File information prompts Chinese garbled

In the next beta you can try this:
Will try it upon next beta :)
by sj515064
11 Mar 2019 11:21
Forum: Bug Reports
Topic: [FIXED] Reporting two bugs
Replies: 8
Views: 1113

Re: [FIXED] Reporting two bugs

Glad to hear that :D
by sj515064
11 Mar 2019 09:04
Forum: Bug Reports
Topic: File information prompts Chinese garbled
Replies: 42
Views: 7829

Re: File information prompts Chinese garbled

System Locale ID: 2052 (zh-CN) Thread Locale ID: 2052 (zh-CN) Default ANSI Code Page: 936 (ANSI/OEM - 简体中文 GBK) Active ANSI Code Page: 936 (ANSI/OEM - 简体中文 GBK) Default OEM code page: 936 (ANSI/OEM - 简体中文 GBK) Active OEM Code Page: 936 (ANSI/OEM - 简体中文 GBK) Is DBCS Code Page: Yes Main Contents Font...
by sj515064
11 Mar 2019 06:04
Forum: Bug Reports
Topic: File information prompts Chinese garbled
Replies: 42
Views: 7829

Re: File information prompts Chinese garbled

19.70.0.121,Still not solved! No luck with me, either. Meta tab in Info Panel: OK Raw View in Info Panel: OK (the first two lines containing the ID3 show correctly) Columns with special property (like "Tag Album", "Tag Artist", ...): no Hover box: no standard "property"...
by sj515064
11 Mar 2019 05:51
Forum: Bug Reports
Topic: [FIXED] Reporting two bugs
Replies: 8
Views: 1113

Re: Reporting two bugs

I see it now, with Line feed on oversized filenames ticked, there are line feeds, but not within file names. Not a big problem, but a bit ambiguous, and may not be friendly for printing :) The originally expected behavior is as follows: (just for your reference, not requesting a fix for it) Wrapped ...
by sj515064
10 Mar 2019 16:57
Forum: Bug Reports
Topic: File information prompts Chinese garbled
Replies: 42
Views: 7829

Re: File information prompts Chinese garbled

admin wrote: 10 Mar 2019 16:42 Looks garbled here (German locale):
My PC shows correctly for this file in this window (Chinese locale).
But the hover box is garbled.

It is strange that the "Meta" tab in the Info Panel is without the problem, though.
by sj515064
10 Mar 2019 16:26
Forum: Bug Reports
Topic: File information prompts Chinese garbled
Replies: 42
Views: 7829

Re: File information prompts Chinese garbled

admin wrote: 10 Mar 2019 15:50 How does it look in Windows Explorer? Also garbled?
A confirm:

I have downloaded the file and everything looks fine in the standard "property" window of the file.

My PC is also using the CJK locale.
by sj515064
10 Mar 2019 15:16
Forum: Bug Reports
Topic: [FIXED] Reporting two bugs
Replies: 8
Views: 1113

Re: Reporting two bugs

To be specific, "ineffective" means that:
1. With Line feed on oversized filenames ticked, no line feed occurs when there are oversized filenames.
2. Select some files, and click File | File Special | Add to Zip..., nothing happens.
by sj515064
10 Mar 2019 09:13
Forum: Bug Reports
Topic: [FIXED] Reporting two bugs
Replies: 8
Views: 1113

[FIXED] Reporting two bugs

As follows:
Snipaste_2019-03-10_16-09-04.jpg
Snipaste_2019-03-10_16-09-04.jpg (30.55 KiB) Viewed 1113 times
Snipaste_2019-03-10_16-10-28.jpg
Snipaste_2019-03-10_16-10-28.jpg (52.23 KiB) Viewed 1113 times
by sj515064
08 Mar 2019 13:47
Forum: Tips & Tricks, Questions & Answers
Topic: [SOLVED] Color filter by custom columns -- is this possible?
Replies: 15
Views: 2120

Re: Color filter by custom columns -- is this possible?

Thanks :) I'll spare more time reading the scripting manual.
by sj515064
08 Mar 2019 13:30
Forum: Tips & Tricks, Questions & Answers
Topic: [SOLVED] Color filter by custom columns -- is this possible?
Replies: 15
Views: 2120

Re: Color filter by custom columns -- is this possible?

You need to quote the full path, not only a part of it... I finally figure it out: It should be run "cmd /c command ""<curpath>"" > ""<xydata>\temp\output.txt", ,2,0; rather than run "cmd /c command ""<curpath>"" > ""<xydata...
by sj515064
08 Mar 2019 12:50
Forum: Tips & Tricks, Questions & Answers
Topic: [SOLVED] Color filter by custom columns -- is this possible?
Replies: 15
Views: 2120

Re: Color filter by custom columns -- is this possible?

highend wrote: 08 Mar 2019 12:37 And looking at how it is done for <curpath> does not help? oO
I remember it now :) -- Paths with whitespace should be quoted, like this "PATH".

The post has been updated.
by sj515064
08 Mar 2019 12:35
Forum: Tips & Tricks, Questions & Answers
Topic: [SOLVED] Color filter by custom columns -- is this possible?
Replies: 15
Views: 2120

Re: Color filter by custom columns -- is this possible?

run "cmd /c command ""<curpath>"" > <xydata>\temp\output.txt", ,2,0; You'll get into trouble if <xydata> is a path that contains a space! Thanks for the alert :) I'm a newbie in XY scripting. I think adding or removing some quotation marks will help to avoid the proble...