Search found 222 matches

by fishgod
21 Dec 2020 23:03
Forum: Bug Reports
Topic: Odds in Drives List
Replies: 10
Views: 1892

Re: Odds in Drives List

Nice, this looks really good :) Thank you :cup:
by fishgod
20 Dec 2020 22:30
Forum: Bug Reports
Topic: Odds in Drives List
Replies: 10
Views: 1892

Re: Odds in Drives List

OK, so the bars do not reflect what I have expected (and it confused other users to). So, why not make these bars represent the drive fullyness? I think that would be of much more use (and would be the more expected behaviour as the tiles-view also shows drive-fullyness) The Cluster-size is indeed i...
by fishgod
20 Dec 2020 01:42
Forum: Bug Reports
Topic: Odds in Drives List
Replies: 10
Views: 1892

Re: Odds in Drives List

I can't reproduce the view your screenshot shows, including the identical bars, while using Windows 10 20H2. I'm deducing from the screenshot that you see this problem in Windows 7, or also in Windows 10? It's not only that there are all identical, they absolutly do not reflect the drive fullyness,...
by fishgod
19 Dec 2020 23:34
Forum: Bug Reports
Topic: Odds in Drives List
Replies: 10
Views: 1892

Odds in Drives List

Two minor things in the drives-list seem odd to me: 1. Bars in used Space all look the same regardless of % free (or I am not understanding what they are trying to tell me) 2. "Per Cluster"-Column is allways shown in bytes regardless of the selected mode (e.g. flexible) See screenshot for ...
by fishgod
25 Nov 2020 08:04
Forum: Wishes
Topic: "No progress dialog on duplication" with threshold
Replies: 10
Views: 1907

Re: "No progress dialog on duplication" with threshold

Just discovered, it also applies to "intra-volume moves". While this is exactly what you documented in the changelog, its not really what I wanted. I wanted a dialog to pop up for operations that actually consume a lot of time to know what XYplorer is doing. I ran a script that moved 10 fi...
by fishgod
23 Nov 2020 17:50
Forum: Wishes
Topic: "No progress dialog on duplication" with threshold
Replies: 10
Views: 1907

Re: "No progress dialog on duplication" with threshold

just tried the Tweak for duplications.
Works like a charm. :beer:
Thank you.
by fishgod
15 Nov 2020 14:36
Forum: Wishes
Topic: "No progress dialog on duplication" with threshold
Replies: 10
Views: 1907

Re: "No progress dialog on duplication" with threshold

Good point, didn't thought on that case, in my mind this was always a single-file operation. But when its a deeply nested folder, analyzing and creating the new structure would also take some time (which qualifies for progress-feedback). First of all the determination-process could stop immediately ...
by fishgod
14 Nov 2020 02:37
Forum: Wishes
Topic: "No progress dialog on duplication" with threshold
Replies: 10
Views: 1907

"No progress dialog on duplication" with threshold

The setting No progress dialog on duplication is quite usefull for small files, like when you duplicate a small text file, which happens to finish instantly. So opening a status-window (and closing it by hand) is really unwanted bloat. But recently I duplicated a 14GB file, which takes some time on ...
by fishgod
13 Feb 2020 13:45
Forum: Tips & Tricks, Questions & Answers
Topic: Get state of items in clipboard
Replies: 3
Views: 1124

Re: Get state of items in clipboard

Thank you very much.
Am I right, that this is a completely undocumented feature?
I haven't found anything in the help-file.
by fishgod
13 Feb 2020 13:18
Forum: Tips & Tricks, Questions & Answers
Topic: Get state of items in clipboard
Replies: 3
Views: 1124

Get state of items in clipboard

Is there any way to determine the state (cut/copied) of items in <clipboard> via scripting?
by fishgod
07 Feb 2020 07:20
Forum: Wishes
Topic: Group shortcuts to folders with folders
Replies: 2
Views: 1427

Re: Group shortcuts to folders with folders

Maybe not as compfortable as if XY would support it nativly, but you could also disable sort folders apart and build it with a custom column und sort by that column: return (exists(<cc_item>)==2 || exists(property("#LinkTarget", <cc_item>))==2) ? 'F' : ''; You could use is as primary sort ...
by fishgod
06 Feb 2020 17:21
Forum: Wishes
Topic: Items count for archives zip rar 7z
Replies: 12
Views: 2515

Re: Items count for archives zip rar 7z

Right Click Column Header -> Add Column -> Right Click that Column -> Select Custom Column -> select an unused Column -> now again Rightclick the Columnheader -> Edit Custom Column ...# -> fill like this: "Archive Count" $list = runret("C:\PG\7-Zip\7z.exe l -slt ".quote(<cc_item>...
by fishgod
04 Feb 2020 18:02
Forum: Wishes
Topic: Better Auto Replace Invalid Characters
Replies: 0
Views: 4182

Better Auto Replace Invalid Characters

May I propose a better solution to replace all invalid characters with one replacement : Since the list of invalid characters is rather small, one could use a list of replacment-characters for every invalid character(combination) and use similar unicode-variants like this: (I use this allready for s...
by fishgod
16 Sep 2019 20:35
Forum: Tips & Tricks, Questions & Answers
Topic: Scripting Memory-Leak / Speed Degrading
Replies: 38
Views: 7248

Re: Scripting Memory-Leak / Speed Degrading

There is at least one issue with the new warning (refering to the discussion going on here: https://www.xyplorer.com/xyfc/viewtopic.php?f=2&t=20928&p=172636) Setup a custom column with a script like this: include_once 'lib.inc.xys'; return f1(); The lib.inc.xys -file: function f1() { return ...
by fishgod
16 Sep 2019 19:19
Forum: Bug Reports
Topic: SC load with fc bug on calling sub
Replies: 10
Views: 1789

Re: SC load with fc bug on calling sub

The new warning is a result of the discussion from this thread: viewtopic.php?f=3&t=20889&start=15#p172617

I also get this warning with my script, everything looks correct so far. Let me try to build a minimal example that causes the behaviour.