http://bugs.winehq.org/show_bug.cgi?id=12914
Summary: wineprefixcreate overrides custom entries in
Explorer\\Shell Folders
Product: Wine
Version: 0.9.59.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aelschuring(a)hotmail.com
I have been playing with specifying custom paths for user shell folders, in
order to be able to use the same wineprefix for multiple users (r/o C: drive,
r/w D:). But it seems that every time I run wineprefixcreate, it overrides some
of the paths specified in
[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders].
I'll shorten this up for brevity:
arno@master:~$ wine --version
wine-0.9.59
arno@master:~$ rm -fr .wine
arno@master:~$ wineprefixcreate
Could not load Mozilla. HTML rendering will be disabled.
/home/arno/.wine updated successfully.
arno@master:~$ grep '\\profiles\\' .wine/user.reg
"AppData"="C:\\windows\\profiles\\arno\\Application Data"
"Cookies"="C:\\windows\\profiles\\arno\\Cookies"
"Desktop"="C:\\windows\\profiles\\arno\\Desktop"
"Favorites"="C:\\windows\\profiles\\arno\\Favorites"
"History"="C:\\windows\\profiles\\arno\\Local Settings\\History"
arno@master:~$ sed -i 's/\(\\profiles\\\\\)arno/\1test/' .wine/user.reg
arno@master:~$ grep '\\profiles\\' .wine/user.reg
"AppData"="C:\\windows\\profiles\\test\\Application Data"
"Cookies"="C:\\windows\\profiles\\test\\Cookies"
"Desktop"="C:\\windows\\profiles\\test\\Desktop"
"Favorites"="C:\\windows\\profiles\\test\\Favorites"
"History"="C:\\windows\\profiles\\test\\Local Settings\\History"
arno@master:~$ wineprefixcreate
Could not load Mozilla. HTML rendering will be disabled.
/home/arno/.wine updated successfully.
arno@master:~$ grep '\\profiles\\' .wine/user.reg
"AppData"="C:\\windows\\profiles\\arno\\Application Data"
"Cookies"="C:\\windows\\profiles\\arno\\Cookies"
"Desktop"="C:\\windows\\profiles\\test\\Desktop"
"Favorites"="C:\\windows\\profiles\\test\\Favorites"
"History"="C:\\windows\\profiles\\arno\\Local Settings\\History"
Also, the overrides that are displayed here do not come from userdef.reg
(tested by modifying userdef.reg), they appear to be coming directly from
[Software\\Microsoft\\Windows
NT\\CurrentVersion\\ProfileList]\\"ProfilesDirectory"
I'm not sure what the intended behaviour of wineprefixcreate should be (I think
it should not modify existent keys, only add missing ones), but at least the
inconsistent behaviour is a bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6507
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #12 from Austin English <austinenglish(a)gmail.com> 2008-09-10 13:25:02 ---
Closing invalid.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11886
Summary: wine-0.9.57 fails to run
Product: Wine
Version: 0.9.56.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: juergenw_(a)freenet.de
After unpacking the wine-0.9.57 tarball, I have compiled & installed wine using
./tools/wineinstall as usual, but trying to run wine on my Fedora 7 system
(kernel-2.6.23.15-80.fc7) yields this output at the console:
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 1 (X_CreateWindow)
Serial number of failed request: 22
Current serial number in output stream: 26
wine-0.9.56 runs normal on the same machine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11397
Summary: Chess Tactics for Beginners "Cannot change Visible in
OnShow or OnHide"
Product: Wine
Version: 0.9.54.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rob(a)ladle.net
CC: rob(a)ladle.net
When running Chess Tactics for Beginners, from Convekta software (
http://www.chessok.com/ ), it installs fine, but then won't run.
I run
wine ./wine/drive_c/Program Files/Chess Tactics for Beginners/tactics.EXE
and get the splash screen and the initial application window. When I click on
the splash screen, I get three popups. The first one is titled "Error", with
the text "Runtime error 501 (249)", the second one is titled "tactics", with
the text "Cannot change Visible in OnShow or OnHide." The third one is titled
"Error", with the text "Runtime error 501 (249)". After I click OK on the
third one, the application window goes away. There were no messages on my
console, either.
If I run
wine ./tactics.EXE
the same things happen.
I note that this same text shows up in bug 6352 which is about CT-Art 3.0, also
from the same company. However, there's a report that this was fixed. I
installed wine tonight from the repository, and also re-installed "CTfB", to
try to duplicate the fix in 6352. No such luck.
Thanks,
Rob
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11608
Summary: printf("%Lf") broken
Product: Wine
Version: 0.9.44.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: muntyan(a)tamu.edu
The following program (compiled with mingw cross-compiler on linux) prints
"-0.000000".
#include <stdio.h>
int main (void)
{
printf ("%Lf\n", (long double)1);
return 0;
}
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12335
Summary: Audio Not working at all, winecfg included
Product: Wine
Version: 0.9.58.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mark.ellul(a)gmail.com
Hi,
I am running Ubuntu 7.10 AMD 64, with Wine 0.9.58 (0.9.48 had this problem as
well).
My motherboard is a asus p5w Deluxe which uses the ALSA driver for sound.
Basically the bug is there is no sound working at all.
I ran winecfg from the terminal and change the audio settings but nothing
worked and nothing was logged to the console.
What would be my next step to get some meaningful logs to you...
PS: dmesg doesn't bring up anything...
Thanks and Regards
Mark
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7791
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #2 from Austin English <austinenglish(a)gmail.com> 2008-09-10 13:24:57 ---
Closing invalid.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14514
Summary: Error 339 - Component 'CSFTP32.OCX' not correctly
registered
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpeacock(a)rjssoftware.com
Created an attachment (id=14848)
--> (http://bugs.winehq.org/attachment.cgi?id=14848)
Error Log with Backtrace
Immediately on starting up WinSpool/400 Report Download (see
http://appdb.winehq.org/objectManager.php?sClass=application&iId=7836 for more
details) you receive an error message:
Error 339 - Component 'CSFTP32.OCX' not correctly registered: file is missing
or invalid - Trace Point: 800
This appears in a pop-up box, followed by another, followed by the launch of
the program. However, the sidebar and main page areas of the software are
blank, and after a couple seconds the entire applications crashes.
This is using a vanilla install with the winetricks:
corefonts vcrun6 vb5run
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11594
Summary: wine wont run on mandriva 2008
Product: Wine
Version: 0.9.55.
Platform: HP
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dark_metalman(a)hotmail.com
wine wont run on mandriva 2008 (neither older versions of wine)
Info.. running winecfg
fixme:spoolsv:serv_main (0 (nil))
err:advapi:service_get_status service protocol error - failed to read pipe r =
0 count = 0!
err:module:load_builtin_dll failed to load .so lib for builtin L"winex11.drv":
libXxf86vm.so.1: cannot open shared object file: No such file or directory
err:alsa:ALSA_CheckSetVolume Could not find 'PCM Playback Volume' element
err:alsa:ALSA_CheckSetVolume Could not find 'PCM Playback Volume' element
fixme:mixer:ALSA_MixerInit No master control found on ATI IXP Modem, disabling
mixer
err:module:load_builtin_dll failed to load .so lib for builtin L"winex11.drv":
libXxf86vm.so.1: cannot open shared object file: No such file or directory
err:module:load_builtin_dll failed to load .so lib for builtin L"winex11.drv":
libXxf86vm.so.1: cannot open shared object file: No such file or directory
err:module:load_builtin_dll failed to load .so lib for builtin L"winex11.drv":
libXxf86vm.so.1: cannot open shared object file: No such file or directory
Application tried to create a window, but no driver could be loaded.
Unknown error (127).
Application tried to create a window, but no driver could be loaded.
Unknown error (127).
err:ole:apartment_createwindowifneeded CreateWindow failed with error 127
Regards!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11405
Summary: Error loading riched20.dll
Product: Wine
Version: 0.9.54.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zeeshandoit(a)gmail.com
Error loading riched20.dll while running sqlyog software.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.