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: foo_uie_trackinfo (Read 814568 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

foo_uie_trackinfo

Reply #75
Quote
Profiles with playback positions don't report the time unless I double click on the track in the playlist, track advance doesn't update at all.

I'm not sure what you mean by "profiles with playback positions" here. What formatting fields are you trying to use, specifically? None of the %_time_*% fields will work unless you are in now playing mode, or have selected the currently playing track in follow cursor mode.

Quote
I understand the need for it to be posible to see the selected track info as well as the currently playing info... possibly could there be a set of tags for currently selected and then currently playing? you could then have 2 instances of track info running with info panels set up for each task? yes? no?

I added the %_trackinfo_dropped%, %_trackinfo_followcursor% and %_trackinfo_nowplaying% tagz for that purpose - so you can use a different formatting for each mode that the panel supports. They're intended to be used like this:

Code: [Select]
$if(%_trackinfo_nowplaying%,
//
// we are in playing mode
// formatting string for now playing mode goes here
//
,
$if(%_trackinfo_followcursor%,
//
// formatting for follow cursor mode goes here
//
,
$if(%_trackinfo_dropped%,
//
// formatting code for dropped files goes here
//
,)))

As for multiple instances, when that's done, you will be able to set up each panel independently. Plus a default configuration to fall back on I guess.

foo_uie_trackinfo

Reply #76
Updated for the new ui extension api.

No other new changes/bugfixes for now (yes, I am slack ).

foo_uie_trackinfo

Reply #77
Quote
Updated for the new ui extension api.

No other new changes/bugfixes for now (yes, I am slack ).
[a href="index.php?act=findpost&pid=256539"][{POST_SNAPBACK}][/a]

is there anyway you could provide us with a link to the older version for beta 3? I'm sticking with beta 3 until the album art panel is updated. thanks.

foo_uie_trackinfo

Reply #78
Quote
is there anyway you could provide us with a link to the older version for beta 3? I'm sticking with beta 3 until the album art panel is updated. thanks.
[a href="index.php?act=findpost&pid=256637"][{POST_SNAPBACK}][/a]

You don't have it already? I'll upload it as soon as I can get to my other computer.

foo_uie_trackinfo

Reply #79
You can grab the old version from here.

foo_uie_trackinfo

Reply #80
Quote
You can grab the old version from here.
[a href="index.php?act=findpost&pid=256701"][{POST_SNAPBACK}][/a]
thanks a lot. I tried the plugin a few days ado, decided its not really something I want (added too much clutter), then deleted it. Yesterday after discovering the panel tabs plugin, I thought I'd give this one another whirl... But I wasn't willing to give up album art so I couldn't upgrade my columns_ui.

foo_uie_trackinfo

Reply #81
phi: great job on the plugin
in fact i'm loving all your plugins
got a question about this one tho
right now i have $if(%_trackinfo_nowplaying%,
setup
but when i move my cursor to another song
it changes to that song
is there a way to make the info stay on the current playing song?
if not, then this is a formal request 8)

foo_uie_trackinfo

Reply #82
Quote
Quote
You can grab the old version from here.
[a href="index.php?act=findpost&pid=256701"][{POST_SNAPBACK}][/a]
thanks a lot. I tried the plugin a few days ado, decided its not really something I want (added too much clutter), then deleted it. Yesterday after discovering the panel tabs plugin, I thought I'd give this one another whirl... But I wasn't willing to give up album art so I couldn't upgrade my columns_ui.
[a href="index.php?act=findpost&pid=256733"][{POST_SNAPBACK}][/a]

Ah, I see. No problem.

Quote
phi: great job on the plugin
in fact i'm loving all your plugins
got a question about this one tho
right now i have $if(%_trackinfo_nowplaying%,
setup
but when i move my cursor to another song
it changes to that song
is there a way to make the info stay on the current playing song?
if not, then this is a formal request 8)
[a href="index.php?act=findpost&pid=256735"][{POST_SNAPBACK}][/a]

Thanks. Are you sure you're in now playing mode? Double-clicking (or middle-clicking) the panel switches between follow-cursor and now-playing modes.

foo_uie_trackinfo

Reply #83
some suggestion
Can latest version support "$transition" command?

foo_uie_trackinfo

Reply #84
hey when trackinfo is consuming a lot of CPU.
when it is active, that is....
Maybe a memory leak....
amazing plugin.... what i was waiting for since i started using foobar....

foo_uie_trackinfo

Reply #85
Quote
hey when trackinfo is consuming a lot of CPU.
[a href="index.php?act=findpost&pid=256770"][{POST_SNAPBACK}][/a]

Are you using word wrap? (for ex. comments, etc...) It happeneed to me, I had to don't display those tags.

foo_uie_trackinfo

Reply #86
Quote
hey when trackinfo is consuming a lot of CPU.
when it is active, that is....[a href="index.php?act=findpost&pid=256770"][{POST_SNAPBACK}][/a]

Have you tried turning off "Update every second"? I'm not sure how much effect it has, but at least I don't need that frequent updating myself, so I keep it off.

foo_uie_trackinfo

Reply #87
Quote
Have you tried turning off "Update every second"?
[a href="index.php?act=findpost&pid=256777"][{POST_SNAPBACK}][/a]

About this one, it's not working for me in stuff like %rating%, where if I change the rating when the song is playing (and being displayed in the panel) it's not changed in the panel, even if I have the update every second enabled. Other stuff (like time, etc...) is working and updated.

About CPU usage "Update every second"? it's not consuming so much here.

foo_uie_trackinfo

Reply #88
Quote
Have you tried turning off "Update every second"? I'm not sure how much effect it has, but at least I don't need that frequent updating myself, so I keep it off.

progressbar need it
if close it, progressbar won't work.
and play time will be stopped.

foo_uie_trackinfo

Reply #89
Quote
some suggestion
Can latest version support "$transition" command?
[a href="index.php?act=findpost&pid=256751"][{POST_SNAPBACK}][/a]

I may have done something to break it. I'll have a look.

Quote
hey when trackinfo is consuming a lot of CPU.
when it is active, that is....
Maybe a memory leak....
amazing plugin.... what i was waiting for since i started using foobar....
[a href="index.php?act=findpost&pid=256770"][{POST_SNAPBACK}][/a]

Yeah, thats just due to my inefficient coding. For now all I can suggest is limit the length of each line of info.

Quote
Quote
Have you tried turning off "Update every second"?
[a href="index.php?act=findpost&pid=256777"][{POST_SNAPBACK}][/a]

About this one, it's not working for me in stuff like %rating%, where if I change the rating when the song is playing (and being displayed in the panel) it's not changed in the panel, even if I have the update every second enabled. Other stuff (like time, etc...) is working and updated.
[a href="index.php?act=findpost&pid=256796"][{POST_SNAPBACK}][/a]

I forgot to hook up some callbacks that update the panel when a song is edited. Fixed for the next release (whenever I get around to finishing it).

foo_uie_trackinfo

Reply #90
True,
Had word wrap on, update every second on, and i've configured trackinfo to show
the lyrics... and all of my songs are tabbed with lyrics!!!!!!!!!! 
But one concern... the previous versionwas fine... something with this one...
well, thanks.... 

foo_uie_trackinfo

Reply #91
  Phi's right.... ! I came to a very fast conclusion... The slow down happened only to a bunch of mp3's where i have accidently tagged the band's bio as a comment!    any way, I'm back to happy... well eagerly waiting for the next release

foo_uie_trackinfo

Reply #92
Quote
Quote
phi: great job on the plugin
in fact i'm loving all your plugins
got a question about this one tho
right now i have $if(%_trackinfo_nowplaying%,
setup
but when i move my cursor to another song
it changes to that song
is there a way to make the info stay on the current playing song?
if not, then this is a formal request 8)
[a href="index.php?act=findpost&pid=256735"][{POST_SNAPBACK}][/a]

Thanks. Are you sure you're in now playing mode? Double-clicking (or middle-clicking) the panel switches between follow-cursor and now-playing modes.
[a href="index.php?act=findpost&pid=256743"][{POST_SNAPBACK}][/a]


thanks that worked
lol didn't know i could double click the panel

foo_uie_trackinfo

Reply #93
I'm wonder why it doesn't have scrollbar? 
some words will be cut half

foo_uie_trackinfo

Reply #94
Quote
I'm wonder why it doesn't have scrollbar? 
some words will be cut half

foo_uie_trackinfo

Reply #95
If I don't have a mouse-wheel how could I scroll it

foo_uie_trackinfo

Reply #96
Quote
If I don't have a mouse-wheel how could I scroll it
[a href="index.php?act=findpost&pid=257113"][{POST_SNAPBACK}][/a]

Maybe clicking once on the panel and up/down keys woudl work, dunno 

foo_uie_trackinfo

Reply #97
Quote
Quote
If I don't have a mouse-wheel how could I scroll it
[a href="index.php?act=findpost&pid=257113"][{POST_SNAPBACK}][/a]

Maybe clicking once on the panel and up/down keys woudl work, dunno 
[a href="index.php?act=findpost&pid=257125"][{POST_SNAPBACK}][/a]

Nah, it's mousewheel only until I get around to adding a scroll bar.

foo_uie_trackinfo

Reply #98
Quote
Quote
If I don't have a mouse-wheel how could I scroll it
[a href="index.php?act=findpost&pid=257113"][{POST_SNAPBACK}][/a]

Maybe clicking once on the panel and up/down keys woudl work, dunno 
[a href="index.php?act=findpost&pid=257125"][{POST_SNAPBACK}][/a]

press up/down keys will change the playlist selection

foo_uie_trackinfo

Reply #99
Maybe add enable/disable vertical scroll bar is good
Perhaps some friends don't need it, but some need