http://bugs.winehq.org/show_bug.cgi?id=824
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
Keywords| |patch
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7036
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
--- Comment #7 from Austin English <austinenglish(a)gmail.com> 2008-01-04 18:56:18 ---
And confirming.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7054
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
--- Comment #3 from Austin English <austinenglish(a)gmail.com> 2008-01-04 18:30:56 ---
Confirming.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3538
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #8 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 18:27:19 ---
Tobias
Could you please test this again with the latest version of wine (0.9.52)?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7533
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #7 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 18:21:06 ---
The download URL for this game appears to be invalid now. I went looking for
the latest version of this game, it appears to be protected by GameGuard
(anti-hack/cheat protection), under wine 0.9.52, upon trying to start the game
it initializes GameGuard and refuses to run the program, requesting that I quit
any "unnecessary program".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=824
Michal Piaskowski <piaskal+wine(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |piaskal+wine(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=824
--- Comment #11 from Michal Piaskowski <piaskal+wine(a)gmail.com> 2008-01-04 18:04:55 ---
Created an attachment (id=10039)
--> (http://bugs.winehq.org/attachment.cgi?id=10039)
Change the way REG_MULTI_SZ is saved
As it have been said already the problem is that wine stores REG_MULTI_SZ as
null terminated string and sometimes looses information about data length.
Without this information wine can't tell if the original string was null
terminated or not.
To make things more complicated Windows XP (as well as wine) whenever
RegSetValueEx( HKEY hkey, LPCSTR name, DWORD reserved, DWORD type,
CONST BYTE *data, DWORD count )
is called with data pointing to a string which isn't null terminated
system will check if data[count] is null. If it is then it will assume that the
user forgot about the ending /0 and will save count+1 bytes, but if data[count]
isn't null it will save only count bytes.
I have tested following calls on windows xp and wine:
RegSetValueEx(myKey,"321\\0 len=4",0,REG_MULTI_SZ,(const BYTE
*)"321",4);
RegSetValueEx(myKey,"321\\0 len=3",0,REG_MULTI_SZ,(const BYTE
*)"321",3);
RegSetValueEx(myKey,"321\\0 len=2",0,REG_MULTI_SZ,(const BYTE
*)"321",2);
RegSetValueEx(myKey,"321\\0 len=1",0,REG_MULTI_SZ,(const BYTE
*)"321",1);
RegSetValueEx(myKey,"321\\0 len=0",0,REG_MULTI_SZ,(const BYTE
*)"321",0);
This is the result of exporting these keys on Windows XP
"321\\0 len=4"=hex(7):33,00,32,00,31,00,00,00
"321\\0 len=3"=hex(7):33,00,32,00,31,00,00,00
"321\\0 len=2"=hex(7):33,00,32,00
"321\\0 len=1"=hex(7):33,00
"321\\0 len=0"=hex(7):
This is how wine stores it in ~/.wine/user.reg
"321\\0 len=0"=str(7):""
"321\\0 len=1"=str(7):"3"
"321\\0 len=2"=str(7):"32"
"321\\0 len=3"=str(7):"321"
"321\\0 len=4"=str(7):"321"
And this is how wine exports it:
"321\\0 len=0"=hex(7):00
"321\\0 len=1"=hex(7):33,00
"321\\0 len=2"=hex(7):33,32,00
"321\\0 len=3"=hex(7):33,32,31,00
"321\\0 len=4"=hex(7):33,32,31,00
I made a simple patch that changes the way wine stores REG_MULTI_SZ from str(7)
to hex(7).
After applying that patch Wine stores those values as:
"321\\0 len=0"=hex(7):
"321\\0 len=1"=hex(7):33,00
"321\\0 len=2"=hex(7):33,00,32,00
"321\\0 len=3"=hex(7):33,00,32,00,31,00,00,00
"321\\0 len=4"=hex(7):33,00,32,00,31,00,00,00
And regedit exports it this way:
"321\\0 len=0"=hex(7):
"321\\0 len=1"=hex(7):33
"321\\0 len=2"=hex(7):33,32
"321\\0 len=3"=hex(7):33,32,31,00
"321\\0 len=4"=hex(7):33,32,31,00
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7285
kaputtnik <frank.ue(a)kabelmail.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |frank.ue(a)kabelmail.de
--- Comment #19 from kaputtnik <frank.ue(a)kabelmail.de> 2008-01-04 16:54:25 ---
Hi!
I have the same problem: wincfg hangs the hole(!) System up. i just can do
nothing, but pressing the ALT+DRUCK+k keys. Then starts a new Session. winecfg
creates a directory as described (~/.wineSOMECHARACTERS).
I'm running Ubuntu(Debian) 7.10, named Gutsy Gibbon, on a Laptop with AC97
Sound. The graphic is via (KM400/KN400), using the openchrome driver.
Everything works fine, but 'wine' isn't working at all. I need wine for my
Homebankingsoftware and evtll for more!
Something special:
1. Boot my Laptop with an different Linuxsystem: Ubuntu 7.04. This Live-CD open
a "clean" usable Linuxsystem from CD. On this older Version i installed wine
and start with 'winecfg' at the Terminal: It runs! I could even start the
wineprograms mine, notepad and so on.
2. Boot my Laptop with Live CD and Ubuntu 7.10. Install wine and run winecfg in
a Terminal: System hangs!! Only pressing the ALT+DRUCK+k keys gave me the
command back (starting a new session with typing user and password)!
With this (1+2), i can compare a running wine with a 'broken' wine (Sorry for
my bad english)
3. If winecfg hangs, the ~/.wineSOMECHARACTERS directory is not complete. The
hierachy of the directory seemes to be complete, but some files are missing.
4. The last file made in the ~/.wineSOMECHARACTERS directory is the 'user.reg'.
This file ends with the line:
"[Software\\Wine\\WineDbg] 1199467502"(The Number is various)
I do not think, that this is right.
Hope (with some other people i think) that this will be fixed.
If you need some other information, please ask.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8575
Marcel Hasler <mahasler(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
--- Comment #11 from Marcel Hasler <mahasler(a)gmail.com> 2008-01-04 16:36:33 ---
This isn't fixed for me.
I just checked out the latest git but this bug still is there.
@Andre
Which git commit did you check out? Perhaps this was fixed once but broke again
soon after.
Also, I didn't see any commit since 0.9.52 that had anything to do with the
WINED3DFMT_P8 issue which seems to be the root of this problem.
You should also keep an eye on Bug 6871. I think this one is actually a
duplicate.
I really don't think this bug should have been closed that soon.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4334
--- Comment #4 from Austin English <austinenglish(a)gmail.com> 2008-01-04 16:32:23 ---
I couldn't find 4.3.3 to download anywhere. I tried v6, which simply crashes
before running (looks like it depends on WMP 10). Do you still have the
installer laying around Vitaliy?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3999
Henry <nospam(a)thenerdshow.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|LATER |ABANDONED
--- Comment #13 from Henry <nospam(a)thenerdshow.com> 2008-01-04 16:26:01 ---
The liberty product is being replaced with a newer re-write. Will test when I
get a copy.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4108
Henry <nospam(a)thenerdshow.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
--- Comment #3 from Henry <nospam(a)thenerdshow.com> 2008-01-04 16:22:58 ---
Unable to test now that new version is out. Problem was likely due to improper
database setup. Marking invalid.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5056
Henry <nospam(a)thenerdshow.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #8 from Henry <nospam(a)thenerdshow.com> 2008-01-04 16:20:51 ---
Marking as fixed
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3711
--- Comment #4 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2008-01-04 15:57:27 ---
Created an attachment (id=10037)
--> (http://bugs.winehq.org/attachment.cgi?id=10037)
attempt to fix this bug
Doh, here's an attempt to fix this bug. While playing around with FeedingFrenzy
i noticed this registry key is generated automtically using native wininet. A
+reg,+snoop log showed this was done from within
WININET.InternetGetConnectedState. So hopefully this patch matches more or less
native behaviour. Dan, i couldn't find that musicmatch application anymore, the
link now sends me to YahooMusic, any chance you still have it lying around and
could give it a try with the patch?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6877
Vincent Povirk <madewokherd(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |madewokherd(a)gmail.com
--- Comment #5 from Vincent Povirk <madewokherd(a)gmail.com> 2008-01-04 15:57:07 ---
Unknown. With current Wine, Worms: Armageddon cannot leave the main menu screen
without crashing. It's impossible to check for this issue until the newer one
is fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6833
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
Component|wine-misc |wine-shdocvw
--- Comment #4 from Dan Kegel <dank(a)kegel.com> 2008-01-04 15:45:38 ---
Since it's bombing out in mshtml, setting component to shdocvw
(gee, it'd be nice if we had more obvious categories...)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4030
Lei Zhang <thestig(a)google.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--- Comment #7 from Lei Zhang <thestig(a)google.com> 2008-01-04 15:33:01 ---
Please file separate bugs for the other issues in the game.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5423
--- Comment #10 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:21:55 ---
Created an attachment (id=10036)
--> (http://bugs.winehq.org/attachment.cgi?id=10036)
Terminal output in wine 0.9.52
Using AIM 6.5.7.20, wine 0.9.52
Aim starts to prepare for installation, then pops up an error saying:
"Dynamic insert message here".
Then aborts the install.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4490
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |car_crazy33(a)hotmail.com
--- Comment #15 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:10:12 ---
*** Bug 7936 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7936
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
--- Comment #1 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:10:12 ---
Duplicate.
*** This bug has been marked as a duplicate of bug 4490 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3949
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
--- Comment #11 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:08:24 ---
Duplicate.
*** This bug has been marked as a duplicate of bug 4490 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6833
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://aimpro.premiumservice
| |s.aol.com/
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6833
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #4252 is|0 |1
obsolete| |
--- Comment #3 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:04:58 ---
Created an attachment (id=10035)
--> (http://bugs.winehq.org/attachment.cgi?id=10035)
Terminal output in wine 0.9.52
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6833
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
--- Comment #2 from Austin English <austinenglish(a)gmail.com> 2008-01-04 15:04:32 ---
Confirming in wine 0.9.52. We've seem to have made some progress, as it gets
far enough to check to see if we have outlook, etc installed to see the contact
list. After that though, bombs out in mshtml. I'll attach the output shortly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4030
Andre Wisplinghoff <andre.wisplinghoff(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |andre.wisplinghoff(a)gmail.com
--- Comment #6 from Andre Wisplinghoff <andre.wisplinghoff(a)gmail.com> 2008-01-04 14:59:45 ---
Normal gaming works perfectly here with GIT version.
However there are some issues:
-sometimes Sounds don't play. random? There's a log output "failed to play
sound ?????"
-Mouse not working in Level editor
-Intro videos are skipped and videos you get as a award make the game hang (OLE
errors on console)
-Can't connect in multiplayer mode (but perhaps this is just me)
But anyway, I don't think this bug is the right place to discuss these issues.
I can open new bugs with detailed logs if this one gets closed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5259
--- Comment #5 from Austin English <austinenglish(a)gmail.com> 2008-01-04 14:47:39 ---
(In reply to comment #4)
> I just tested with a virtual desktop I still have the problem. The BC++ exe
> will minimize but the Delphi half which displays simulated LCD and digital I/O
> won't. Everything works ok if I don't user a virtual desktop
>
Yes, in a virtual desktop I see the same thing. However, I'm not sure if this
is by design or not. Anyone else care to comment?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6721
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |Abandoned?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5061
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|--- |1.0.0
--- Comment #1 from Austin English <austinenglish(a)gmail.com> 2008-01-04 14:37:23 ---
Still present in wine 0.9.52. Nominating for 1.0.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8575
Lei Zhang <thestig(a)google.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #10 from Lei Zhang <thestig(a)google.com> 2008-01-04 14:29:55 ---
reported fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8575
Andre Wisplinghoff <andre.wisplinghoff(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |andre.wisplinghoff(a)gmail.com
--- Comment #9 from Andre Wisplinghoff <andre.wisplinghoff(a)gmail.com> 2008-01-04 14:23:56 ---
This is fixed in GIT, can be closed
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3658
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--- Comment #5 from Austin English <austinenglish(a)gmail.com> 2008-01-04 14:07:42 ---
(In reply to comment #4)
> wine-0.9.52, Ubuntu 7.10, nVidia FX 5200
>
> Tried, but I can't reproduce this bug.
>
Should be fixed. There were a few other like it, but those were fixes as well.
This patch could be the fix:
http://www.winehq.org/pipermail/wine-cvs/2006-July/024674.html
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5041
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
Status|RESOLVED |CLOSED
--- Comment #22 from Dan Kegel <dank(a)kegel.com> 2008-01-04 13:47:29 ---
Closing since it's fixed in a release.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2652
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |ABANDONED
--- Comment #8 from Austin English <austinenglish(a)gmail.com> 2008-01-04 13:46:23 ---
We'll close it as abandoned then. If you encounter other problems, please file
new bugs for them.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7372
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|--- |1.0.0
--- Comment #10 from Dan Kegel <dank(a)kegel.com> 2008-01-04 13:36:53 ---
Nominating for 1.0.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6490
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #11 from Austin English <austinenglish(a)gmail.com> 2008-01-04 11:51:48 ---
No response from reporter. Likely fixed (two new versions work fine). Resolving
fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7372
--- Comment #9 from Austin English <austinenglish(a)gmail.com> 2008-01-04 11:49:00 ---
Not quite, this is a bug trying to copy between a native app and a wine app.
Bug 4523 is about copying between two wine apps. They are probably related, but
not exact dupes. Damjan would know much better.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7618
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Keywords|regression |
Resolution| |FIXED
--- Comment #4 from Austin English <austinenglish(a)gmail.com> 2008-01-04 11:41:57 ---
Reported fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=447
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #13 from Austin English <austinenglish(a)gmail.com> 2008-01-04 11:41:01 ---
Worked fine for me and reporter hasn't responded in a couple months. Resolving
fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2285
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--- Comment #15 from Austin English <austinenglish(a)gmail.com> 2008-01-04 11:39:57 ---
Reported fixed, please reopen if that's not the case.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6841
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--- Comment #3 from Dan Kegel <dank(a)kegel.com> 2008-01-04 11:33:22 ---
Marking fixed, then.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4030
--- Comment #5 from Austin English <austinenglish(a)gmail.com> 2008-01-04 11:29:37 ---
Demo could be different from retail. Neil, can you verify that this is fixed?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7831
--- Comment #6 from Austin English <austinenglish(a)gmail.com> 2008-01-04 11:27:58 ---
(In reply to comment #4)
> Created an attachment (id=10025)
--> (http://bugs.winehq.org/attachment.cgi?id=10025) [details]
> An updated version of the patch to make wine work.
>
> I uploaded it before and somehow it's not here anymore. so for all you snood
> addicts...
>
Please send this patch to wine-patches(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5041
Axel <axel.braun(a)gmx.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #21 from Axel <axel.braun(a)gmx.de> 2008-01-04 11:18:58 ---
I tested with 0.9.52 on SuSE 10.2..works perfect.
I will close the bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2652
--- Comment #6 from Austin English <austinenglish(a)gmail.com> 2008-01-04 11:15:22 ---
The demo and the retail versions could differ (though this is probably fixed).
Reporter, can you verify this is fixed for you?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3451
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #10 from Dan Kegel <dank(a)kegel.com> 2008-01-04 10:57:22 ---
Seems to work now. And I think I don't have ms core fonts installed, either.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3448
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-net |wine-misc
--- Comment #3 from Dan Kegel <dank(a)kegel.com> 2008-01-04 10:55:47 ---
Registration now seems to succeed -- I even got an email
back from Broderbund -- but the ereg program hangs
at the end now. Here's a log fragment showing it closing
the socket and posting a message (to itself, saying it's done?):
trace:winsock:WS_closesocket socket 006c
000d:Call KERNEL32.CloseHandle(0000006c) ret=7c63e17b
000d:Ret KERNEL32.CloseHandle() retval=00000001 ret=7c63e17b
000d:Ret ws2_32.closesocket() retval=00000000 ret=003ac0eb
000d:Call user32.PostMessageA(00030060,00008064,00000000,00ca0070) ret=003a72d3
000d:Ret user32.PostMessageA() retval=00000001 ret=003a72d3
000d:Call KERNEL32.ReleaseMutex(0000005c) ret=003a4ec3
000d:Ret KERNEL32.ReleaseMutex() retval=00000001 ret=003a4ec3
000d:Ret window proc 0x3a71b0 (hwnd=0x30060,msg=8064,wp=00000000,lp=00ca0070)
retval=00000000
000d:Ret user32.DispatchMessageA() retval=00000000 ret=003a4333
000d:Call KERNEL32.ReleaseMutex(0000005c) ret=003a433d
000d:Ret KERNEL32.ReleaseMutex() retval=00000001 ret=003a433d
000d:Call KERNEL32.Sleep(0000000a) ret=003a4345
It then enters the following loop forever:
0009:Ret user32.PeekMessageA() retval=00000000 ret=003a751d
0009:Call user32.PeekMessageA(0033e3a4,00030064,00000000,00000000,00000000)
ret=003a751d
0009:Call
winex11.drv.MsgWaitForMultipleObjectsEx(00000000,00000000,00000000,000004ff,00000000)
ret=7ec172c8
0009:Ret winex11.drv.MsgWaitForMultipleObjectsEx() retval=00000102
ret=7ec172c8
0009:Ret user32.PeekMessageA() retval=00000000 ret=003a751d
so it seems there's a windows message problem?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7418
--- Comment #37 from Marco <cimmo(a)libero.it> 2008-01-04 09:49:36 ---
(In reply to comment #36)
> Macro, please post in the bug itself. Email read:
thought was like launchpad that you can just answer to emails notified to post
also in the BR.
Anyway after 7 or 8 compilations I found the bad commit!
Chris sorry for this, but this is a bug report inside another one (my fault),
so just see comment #28 that is caused by this commit.
Can you take a look?
0a2008ae6722c3184d55968b6bce01df6dc808ce is first bad commit
commit 0a2008ae6722c3184d55968b6bce01df6dc808ce
Author: Chris Wulff <crwulff(a)rochester.rr.com>
Date: Tue Oct 30 23:46:36 2007 -0400
shdocvw: Implement OLEIVERB_HIDE.
:040000 040000 a617e8fa5d896ea16822d9b7f87dc096f780432d
19a9fcd4563109bb6209f6bfcbbba40b6973e73c M dlls
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2078
--- Comment #5 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 09:33:17 ---
(In reply to comment #4)
> (In reply to comment #3)
> > The link above works, but there is no free download available :-(
> >
>
> Requested a copy for evaluation, waiting for a response.
>
They want $1895 for an eval.
Sean,
Could you please test this again with the latest version of wine (0.9.52) and
report back?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10997
Summary: winecfg does not allow non-ASCII characters in paths
Product: Wine
Version: 0.9.52.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jkohen(a)users.sourceforge.net
I'm trying to enter the path to my picture folder in the desktop integration
tab, but winecfg refuses to accept the Spanish word for it, which is
"Imágenes." Both typing the path manually and using the browse dialog work,
until "Apply" or "Accept" are clicked on, when the previous path is restored.
Any path not containing an accented letter seems to work.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4939
--- Comment #20 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 08:36:45 ---
(In reply to comment #19)
> >Are you sure FeedingFrenzy2 crashes with 0.9.52?
>
> Yes. As i said, i completely removed ~/.wine, install and start it, and then i
> can reproduce this crash 100% of the time.
> Careful though: if i use native wininet _one_ time to work around the crash, i
> can start the game next sessions with builtin wininet without having the crash.
> So the bug is triggered in some kind of a special.
>
>
> > I've been running it without issue.
>
> uhh, weird, apart from the crash in wininet i run into 2 other bugs:
> The initial screen is completely blank ( though you can start the game by
> dismissing this window) and furthermore only the loadingscreen of the game
> works for me, as the game is fully loaded it exits silently....
>
> Are you sure you try the same version of the game as me:
> http://downloads.gamehouse.com/funpass/FeedingFrenzy2Install.exe
>
http://downloads.popcap.com/www/popcap_downloads/FeedingFrenzy2Setup-en.exe
Ah, seems like we have different versions. Mine works flawlessly.
$ sha1sum FeedingFrenzy2Setup-en.exe
a0b60dbd53454843b3ba66d0d216bc8cff2dba91 FeedingFrenzy2Setup-en.exe
jeffz@orly:~/.wine/drive_c/Program Files/PopCap Games/Feeding Frenzy 2 Deluxe$
sha1sum FeedingFrenzy2.exe popcapgame1.exe
c97f50f63ff215f204fe3306685434617c614eb8 FeedingFrenzy2.exe (the launcher)
1bbe13a3caf966fa7998726a68eb408cfa873a85 popcapgame1.exe (this one is the
game executable, created when the launcher runs and deleted on exit)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2368
Mark Nipper <nipsy(a)bitgnome.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |nipsy(a)bitgnome.net
--- Comment #8 from Mark Nipper <nipsy(a)bitgnome.net> 2008-01-04 08:28:41 ---
This is still happening with fvwm 2.5.23 (using Debian's version of 1:2.5.23-2
specifically) and wine 0.9.51-1 (from the WineHQ repository). I'm actually
having the problem with Wine while running "World of Warcraft" in fullscreen
mode (never tried windowed mode). My wine configuration is set to "allow the
window manager to control the windows".
Running in unmanaged mode sort of defeats the purpose of having virtual pages
and desktops and such. I started WoW up in wine using unmanaged mode for a few
seconds, but since the window only seems to disappear when moving between pages
in my window manager (I have EdgeResistance set to 0 0 and EdgeScroll set to
100000 100000 in my fvwm configuration), I can only imagine this problem
manifesting itself in managed window mode.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4939
--- Comment #19 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2008-01-04 08:20:41 ---
>Are you sure FeedingFrenzy2 crashes with 0.9.52?
Yes. As i said, i completely removed ~/.wine, install and start it, and then i
can reproduce this crash 100% of the time.
Careful though: if i use native wininet _one_ time to work around the crash, i
can start the game next sessions with builtin wininet without having the crash.
So the bug is triggered in some kind of a special.
> I've been running it without issue.
uhh, weird, apart from the crash in wininet i run into 2 other bugs:
The initial screen is completely blank ( though you can start the game by
dismissing this window) and furthermore only the loadingscreen of the game
works for me, as the game is fully loaded it exits silently....
Are you sure you try the same version of the game as me:
http://downloads.gamehouse.com/funpass/FeedingFrenzy2Install.exe
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5224
--- Comment #17 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 07:58:57 ---
(In reply to comment #16)
> Perhaps we should have winefile replicate the behavior of explorer?
>
That was my first thought too, but this could probably do with some discussion.
When I first noticed this, someone else has suggested that the behavior to
always quote the executable/modulename being launched (specified using the
lpApplicationname argument of CreateProcess, for the case of windows explorer
I'm assuming)) should be the default behavior for the wine executable.
I didn't agree at first, but I've had a think about it and here are my
thoughts.
It would make sense for wine to have this behavior, because the wine executable
launches all programs that a user would normally launch though explorer on a
Windows system, such as running a program directly or by shortcut on the
desktop or otherwise.
Shortcuts, which are handled by wine when converted to the free desktop
equivalent are also launched using wine.
So the way wine is used by users invoking it from the shell or by clicking on
icons is in a way, replacing the pattern of this being done through explorer,
which evidently makes winefile irrelevant for this purpose.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3807
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #1 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 07:17:25 ---
Contacted the reporter of this bug, they are no longer in a position to test
programs under wine. If anyone else has or can obtain Corel Painter Classic,
they are encouraged to test with the latest version of wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4472
Martin <mrvanes(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |ABANDONED
--- Comment #2 from Martin <mrvanes(a)gmail.com> 2008-01-04 06:59:25 ---
I don't know. I don't use Corel8 under wine anymore.
You can close the bug if you want.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7418
--- Comment #36 from Luke Bratch <l_bratch(a)yahoo.co.uk> 2008-01-04 06:28:47 ---
Macro, please post in the bug itself. Email read:
"yeah!
One question not mentioned in the wiki: I have to make clean and make
again EVERY TIME I hit "git bisect bad" or "git bisect good"?
thanx"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6095
--- Comment #20 from Julian Rüger <jr98(a)gmx.net> 2008-01-04 05:13:38 ---
Oh, I forgot to mention that the workaround is only for those, who can't play
because the game freezes when trying to render the motd.
Of course its not shown either way.
cheers!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6095
--- Comment #19 from Julian Rüger <jr98(a)gmx.net> 2008-01-04 05:04:48 ---
The permission-workaround does work, thanks a lot!
You have to change the permissions of motd.txt and motd_temp.html
I had my condition zero folder on an ntfs partition and had to use another
simple trick:
- delete [hl folder]/czero/motd.txt and motd_temp.html
- create files of that names in /root (or anywhere else on a partition that
supports file permissions, owner should be root)
- change permissions to 0600 (chmod 0600 motd*)
- create links to those files in your czero (or cstrike) folder (ln -s
/root/motd.txt, ...)
- start the game and play ;)
Thats it! Hope this is useful.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7418
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #35 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 04:16:08 ---
(In reply to comment #34)
> ok tested a bit more with older versions (.47 and .48) and seems the regression
> started from .49, hope that this will speed up the fix:
>
> wine 0.9.46 ok
> wine 0.9.47 ok
> wine 0.9.48 ok
> wine 0.9.49 not ok
> wine 0.9.50 not ok
> wine 0.9.51 not ok
> wine 0.9.52 not ok
>
If you can compile from source, please perform regression testing and report
back the bad commit.
http://wiki.winehq.org/RegressionTesting
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7418
--- Comment #34 from Marco <cimmo(a)libero.it> 2008-01-04 03:56:43 ---
ok tested a bit more with older versions (.47 and .48) and seems the regression
started from .49, hope that this will speed up the fix:
wine 0.9.46 ok
wine 0.9.47 ok
wine 0.9.48 ok
wine 0.9.49 not ok
wine 0.9.50 not ok
wine 0.9.51 not ok
wine 0.9.52 not ok
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11013
Summary: Steam: Crashes after about 5 to 10 minutes of operation
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jason.bogstie(a)gmail.com
I run steam and even if it is just sitting there it will crash after 5 to 10
minutes of operation. I have not been able as of yet to test game
functionality but I assume the games will crash too since steam is crashing. I
have ran both crash fixes listed on the application's database listing for
steam and it still crashes.
I am running Fedora Core 8 with wine build 0.9.52
This is the error produced in the console:
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
after 7577242 requests (7575114 known processed) with 0 events remaining.
After searching around I cannot find any entry in bugzilla or on google which
addresses this problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6095
--- Comment #18 from Nikolay <tlittle(a)mail.ru> 2008-01-04 02:59:50 ---
There is no such file in the game directories. I found valve/cstrike/motd.txt,
try to set permission at 0444, 0555, 0000, try to remove this file, but have no
result. MOTD window still blank.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5259
Dmitry Timoshkov <dmitry(a)codeweavers.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Delphi 1 app when managed |Delphi 1 app will not
|will not minimize with minus|minimize with minus icon in
|icon |desktop mode
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5259
Paul Romanyszyn <pgr(a)arcelectronicsinc.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
--- Comment #4 from Paul Romanyszyn <pgr(a)arcelectronicsinc.com> 2008-01-04 01:06:54 ---
I just tested with a virtual desktop I still have the problem. The BC++ exe
will minimize but the Delphi half which displays simulated LCD and digital I/O
won't. Everything works ok if I don't user a virtual desktop
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6490
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #10 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-04 00:58:32 ---
wine-0.9.52, Ubuntu 7.10, nVidia FX 5200
Couldn't find the old version for download, instead I've tried the latest
release available from here: ftp://ftp.lancom.de/LANCOM/LANtools/ which is
LANconfig-7.26.0013.exe
Install completes successfully. Looks like this bug is fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4883
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
--- Comment #3 from Dan Kegel <dank(a)kegel.com> 2008-01-04 00:04:58 ---
Can't reproduce now. I think it's fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3735
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #2 from Dan Kegel <dank(a)kegel.com> 2008-01-04 00:04:15 ---
This seems a lot better now, though there are
still some repetitions (e.g. in the slide
show playback room, where there are many animations
running), probably because the graphics are so slow
because of the lack of a DIB engine.
But you don't have to set win98 mode, and you
don't have to fiddle with sound settings.
It's improved enough to close, I think.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6254
Jaime Rave <jaimerave(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jaimerave(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4971
Jaime Rave <jaimerave(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jaimerave(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4523
Jaime Rave <jaimerave(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jaimerave(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4939
Jaime Rave <jaimerave(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jaimerave(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6607
Jaime Rave <jaimerave(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jaimerave(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5163
Jaime Rave <jaimerave(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jaimerave(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4082
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #3 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-03 22:06:48 ---
Dan,
Do you still have a copy of this? Looking to test with wine 0.9.52, I can't
seem to find one for download anywhere, seems to have vaporized.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7618
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #3 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-03 21:39:03 ---
wine-0.9.52, Ubuntu 7.10, nVidia FX 5200
I don't think this bug is valid anymore, I've tested the demo and the menu
loads fine, there is no crash here.
The other open bugs for the game are more relevant to it's status with regard
to working in wine.
bug 11001
bug 10999
I think that this can be closed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=447
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #12 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-03 21:09:25 ---
wine-0.9.52, Ubuntu 7.10, nVidia FX 5200
Tested the english version, appears to work ok, some dialogs are a bit
sluggish.
Can't reproduce the reported error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2285
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #14 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-03 20:54:18 ---
wine-0.9.52, Ubuntu 7.10, nVidia FX 5200
Tested as per instructions for reproducing this bug, no crash here.
Looks like this is fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4030
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #4 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-03 20:05:48 ---
wine-0.9.52, Ubuntu 7.10, nVidia FX 5200
Downloaded Tony Hawks Pro Skater 3 Demo, installed and play tested, appears to
work flawlessly.
This appears to be fixed or invalid.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7831
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
Keywords| |download
--- Comment #5 from Dan Kegel <dank(a)kegel.com> 2008-01-03 19:44:18 ---
Two users have hit this, so confirming.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5271
Hin-Tak Leung <htl10(a)users.sourceforge.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--- Comment #2 from Hin-Tak Leung <htl10(a)users.sourceforge.net> 2008-01-03 19:08:31 ---
No, tested against cpp in mingw gcc-core-3.4.5-20060117-1.tar.gz
and wine 0.9.52 and it behaves as expected (pauses until hitting
ctrl-d - sorry there was a typo in the initial report, not ctrl-z).
Thanks a lot.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4472
Lei Zhang <thestig(a)google.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-winelib |wine-misc
--- Comment #1 from Lei Zhang <thestig(a)google.com> 2008-01-03 18:08:32 ---
Is this still a problem with the current version of wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2652
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #5 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-03 17:56:59 ---
wine-0.9.52, Ubuntu 7.10, nVidia FX 5200
Downloaded from
http://www.daz3d.com/sections/support/files/PC_DAZBryce_5_5_DEMO.exe
Tested I can't see any crash here, looks like it's fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2187
Jeff Zaroyko <jeffzaroyko(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffzaroyko(a)gmail.com
--- Comment #10 from Jeff Zaroyko <jeffzaroyko(a)gmail.com> 2008-01-03 17:39:15 ---
is this still an issue in 0.9.52? I'd test it myself, but the download is
quite large.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.