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

foo_ui_panels

Reply #2400
Sorry, for "until now", I mean "so far"!
Yes, 0.13.8 is a beta (I havn't seen this  )

But, where to get 0.14.12?

bye

Edit\
On my PC I found following versions
foo_ui_panels_0.13.6.zip
foo_ui_panels_0.13.7.zip (currently downloadable)
foo_ui_panels_0.13.8-beta.zip
foo_ui_panels_0.14.12-beta.zip (currently downloadable)

foo_ui_panels

Reply #2401
hi i would sort the libray filter to directory.
i mean the panel library filter which is transparent

and it is possible do use tabs with the playlist

thx

foo_ui_panels

Reply #2402
Is !noheader! still meant to work in the SCPL?

When I try it, it prints out '!noheader!' in the header, instead of suppressing the header.

foo_ui_panels

Reply #2403
Is !noheader! still meant to work in the SCPL?

When I try it, it prints out '!noheader!' in the header, instead of suppressing the header.

Just choose 0 for group rows

foo_ui_panels

Reply #2404
Anyone know of any decent tutorials for the library filter? Only I have no idea where to start with this one.

foo_ui_panels

Reply #2405

Is !noheader! still meant to work in the SCPL?

When I try it, it prints out '!noheader!' in the header, instead of suppressing the header.

Just choose 0 for group rows



I only want to supress the header sometimes - I want to put the !noheader! in an $if statement.

I'm sure I've seen someone doing this, successfully(?)....

foo_ui_panels

Reply #2406
Has anybody the versions 0.13.9-0.14.12 (0.13.9 is not as important as 0.14.10 & higher are) and would share them please?

foo_ui_panels

Reply #2407
Is anyone else getting weird redraw problems? Once in a while it'll draw just the background elements on part of my screen and it's getting really annoying. This only seems to happen with the most recent beta, and just recently; I'd been using it with no problems for a while. I don't know if it's bad coding somewhere on my config or a problem with the component. I've tried it on a clean foobar install and still no dice.


foo_ui_panels

Reply #2408
Happens for me too, the SCPL take up all the foobar2000 screen and then it crashes with metadb leaks and then the usual Windows error dialog. No crash logs.
Windows 10 Pro x64 // foobar2000 1.3.10

foo_ui_panels

Reply #2409
i had the same problem, i even said it here. But now i am doing a new config and didnt see the problem at all(after 8 hours a day using foobar). So i personaly think it is related to some code, but dont know what exactly.
And no crash for me

foo_ui_panels

Reply #2410
I've been trying to simplify some code that relies on variable widths and stuff, but still happening. I think I'm just gonna revert to the more stable version, which sucks cause I'm so used to the new syntax.

foo_ui_panels

Reply #2411
Panels 0.12.8 seems to have problems getting artwork from directories with the "#" character in the file path.  Is this fixed in the newest 0.13.x version, or is it still out there?


foo_ui_panels

Reply #2413
Any news on the development/discontinuation of the component? It would be really kind if terrestrial lets us know. People could stop waste their times by reporting bugs or making suggestions.

foo_ui_panels

Reply #2414
I have a very weird bug, PanelsUI lists .pui files that really doesn't exists and after I removed FofR configuration, it now appears in the default config but renders improperly as all the images belonging to FofR are now gone.

Here is a screenshot

Am I having a virus or something? What is going on?

foo_ui_panels

Reply #2415
I think I found a BUG:

I have put a $panel() command inside a $puts() command, but even if I hide the $puts() command, the $panel() command still renders on my layout. All the code is under the // PerTrack header. Is this the intended reaction when doing this?

Pretty much what I am doing is grouping my "main body" of my layout into one $get() command, and showing it with $puts(). That way I can easily hide the entire main body, and show another main body layout I have in some other code. But no matter what I seem to do, the $panel() command doesn't seem to want to disappear.

Does anyone know how to hide a $panel() by commenting out a $puts() code?
Song List: keikoniumboards.ke.funpic.org/files/songlist.html

foo_ui_panels

Reply #2416
@saivert
Do you have changed to a higher version (beta)?

@Keikonium
Try this:

(old, your code)
$puts(xyz,$panel(...))

(new)
// $puts(xyz,$panel(...))
$puts(xyz,)
or
$puts(xyz,0) - or something else, put panels only in $if(,,)!

foo_ui_panels

Reply #2417
@Keikonium
Try this:

(old, your code)
$puts(xyz,$panel(...))

(new)
// $puts(xyz,$panel(...))
$puts(xyz,)
or
$puts(xyz,0) - or something else, put panels only in $if(,,)!


I'm not to sure I understand. Here is an example of some code I am trying to get this working on:

Code: [Select]
$drawrect($get(infox),$get(infoy),$get(infow),$get(infoh),$get(brush+alpha))
$drawrect($get(infox),$get(infoy),$get(infow),$get(infoh),brushcolor-NULL pencolor-0-0-0)
$panel(Info,Track Display,$eval($get(infox)+1),$eval($get(infoy)+1),$eval($get(infow)-2),$eval($get(infoh)-2),)


If you could modify that so I can hide/show this panel by commenting out one line of code (by wrapping my code in a $puts() or $setpvar() I don't care) that would be great. Or any other way really. Thank you .
Song List: keikoniumboards.ke.funpic.org/files/songlist.html

foo_ui_panels

Reply #2418
By setting the value 1 or 2 (hides the panel) change between Info and no Info
$setpvar(panel,1)
or
$setpvar(panel,2)


$select($getpvar(panel),
   $panel(Info,Track Display,...)
,
)

or

$ifequal($getpvar(panel),1,
   $panel(Info,Track Display,...)
,
)

bye

foo_ui_panels

Reply #2419
Some feature request I have
[blockquote]"context menu commands" witch works with selected items!
At now "context menu commands" affect only current playing track.
It is restrict using Discogs, Fdb, RG Album Scan ... all plug-ins that refer to selected items rather then playing one.[/blockquote]
What you think about that ??

foo_ui_panels

Reply #2420
Some feature request I have
[blockquote]"context menu commands" witch works with selected items!
At now "context menu commands" affect only current playing track.
It is restrict using Discogs, Fdb, RG Album Scan ... all plug-ins that refer to selected items rather then playing one.[/blockquote]
What you think about that ??

such a feature would be really nice. let's hope terrestrial comes back one day 

foo_ui_panels

Reply #2421
Update! Here is my component list with Panels UI highlighted for your convenience:

Code: [Select]
Core (2007-08-20 17:04:00)
    foobar2000 core 0.9.4.4
foo_albumlist.dll (2007-08-20 17:02:34)
    Album List 3.2.0
foo_cdda.dll (2007-08-20 17:02:20)
    CD Audio Decoder 2.1.1
foo_converter.dll (2007-08-20 17:02:04)
    Converter 1.0.1
foo_dsp_std.dll (2007-01-20 01:36:56)
    Standard DSP array 1.0
foo_freedb2.dll (2006-08-29 20:43:04)
    freedb Tagger 0.5.2a
foo_input_std.dll (2007-08-20 17:01:56)
    FLAC Decoder 1.1.0
    Standard Input Array 1.0
    WMA Decoder 1.1
foo_masstag.dll (2007-08-20 17:01:20)
    Masstagger 1.6
foo_rgscan.dll (2007-08-20 17:01:02)
    ReplayGain Scanner 2.0.2
foo_ui_columns.dll (2007-07-23 00:36:02)
    Columns UI 0.2.0 beta 1
foo_ui_panels.dll (2007-06-12 12:28:20) ***
    Panels UI 0.13.8 beta [Jun 12 2007 - 12:28:00]
foo_ui_std.dll (2007-08-20 17:00:54)
    Default User Interface 0.9acc
foo_uie_albumlist.dll (2007-06-11 15:13:53)
    Album list panel 0.2.3 beta
foo_uie_typefind.dll (2007-07-23 00:56:36)
    Typefind 0.2 beta 1
foo_unpack.dll (2007-08-20 17:02:50)
    RAR reader 1.1
    ZIP/GZIP reader 1.0


I still don't know why Panels UI would display non-existing configurations. This is very scary. I'm gonna run a complete virus check. It might be because I'm running Vista too (who know what bugs that OS might have).

foo_ui_panels

Reply #2422
I still don't know why Panels UI would display non-existing configurations. This is very scary. I'm gonna run a complete virus check. It might be because I'm running Vista too (who know what bugs that OS might have).

This ain't a bug, it's a feature  Since PanelsUI stores stuff under Program Files\foobar2000 (or whatever your foobar dir is), any changes you make with a non-admin account are actually done on a profile-specific mirror, or extension of the Program Files folder. You should clean up that foobar2000\PanelsUI folder, too, or use that one exclusively. Sorry for not providing a full path or a more detailed explanation, I'm currently on Linux so I can't check it for you.
Life is Real...
(But not in audio :) )

 

foo_ui_panels

Reply #2423
Thanks. I managed to find the location of the so-called virtualized Program Files folder. It is located here peeps:

Code: [Select]
C:\Users\<your username>\AppData\Local\VirtualStore\Program Files\foobar2000


So I just deleted everything there and now it's all clean. Let's only hope we can get a truly Vista compatible foobar2000 out soon. This is crazy!
In the meantime you also need to set up permissions for yourself on the "c:\program files\foobar2000" folder so you can manage it easily. Just add yourself to the permissions list and set full rights on everything.


Thank you so much. I thought I had Vista figured out after reading a lot about it. This one must have slipped passed my mind.

One more thing: Why can't they make the BETA of Panels UI easily accessible? I had to hunt high and low to find the download link so this footunes config works!

Again, here it is:  http://panels.fooblog2000.com/foo_ui_panels_beta.zip

foo_ui_panels

Reply #2424
By setting the value 1 or 2 (hides the panel) change between Info and no Info
$setpvar(panel,1)
or
$setpvar(panel,2)


$select($getpvar(panel),
   $panel(Info,Track Display,...)
,
)

or

$ifequal($getpvar(panel),1,
   $panel(Info,Track Display,...)
,
)

bye


Awesome stuff! I understand now, thank you . It works perfectly .
Song List: keikoniumboards.ke.funpic.org/files/songlist.html