[Freevo-cvslog] freevo/contrib/rpm freevo-deps.txt,1.1,1.2

2003-09-25 Thread tcwan
Update of /cvsroot/freevo/freevo/contrib/rpm In directory sc8-pr-cvs1:/tmp/cvs-serv29843 Modified Files: freevo-deps.txt Log Message: Added pyLCD reference Index: freevo-deps.txt === RCS file:

[Freevo-cvslog] freevo/src childapp.py,1.18,1.19

2003-09-25 Thread dischi
Update of /cvsroot/freevo/freevo/src In directory sc8-pr-cvs1:/tmp/cvs-serv31078 Modified Files: childapp.py Log Message: fix childapp killing problem Index: childapp.py === RCS file:

Re: [Freevo-devel] for the next runtime + binary release

2003-09-25 Thread Wan Tat Chee
Hi Rob, On Wed, 24 Sep 2003, Rob Shortt wrote: Can you please take a look at $CVSROOT/freevo/contrib/rpm/freevo-deps.txt and see if I've missed something? This list was derived from your package_list.mk file in the runtime directory. I've tried to classify the packages based on core, recording

Re: [Freevo-devel] new childapp killing active processes...

2003-09-25 Thread Wan Tat Chee
Hi, I've noticed in recent (pre Sept 21) snapshots, the mplayer audio plugin allows you to press ESC to go up one menu level and background music playback, but no longer displays the option to return to the currently playing song. I can even exit from freevo entirely while the song continues to

[Freevo-cvslog] freevo freevo_config.py,1.263,1.264 local_conf.py.example,1.11,1.12

2003-09-25 Thread dischi
Update of /cvsroot/freevo/freevo In directory sc8-pr-cvs1:/tmp/cvs-serv1253 Modified Files: freevo_config.py local_conf.py.example Log Message: change default Index: freevo_config.py === RCS file:

[Freevo-cvslog] freevo/src event.py,1.22,1.23 childapp.py,1.19,1.20

2003-09-25 Thread outlyer
Update of /cvsroot/freevo/freevo/src In directory sc8-pr-cvs1:/tmp/cvs-serv13580/src Modified Files: event.py childapp.py Log Message: My autocolor plugin which allows me to run a system command before plaaying video. It doesn't have to be a color command, you can change mixer settings

[Freevo-cvslog] freevo/src/plugins autocolor.py,NONE,1.1

2003-09-25 Thread outlyer
Update of /cvsroot/freevo/freevo/src/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv13580/src/plugins Added Files: autocolor.py Log Message: My autocolor plugin which allows me to run a system command before plaaying video. It doesn't have to be a color command, you can change mixer

[Freevo-cvslog] freevo/src childapp.py,1.20,1.21

2003-09-25 Thread outlyer
Update of /cvsroot/freevo/freevo/src In directory sc8-pr-cvs1:/tmp/cvs-serv13786 Modified Files: childapp.py Log Message: Bump the priority of this message down. Index: childapp.py === RCS file:

[Freevo-devel] Re: new childapp killing active processes...

2003-09-25 Thread Dirk Meyer
Wan Tat Chee wrote: Hi, I've noticed in recent (pre Sept 21) snapshots, the mplayer audio plugin allows you to press ESC to go up one menu level and background music playback, but no longer displays the option to return to the currently playing song. That shouldn't happen. For me, ESC

[Freevo-devel] Update of the GamesEmulators Page in WikiDocumentation

2003-09-25 Thread Sylvain FABRE
The title tells it all. Any remarks welcome for this update... Regards, Sylvain. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-devel

[Freevo-devel] [PATCH : i18n/fr/LC_MESSAGES/freevo.po] New freevo.po for French

2003-09-25 Thread Sylvain FABRE
I have modified the freevo.po, in order to propose a better french translation of the strings, by using real french words instead of word-by-word english-to-french. David Sagnol, do you agree with these new translations ?? Regards, Sylvain.# French strings in freevo # Copyright (C) 2003 # David

[Freevo-cvslog] freevo/WIP/Ruelle tvtime.py,1.7,1.8

2003-09-25 Thread mikeruelle
Update of /cvsroot/freevo/freevo/WIP/Ruelle In directory sc8-pr-cvs1:/tmp/cvs-serv10747 Modified Files: tvtime.py Log Message: convert the int tuner values we get when Aubins autodetect channels thing runs. Index: tvtime.py

[Freevo-cvslog] freevo/src childapp.py,1.21,1.22

2003-09-25 Thread outlyer
Update of /cvsroot/freevo/freevo/src In directory sc8-pr-cvs1:/tmp/cvs-serv22240/src Modified Files: childapp.py Log Message: It's still killing processes if they don't respond immmediately. I've realized that this mostly happens with high-bitrate MP3s, of which I have many. The extra

[Freevo-devel] [BUG] File src/menu.py

2003-09-25 Thread Sylvain FABRE
There is still a 'big' bug in the menu.py file, preventing generic games to be launched at line 547 : action( arg=arg, menuw=self) Must be replaced with : action( menuw=self) --- This sf.net email is sponsored by:ThinkGeek

[Freevo-cvslog] freevo/src/games genericitem.py,1.1,1.2

2003-09-25 Thread mikeruelle
Update of /cvsroot/freevo/freevo/src/games In directory sc8-pr-cvs1:/tmp/cvs-serv29411 Modified Files: genericitem.py Log Message: fix crash for missing arg Index: genericitem.py === RCS file:

[Freevo-cvslog] freevo/src/games genesisitem.py,1.1,1.2

2003-09-25 Thread mikeruelle
Update of /cvsroot/freevo/freevo/src/games In directory sc8-pr-cvs1:/tmp/cvs-serv29646 Modified Files: genesisitem.py Log Message: fix crash for missing arg Index: genesisitem.py === RCS file:

Re: [Freevo-devel] [BUG] File src/menu.py

2003-09-25 Thread Michael Ruelle
Actually the bug is in genericitem.py it should accept the arg argument. this: def play(self, menuw=None): should be: def play(self, arg=None, menuw=None): like snesitem.py and mameitem.py do. I will commit this fix in a moment. Mike On Thu, 2003-09-25 at 17:00, Sylvain FABRE wrote: There

Re: [Freevo-devel] [BUG] File src/menu.py

2003-09-25 Thread Sylvain FABRE
OK, i see the point. Sorry for the misunderstanding and thanks for the patch ! Sylvain. Actually the bug is in genericitem.py it should accept the arg argument. this: def play(self, menuw=None): should be: def play(self, arg=None, menuw=None): like snesitem.py and mameitem.py do. I