Page 1 of 1

0.9.2 Test builds

Posted: 14 Sep 2008 11:31
by Jean-Baptiste Kempf
Hello,

For the people interested, here is a test build:
http://people.videolan.org/~jb/0.9.2/wi ... -win32.exe

Please report any MAJOR issue...

Don't distribute the file outside of here, because this one is deliberatly broken... And it won't update itself in the feature... :D

Re: 0.9.2 Test builds

Posted: 14 Sep 2008 13:51
by Dedalus
I use windows 0.9.2 rc2 build: I found a GUI error (incorrect label display).
See details:
Image

Re: 0.9.2 Test builds

Posted: 14 Sep 2008 14:48
by random
It only happens when you enable advanced options for qt4.
Has anyone noticed fullscreen controller misbehaves ?
I wonder why hasn't anyone talked about fs controller yet.

Re: 0.9.2 Test builds

Posted: 14 Sep 2008 15:29
by Dedalus
Another bug:
If I play this streaming radio mms://62.196.2.90/Radio24 with vlc minimize to tray, if I right click on icon on system tray when vlc play radio and click on "Close" I have this error:
"... memory cannot be read".

Ciao.

Re: 0.9.2 Test builds

Posted: 14 Sep 2008 18:06
by EdwinHoegen
The player runs perfect, with AVI files much beter than version 0.8! But unfortunately the video's don't play seamless anymore. Is this a option that can be brought back from the previous versions of VLC?

Re: 0.9.2 Test builds

Posted: 14 Sep 2008 18:31
by Lotesdelere
I've found an item of the advanced preferences not being translated:
Image


More annoying: VLC always crashes on exit if the Menu window has been resized.
Example:
Open Capture Device
I select DVB DirectShow then DVB-T
Then I tick the box Show More Options -> the window is being automatically resized and this size will be saved as the default size
Playing DVB works fine but VLC will crash on exit.

Now each time you are going to use any of these menus: Open File, Open Folder, Open Disc, Open Network or Open Capture Device where the window has been resized then VLC will crash on exit.

Re: 0.9.2 Test builds

Posted: 14 Sep 2008 19:28
by Jean-Baptiste Kempf
It only happens when you enable advanced options for qt4.
Has anyone noticed fullscreen controller misbehaves ?
I wonder why hasn't anyone talked about fs controller yet.
Some bisbehaviour of FS (like showing too often) are too complex to fix for 0.9 because they need core changes on windows.

Re: 0.9.2 Test builds

Posted: 14 Sep 2008 22:01
by cinfo
Hi

The use of addTarget function in ActiveX V1 doesn't produce the same result in 0.8.x and 0.9.x.

In 0.8.x, theses lines were correct :
- activex.addtarget (Adress1, Params, VLCPlayListReplaceAndGo, -666) >> the video 1 starts
- activex.stop
- activex.addtarget (Adress2, Params, VLCPlayListReplaceAndGo, -666) >> the video 2 starts
- activex.stop

In 0.9.x, theses lines are not correct :
- activex.addtarget (Adress1, Params, VLCPlayListReplaceAndGo, -666) >> the video 1 doesn't start
- activex.play >> you have to do a "play" for video 1 to start
- activex.stop
- activex.addtarget (Adress2, Params, VLCPlayListReplaceAndGo, -666)
- activex.play >> the video 1 starts instead of the video 2
- activex.stop

It isn't fixed by inserting delay between activex's calls. It isn't fixed by clearing the playlist with activex.playlistClear between the two addtarget calls (playlistCount is always set to 1). It was OK in the 0.8.x releases and in the very first 0.9.0 beta releases. It seems to be perhaps as in this bug ticket #1910 (http://trac.videolan.org/vlc/ticket/1910) but it isn't fixed up to now.

Thanks for your great job !

Bye