[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-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

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

2003-09-25 Thread Sylvain FABRE
will commit this fix in a moment. Mike On Thu, 2003-09-25 at 17:00, Sylvain FABRE wrote: 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

Re: [Freevo-devel] Re: 1.4?

2003-09-04 Thread Sylvain FABRE
) - everything in the src/games folder Regards, Sylvain (an see you this night...) On Thu, 2003-09-04 at 10:25, Dirk Meyer wrote: Sylvain FABRE wrote: It seems that nobody try my patch for GAMES, sent 3 weeks ago. Sorry, but some patches are lost and therefore ignored by the 'I-thought-some-else

[Freevo-devel] [PATCH] New games system

2003-09-04 Thread Sylvain FABRE
Hi all. Here is the new system for games in Freevo with : - Modified games configuration in freevo_config - Identification of SNES roms (python parser for SNES ROMS) - GENERATOR emulator support (GENESIS/MEGADRIVE) - Identification of GENESIS roms (python parser for GENESIS ROMS) - Support

Re: [Freevo-devel] CVS users please read

2003-08-22 Thread Sylvain FABRE
I'am a newbie to freevo, but i began to enter into the code and the system, and my opinion is that the 'local_conf.py' location is too complicated. Is there any reasons to have so much possibles locations for that file ?? In my opinion, the local_conf.py should only be in one place (~/.freevo/

[Freevo-devel] [PATCH] New GAMES system - update

2003-08-21 Thread Sylvain FABRE
, ...) - One folder/emulator organization - Internal detection of SNES ROM - Internal detection of MEGDRIVE ROMS - Support for 'generic' emulator Don't hesitate to contact me in case of problems. Regards, Sylvain. Sylvain FABRE wrote: Here is a new version of the proposal for games

[Freevo-devel] Feedback for new DIR_GAMES ?

2003-08-17 Thread Sylvain FABRE
Who try to install my first attempt for a new game system in Freevo, acorrding to my previous email ? I need feedback, of course. Regards, Sylvain. --- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports,

[Freevo-devel] Full command support via remote

2003-08-14 Thread Sylvain FABRE
After looking at the code, it seems there is two kinds of keys : SDL-level keys (like 'h', 'F10', ...) and Freevo keys. The freevo keys are usable with the remote but the SDL keys are not. So is it possible to allow all the keys with the remote (including snapshot with F10 and Help with h) ???

Re: [Freevo-devel] new ideas for games management

2003-08-14 Thread Sylvain FABRE
That may be difficult. Ok, it was my guess. Right, in order to add a new emulator this way it takes more work, is more complex and more things to keep track of (users and developers). I am pleases to see that we agree. Unfortunately most projects require extra work to get stdin control.

[Freevo-devel] Update for DIR_GAMES... (first try)

2003-08-14 Thread Sylvain FABRE
Hi all. Here is a first attempt for a modified game system : - SNES roms are now parsed and the title/Country/Developper is displayed - Everything is defined in the DIR_GAMES list - Allows additionnal emulators by simply adding lines (example given with the megadrive) - Modified files :

[Freevo-devel] Bug in main.py + new ideas for games management

2003-08-08 Thread Sylvain FABRE
Freevo : 1.3.4 In src/menu.py, near line 529, there is a call to play ('play (arg=arg, menuw=self)') and this is a bug. The correct line is 'play (menuw=self)' This bug disallows games launching like SNES. Meanwhile, i am planning to integrate many emulators in Freevo (XMESS, GENERATOR,...) and

[Freevo-devel] Bug in mame_cache.py

2003-08-03 Thread Sylvain FABRE
Freevo : 1.3.3 There is a bug in the current release in the function 'saveMameRomList' in file mame_cache.py : the call to util.save_pickle() line 136 must have two arguments. In 1.3.3 : util.save_pickle(mameRomList) In my working version : util.save_picke(mameRomList, config.MAME_CACHE)

[Freevo-devel] X11, DGA : my solution

2003-07-23 Thread Sylvain FABRE
Hi all, I have solved the resolution switch problem in DGA mode. Summary of the problem : 1 - Frevo GUI in 800x600 (CONF.display=x11) 2 - Play a movie/tv show with another resolution in DGA mode (-vo dga,xv,x11,sdl) 3 - mplayer switch the resolution to the proper one (512x384 for example) 4 -

Re: [Freevo-devel] Re: X11, DGA : my solution

2003-07-23 Thread Sylvain FABRE
(let's say FORCE_RESTART_DISPLAY_FOR_DGA_MODE) in order to explicitly activate this feature. My modifiction take place in the 'def Stop' function of each mplayer object : the last line of these functions is : 'osd.restartdisplay()' Clear ? Regards, Sylvain Sylvain FABRE wrote: My solution : Add

Re: [Freevo-devel] Re: [Freevo-cvslog] freevo/src osd.py,1.71,1.72

2003-07-20 Thread Sylvain FABRE
Ok, i see the point. Thanks for you (long) explanation. Maybe a addtionnal comment in freevo_config.py would be great to explain the way of settings the display (even a simple copy/paste of this mail...) Regards, Sylvain. Sylvain FABRE wrote: [EMAIL PROTECTED] wrote: Update of /cvsroot/freevo

[Freevo-devel] Small suggestions in DGA mode

2003-07-12 Thread Sylvain FABRE
Hi all. Due to the fact that the TVout for my RAGE 128 card is not supported, i must use the DGA mode in XFree86. As it is said in mplayer documentation (http://www.mplayerhq.hu/DOCS/video.html#dga), some drivers simply fail to switch back to normal resolution (and this is my case). So my small