http://bugs.winehq.org/show_bug.cgi?id=4408
------- Additional Comments From Peter.Bienstman(a)UGent.be 2006-29-01 15:08 -------
The default database lives somewhere at $HOME/My EverNote Files/EverNote.enb.
If I overwrite that dafault database with my own, it works.
Editing the registry key where the last loaded database is kept also works
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4435
Summary: OpenOffice 2.0.1 exits on startup with
err:file:GetOverlappedResult PENDING status after
waiting!
Product: Wine
Version: 0.9.6.
Platform: Other
URL: http://openoffice.org
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Install OpenOffice 2.0.1. Start it. It runs fine
(although the file dialogs are all little squares
unless you install the ms tt core font Ariel).
Quit. The app will close, but it will leave a little
helper window of size zero. Now try to start the
app again. It will immediately exit with
err:file:GetOverlappedResult PENDING status after waiting!
until you kill the little helper window.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4408
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-29-01 15:00 -------
Confirming. Peter, what exactly do you mean with " Copying the existing database
to the location of the default database works"? Could you please explain?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4366
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From dank(a)kegel.com 2006-29-01 14:43 -------
By gum, you're right. Works for me now.
Guess it was some little bug that got fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4366
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-29-01 14:07 -------
Hi Dan, this version works "out of the box" for me:
rm -rf ~/.wine
wine /OOo_2.0.1_Win32Intel_install.exe
cd ~/.wine/drive_c/Program\ Files/OpenOffice.org\ 2.0/program/
wine soffice.exe
Runs prefectly
That is with current cvs
Version 1.1.5 doesn't work for me
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4432
------- Additional Comments From b.buschinski(a)web.de 2006-29-01 11:57 -------
I am using todays cvs now(2006-01-29)
and just told winecfg to use oss and it still work
even with a new .wine
have you tried a new .wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1226
------- Additional Comments From hanasaki-winehq(a)hanaden.com 2006-29-01 10:35 -------
fixme:winsock:NtStatusToWSAError Status code c0000024 converted to DOS error code 6
I am getting what appears to be the same error - running v1.8.9
http://aresgalaxy.sourceforge.net/
this is the same with:
debian - wine 0.9.6-1 sid
debian - wine 0.9-1 etch
http://wine.sourceforge.net/apt/ <= as of today 2006-01-29
several i know are able to install and run the application without error on
debian and gentoo
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4431
------- Additional Comments From dank(a)kegel.com 2006-29-01 09:51 -------
Peter, how do I pass it down to the app? I tried 'pass',
which seems like the right thing to do, but that didn't seem to work.
Louis, when I tried OOo 2.0.1 earlier this week, it crashed; see bug 4366.
Can you follow up there with a description of how you made it work?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4434
Summary: The window of Word 95 is restored immediately when
minimizing it
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hallo(a)michael-kaufmann.ch
If you try to minimize the window of Microsoft Word 95, it reappears immediately.
This mainly happens because Word 95 calls SetWindowLong twice in its
WM_NCACTIVATE handler: The first time it removes the WS_VISIBLE style, the
second time it adds this style again.
There are two problems:
- The X11 driver updates the X11 window's style when Word 95 changes the
WS_VISIBLE style (in dlls/x11drv/winpos.c: X11DRV_SetWindowStyle). Because the
window gets mapped when Word 95 restores the WS_VISIBLE style, the window
appears again.
- The X11 driver doesn't know that the window has been minimized when it sends
the WM_NCACTIVATE notification. It receives the FocusOut event before the
UnmapNotify event. The WM_NCACTIVATE notification gets sent by the FocusOut
event. The FocusOut event handler calls SetForegroundWindow(0), and this
function calls set_active_window (dlls/user/focus.c), which finally sends the
WM_NCACTIVATE notification.
I'll attach a demo program with source.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4425
------- Additional Comments From reif(a)earthlink.net 2006-29-01 08:45 -------
Commenting out the call to X11DRV_AlphaBlend in GdiAlphaBlend lets the program
go into multiplayer mode so the problem is in X11DRV_AlphaBlend.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4433
Summary: Can't set resolution in Icewind Dale II
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: James.Trotter(a)gmail.com
The game Icewind Dale II fails to run when the resolution is set to anything
other than the desktop resolution. The game uses DirectDraw.
The desktop resolution is 1600x1200, and the game is configured to run in
800x600. If I set the desktop resolution to 800x600 it runs fine, (though it's
annoying to have to change resolution each time I run the game!). If I configure
the game resolution to 1600x1200 it runs, but very slowly.
The game should be able to resize the desktop on startup.
Here is the output with WINEDEBUG=+ddraw:
0027:trace:ddraw:initialize enabling DirectDraw HAL
0027:trace:ddraw:d3ddevice_init_at_startup Initializing GL...
0027:trace:ddraw:d3ddevice_init_at_startup GL version 1.2.0
0027:trace:ddraw:d3ddevice_init_at_startup GL supports following extensions used
by Wine :
0027:trace:ddraw:d3ddevice_init_at_startup - texture lod bias
0027:trace:ddraw:d3ddevice_init_at_startup - multi-texturing (8 stages)
0027:trace:ddraw:fill_caps : max texture size = 2048
0027:trace:ddraw:fill_caps : max active lights = 8
0027:trace:ddraw:fill_caps : max clipping planes = 6
0027:trace:ddraw:fill_caps : Z bits = 16
0027:trace:ddraw:DDRAW_bind_to_s3tc No S3TC software decompression library seems
to be present (libtxc_dxtn.so).
BEGIN LOGGING SESSION
0027:trace:ddraw:DirectDrawCreate ((null),0x7faab868,(nil))
0027:trace:ddraw:DDRAW_Create ((null),0x7faab868,(nil),0)
0027:trace:ddraw:DDRAW_FindDriver ((null))
0027:trace:ddraw:HAL_DirectDraw_Create
0027:trace:ddraw:HAL_DirectDraw_Construct (0x7fdd2bb8,0)
0027:trace:ddraw:User_DirectDraw_Construct (0x7fdd2bb8,0)
0027:trace:ddraw:Main_DirectDraw_QueryInterface
(0x7fdd2bb8)->({6c14db80-a733-11ce-a521-0020af0be560},0x7faab868)
0027:trace:ddraw:Main_DirectDraw_AddRef (0x7fdd2bb8)->() incrementing from 1.
0027:trace:ddraw:Main_DirectDraw_Release (0x7fdd2bb8)->() decrementing from 2.
0027:fixme:ddraw:Main_DirectDraw_SetCooperativeLevel
(0x7fdd2bb8)->(0x190022,00000011)
- DDSCL_FULLSCREEN DDSCL_EXCLUSIVE
0027:trace:ddraw:Main_DirectDraw_QueryInterface
(0x7fdd2bb8)->({b3a6f3e0-2b43-11cf-a2de-00aa00b93356},0x7faab86c)
0027:trace:ddraw:Main_DirectDraw_AddRef (0x7fdd2bb8)->() incrementing from 1.
0027:trace:ddraw:User_DirectDraw_EnumDisplayModes
(0x7fdd2bb8)->(0x00000001,0x7faaab5c,0x7faaab24,0x7f5915b0)
0027:trace:ddraw:User_DirectDraw_EnumDisplayModes Enumerate modes matching:
0027:trace:ddraw:User_DirectDraw_EnumDisplayModes - mode: 1600x1200
0027:trace:ddraw:User_DirectDraw_EnumDisplayModes - 32 bpp, R=00ff0000
G=0000ff00 B=000000ff
0027:trace:ddraw:HAL_DirectDraw_RestoreDisplayMode (0x7fdd2bb8)
0027:trace:ddraw:Main_DirectDraw_Release (0x7fdd2bb8)->() decrementing from 2.
0027:trace:ddraw:Main_DirectDraw_Release (0x7fdd2bb8)->() decrementing from 1.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4432
Summary: Blobby Volley
Product: Wine
Version: CVS
Platform: Other
URL: http://download.freenet.de/download.php?file_id=1815&dow
nload=Blobby%20Volley
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b.buschinski(a)web.de
to the url: just click "Download Starten >>"
Blobby Volley hasnt any graphics
just the menu works
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x55905838)->(0x10024,00000013)
err:dplay:DP_IF_InitializeConnection Unable to load service provider
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4384
b.buschinski(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From b.buschinski(a)web.de 2006-29-01 06:55 -------
it was a problem between my 64bit xorg and my 32bit xorg
so it has nothing todo with wine
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4431
------- Additional Comments From imago(a)devinity.de 2006-29-01 06:00 -------
> First chance exception: 0xe06d7363 in 32-bit code (0x7fca9e53).
^^^^^^^^^^
That's just a standard C++ exception from the MS VC++ catch/throw implementation,
so probably not the crash you see.
Just pass down that exception to the application.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4415
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://education.ti.com/educ
| |ationportal/sites/US/nonProd
| |uctMulti/download_stepbystep
| |.html?bid=2
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |download
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-29-01 05:32 -------
Confirming+added downloadlink. The installer pops out with a message that
Internet Exzplorer should be installed.I also tried this on a ~/.wine directory
in which i had internet explorer installed. There installation worked just fine,
and also the app started fine. wine control actually also gave an entry for the app.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4431
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-29-01 04:21 -------
Hi, i openoffice 2.0.1 runs just fine here with current cvs. you seem to use
version 1.1.5 , can that still be downloaded somewhere?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4371
------- Additional Comments From gyula.kampfner(a)gmail.com 2006-29-01 03:58 -------
I erased all the wine related stuff, and recompiled wine, then reinstalled the
windows programs with winetools, and now Mplab works quite well on my Debian
system. I'll try later on the other distro. Thanks everybody for their help.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4431
Summary: OpenOffice 1.1.5 crashes on startup
Product: Wine
Version: 0.9.6.
Platform: Other
URL: http://openoffice.org
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
OpenOffice 1.1 was said some time ago to work well on Wine,
so I thought I'd check to see if it was still true. OOo 1.1.5's
installer runs fine, but when I try to run the app under
this morning's CVS, I get a crash. Happily, the OOo crash
reporter catches it and reports it to Sun (they're probably very
confused right now :-). It claimed the crash was in ntdll.
To find out more, I ran it under winedbg, where it crashed very
quickly on startup. Here's the winedbg log:
dank@lappy:~$ wine/programs/winedbg/winedbg .wine/drive_c/Program\
Files/OpenOffice.org1.1.5/program/soffice.exe
WineDbg starting on pid 0xa
In 32 bit mode.
start_process () at /home/dank/wine/dlls/kernel/../../include/winternl.h:1689
0x7fccf912 start_process+0xda
[/home/dank/wine/dlls/kernel/../../include/winternl.h:1689] in kernel32: jmp
0x7fccf905 start_process+0xcd [/home/dank/wine/dlls/kernel/process.c:1027] in
kernel32
1689 static inline void WINAPI DbgBreakPoint(void) { __asm__
__volatile__("int3"); }
Wine-dbg>cont
First chance exception: 0xe06d7363 in 32-bit code (0x7fca9e53).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:7fca9e53 ESP:7fb0fb30 EBP:7fb0fba4 EFLAGS:00200216( - 00 - IAP1)
EAX:7fc96e95 EBX:7fd04da0 ECX:00000000 EDX:e06d7363
ESI:7fb0fbe4 EDI:7fb0fb5c
Stack dump:
0x00000000: 00000000 00000000 00000000 00000000
0x00000010: 00000000 00000000 00000000 00000000
0x00000020: 00000000 00000000 00000000 00000000
0x00000030: 00000000 00000000 00000000 00000000
0x00000040: 00000000 00000000 00000000 00000000
0x00000050: 00000000 00000000 00000000 00000000
Backtrace:
=>1 0x7fca9e53 RaiseException(code=0xe06d7363, flags=0x1, nbargs=0x3,
args=0x7fb0fbd8) [/home/dank/wine/dlls/kernel/except.c:85] in kernel32 (0x7fca9e53)
fixme:dbghelp:sffip_cb NIY on 'msvcr70.pdb'
2 0x7ef3ba05 ??0__non_rtti_object@@QAE@ABV0@@Z+0xf22 in msvcr70 (0x7ef3ba05)
fixme:dbghelp:sffip_cb NIY on
'O:\SRX645\src\stoc\wntmsci8.pro\bin\simplereg.uno.pdb'
3 0x1fc8484d in simplereg.uno (+0x484d) (0x1fc8484d)
fixme:dbghelp:sffip_cb NIY on
'O:\SRX645\src\cppuhelper\wntmsci8.pro\bin\cppuhelper3MSC.pdb'
4 0x1c4b8392
?bootstrap_InitialComponentContext@cppu@@YA?AV?$Reference@VXComponentContext@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXSimpleRegistry@registry@star@sun@com@@@3456@ABVOUString@rtl@@@Z+0xdc2
in cppuhelper3msc (0x1c4b8392)
5 0x1c4b89bf in cppuhelper3msc (+0x89bf) (0x1c4b89bf)
6 0x1c4b8d9c
?defaultBootstrap_InitialComponentContext@cppu@@YA?AV?$Reference@VXComponentContext@uno@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z+0x8c
in cppuhelper3msc (0x1c4b8d9c)
fixme:dbghelp:sffip_cb NIY on 'O:\SRX645\src\desktop\wntmsci8.pro\bin\soffice.pdb'
7 0x00411658 in soffice (+0x11658) (0x00411658)
8 0x00404647 in soffice (+0x4647) (0x00404647)
fixme:dbghelp:sffip_cb NIY on 'O:\SRX645\src\vcl\wntmsci8.pro\bin\vcl645mi.pdb'
9 0x21523066 524+0x2e6 in vcl645mi (0x21523066)
10 0x215235a2 524+0x822 in vcl645mi (0x215235a2)
11 0x0041e6d5 in soffice (+0x1e6d5) (0x0041e6d5)
12 0x7fccf90b start_process+0xd3(arg=0x0)
[/home/dank/wine/dlls/kernel/process.c:1027] in kernel32 (0x7fccf90b)
13 0xb7f94763 wine_switch_to_stack+0x17 in libwine.so.1 (0xb7f94763)
0x7fca9e53 RaiseException+0x67 [/home/dank/wine/dlls/kernel/except.c:85] in
kernel32: leal 0xfffffff4(%ebp),%esp
85 RtlRaiseException( &record );
Wine-dbg>quit
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4421
------- Additional Comments From david.ronis(a)mcgill.ca 2006-28-01 21:17 -------
I'm using slackware-current and freerock-gnome on an i686.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4393
------- Additional Comments From bakerf(a)ece.osu.edu 2006-28-01 19:23 -------
That is correct. I did a regression test, and that is the patch that broke
Shareaza.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.