QUOTE(stampgevaar @ Jun 13 2007, 05:03)

one thing that I'm really missing in the library filter is that it doesn't go automatically further to the next level if something is !null!
an example to make myself clear:
level 1;$if($strstr(%discogs_format%,Vinyl),Vinyl,$if($strstr(%discogs_format%,CD),CD,Unknown))
level 2:$if($strstr(%discogs_format%,Vinyl),%discogs_label%,!null!)
level 3:$if($strstr(%discogs_format%,Vinyl),%discogs_catalog%,%album%)
It would be cool if the discogs label is not shown if the vinyl is not present in the discogs_format tag but that it would then just shows level three en sorts on album
maybe try something like this:
CODE
level 1;$if($strstr(%discogs_format%,Vinyl),Vinyl,$if($strstr(%discogs_format%,CD),CD,Unknown))
level 2:$if($strstr(%discogs_format%,Vinyl),%discogs_label%,%album%)
level 3:$if($strstr(%discogs_format%,Vinyl),%discogs_catalog%,!null!)
QUOTE(metal_termite @ Jun 14 2007, 23:56)

Anyway why do the characters 'ACK' with a black background get put on the active line in the edit box if CTRL+F are pressed. What does this 'ACK' thing mean?
you have some sort of control characters in your formatting string that could be causing problems. try to remove them.
QUOTE(Purple Monkey @ Jun 15 2007, 15:17)

Was $get_global support in SCPL removed? If so any reason why, as it works in Track Display :s. I don't want to copy and paste my complex globals into half of my config.
yes. it was causing some slowdowns. use the panels ui user / track / layout globals instead.
QUOTE(mil3s @ Jun 15 2007, 16:33)

Feature request. The ability to add entries (links to .pp files) in the Library menu. Would be a cool feature imo since I have the Library Filter in a separate window, and I can't currently find a good place in my design to put a link for it. The Library menu would be perfect.
I've been meaning to do this (eg specify a pui as your "library" pui, that you can use in any layout....), but have to resolve some path issues first.
QUOTE(towa @ Jun 16 2007, 10:44)

I just updated my panelsui from 0.13.5 to 0.13.8 and now I have some squares before everything in my Library filter (everything but the headers) First i thought it had something to do with my config, but it also happens with the basic.pui. I also tried to remove everything but %criteria% in the layout settings but there were still squares.
check your track globals for stray characters.
QUOTE(towa @ Jun 16 2007, 11:24)

Is it possible in the library filter to have subcategories that exist based on tags? For example: if I have some songs that don't have a date specified, I want them grouped in a 'No Date' group that isn't expandable. The songs that do have a date are grouped in 80s,90setc and can be expanded to 1991,1992 etc. With my current config i get Dates>90s>1991, but I also get dates>No Date>? where I would like Dates>No Date.
1: $if($meta_test(date),$mul($div(%date%,10),10)s,No Date)
2: $if($meta_test(date),-$mod(%date%,10),!null!)
QUOTE(FofR @ Jun 16 2007, 12:10)

Any chance of one of the Sort By defaults being "By Directory"?
I've added it... I just have to remember to update the defaults for the next version (if not just remind me

).