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 (Read 4589473 times) previous topic - next topic
0 Members and 3 Guests are viewing this topic.

Columns UI

Reply #3475
thank you
My Name is Sean and I'm here to leech off your genius.

 

Columns UI

Reply #3476
Thanks for the  update!One question:i tried 0.1.3 beta 1v6 and there was one dead line at the bottom of the spectrum analyzer,now with version 7 there are two of them!What for?
Favourite artist:CD-R
Favourite album:700MB

Columns UI

Reply #3477
Thanks for the continued dedication to these plugins, musicmusic. It's appreciated.

Columns UI

Reply #3478
Thanks for the  update!One question:i tried 0.1.3 beta 1v6 and there was one dead line at the bottom of the spectrum analyzer,now with version 7 there are two of them!What for?

If you look in non-bars mode / standard ui there is a small line also. There does however  seem to be a bug in bars mode relating to odd/even heights which makes an extra line, I'll fix that.
.

Columns UI

Reply #3479
musicmusic I'll bake you a cake if you make the splitter lines between panels go away when their border style is set to none.

Columns UI

Reply #3480
I'll bake you two cakes if you implement an editable configuration file (like xml) for the columnsui layout(s). This way we can precisely edit our layouts to last pixel, and share them too!

Most importantly, thanks for the recent update.

Columns UI

Reply #3481
I'll bake you two cakes if you implement an editable configuration file (like xml) for the columnsui layout(s). This way we can precisely edit our layouts to last pixel, and share them too!

Most importantly, thanks for the recent update.

+1

Columns UI

Reply #3482
lol. musicmusic, i have a tiny suggestion (not so much a request, since i'll probably never have this problem again...): A confirmation dialogue for the 'Delete' button in the layout configuration would be rad.

Currently, if you accidentally hit that button while you're editing your layout, it's instantly deleted. Gone. No questions asked. I just had to learn that the hard way. :/
~

Columns UI

Reply #3483
How to make now playing song in italic?

Columns UI

Reply #3484
loo guys

sorry if this was already questioned but i didn't find an answer for my question
is there any workaround to get columns ui to work without SP1?

Columns UI

Reply #3485
Might have found a bug. Or at least something.

I wanted to add only a separator to a button toolbar and it gets very small. Could it be fixed so it is the same height as the other separators? 


Columns UI

Reply #3486
musicmusic I'll bake you a cake if you make the splitter lines between panels go away when their border style is set to none.

Yeah, those lines would be great to get off.


Columns UI

Reply #3488
Bug perhaps? How come columns ui doesn't show the sliders pressed state on the progressbar or volume control?

Columns UI

Reply #3489
How do you get them on? I want splitters.


I mean I want that splitter between trackinfo and playlist away.
I just have every possible edge styles set to "none".

Columns UI

Reply #3490
thanks for the new version^^

Columns UI

Reply #3491
thanks for new colums ui  musicmusic  ,  i heart you


Columns UI

Reply #3493

I found a little bug, maybe not a bug but at least a little bit annoying. When adding a button: "add to playback queue" there is a problem with %isplaying%

I use this for a index-column:
Code: [Select]
$if($or(%isplaying%,%ispaused%),

$select($add(1,$mod(%_time_elapsed_seconds%,6)),?,??,???,????,?????,??????)
,

$if(%skip%,$rgb(255,0,0)SKIP,
$if(%cwb_queueindexes%,$rgb(255,0,0)'['%cwb_queueindex%/%cwb_queuelength%']'$rgb(),%list_index%')'))
)


When using the rightclick "add to playback queue" menu (pressing next to play this of course), it jumps correctly in the "$if($or(%isplaying%,%ispaused%)" condition, but not when using the button!

bump

bump

Columns UI

Reply #3494
I don't know if it's asked before but I'm not going to read 140 pages but could you make it possible to hide en display the panels with a button this because the autohide isn't bad but a normal button would be nicer. and if I leave the caption on it ruins my setup. Or is this already possible??? and how do I do this??

Columns UI

Reply #3495
to musicmusic:

Could you have a look at this thread.
It has a trace of foo_ui_column crashing under wine (linux) just after init and being displayed for a few seconds.
I don't think it's hard to fix, just probably RealChildWindowFromPoint() making it crash because it looks like it's not implemented yet by wine.

edit: after some searching I see it'w a well known pbm...

Columns UI

Reply #3496
This is my global variable

Code: [Select]
$if($and(%tracknumber%,%album%, %artist%),
$set_global(isAlbum,1)
)


This is my column display.

Code: [Select]
$if($get_global(isAlbum)
,
// --- Album view ---
$select(%tracknumber%,
// Track 1
// Track 2
'   '$if2(%album artist%,'<no artist>'),
// Track 3
'   '$if2(%album%,'<no album>'),
// Track 4
'   '['Disc '%disc%$tab()]$if2(%album date%,[%date%])$tab(),
// Track 5
),

// --- Single view ---
[%artist%]
)


I was wondering if there is an effiecent way to make it recognize if there is more track from the same album before just associating them all. Right now it displays full albums beautifully but single tracks usually do not display with the artist tag and it is frustrating.

Columns UI

Reply #3497
GreenGhost:

Do you use singlecolumnplaylist? If so I use this to determine album/single mode:
Code: [Select]
$puts(album_mode,$if($and($strcmp($mod(%totaltracks%),%_itemcount%),$strcmp($mod(%tracknumber%),%_itemindex%)),1,))
Code: [Select]
$if($get(album_mode),
// code for albums
,
// code for singles
)

Columns UI

Reply #3498
Would there be a way to make it recognize if there is more than one track on a particular album? Without the Total Tracks tag because that is missing on most files and there are way too many to be editing right now.
This is what I have been working on and I am starting over as we speak.

Columns UI

Reply #3499
Any chance to have the "rename preset" work as an "add" instead of a "replace"?

I mean: can you make Columns UI keep both the old and the renamed one?

Thanks.