Search found 6 matches

by maslah
08 Sep 2023 11:22
Forum: Tips & Tricks, Questions & Answers
Topic: Can't set color filter for .recycle folder on network drives
Replies: 1
Views: 153

Can't set color filter for .recycle folder on network drives

As the title said, I'm not able to set a color filter for the samba .recycle folder on network drives.

Tried:

.recycle>a0a0a0
*recycle>a0a0a0
recycle>a0a0a0

no problems with other file-types, files or folders.
by maslah
01 Mar 2023 14:38
Forum: Bug Reports
Topic: NewItems folder: {yyyy_mm} in subfolder not replaced with date
Replies: 1
Views: 197

NewItems folder: {yyyy_mm} in subfolder not replaced with date

I like to create a main folder with year_month {yyyy_mm}_main with some subfolders and files, using the NewItems folder . The template {yyyy_mm} is not replaced in the subfolder.
Zwischenablage-2023-03-01.png
Zwischenablage-2023-03-01.png (3.24 KiB) Viewed 197 times
by maslah
01 Mar 2023 13:54
Forum: Tips & Tricks, Questions & Answers
Topic: Image Custom Column: use jpg or png
Replies: 2
Views: 240

Re: Image Custom Column: use jpg or png

Took me a little to long, because I forgot to switch the Custom Colum Type to Script :oops: . This works: $pngfile = ".\fpic\<cc_base>.png"; $jpgfile = ".\fpic\<cc_base>.jpg"; if(exists($pngfile) == "1") { return $pngfile; } else { return $jpgfile; }
by maslah
01 Mar 2023 13:01
Forum: Wishes
Topic: "audio waveform" or "image column"
Replies: 26
Views: 2239

Re: "audio waveform" or "image column"

admin wrote: 15 Feb 2023 12:41 Note that you can increase the line-height for the list only (not affecting the Catalog) by Ctrl+Shift+Wheel.
Can I set a custom button or script to switch between two line-heights?

As alternative to default?
by maslah
01 Mar 2023 12:51
Forum: Tips & Tricks, Questions & Answers
Topic: Image Custom Column: use jpg or png
Replies: 2
Views: 240

Image Custom Column: use jpg or png

Is it possibel to auto assing jpg or png for the Custom Column Image, depending what file exists?

Something like:

Code: Select all

if (.\fpic\<cc_base>.png) {
    return ".\fpic\<cc_base>.png";
} else {
    return ".\fpic\<cc_base>.jpg";
}