http://bugs.winehq.org/show_bug.cgi?id=19373
Summary: Plants vs Zombies is draw in the left button side of
the screen
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://www.reflexive.com/Plantsvs.Zombies.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
While using the game you can see it in the left button corner of the screen
while it is supposed to be in the center of the screen. This makes impossible
to select the option of the game because the game is expecting you to make
click in a different place from where the game screen is been draw.
This is in Wine 1.1.26. I have an Intel X4500HD but I have seen the problem
also with an Nvidia card.
--
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=16514
Summary: broken encoding or database conversion regarding Umlaut
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Since the recent restyling of winehq.org, Umlauts such as "äüöÄÖÜ" are
not displayed correctly anymore in AppDB. See e.g. "Die Völker 2/The Nations"
http://appdb.winehq.org/objectManager.php?sClass=version&iId=11470
Instead, a "?" is displayed (typical for unrecognized UTF-8 characters in some
parsers).
This affects:
- my login name, in the initial greetings screen
- Category: Main > Games > Strategy Games > Die V�lker 2 > 2.02
- Name Die V�lker 2
OTOH, in bugzilla, comments of mine are correctly displayed with Umlauts.
I'm using firefox 2.0.x or 3.x.y
Is it just a matter of web server configuration, or was the application
database incorrectly converted or backed-up at some point in time?
Regards,
Jörg Höhle
--
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=24478
Summary: Fallout 3 no background music
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felipemoraesbr(a)gmail.com
This problem has been happening for a long time now for me, and it is still not
fixed in current wine 1.3.3. Other game sounds are fine, just the background
music(which I think is mp3) isn´t working.
The tip for sound problems posted was not appliable to my case, i renamed the
old file to winmm.dll_old.so and put the even older dll is that folder, as
said, then i restarted but to no use. I should mention I´m using ALSA already
Hope we can work together to solve this
--
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=10610
Summary: Gothic II: D3D7 crash after playing several minutes
Product: Wine
Version: 0.9.49.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wielkiegie(a)gmail.com
Created an attachment (id=9411)
--> (http://bugs.winehq.org/attachment.cgi?id=9411)
Wine messages when game crashes
On Wine 0.9.49 (and probably all after 0.9.38) Direct3D 7 crashes after playing
several (7-10) minutes Gothic II: Night of the Raven (and probably base Gothic
II and Gothic I).
--
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=24108
Summary: error in Visual Basic Editor
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vkedzior(a)is.pw.edu.pl
I always get an error message when I'm trying to add User Form in Visual Basic
Editor (tested in Word 2007 and Excel 2007).
Error message contain information about error &H8...
--
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=22456
Summary: Wrong caching with INI functions
Product: Wine
Version: 1.1.41
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabmoa(a)yahoo.it
Created an attachment (id=27506)
--> (http://bugs.winehq.org/attachment.cgi?id=27506)
Simple test program
I've written a program to manage some ini file and I've seen a wrong behaviour
in wine.
The origin of the problem I think is the cache system. I've isolated the
problem with a very simple program. The operations involved on button press
are:
1) Write the file test.ini with key value = WRONG (with
WritePrivateProfileStringA)
1a) Message on screen (ok to continue)
2) Delete ini file
3) Read the file test.ini (it doesn't exists now) with the default value =
RIGHT (with GetPrivateProfileStringA)
In Windows the result is RIGHT but in wine is WRONG, because it reads the
cached value! Only to obtain the compatibility with my software I've changed my
wine source in this way:
dlls/kernel32/profile.c
BOOL WINAPI WritePrivateProfileStringW( LPCWSTR section, LPCWSTR entry,
LPCWSTR string, LPCWSTR filename )
{
...
ret = PROFILE_SetString( section, entry, string, FALSE);
// PROFILE_FlushFile(); // COMMENTED
if (CurProfile) PROFILE_ReleaseFile(); // INSERTED
...
}
NOTE:
I didn't test if other WritePrivateProfile* are affected by this problem or if
the problem instead is in the GetPrivateProfile*
--
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=13082
Summary: Adobe Premiere Pro 1.5 fails to start
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://download.adobe.com/pub/adobe/magic/premiere/win/7
.x/premierepro_english_tryout.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Followup of #11613. The application starts, then asks you to create a new
project, but then fails with a messagebox :
" Adobe Premiere encountered a serious problem, and
needs to be closed"
(Note :all this after using native gdiplus, otherwise you'll run into other
bug)
Using native comctl32 gets around this bug. If needed i can provide debuglogs.
--
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=18776
Summary: VBALink: GBC roms open at an incorrect resolution
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://www.vbalink.info/download/vbalink180b0.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh+winehqdotorg(a)gmail.com
Steps to reproduce:
- Download VBALink and any GB/GBC rom (untested with GBA roms)
- Open the rom with VBALink with default settings
The window resizes to the screen's height, this doesn't happen under Windows;
see screenshot.
The following is the only console output available:
fixme:win:EnumDisplayDevicesW ((null),0,0x32ec50,0x00000000), stub!
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x173ba0,0x173b28): stub
fixme:menu:GetMenuBarInfo (0x20036,0xfffffffd,0x00000000,0x32ead0)
fixme:d3d_surface:IWineD3DBaseSurfaceImpl_Blt Can't handle WINEDDBLT_ASYNC flag
right now.
--
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=22060
Summary: regedit CRASHES when key with non-ascii values is
renamed or deleted
Product: Wine
Version: 1.1.40
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tianshuo(a)gmail.com
Created an attachment (id=26868)
--> (http://bugs.winehq.org/attachment.cgi?id=26868)
results of WINEDEBUG=+relay wine regedit
there is a key in my registry that I can not delete, every time I delete it
regedit.exe crashes. I am deleting this key because of Bug 20279 and the
solution it provides does not work because of this crash. rename does not work
either gives the same error message
wine: Unhandled page fault on write access to 0x00750072 at address 0x7bc486bc
(thread 001b), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7bc48148
"wine --version" is 1.1.40
I am attaching the tail of "WINEDEBUG=+relay wine regedit" as
winedebugrelay.log
and "winedbg regedit" as winedbg.log
I am not sure if more information is needed
--
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=24551
Summary: Cannot install Windows Server 2003 Administration
Tools Pack
Product: Wine
Version: 1.3.3
Platform: x86
URL: http://www.microsoft.com/downloads/en/details.aspx?Fam
ilyID=c16ae515-c8f4-47ef-a1e4-a8dcbacff8e3
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Created an attachment (id=30987)
--> (http://bugs.winehq.org/attachment.cgi?id=30987)
~/wine-git/wine msiexec /i adminpak.msi 2> log.txt
I am not sure the installer copies anything but I notice that it does not
appear in the program list in Add/Remove Programs.
--
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.