Search found 205 matches

by jaywalker32
19 Oct 2023 19:46
Forum: Tips & Tricks, Questions & Answers
Topic: How to 'Open in Other Pane' when Shift is pressed?
Replies: 3
Views: 190

Re: How to 'Open in Other Pane' when Shift is pressed?

Yeah, but that's only available in the tree, right? Unless there's someplace I can configure that for the List as well (to something like Alt-DblClick)?
On the list, there isn't a shortcut shown for the 'Open in Other Pane' context menu item like in the tree.
by jaywalker32
19 Oct 2023 14:16
Forum: Tips & Tricks, Questions & Answers
Topic: How to 'Open in Other Pane' when Shift is pressed?
Replies: 3
Views: 190

How to 'Open in Other Pane' when Shift is pressed?

I want a folder to "Open in other pane" if I double-click on it with Shift pressed. I tried this script for the CEA - Before Browsing a Folder: if(<get shift> == 1) { #1062; } It works, but it also does the default action of the "double-click". It there a way to "cancel"...
by jaywalker32
18 Oct 2023 05:29
Forum: Bug Reports
Topic: Low Quality Thumbs for High Res Images
Replies: 17
Views: 2396

Re: Low Quality Thumbs for High Res Images

Tested with the latest beta and can confirm it is working now. Thanks again!
by jaywalker32
17 Oct 2023 16:28
Forum: Bug Reports
Topic: Low Quality Thumbs for High Res Images
Replies: 17
Views: 2396

Re: Low Quality Thumbs for High Res Images

Yeah, should be enough.

But can't it be option d) like you mentioned originally, with 50MP being default? d) add a tweak to define the limit
Just to be future-proof.
by jaywalker32
17 Oct 2023 15:34
Forum: Bug Reports
Topic: Low Quality Thumbs for High Res Images
Replies: 17
Views: 2396

Re: Low Quality Thumbs for High Res Images

That's great news! Thanks! :tup:

This particular image is from a website banner or something which is why the weird aspect ratio, but usually it's the original images from hq photography which gives the most problems.
by jaywalker32
17 Oct 2023 14:59
Forum: Bug Reports
Topic: Low Quality Thumbs for High Res Images
Replies: 17
Views: 2396

Re: Low Quality Thumbs for High Res Images

For example the attached one: with 'crisp': crisp.png with 'high speed': highspeed.png The 'high speed' actually looks pretty decent here, but I don't want to set it as default because sometimes it produces blurry thumbs (not as bad as the 'crisp' one tho). I uploaded the full image to mega (too big...
by jaywalker32
08 Oct 2023 13:31
Forum: Bug Reports
Topic: Low Quality Thumbs for High Res Images
Replies: 17
Views: 2396

Re: Low Quality Thumbs for High Res Images

Was this tweak ever implemented? I actually have this issue constantly. I have my default thumb set to Crisp, but images of ~> 6MB and 8000x4000 generate extremely low quality thumbs. Some things I noticed: The low quality thumbs get generated almost instantly Manually selecting and re-gening Crisp ...
by jaywalker32
26 Sep 2023 12:45
Forum: Tips & Tricks, Questions & Answers
Topic: Variable expansion inside associative array definition
Replies: 2
Views: 180

Variable expansion inside associative array definition

Is there a way to make the script get the value of $dogname in the following script?

Code: Select all

  $dogname = "rex";
  $name = array("cat" => "pussy", "dog" => $dogname); echo $name["dog"];
Expected:

Code: Select all

rex
Actual:

Code: Select all

$dogname
by jaywalker32
17 Jan 2023 08:40
Forum: Tips & Tricks, Questions & Answers
Topic: Virtual Folders vs Paper Folders
Replies: 27
Views: 1448

Virtual Folders vs Paper Folders

Can I get a quick rundown of the differences between the two? I'm not seeing anything in the help file (not updated yet, I guess) I currently make extensive use of Paper Folders to organize files which are distributed in various drives and folders. Is there some killer use-case for virtual folders I...
by jaywalker32
24 Dec 2022 14:18
Forum: Tips & Tricks, Questions & Answers
Topic: Help with QuickSearch age param
Replies: 6
Views: 343

Re: Help with QuickSearch age param

So fast! Ok, tested and confirmed it working now.

Thanks again!
by jaywalker32
24 Dec 2022 14:12
Forum: Tips & Tricks, Questions & Answers
Topic: Help with QuickSearch age param
Replies: 6
Views: 343

Re: Help with QuickSearch age param

The "Tags DB Only" thing might be just a query parser display bug, since it is definitely searching the tags db only even if it says "No".

Thanks. I shall await the update.
by jaywalker32
24 Dec 2022 10:50
Forum: Tips & Tricks, Questions & Answers
Topic: Help with QuickSearch age param
Replies: 6
Views: 343

Re: Help with QuickSearch age param

They're getting parsed as expected (I assume the mode#12 is some internal code for ageM): However, I don't know why "Tags DB Only: No", since I specified the /t. Query: :(ageM: < 10 m) AND (lbl:Red OR lbl:purple) /t /? Parsed: mode#12: < [10 m] AND (Label: "red" OR Label: "p...
by jaywalker32
24 Dec 2022 06:30
Forum: Tips & Tricks, Questions & Answers
Topic: Help with QuickSearch age param
Replies: 6
Views: 343

Help with QuickSearch age param

I'm trying to do a quick search of tagged files with age less than 10 months.

This doesn't work:

Code: Select all

This PC?:(ageM: < 10 m) AND (lbl:Red OR lbl:purple) /t
But this works (for files OLDER than 10 months):

Code: Select all

This PC?:(ageM: > 10 m) AND (lbl:Red OR lbl:purple) /t
Is my syntax wrong somehow?
by jaywalker32
20 Oct 2022 09:07
Forum: Tips & Tricks, Questions & Answers
Topic: Set Folder View via script
Replies: 4
Views: 594

Re: Set Folder View via script

Ok, thx. I can work with this.
by jaywalker32
20 Oct 2022 08:14
Forum: Tips & Tricks, Questions & Answers
Topic: Set Folder View via script
Replies: 4
Views: 594

Re: Set Folder View via script

I can get the command id to pop up the FolderView settings gui. But is there a way to set it programmatically? Something like folderView("c:\wallpapers", "thumbnails #1", "name") Or even a text file I can edit? But I think they're stored in fvs.dat, so maybe not.