Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: [Not My Release] Library Tree (Read 129844 times) previous topic - next topic
0 Members and 3 Guests are viewing this topic.

[Not My Release] Library Tree

Reply #50
Hi! I don't know what to write in "view format" to see only the rate songs and in order... Anyone can help me?


i dont know if this is any use to you but this is what i have for something similar in Album List Panel, just a few things will need chaging for Library Tree (ie, the | switch, cant remember what it is in Library Tree)

Code: [Select]
$if($strcmp(%rating%,'5'),'?????',$if($strcmp(%rating%,'4'),'?????',$if($strcmp(%rating%,'3'),'?????',$if($strcmp(%rating%,'2'),'?????',$if($strcmp(%rating%,'1'),'?????',$if($strcmp(%rating%,'?'),'?????',%rating%))))))|
$if($stricmp($ext(%filename_ext%),'CUE'),'CUE',$if($stricmp($ext(%filename_ext%),'WMA'),'MP3',$if($stricmp($ext(%filename_ext%),'OGG'),'MP3',$if($stricmp($ext(%filename_ext%),'M4A'),'MP3',$if($stricmp($ext(%filename_ext%),'MP3'),'MP3',$if($stricmp($ext(%filename_ext%),'FLAC'),'FLAC lossless',$ext(%filename_ext%)))))))|
[$swapprefix($if2(%album artist%,%artist%))' - ']$if2(%album%,%title%)[' ('%discnumber%$if(%totaldiscs%,'/'%totaldiscs%)')']' '['['%date%']']|
[%tracknumber%. ][%artist% - ]%title%' '['('%length%')']' '['['%play_count%']']


this seperates by rating, then file extension, artist - album etc.

hope its off some help

[Not My Release] Library Tree

Reply #51
Hi! I don't know what to write in "view format" to see only the rate songs and in order... Anyone can help me?


i dont know if this is any use to you but this is what i have for something similar in Album List Panel, just a few things will need chaging for Library Tree (ie, the | switch, cant remember what it is in Library Tree)

Code: [Select]
$if($strcmp(%rating%,'5'),'?????',$if($strcmp(%rating%,'4'),'?????',$if($strcmp(%rating%,'3'),'?????',$if($strcmp(%rating%,'2'),'?????',$if($strcmp(%rating%,'1'),'?????',$if($strcmp(%rating%,'?'),'?????',%rating%))))))|
$if($stricmp($ext(%filename_ext%),'CUE'),'CUE',$if($stricmp($ext(%filename_ext%),'WMA'),'MP3',$if($stricmp($ext(%filename_ext%),'OGG'),'MP3',$if($stricmp($ext(%filename_ext%),'M4A'),'MP3',$if($stricmp($ext(%filename_ext%),'MP3'),'MP3',$if($stricmp($ext(%filename_ext%),'FLAC'),'FLAC lossless',$ext(%filename_ext%)))))))|
[$swapprefix($if2(%album artist%,%artist%))' - ']$if2(%album%,%title%)[' ('%discnumber%$if(%totaldiscs%,'/'%totaldiscs%)')']' '['['%date%']']|
[%tracknumber%. ][%artist% - ]%title%' '['('%length%')']' '['['%play_count%']']


this seperates by rating, then file extension, artist - album etc.

hope its off some help



instead of doing all the string compares on rating, I just use "$repeat($char(9733),%rating%)"
I dont know what the performance difference will be, but it works.
hope this helps.

[Not My Release] Library Tree

Reply #52
When are we going to get some library viewers like this for Default UI?  Is this a future possibility?

[Not My Release] Library Tree

Reply #53
@Jack Schmaltz
Or:
$repeat($char(9733),%rating%)$repeat($char(9734),$sub(5,%rating%))|$caps($info(encoding))|...

Without stars (no need for unicode charset):
%rating%|$caps($info(encoding))|...

[Not My Release] Library Tree

Reply #54
When are we going to get some library viewers like this for Default UI?  Is this a future possibility?


Would make sense to be able to embed CUI-Panels into DUI and vice-versa, dunno if this is possible at all from coding side without enormous changes. Would at least make sense to bundle some efforts, ideas and time and to homogenize things (therefore 'vice-versa' doesn't make sense  ). BTW, dangerous half knowledge, isn't there some outstanding DUI-PlugIn-API.. 

[Not My Release] Library Tree

Reply #55
There's an SDK for developing elements for the Default User Interface, but it's not available to the public.

[Not My Release] Library Tree

Reply #56
A plugin like this one would fit my needs exactly.  I guess that I'll have to start playing around with Columns UI again, but it sure would be nice to have some more library viewer options for Default UI other than Album List and Facets.  Both of those are good, but they're not exactly what I'm looking for.

[Not My Release] Library Tree

Reply #57
Request:

Is it possible to add an option to auto expand certain trees? Particular with the playlist tree it's annoying, to have to expand it after every foobar restart. Alternatively, maybe the panel could remember the position of the trees after a restart?

[Not My Release] Library Tree

Reply #58
new beta out : experimental version(v0.3.2b)

@Ssenna: bugg found

when i click on a playlist to swap to activate it, the mouse cursor stay in the 'working' state even the new playlist is fully "loaded"/activated, weird 

can you check/fix this point please ?

What's new in this experimental version ? multi thread ?

[Not My Release] Library Tree

Reply #59
ok, i found some news ... in creating view for Library, now the sort when sending to playlist works !! thanx
always a shame that this sort is not directly applied on the view

btw, the mouse cursor always stuck to the state 'working' after editing a view too alkthough process seems over, weird !

[Not My Release] Library Tree

Reply #60
@Falstaff

big news for you Falstaff
the newly added $nodisplay(str) is implemented for tree sorting !!

here's my crappy translation

v0.3.2b
・processing is now basically done by background thread
・added $nodisplay (used for sorting nodes)


peace

 

[Not My Release] Library Tree

Reply #61
not sure to understand ??

nodisplay(str) just display nothing but leave a blank line :S

nothing to do with sort order in the lib view or am i missing something ?

[Not My Release] Library Tree

Reply #62
not sure to understand ??

nodisplay(str) just display nothing but leave a blank line :S

nothing to do with sort order in the lib view or am i missing something ?


it does what its supposed to do, but kinda like a work around
you will use it in View Format

heres an example for album sort by date added then title sort by play count

$nodisplay(%added%)%album% \ nodisplay(%playcount%)%title%

I think you can understand this without further explanation

[Not My Release] Library Tree

Reply #63
ok, i got it, ty nmm

EDIT: .... but it's not really optimized if i use it in the View format, it took a long time to define the list when i use sort in view format (with $nodisplay) and filter ...


[Not My Release] Library Tree

Reply #64
ok, i got it, ty nmm

EDIT: .... but it's not really optimized if i use it in the View format, it took a long time to define the list when i use sort in view format (with $nodisplay) and filter ...



maybe its because it's not processed by a lowest priority thread (as stated in the changelog) ?

[Not My Release] Library Tree

Reply #65
Thanks for the latest version, the ability to customize sorting in the panel is great. Could we also have the sunken/grey/none border options please?

Thanks.

[Not My Release] Library Tree

Reply #66
Quote
maybe its because it's not processed by a lowest priority thread (as stated in the changelog) ?


actually I was meant to say NOW processed by a lowest priority thread 
I miss my edit button

@Falstaff

what does the $nodisplay do in "Sort Format" ?   
I think it does nothing right?
because Sort Format doesnt display anything
it just sorts the playlist
so I dont think you'll need to use it in Sort Format   
correct me if I am wrong 

[Not My Release] Library Tree

Reply #67
v0.3.2 released, BUT BE CAREFULL, this new build broke my PSS config !!!

after installing this new dll and launching my CUI+PSS+WSH config, all panels deleted in the main PSS !!!

Ssenna, what's the pb, this new version is more than buggus, it is not compatible with PSS at all ... weird...

EDIT: importing fcl file doesn't work anymore, back to 0.3.2b needed to make import fcl working back

[Not My Release] Library Tree

Reply #68
mmh had no probs :confused:


[Not My Release] Library Tree

Reply #70
Same problem here (on XP).
All panels except WSH Panels and ELPlaylist are deleted...

[Not My Release] Library Tree

Reply #71
Same problem (I use fooNight 1.1b) 

[Not My Release] Library Tree

Reply #72
Sorry, I made a mistake...
I released fixed vesrison.

[Not My Release] Library Tree

Reply #73
haha, thought it was my own f'ed up
some but not all of my panels disappeared
i will make sure i backup my stuff from now on