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: Columns UI appearance (Read 3284543 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

Columns UI appearance

Reply #601
I discovered the VS I'm using (NOOTOR) has really nice tabs, so I decided to use them in my config. It's not hugely complicated but it does everything I want.





I can also expand the playlist to full width but that's less interesting.


Columns UI appearance

Reply #603
@TomBarlow - tabs are great

Columns UI appearance

Reply #604
My heavily modded MonoLite.



There will eventually be more buttons in the iPod tab, ones to sync, eject, send playlists and manage contents, basically every function that foo_dop supports but since it took me hours to get the text off the original tab and make 6 more tabs it might be some time before I get the buttons added.

Anyone fancy making me some buttons?

Columns UI appearance

Reply #605
That's freaking sweet, unabatedshagie.

So nice and cleanly designed.
Well done!


Columns UI appearance

Reply #607
Here is mine. Simple and i love my config. The best for my uses 




Columns UI appearance

Reply #608
This is my foobar2000. I made the graphics and layout myself. I'm so glad that foobar2000 and all those plugins exists. Now I could make my own music player that's better for me than iTunes, Winamp and the other programs.




Columns UI appearance

Reply #609
mines still fairly simple but it does all I want it to. Im scared of the wsh panel lol (reflection is done via  trackinfo).






Columns UI appearance

Reply #610
Started doing some tweaks to my same old foobar2000 layout again. Figured out how to create a "decade" filter from just the regular date tag, so I had to add that. I then discovered the lovely biography panel...and well, how I lived without it in the past I do not know. Ah, how I love how customizable this player is


Columns UI appearance

Reply #611
My config has evolved somewhat, but isn't done yet.
On second hand it never is I guess. 

As you can see it's all about the visuals for me.







<3 f00

Columns UI appearance

Reply #612
Started doing some tweaks to my same old foobar2000 layout again. Figured out how to create a "decade" filter from just the regular date tag, so I had to add that. I then discovered the lovely biography panel...and well, how I lived without it in the past I do not know. Ah, how I love how customizable this player is


I love your playlist view. Could you share you config?

Columns UI appearance

Reply #613
Started doing some tweaks to my same old foobar2000 layout again. Figured out how to create a "decade" filter from just the regular date tag, so I had to add that. I then discovered the lovely biography panel...and well, how I lived without it in the past I do not know. Ah, how I love how customizable this player is

[-img]http://img269.imageshack.us/img269/416/allthistimeheartlessbas.png[/img]

I love your playlist view. Could you share you config?


Is it mostly just the playlist title formatting you're interested in? If so, you can grab this older version of my config here. Most of the title formatting in the playlist is the same (only some small changes and optimizations here and there have been done since, with that part). If you want the entire thing, I'll have to clean it up a little more and all that before uploading it anywhere

 

Columns UI appearance

Reply #614
Is it mostly just the playlist title formatting you're interested in? If so, you can grab this older version of my config here. Most of the title formatting in the playlist is the same (only some small changes and optimizations here and there have been done since, with that part). If you want the entire thing, I'll have to clean it up a little more and all that before uploading it anywhere


Could you please share field value for decade filter?

Columns UI appearance

Reply #615
Is it mostly just the playlist title formatting you're interested in? If so, you can grab this older version of my config here. Most of the title formatting in the playlist is the same (only some small changes and optimizations here and there have been done since, with that part). If you want the entire thing, I'll have to clean it up a little more and all that before uploading it anywhere


Could you please share field value for decade filter?


Sure thing, here you go:
Code: [Select]
// Alternative color for undated track ect. + a char to bump to top
$puts(c2,$char(8203)$rgb(140,150,160,70,75,80))

$if(%date%,
$ifgreater(%date%,2029,
$get(c2)'( Post-2029 )'
,
$ifgreater($select($sub(1910,%date%),1,2,3,4,5,6,7,8,9,10),0,'1900-1909',
$ifgreater($select($sub(1920,%date%),1,2,3,4,5,6,7,8,9,10),0,'1910-1919',
$ifgreater($select($sub(1930,%date%),1,2,3,4,5,6,7,8,9,10),0,'1920-1929',
$ifgreater($select($sub(1940,%date%),1,2,3,4,5,6,7,8,9,10),0,'1930-1939',
$ifgreater($select($sub(1950,%date%),1,2,3,4,5,6,7,8,9,10),0,'1940-1949',
$ifgreater($select($sub(1960,%date%),1,2,3,4,5,6,7,8,9,10),0,'1950-1959',
$ifgreater($select($sub(1970,%date%),1,2,3,4,5,6,7,8,9,10),0,'1960-1969',
$ifgreater($select($sub(1980,%date%),1,2,3,4,5,6,7,8,9,10),0,'1970-1979',
$ifgreater($select($sub(1990,%date%),1,2,3,4,5,6,7,8,9,10),0,'1980-1989',
$ifgreater($select($sub(2000,%date%),1,2,3,4,5,6,7,8,9,10),0,'1990-1999',
$ifgreater($select($sub(2010,%date%),1,2,3,4,5,6,7,8,9,10),0,'2000-2009',
$ifgreater($select($sub(2020,%date%),1,2,3,4,5,6,7,8,9,10),0,'2010-2019',
$ifgreater($select($sub(2030,%date%),1,2,3,4,5,6,7,8,9,10),0,'2020-2029',
$get(c2)'( Pre-1900 )'
)))))))))))))
)
,
$get(c2)'( Undated songs )'
)

Just remove the top comment and linebreaks, and it should be ready for use  I'm sure there could be better ways to do this, but at least it works. If you want to add more decades, just remember to also add a parenthesis on the line below "pre-1900."

Columns UI appearance

Reply #616
...$div(%date%,10)0-$div(%date%,10)9...
Full-quoting makes you scroll past the same junk over and over.

Columns UI appearance

Reply #617
Does this work for you for decade filter ?

$cut(%date%,3)

short, but not as attractive to view

terry

Columns UI appearance

Reply #618
...$div(%date%,10)0-$div(%date%,10)9...



Does this work for you for decade filter ?

$cut(%date%,3)

short, but not as attractive to view

terry


You both know what I'm doing right now? Banging my head against the wall, is what. Why I didn't think of doing it one of those ways, I have no idea. Added some quick validation of the %date% tag first (some other apps have occasionally written "empty" tags, so it's not enough to check if it exists), and it's perfect! Easier to read, and a whole lot faster.

EDIT: Here's what I'm using now...
Code: [Select]
$puts(c2,$char(8203)$rgb(140,150,160,70,75,80))
$ifgreater(%date%,9,
$div(%date%,10)0-$div(%date%,10)9,
$get(c2)'( Undated songs )'
)

More than 3X faster than what I was using originally, thanks a bunch for the suggestions!

Columns UI appearance

Reply #619
Here's my decade script:
Code: [Select]
$if($num(%date%,4),$left(%date%,3)0$rgb(130,130,130)'''s',No Date)

Columns UI appearance

Reply #620
Thanks for this.
It help me adjust my $cut(%date%,3) to $cut(%date%,3)0s
and now it's display is cleaner.

terry

Columns UI appearance

Reply #621
Started doing some tweaks to my same old foobar2000 layout again. Figured out how to create a "decade" filter from just the regular date tag, so I had to add that. I then discovered the lovely biography panel...and well, how I lived without it in the past I do not know. Ah, how I love how customizable this player is

[-img]http://img269.imageshack.us/img269/416/allthistimeheartlessbas.png[/img]

I love your playlist view. Could you share you config?


Is it mostly just the playlist title formatting you're interested in? If so, you can grab this older version of my config here. Most of the title formatting in the playlist is the same (only some small changes and optimizations here and there have been done since, with that part). If you want the entire thing, I'll have to clean it up a little more and all that before uploading it anywhere

Perfect! Exactly what i needed.
Thank you so much!

PS: how do you get a char number? I would like to change ratings to a star and maybe change the playing char

Columns UI appearance

Reply #622
can anyone tell me how do you make this cover reflection? 

Columns UI appearance

Reply #623
Started doing some tweaks to my same old foobar2000 layout again. Figured out how to create a "decade" filter from just the regular date tag, so I had to add that. I then discovered the lovely biography panel...and well, how I lived without it in the past I do not know. Ah, how I love how customizable this player is

[-img]http://img269.imageshack.us/img269/416/allthistimeheartlessbas.png[/img]

I love your playlist view. Could you share you config?


Is it mostly just the playlist title formatting you're interested in? If so, you can grab this older version of my config here. Most of the title formatting in the playlist is the same (only some small changes and optimizations here and there have been done since, with that part). If you want the entire thing, I'll have to clean it up a little more and all that before uploading it anywhere

Perfect! Exactly what i needed.
Thank you so much!

PS: how do you get a char number? I would like to change ratings to a star and maybe change the playing char


Character numbers are easy, just open your character map (charmap.exe) and find the one you want. Click on it and make a note of the number that shows up in the status bar (e.g. the star will show as U+2605). Fire up your calculator and set it to "scientific" mode (or "programmer" if using Win7). Click "Hex", type in the number, in this case "2605", and then click "Dec" to get the correct decimal number for the $char() function. For the star, this would be $char(9733)

Columns UI appearance

Reply #624
Easy enough! thanks