Wine programs for windows released on sourceforge
Patches and scripts are useless for most users, and cygwin isn't software you install quickly with a analog modem, so I've uploaded a build of the wine programs for windows on our sourceforge page.
I will do some tests with these. Are you using CVS ? Otherwise I will recompile to have the latest code available. --- Ivan Leo Murray-Smith <puoti(a)inwind.it> a écrit :
Patches and scripts are useless for most users, and cygwin isn't software you install quickly with a analog modem, so I've uploaded a build of the wine programs for windows on our sourceforge page.
Running with an admin user on XP now. Will rerun with an user account if needed. Clock: - Numeric clock doesnt work (displays "éla" everytime at the same place) - When trying to change font: says no font has been installed. - Without title bar doesnt work (windows XP related ?) Cmdlgtst: - Cursor model isnt set. - About displayed incorrectly Notepad: No problem found. Regedit: About displayed incorrectly Start: Test couldnt be done, Windows XP uses .xxx\PersistHanlder mechanism to handle file types. Wcmd: - Problem with accentuated letters. - "copy con test.txt" says "access denied" but "type con >test.txt" works. Winefile: - Crashes when trying to start anything. - Display only partly the current directory when starting itself. Winemine: About displayed incorrectly Winhelp: - Doesnt start without parameter. - Exits with code 2 with valid help file as parameter (no windows is displayed at all) ===== Sylvain Petreolle (spetreolle_at_users_dot_sourceforge_dot_net) ICQ #170597259 Say NO to software patents Dites NON aux brevets logiciels "What if tomorrow the War could be over ?" Morpheus, in "Reloaded". ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
Wcmd: - Problem with accentuated letters. likely because we don't set the console codepage correctly - "copy con test.txt" says "access denied" but "type con >test.txt" works. that's stranger. could someone test whether CopyFile("CON", "afile", FALSE); works or not same for CopyFile("$CONIN", "afile", FALSE); (when run from a console of course)
Winhelp: - Doesnt start without parameter. - Exits with code 2 with valid help file as parameter (no windows is displayed at all) cmdline parsing should be buggy... did you use tabs in the command line ? A+ -- Eric Pouech
Winhelp: - Doesnt start without parameter. - Exits with code 2 with valid help file as parameter (no windows is displayed at all) cmdline parsing should be buggy... did you use tabs in the command line ? Even if cmdline parsing is buggy, winhelp should start. I didnt use tabs.
===== Sylvain Petreolle (spetreolle_at_users_dot_sourceforge_dot_net) ICQ #170597259 Say NO to software patents Dites NON aux brevets logiciels "What if tomorrow the War could be over ?" Morpheus, in "Reloaded". ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
Sylvain Petreolle wrote:
I will do some tests with these. Are you using CVS ? Otherwise I will recompile to have the latest code available. --- Ivan Leo Murray-Smith <puoti(a)inwind.it> a écrit :
Patches and scripts are useless for most users, and cygwin isn't software you install quickly with a analog modem, so I've uploaded a build of the wine programs for windows on our sourceforge page.
Running with an admin user on XP now. Will rerun with an user account if needed.
Clock: - When trying to change font: says no font has been installed.
I don't have the full env to test it myself. Can you test whether the following patch solves this? Index: programs/clock/main.c =================================================================== RCS file: /home/sun/sources/cvs/wine/programs/clock/main.c,v retrieving revision 1.17 diff -u -r1.17 main.c --- programs/clock/main.c 15 Jul 2003 20:43:57 -0000 1.17 +++ programs/clock/main.c 28 Sep 2003 09:21:23 -0000 @@ -136,7 +136,7 @@ font.hDC = NULL; font.lpLogFont = &lf; font.iPointSize = 0; - font.Flags = 0; + font.Flags = CF_SCREENFONTS; font.rgbColors = 0; font.lCustData = 0; font.lpfnHook = 0; -- Shachar Shemesh Open Source integration consultant Home page & resume - http://www.shemesh.biz/
participants (4)
-
Eric Pouech -
Ivan Leo Murray-Smith -
Shachar Shemesh -
Sylvain Petreolle