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 1317907 times) previous topic - next topic
0 Members and 13 Guests are viewing this topic.

foo_ui_panels

Reply #1925
Terrestrial : First thanks for your work, it s quite amazing. I have a little feature request about drag & drop, do you think it would be possible while dragging a file over SCPL to have right and left key to make you change playlist. Could be very practical i think.

foo_ui_panels

Reply #1926
The track display panel tends to display nothing, if a line exceeds the visible area. This happens sometimes here w.g. when displaying long urls. I cannot afford to use and cut fixed width characters. Also I cannot use alignabs with a huge rectangle, because I have centered aligned text.

I was hoping for wordwrap(). But this:

Code: [Select]
$wordwrap()$get(art)

(art is a long string here) gives me "[Unknown". ???

The wiki page says "Allows the current line to word wrap, otherwise the line is clipped and ellipses are appended to the end of the line.". I have never seen ellipses. If text exceeds width, it always simply disappeared... Which is annoying especially when debugging spaghetti code.

foo_ui_panels

Reply #1927
The crashing is gone, thanks.

And like Squeller, I have the same problem.
Windows 10 Pro x64 // foobar2000 1.3.10

foo_ui_panels

Reply #1928
Terrestrial:
Can you add a $for function?

foo_ui_panels

Reply #1929
Could we get 'always on top' working if it's not too much trouble?

foo_ui_panels

Reply #1930
Code: [Select]
$drawrect(0,0,0,0,brushcolor-0-0-0 pencolor-null) 

$puts(xoffset,0)

$drawrect($get(xoffset),32,$eval(%_width% - $get(xoffset) - 5),1,brushcolor-250-250-255 pencolor-null)

$alignabs($get(xoffset),8,$eval(%_width%-$get(xoffset)-125),25,left,middle)

$font(Wingdings,16,glow-129-138-150 glowblur-10,255-255-255)
$if(%rating%
,
$repeat($char(171),%rating%)
,
$font(Swis721 Cn BT D-Type,12,bold glow-129-138-150 glowblur-10,255-255-255)No Rating
)


$alignabs($eval(%_width%-205),25,200,13,right,middle)

$font(Swis721 Cn BT D-Type,7,bold,255-255-255)
%_itemcount%
$font(Swis721 Cn BT D-Type,7,uppercase,120-120-120) track$ifgreater(%_itemcount%,1,S,)


for some reason the rating stars aren't displayed anymore in the scp group header since the new beta version...

foo_ui_panels

Reply #1931
Terrestrial, I have a question that I've been meaning to ask for a while. In the past I've seen $imageabs2 recommended over $imageabs for general use. Why? I prefer $imageabs because there are less parameters, parameters I don't require for what I'm doing. I've also been meaning to ask for a definitive clarification between the two image functions. Thanks in advance.

Terrestrial:
Can you add a $for function?

If by $for you mean a for loop function he has addressed that a month ago. Otherwise, my bad.


Hmm, one more thing. Would it be out of the scope of Panels UI titleformatting to make a $forloop (for loop) function?


yes

foo_ui_panels

Reply #1932
Now the button thing seems to be fixed. Thanks a lot. 

Code to my first posted problem (sorry the exactly code i couldn't post due to modifications in the meantime):
Code: [Select]
$if(%_selected%,$drawrect(0,0,0,0,brushcolor-SYSCOL-13 pencolor-null))
$if(%_focused%,$drawrect(0,0,0,0,brushcolor-null pencolor-SYSCOL-6))
$if(%_selected%,$textcolor(SYSCOL-9),$textcolor(SYSCOL-8))

$puts(speakerpic,$getpvar(dir)\%codec%.png)
//$if($and(%isplaying%,$not(%RATING%)),
$imageabs2($eval({$get(textleft)*2}+24),,,,,,,,$get(speakerpic),NOKEEPASPECT)
$font(Arial Unicode MS,9,,210-210-210)


$align(14,1)      %list_index%        %tracknumber%    %Artist%    %album%$font(Arial Unicode MS,9,,226-5-44) '(' $font(Arial Unicode MS,9,,210-210-210)%play_count%$font(Arial Unicode MS,9,,226-5-44) ')' %Bitrate% $font(Arial Unicode MS,9,,210-210-210)       

$alignabs(300,1) %title%
$align(right,top)
//%title% 
$puts(rating,
$ifgreater(%play_count%,50,5,
$ifgreater(%play_count%,20,4,
$ifgreater(%play_count%,10,3,
$ifgreater(%play_count%,5,2,
$ifgreater(%play_count%,2,1,0))))))

$repeat($char(9733),$get(rating))
$repeat($char(9734),$sub(5,$get(rating)))
// [%__replaygain_album_gain%]
$font(Arial Unicode MS,9,,225-216-26)
//$if($meta(LYRICS),$rgb(225-216-26) LY)
$if($not(%__replaygain_track_gain%),$rgb(225-216-26)AG)

This is my code in Panel ui for SCPL
$panel(Playlist,Single Column Playlist,415,166,590,$sub(%_height%,$add($get(yOffset),16)),)

For example a title called "Son Of The Sky, Brothers Of The Earth (Bonus Track)" which has 51 chars is written over the rating stars. So rating stars and the title is overlaying each other.

foo_ui_panels

Reply #1933
I switched to the latest beta, and it has been quite stable so far, and considerably faster than version 0.13.7. New drag&drop functionality is just what I dreamed of way back.
But there are a few things that just don't feel right.
1) If the first track in the group is selected, and all other selected tracks belong to the same group, clicking on group's header doesn't make the whole group selected - it only changes selection to that first track in the group. Clicking again doesn't do the trick, too.
I think that quirk was fixed back in some of the 'stable' versions, but here it is again.
2) If you're dragging some tracks across some group's border, the indicating arrow appears between the header and the first track in the group, while logically it should be above the header.
3) If SCPL's height is a multiple of row height (that means no empty space after the last track in sufficiently long playlist), there's no way to drag tracks to the bottom of the playlist below the last track.

I guess both 2) and 3) could be solved by moving the drop indicator below the currently hovered track, but that'd raise the question of how to move tracks to the very top.

4) If a now playing track is moved during the playback, it loses its "now playing" status. And as soon as it's finished playing, it starts again.

Thanks in advance.

foo_ui_panels

Reply #1934
Come across a little issue. I have a mini player that measures 24 pixels in height. However Panels UI doesn't allow it to be opened at this height. It seems to always opens it to a height of the titlebar plus the bottom border  regardless of whether 'hide titlebar' is effected. The titlebar and bottom border display for about a second before Panels kicks in I guess and my config stuff shows.

My mini-player normally



My config upon opening in miniplayer state




Upon testing (disabled 'hide titlebar') it seems my suspicions are correct. This is what happens when I open it with 'hide titlebar' enabled.


Doesn't seem to be anything wrong with my config. Seems to be that Panels just doesn't allow it. Apologies if this is a known issue and there is going to be no attempt to resolve it.

foo_ui_panels

Reply #1935
With last test version (14.7) I have next problem.

I use this code display raiting and change color of stars if song played today or yesterday (modifyed Cepries config)
Code: [Select]
$alignabs($sub(%_width%,100),$eval(%_height%-$getpvar(ext1$getpvar(display))-$getpvar(ext2$getpvar(display))-66),80,20,right,)
$font(wingdings,9,shadow,150-150-150)$repeat($char(171),5)
$alignabs($sub(%_width%,100),$eval(%_height%-$getpvar(ext1$getpvar(display))-$getpvar(ext2$getpvar(display))-66),80,20,right,)
$font(wingdings,9,,$ifgreater($cwb_datediff(%last_played%,%cwb_systemdate%),2,255-255-255,128-255-0))$repeat($char(171),%rating%)


I have next random views (see stars at right bottom corner)


I previous test version (14.6) all is corect.

foo_ui_panels

Reply #1936
Terrestrial, I have a question that I've been meaning to ask for a while. In the past I've seen $imageabs2 recommended over $imageabs for general use. Why? I prefer $imageabs because there are less parameters, parameters I don't require for what I'm doing. I've also been meaning to ask for a definitive clarification between the two image functions. Thanks in advance.

the path to images in $imageabs is always relative to the profile directory. the path to images in $imagesabs2 is relative to the install directory (if you use '/' as the first character) or an absolute path. $imageabs doesn't exist in the test version and probably for future versions, so use $imageabs2. I have actually simplified the syntax a bit, but am still tweaking some stuff.

Now the button thing seems to be fixed. Thanks a lot. 

Code to my first posted problem (sorry the exactly code i couldn't post due to modifications in the meantime):

you seem to be using some of the align functions incorrectly.. do something like this:

Code: [Select]
$if(%_selected%,$drawrect(0,0,0,0,brushcolor-SYSCOL-13 pencolor-null))
$if(%_focused%,$drawrect(0,0,0,0,brushcolor-null pencolor-SYSCOL-6))
$if(%_selected%,$textcolor(SYSCOL-9),$textcolor(SYSCOL-8))

$puts(speakerpic,$getpvar(dir)\%codec%.png)

$imageabs2($eval({$get(textleft)*2}+24),,,,,,,,$get(speakerpic),NOKEEPASPECT)
$font(Arial Unicode MS,9,,210-210-210)

$alignabs(16,0,282,%_height%,left,middle)
%list_index% %tracknumber% %Artist% %album%$font(Arial Unicode MS,9,,226-5-44) '(' $font(Arial Unicode MS,9,,210-210-210)%play_count%$font(Arial Unicode MS,9,,226-5-44) ')' %Bitrate% $font(Arial Unicode MS,9,,210-210-210)

$alignabs(300,0,0,0,left,middle) $alignr(left,middle)%title%

$alignr(right,middle)

$puts(rating,
$ifgreater(%play_count%,50,5,
$ifgreater(%play_count%,20,4,
$ifgreater(%play_count%,10,3,
$ifgreater(%play_count%,5,2,
$ifgreater(%play_count%,2,1,0))))))

$repeat($char(9733),$get(rating))
$repeat($char(9734),$sub(5,$get(rating)))
$font(Arial Unicode MS,9,,225-216-26)
$if($not(%__replaygain_track_gain%),$rgb(225,216,26)AG)

instead.

2) If you're dragging some tracks across some group's border, the indicating arrow appears between the header and the first track in the group, while logically it should be above the header.
3) If SCPL's height is a multiple of row height (that means no empty space after the last track in sufficiently long playlist), there's no way to drag tracks to the bottom of the playlist below the last track.

probably some sort of cut/copy/paste functionality would be best for moving tracks long distances...

Quote
4) If a now playing track is moved during the playback, it loses its "now playing" status. And as soon as it's finished playing, it starts again.

when you drag and drop, it removes the items from the playlist and adds them back to the specified locations (instead of a plain move), which is why you lose the playback status.


Come across a little issue. I have a mini player that measures 24 pixels in height. However Panels UI doesn't allow it to be opened at this height. It seems to always opens it to a height of the titlebar plus the bottom border  regardless of whether 'hide titlebar' is effected. The titlebar and bottom border display for about a second before Panels kicks in I guess and my config stuff shows.

should be fixed in the new version.

-------------------

new test version here.

forgot to update the changelog in the zip:

Quote
0.14.8
   + mouse wheel / focus is set to window under cursor
   + configurable double click / middle click options for the library filter

foo_ui_panels

Reply #1937
Terrestrial : new version 14.8 correct my problem.

Thanks, pIv

foo_ui_panels

Reply #1938
wordwrap() and ellipses at the end of the line work now for the first time. THIS IS A REVOLUTION!  Thank you!

foo_ui_panels

Reply #1939
Code: [Select]
$drawrect(0,0,0,0,brushcolor-0-0-0 pencolor-null) 

$puts(xoffset,0)

$drawrect($get(xoffset),32,$eval(%_width% - $get(xoffset) - 5),1,brushcolor-250-250-255 pencolor-null)

$alignabs($get(xoffset),8,$eval(%_width%-$get(xoffset)-125),25,left,middle)

$font(Wingdings,16,glow-129-138-150 glowblur-10,255-255-255)
$if(%rating%
,
$repeat($char(171),%rating%)
,
$font(Swis721 Cn BT D-Type,12,bold glow-129-138-150 glowblur-10,255-255-255)No Rating
)


$alignabs($eval(%_width%-205),25,200,13,right,middle)

$font(Swis721 Cn BT D-Type,7,bold,255-255-255)
%_itemcount%
$font(Swis721 Cn BT D-Type,7,uppercase,120-120-120) track$ifgreater(%_itemcount%,1,S,)


for some reason the rating stars aren't displayed anymore in the scp group header since the new beta version...


Hehe nice the problem is fixed in the new version

foo_ui_panels

Reply #1940
Everything works now.

And thanks for the mouse click actions for Library Filter, terrestrial.
Windows 10 Pro x64 // foobar2000 1.3.10


foo_ui_panels

Reply #1942
How can I add some distance from one line to the next? I mean, if a single $char(10) is too few, but $char(10)$char(10) is too much? I was trying with minimizing $font() in between, but this no more seems to work...

EDIT I got it done with something like "$font(,4,,,)$char(10)$char(10)..."

foo_ui_panels

Reply #1943
Alright.. so I decided to update to the lastest foobar and PanelsUI.. I was using an old, old one.
I can't even put a Album list panel. what is up with that? I get the message "Missing panel: Album List" in the console window.
In the PanelsUI config window, when I click on the Panels button I only see the ones that are implemented in the PanelsUI plugin. Why can't I see the ones in my components folder?

 

foo_ui_panels

Reply #1944
terrestrial: with the last version of panelsUI, some of my pui s wont even load.
Here is one as an example:
http://www.megaupload.com/?d=CRR4WKV4


I have the same problem as Carmen. Some PUIs like FofR's and Scaled work but my own config doesn't. I know it's a very messy config (I am still in testing) but it worked fine in previous Panels versions.

The pui in question:
http://www.megaupload.com/?d=WDMTSQ70


EDIT:
Upon trying to revert back to a previous version of Panels, nothing but the most simple PUIs seem to work. I imagine I'll have to do a fresh install.

foo_ui_panels

Reply #1945
Quote

0.14.8
   + mouse wheel / focus is set to window under cursor
   + configurable double click / middle click options for the library filter



Thank you for these two features. All works great with no problems. 
Bob

foo_ui_panels

Reply #1946
Ooops. Urgent help required. Updated to new Panels but my config didn't work so I went back to 13.8. Now, even after a fresh install, Panels UI is not recognising my PUI. It just recognises it as having some generic code. When I open the PUI in Wordpad, however, all my original code is there. Any help would be much appreciated.

foo_ui_panels

Reply #1947
The Judge
From what I experienced you can't revert from 0.14 to 0.13. Just update your config for 0.14 version. It isn't that hard. It took me a couple of hours, but I'm not very experienced.

P.S. Always backup your .pui.

foo_ui_panels

Reply #1948
The Judge
From what I experienced you can't revert from 0.14 to 0.13. Just update your config for 0.14 version. It isn't that hard. It took me a couple of hours, but I'm not very experienced.

P.S. Always backup your .pui.

Yeah I'd rather wait until 0.14 is a proper release. Managed to grab my code from the PUI luckily though (had it backed up). And I wouldn't know where to begin to get it working in 0.14. Must be some errant code in there somewhere. Got it working again at least though. Crisis averted.


EDIT: I decided to give 0.14 a try again anyway and miraculously it worked. Guess it was because I had an $imageabs() in there. When I tried to edit it, I input it incorrectly a few times and it resulted in a few crashes. Reports below.

Code: [Select]
Illegal operation:
Code: C0000005h, flags: 00000000h, address: 03F6609Ah
Access violation, operation: read, address: 04FCC000h
Call path:
entry=>app_mainloop
This is the first crash logged by this instance.
Code bytes (03F6609Ah):
03F6605Ah:  0F 82 A4 01 00 00 81 F9 00 01 00 00 72 1F 83 3D
03F6606Ah:  EC 53 FA 03 00 74 16 57 56 83 E7 0F 83 E6 0F 3B
03F6607Ah:  FE 5E 5F 75 08 5E 5F 5D E9 6C 9E 00 00 F7 C7 03
03F6608Ah:  00 00 00 75 15 C1 E9 02 83 E2 03 83 F9 08 72 2A
03F6609Ah:  F3 A5 FF 24 95 B4 61 F6 03 90 8B C7 BA 03 00 00
03F660AAh:  00 83 E9 04 72 0C 83 E0 03 03 C8 FF 24 85 C8 60
03F660BAh:  F6 03 FF 24 8D C4 61 F6 03 90 FF 24 8D 48 61 F6
03F660CAh:  03 90 D8 60 F6 03 04 61 F6 03 28 61 F6 03 23 D1
Stack (0012D728h):
0012D708h:  00000000 867E9040 F0FD13E4 804E36D5
0012D718h:  864D48C0 00000000 000002E4 864D48A8
0012D728h:  00000058 00000000 0012D74C 03F61E28
0012D738h:  04FDF2C8 04FCBFB8 00000058 00000058
0012D748h:  0012D7D0 04FCBFB8 03EFB8BB 04FDF2C8
0012D758h:  0000005E 04FCBFB8 00000058 04FCBFB8
0012D768h:  03FD7A68 00000000 03F38FA0 04FCBFB8
0012D778h:  0000002C 719717B3 00000009 000000C9
0012D788h:  00000000 00000000 7C9106AB 7C9106EB
0012D798h:  00000004 00000000 7C9105D4 03FD0000
0012D7A8h:  04FC8980 0012D79C 0012DBF0 0012D9E0
0012D7B8h:  00000000 7C910738 00000000 00000000
0012D7C8h:  CF159A50 01C7C575 00000000 04FDF2C8
0012D7D8h:  00000000 00000011 001E8200 00000000
0012D7E8h:  0000002F 03FA53A0 03FD7A68 00000000
0012D7F8h:  04FC6E50 0012D800 00000001 77D48BD9
0012D808h:  00000019 00000022 0012D82C 04FC8BA0
0012D818h:  03FD72EC 001FC448 77F185AA 00000019
0012D828h:  0000001F 00150178 04FBD4E8 77F16E56
0012D838h:  00150178 7B0A0DCC 00000010 00000017
Registers:
EAX: 04FCC010, EBX: 0012D7D4, ECX: 00000004, EDX: 00000000
ESI: 04FCC000, EDI: 04FDF310, EBP: 0012D730, ESP: 0012D728
Crash location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h

Loaded modules:
foobar2000                      loaded at 00400000h - 004F3000h
ntdll                            loaded at 7C900000h - 7C9B0000h
kernel32                        loaded at 7C800000h - 7C8F5000h
COMCTL32                        loaded at 773D0000h - 774D3000h
msvcrt                          loaded at 77C10000h - 77C68000h
ADVAPI32                        loaded at 77DD0000h - 77E6B000h
RPCRT4                          loaded at 77E70000h - 77F01000h
GDI32                            loaded at 77F10000h - 77F57000h
USER32                          loaded at 77D40000h - 77DD0000h
SHLWAPI                          loaded at 77F60000h - 77FD6000h
SHELL32                          loaded at 7C9C0000h - 7D1D5000h
ole32                            loaded at 774E0000h - 7761D000h
shared                          loaded at 10000000h - 10029000h
comdlg32                        loaded at 763B0000h - 763F9000h
uxtheme                          loaded at 5AD70000h - 5ADA8000h
MSCTF                            loaded at 74720000h - 7476B000h
iprepair                        loaded at 003E0000h - 003FB000h
OLEAUT32                        loaded at 77120000h - 771AC000h
lgscroll                        loaded at 10100000h - 1010F000h
MSVCR80                          loaded at 78130000h - 781CB000h
MSVCP80                          loaded at 7C420000h - 7C4A7000h
NTMARTA                          loaded at 77690000h - 776B1000h
WLDAP32                          loaded at 76F60000h - 76F8C000h
SAMLIB                          loaded at 71BF0000h - 71C03000h
foo_autoplaylist                loaded at 00BE0000h - 00C10000h
SETUPAPI                        loaded at 77920000h - 77A13000h
foo_browser                      loaded at 00C30000h - 00C6A000h
foo_cdda                        loaded at 00C90000h - 00CC6000h
foo_converter                    loaded at 00CF0000h - 00D59000h
foo_cwb_hooks                    loaded at 00D80000h - 00DB5000h
foo_dsp_std                      loaded at 00DE0000h - 00E21000h
foo_freedb2                      loaded at 00E50000h - 00E90000h
foo_highlightplaying            loaded at 00EB0000h - 00ED1000h
foo_input_std                    loaded at 00F00000h - 01014000h
foo_masstag                      loaded at 01040000h - 01090000h
foo_navigator                    loaded at 010B0000h - 010E1000h
foo_playcount                    loaded at 01110000h - 01138000h
foo_playlist_tree                loaded at 01160000h - 011D5000h
libmzsch360_000                  loaded at 10400000h - 105D0000h
WSOCK32                          loaded at 71AD0000h - 71AD9000h
WS2_32                          loaded at 71AB0000h - 71AC7000h
WS2HELP                          loaded at 71AA0000h - 71AA8000h
libmzgc360_000                  loaded at 01200000h - 012A4000h
foo_rgscan                      loaded at 012F0000h - 01338000h
foo_run                          loaded at 01360000h - 0138B000h
foo_trackpos                    loaded at 013B0000h - 013CF000h
foo_uie_albumart                loaded at 013F0000h - 0142C000h
gdiplus                          loaded at 4EC50000h - 4EDF3000h
foo_uie_queuemanager            loaded at 01460000h - 01499000h
mscoree                          loaded at 79000000h - 79045000h
msvcm80                          loaded at 7C4C0000h - 7C53D000h
mscorwks                        loaded at 79E70000h - 7A3D1000h
mscorlib.ni                      loaded at 790C0000h - 79BA6000h
mscorjit                        loaded at 79060000h - 790B3000h
rsaenh                          loaded at 0FFD0000h - 0FFF8000h
appHelp                          loaded at 77B40000h - 77B62000h
CLBCATQ                          loaded at 76FD0000h - 7704F000h
COMRes                          loaded at 77050000h - 77115000h
VERSION                          loaded at 77C00000h - 77C08000h
USERENV                          loaded at 769C0000h - 76A73000h
System.ni                        loaded at 7A440000h - 7ABFE000h
System.Drawing.ni                loaded at 7ADE0000h - 7AF74000h
MPR                              loaded at 71B20000h - 71B32000h
drprov                          loaded at 75F60000h - 75F67000h
ntlanman                        loaded at 71C10000h - 71C1E000h
NETUI0                          loaded at 71CD0000h - 71CE7000h
NETUI1                          loaded at 71C90000h - 71CD0000h
NETAPI32                        loaded at 5B860000h - 5B8B5000h
NETRAP                          loaded at 71C80000h - 71C87000h
davclnt                          loaded at 75F70000h - 75F79000h
foo_uie_quicksearch              loaded at 03D30000h - 03D76000h
foo_uie_vis_egoh                loaded at 03DA0000h - 03DBD000h
foo_uie_wsh_panel                loaded at 03DD0000h - 03E06000h
foo_ui_columns                  loaded at 03E30000h - 03EC7000h
foo_ui_panels                    loaded at 03EF0000h - 03FB5000h
IMM32                            loaded at 76390000h - 763AD000h
foo_ui_std                      loaded at 03FE0000h - 04037000h
foo_unpack                      loaded at 04060000h - 0408E000h
foo_utils                        loaded at 040B0000h - 040E8000h
xpsp2res                        loaded at 20000000h - 202C5000h
fsshext.8.0.0812.00              loaded at 5A500000h - 5A52F000h
shdocvw                          loaded at 77760000h - 778CF000h
CRYPT32                          loaded at 77A80000h - 77B14000h
MSASN1                          loaded at 77B20000h - 77B32000h
CRYPTUI                          loaded at 754D0000h - 75550000h
WINTRUST                        loaded at 76C30000h - 76C5E000h
IMAGEHLP                        loaded at 76C90000h - 76CB8000h
WININET                          loaded at 771B0000h - 77256000h
actxprxy                        loaded at 71D40000h - 71D5C000h
shgina                          loaded at 73D70000h - 73D83000h
SXS                              loaded at 75E90000h - 75F40000h
MSGINA                          loaded at 75970000h - 75A67000h
WINSTA                          loaded at 76360000h - 76370000h
ODBC32                          loaded at 74320000h - 7435D000h
odbcint                          loaded at 046B0000h - 046C7000h
Secur32                          loaded at 77FE0000h - 77FF1000h
Msimg32                          loaded at 76380000h - 76385000h
System.Windows.Forms.ni          loaded at 7AFD0000h - 7BC56000h
DSOUND                          loaded at 73F10000h - 73F6C000h
WINMM                            loaded at 76B40000h - 76B6D000h
wdmaud                          loaded at 72D20000h - 72D29000h
msacm32                          loaded at 72D10000h - 72D18000h
MSACM32                          loaded at 77BE0000h - 77BF5000h
midimap                          loaded at 77BD0000h - 77BD7000h
KsUser                          loaded at 73EE0000h - 73EE4000h
DBGHELP                          loaded at 59A60000h - 59B01000h

Stack dump analysis:
Address: 03F61E28h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 03EFB8BBh, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 03F38FA0h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Symbol: "foobar2000_get_interface" (+00005890h)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 77D48BD9h, location: "USER32", loaded at 77D40000h - 77DD0000h
Symbol: "GetWindowThreadProcessId" (+00000159h)
Address: 77F185AAh, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "GetTextCharsetInfo" (+00000141h)
Address: 77F16E56h, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "DeleteObject" (+00000229h)
Address: 7B0A0DCCh, location: "System.Windows.Forms.ni", loaded at 7AFD0000h - 7BC56000h
Address: 7C910E91h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000402h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C80996Dh, location: "kernel32", loaded at 7C800000h - 7C8F5000h
Symbol: "LocalFree" (+0000003Eh)
Address: 7C839A10h, location: "kernel32", loaded at 7C800000h - 7C8F5000h
Symbol: "ValidateLocale" (+000002B0h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 03F61D97h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 03F6223Ah, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910570h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 03F623B3h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 03F623D2h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 03F6AD50h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 03F623D2h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 03F3D3A8h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Symbol: "foobar2000_get_interface" (+00009C98h)
Address: 03F3D3DDh, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Symbol: "foobar2000_get_interface" (+00009CCDh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 03F9FAE4h, location: "foo_ui_panels", loaded at 03EF0000h - 03FB5000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 00460020h, location: "foobar2000", loaded at 00400000h - 004F3000h
Address: 00490055h, location: "foobar2000", loaded at 00400000h - 004F3000h

Version info:
foobar2000 v0.9.4.3
UNICODE

Additional info:
ZIP/GZIP reader 1.0  (foo_unpack)
CD Audio Decoder 2.1.1  (foo_cdda)
Playlist Tree Panel 3.0.BETA_3 [Apr  3 2007 - 11:39:32]  (foo_playlist_tree)
RAR reader 1.1  (foo_unpack)
Navigator 0.6  (foo_navigator)
Standard Input Array 1.0  (foo_input_std)
Panels UI 0.14.8 beta [Jul 12 2007 - 21:59:13]  (foo_ui_panels)
Default User Interface 0.9acc  (foo_ui_std)
Quick Search Toolbar 2.8k  (foo_uie_quicksearch)
WMA Decoder 1.1  (foo_input_std)
Playback Statistics 1.3.2  (foo_playcount)
Queue manager panel 0.2.3  (foo_uie_queuemanager)
Highlight playing 0.1.0  (foo_highlightplaying)
Standard DSP array 1.0  (foo_dsp_std)
Album Art Panel 0.2.6  (foo_uie_albumart)
Columns UI 0.1.3 beta 1v7  (foo_ui_columns)
Converter 1.0.1  (foo_converter)
Track Positioner 1.0  (foo_trackpos)
Egoh Spectrum analyser (uie) 1.1.2  (foo_uie_vis_egoh)
Autoplaylist Manager 1.0  (foo_autoplaylist)
Music Browser 1.2.3 [Dec  4 2006 - 09:42:32]  (foo_browser)
Masstagger 1.6  (foo_masstag)
ReplayGain Scanner 2.0.2  (foo_rgscan)
Playlist Tools 0.5.9  (foo_utils)
WSH Panel (uie) 0.7.1  (foo_uie_wsh_panel)
freedb Tagger 0.5.2a  (foo_freedb2)
cwbowron's title format hooks 1.1.0beta [Dec  1 2006 - 13:47:34]  (foo_cwb_hooks)
Run services 0.3.2  (foo_run)
foobar2000 core 0.9.4.3  (Core)
FLAC Decoder 1.1.0  (foo_input_std)



Second Crash
Code: [Select]
Illegal operation:
Code: C0000005h, flags: 00000000h, address: 0489609Ah
Access violation, operation: read, address: 00AE3000h
Call path:
entry=>app_mainloop
This is the first crash logged by this instance.
Code bytes (0489609Ah):
0489605Ah:  0F 82 A4 01 00 00 81 F9 00 01 00 00 72 1F 83 3D
0489606Ah:  EC 53 8D 04 00 74 16 57 56 83 E7 0F 83 E6 0F 3B
0489607Ah:  FE 5E 5F 75 08 5E 5F 5D E9 6C 9E 00 00 F7 C7 03
0489608Ah:  00 00 00 75 15 C1 E9 02 83 E2 03 83 F9 08 72 2A
0489609Ah:  F3 A5 FF 24 95 B4 61 89 04 90 8B C7 BA 03 00 00
048960AAh:  00 83 E9 04 72 0C 83 E0 03 03 C8 FF 24 85 C8 60
048960BAh:  89 04 FF 24 8D C4 61 89 04 90 FF 24 8D 48 61 89
048960CAh:  04 90 D8 60 89 04 04 61 89 04 28 61 89 04 23 D1
Stack (0012D728h):
0012D708h:  00000000 867E9040 F13EC3E4 804E36D5
0012D718h:  8657A8E0 00000000 0000037C 8657A8C8
0012D728h:  00000058 00000000 0012D74C 04891E28
0012D738h:  00AC6240 00AE2FB8 00000058 00000058
0012D748h:  0012D7D0 00AE2FB8 0482B8BB 00AC6240
0012D758h:  0000005E 00AE2FB8 00000058 00AE2FB8
0012D768h:  03D47A68 00000000 04868FA0 00AE2FB8
0012D778h:  0000002C F15542B5 00000009 0000006D
0012D788h:  00000000 00000073 7C9106AB 7C9106EB
0012D798h:  00000004 00000000 7C9105D4 03D40000
0012D7A8h:  00AE0380 0012D79C 0012DBF0 0012D9E0
0012D7B8h:  00000000 7C910738 00000000 7C910732
0012D7C8h:  7C9106AB 7C9106EB 00000000 00AC6240
0012D7D8h:  00000000 00000011 001FCAF0 00000000
0012D7E8h:  0000002F 048D53A0 03D47A68 00000000
0012D7F8h:  00ADDB18 0012D800 00000001 77D48BD9
0012D808h:  00000019 00000022 0012D82C 00AE2E38
0012D818h:  03D472EC 001E9A90 77F185AA 00000019
0012D828h:  0000001F 00150178 00AE2DF0 77F16E56
0012D838h:  00150178 C80A0B6C 00000010 00000017
Registers:
EAX: 00AE3010, EBX: 0012D7D4, ECX: 00000004, EDX: 00000000
ESI: 00AE3000, EDI: 00AC6288, EBP: 0012D730, ESP: 0012D728
Crash location: "foo_ui_panels", loaded at 04820000h - 048E5000h

Loaded modules:
foobar2000                      loaded at 00400000h - 004F3000h
ntdll                            loaded at 7C900000h - 7C9B0000h
kernel32                        loaded at 7C800000h - 7C8F5000h
COMCTL32                        loaded at 773D0000h - 774D3000h
msvcrt                          loaded at 77C10000h - 77C68000h
ADVAPI32                        loaded at 77DD0000h - 77E6B000h
RPCRT4                          loaded at 77E70000h - 77F01000h
GDI32                            loaded at 77F10000h - 77F57000h
USER32                          loaded at 77D40000h - 77DD0000h
SHLWAPI                          loaded at 77F60000h - 77FD6000h
SHELL32                          loaded at 7C9C0000h - 7D1D5000h
ole32                            loaded at 774E0000h - 7761D000h
shared                          loaded at 10000000h - 10029000h
comdlg32                        loaded at 763B0000h - 763F9000h
uxtheme                          loaded at 5AD70000h - 5ADA8000h
MSCTF                            loaded at 74720000h - 7476B000h
iprepair                        loaded at 003E0000h - 003FB000h
OLEAUT32                        loaded at 77120000h - 771AC000h
lgscroll                        loaded at 10100000h - 1010F000h
MSVCR80                          loaded at 78130000h - 781CB000h
MSVCP80                          loaded at 7C420000h - 7C4A7000h
NTMARTA                          loaded at 77690000h - 776B1000h
WLDAP32                          loaded at 76F60000h - 76F8C000h
SAMLIB                          loaded at 71BF0000h - 71C03000h
SETUPAPI                        loaded at 77920000h - 77A13000h
foo_autoplaylist                loaded at 00BE0000h - 00C10000h
foo_browser                      loaded at 00C30000h - 00C6A000h
foo_cdda                        loaded at 00C90000h - 00CC6000h
foo_converter                    loaded at 00CF0000h - 00D59000h
foo_cwb_hooks                    loaded at 00D80000h - 00DB5000h
foo_dsp_std                      loaded at 00DE0000h - 00E21000h
foo_freedb2                      loaded at 00E50000h - 00E90000h
foo_highlightplaying            loaded at 00EB0000h - 00ED1000h
foo_input_std                    loaded at 00F00000h - 01014000h
foo_masstag                      loaded at 01040000h - 01090000h
foo_navigator                    loaded at 010B0000h - 010E1000h
foo_playcount                    loaded at 01110000h - 01138000h
foo_playlist_tree                loaded at 01160000h - 011D5000h
libmzsch360_000                  loaded at 10400000h - 105D0000h
WSOCK32                          loaded at 71AD0000h - 71AD9000h
WS2_32                          loaded at 71AB0000h - 71AC7000h
WS2HELP                          loaded at 71AA0000h - 71AA8000h
libmzgc360_000                  loaded at 01200000h - 012A4000h
foo_rgscan                      loaded at 012F0000h - 01338000h
foo_run                          loaded at 01360000h - 0138B000h
foo_trackpos                    loaded at 013B0000h - 013CF000h
foo_uie_albumart                loaded at 013F0000h - 0142C000h
gdiplus                          loaded at 4EC50000h - 4EDF3000h
foo_uie_queuemanager            loaded at 01460000h - 01499000h
mscoree                          loaded at 79000000h - 79045000h
msvcm80                          loaded at 7C4C0000h - 7C53D000h
mscorwks                        loaded at 79E70000h - 7A3D1000h
mscorlib.ni                      loaded at 790C0000h - 79BA6000h
mscorjit                        loaded at 79060000h - 790B3000h
rsaenh                          loaded at 0FFD0000h - 0FFF8000h
appHelp                          loaded at 77B40000h - 77B62000h
CLBCATQ                          loaded at 76FD0000h - 7704F000h
COMRes                          loaded at 77050000h - 77115000h
VERSION                          loaded at 77C00000h - 77C08000h
System.ni                        loaded at 7A440000h - 7ABFE000h
System.Drawing.ni                loaded at 7ADE0000h - 7AF74000h
USERENV                          loaded at 769C0000h - 76A73000h
foo_uie_quicksearch              loaded at 03BB0000h - 03BF6000h
foo_uie_vis_egoh                loaded at 046E0000h - 046FD000h
foo_uie_wsh_panel                loaded at 04700000h - 04736000h
foo_ui_columns                  loaded at 04760000h - 047F7000h
foo_ui_panels                    loaded at 04820000h - 048E5000h
IMM32                            loaded at 76390000h - 763AD000h
MPR                              loaded at 71B20000h - 71B32000h
drprov                          loaded at 75F60000h - 75F67000h
ntlanman                        loaded at 71C10000h - 71C1E000h
NETUI0                          loaded at 71CD0000h - 71CE7000h
NETUI1                          loaded at 71C90000h - 71CD0000h
NETAPI32                        loaded at 5B860000h - 5B8B5000h
NETRAP                          loaded at 71C80000h - 71C87000h
davclnt                          loaded at 75F70000h - 75F79000h
foo_ui_std                      loaded at 03DD0000h - 03E27000h
foo_unpack                      loaded at 03E50000h - 03E7E000h
foo_utils                        loaded at 03EA0000h - 03ED8000h
xpsp2res                        loaded at 20000000h - 202C5000h
fsshext.8.0.0812.00              loaded at 5A500000h - 5A52F000h
shdocvw                          loaded at 77760000h - 778CF000h
CRYPT32                          loaded at 77A80000h - 77B14000h
MSASN1                          loaded at 77B20000h - 77B32000h
CRYPTUI                          loaded at 754D0000h - 75550000h
WINTRUST                        loaded at 76C30000h - 76C5E000h
IMAGEHLP                        loaded at 76C90000h - 76CB8000h
WININET                          loaded at 771B0000h - 77256000h
actxprxy                        loaded at 71D40000h - 71D5C000h
shgina                          loaded at 73D70000h - 73D83000h
SXS                              loaded at 75E90000h - 75F40000h
MSGINA                          loaded at 75970000h - 75A67000h
WINSTA                          loaded at 76360000h - 76370000h
ODBC32                          loaded at 74320000h - 7435D000h
odbcint                          loaded at 046C0000h - 046D7000h
Secur32                          loaded at 77FE0000h - 77FF1000h
Msimg32                          loaded at 76380000h - 76385000h
System.Windows.Forms.ni          loaded at 7AFD0000h - 7BC56000h
DSOUND                          loaded at 73F10000h - 73F6C000h
WINMM                            loaded at 76B40000h - 76B6D000h
wdmaud                          loaded at 72D20000h - 72D29000h
msacm32                          loaded at 72D10000h - 72D18000h
MSACM32                          loaded at 77BE0000h - 77BF5000h
midimap                          loaded at 77BD0000h - 77BD7000h
KsUser                          loaded at 73EE0000h - 73EE4000h
DBGHELP                          loaded at 59A60000h - 59B01000h

Stack dump analysis:
Address: 04891E28h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 0482B8BBh, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 04868FA0h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Symbol: "foobar2000_get_interface" (+00005890h)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 77D48BD9h, location: "USER32", loaded at 77D40000h - 77DD0000h
Symbol: "GetWindowThreadProcessId" (+00000159h)
Address: 77F185AAh, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "GetTextCharsetInfo" (+00000141h)
Address: 77F16E56h, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "DeleteObject" (+00000229h)
Address: 7C910E91h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000402h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C80996Dh, location: "kernel32", loaded at 7C800000h - 7C8F5000h
Symbol: "LocalFree" (+0000003Eh)
Address: 7C839A10h, location: "kernel32", loaded at 7C800000h - 7C8F5000h
Symbol: "ValidateLocale" (+000002B0h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 04891D97h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 0489223Ah, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910570h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 048923B3h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 048923D2h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 0489AD50h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 048923D2h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 0486D3A8h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Symbol: "foobar2000_get_interface" (+00009C98h)
Address: 0486D3DDh, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Symbol: "foobar2000_get_interface" (+00009CCDh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 048CFAE4h, location: "foo_ui_panels", loaded at 04820000h - 048E5000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 00460020h, location: "foobar2000", loaded at 00400000h - 004F3000h
Address: 00490055h, location: "foobar2000", loaded at 00400000h - 004F3000h

Version info:
foobar2000 v0.9.4.3
UNICODE

Additional info:
Playback Statistics 1.3.2  (foo_playcount)
Quick Search Toolbar 2.8k  (foo_uie_quicksearch)
ReplayGain Scanner 2.0.2  (foo_rgscan)
Queue manager panel 0.2.3  (foo_uie_queuemanager)
Run services 0.3.2  (foo_run)
Album Art Panel 0.2.6  (foo_uie_albumart)
Highlight playing 0.1.0  (foo_highlightplaying)
Standard Input Array 1.0  (foo_input_std)
Standard DSP array 1.0  (foo_dsp_std)
freedb Tagger 0.5.2a  (foo_freedb2)
CD Audio Decoder 2.1.1  (foo_cdda)
Playlist Tools 0.5.9  (foo_utils)
foobar2000 core 0.9.4.3  (Core)
Masstagger 1.6  (foo_masstag)
Navigator 0.6  (foo_navigator)
Default User Interface 0.9acc  (foo_ui_std)
FLAC Decoder 1.1.0  (foo_input_std)
ZIP/GZIP reader 1.0  (foo_unpack)
Converter 1.0.1  (foo_converter)
Egoh Spectrum analyser (uie) 1.1.2  (foo_uie_vis_egoh)
Panels UI 0.14.8 beta [Jul 12 2007 - 21:59:13]  (foo_ui_panels)
Autoplaylist Manager 1.0  (foo_autoplaylist)
RAR reader 1.1  (foo_unpack)
Track Positioner 1.0  (foo_trackpos)
cwbowron's title format hooks 1.1.0beta [Dec  1 2006 - 13:47:34]  (foo_cwb_hooks)
Columns UI 0.1.3 beta 1v7  (foo_ui_columns)
WMA Decoder 1.1  (foo_input_std)
Playlist Tree Panel 3.0.BETA_3 [Apr  3 2007 - 11:39:32]  (foo_playlist_tree)
Music Browser 1.2.3 [Dec  4 2006 - 09:42:32]  (foo_browser)
WSH Panel (uie) 0.7.1  (foo_uie_wsh_panel)



Second EDIT:

Just been playing around with the drag&drop. It's nicely implemented. Will we be given the option to change the arrow in the future? Would it be possible to make it drag straight away too instead of having to select an item first and then drag it? Perhaps leave the left button as the select button and the right as the drag button? And something I just noticed straight away is that CTRL+Z doesn't work for drag&drop. If you make an error you have to drag it back manually.

foo_ui_panels

Reply #1949
Can someone tell me if $font "style" options such as nocleartype and alpha have been implemented yet in the new version? If not, any idea when? ClearType looks horrible on my CRT when using smaller fonts like Tahoma 10px or pixel fonts like Silkscreen.

P.S. Is there an example somewhere of the new "simplified" syntax for $imageabs2, or is this something that hasn't been released yet?