http://bugs.winehq.org/show_bug.cgi?id=11970
Summary: graphic bug with 0.9.57 in serius sam - the second
encounter
Product: Wine
Version: 0.9.57.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jb.faq(a)gmx.de
Created an attachment (id=11299)
--> (http://bugs.winehq.org/attachment.cgi?id=11299)
graphic bug: a look throug hills
Hi,
with the new version 0.9.57 of wine the graphic rendering in Serious Sam - The
Second encounter breaks. You can look through hills, walls or the earth. I'll
upload a screeshot in some few minutes, because it describe the error in the
best way.
Greetings
Jan
--
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.
https://bugs.winehq.org/show_bug.cgi?id=42904
Bug ID: 42904
Summary: Wine Internet Explorer - Ctrl+A does not work in the
address bar
Product: Wine
Version: 2.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: arnfranke(a)yahoo.com
Distribution: ---
Steps to reproduce:
1. Open C:\Program Files\Internet Explorer\iexplore.exe or C:\Program Files
(x86)\Internet Explorer\iexplore.exe with Wine.
2. Click on the address bar
3. Press Ctrl+A
Expected behavior: All text in the address bar would be selected.
Observed behavior: Nothing happens.
Work-around: Select the text manually with the mouse.
--
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=24641
Summary: ProPresenter 4.0.0.1 for Windows doesn't startup -
continued
Product: Wine
Version: 1.3.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puk007(a)gmail.com
Created an attachment (id=31144)
--> (http://bugs.winehq.org/attachment.cgi?id=31144)
console-20101005.txt
it all began with Bug 24627: http://bugs.winehq.org/show_bug.cgi?id=24627
when trying to run ProPresenter 4.0.0.1, it crashes on startup.
steps to reproduce:
- clean wine compiled from sources of 20100404 (with patch from bug 24627, so
that I could continue installation:
http://bugs.winehq.org/attachment.cgi?id=31130)
- install using winetricks:
winetricks winxp dotnet30
- download ProPresenter & install it from:
http://www.renewedvision.com/downloads/pc/ProPresenter_Windows_4.0.0.1.zip
when trying to run from console, it crashes (want's to send notification to M$)
see attached console output in file console-20101005.txt
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50505
Bug ID: 50505
Summary: hi, this is what happens anytime i try to download any
of the pakcages. it writes 'The developer of this app
needs to update it to work with this version of macOS.
Contact the developer for more information.' so i
cannot see it on launchpad or anything.
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: melissagumus44(a)gmail.com
Hi, I have downloaded Quartz, and all three packages for wine (separately) and
neither of them is working. It writes on my most recent mac update (big sur):
"The developer of this app needs to update it to work with this version of
macOS. Contact the developer for more information."
I really need Wine to be able to access another application, i would love it if
you can help. Thank you.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50501
Bug ID: 50501
Summary: Default wrapping mode DWRITE_WORD_WRAPPING_WRAP is not
handled correctly
Product: Wine
Version: 6.0-rc6
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: bunglehead(a)gmail.com
Distribution: ---
Split from bug 50494, test program attached there could be used to reproduce.
Mode DWRITE_WORD_WRAPPING_WRAP is more permissive than current implementation,
it not only enables wrapping after clusters with canWrapLineAfter == 1, but
also breaks after any cluster if current line had no good wrapping position
otherwise.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50495
Bug ID: 50495
Summary: the WS_EX_LAYERED set SetWindowLong GWL_EXSTYLE ,
Window show white rather than transparency.
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 490165508(a)qq.com
CC: austinenglish(a)gmail.com
Distribution: ---
Created attachment 69150
--> https://bugs.winehq.org/attachment.cgi?id=69150
This program will create a transparent full screen window.
When I use the following code to create a transparent full screen window.
```
HWND hWnd;
hWnd = CreateWindowEx(WS_EX_APPWINDOW, "WindowClass", "Demo", WS_VISIBLE|
WS_MAXIMIZE, CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);
SetWindowLong(hWnd, GWL_STYLE, GetWindowLong(hWnd, GWL_STYLE) &
(~WS_DLGFRAME));
RECT rect;
GetWindowRect(hWnd, &rect);
SetWindowPos(hWnd, HWND_TOPMOST, rect.left, rect.top, rect.right -
rect.left, rect.bottom - rect.top, SWP_DRAWFRAME);
LONG ret = GetWindowLong(hWnd, GWL_EXSTYLE);
ret = ret | WS_EX_LAYERED;
SetWindowLong(hWnd, GWL_EXSTYLE, ret);
ShowWindow(hWnd, SW_SHOWMAXIMIZED);
UpdateWindow(hWnd);
```
In Windows this program display window is a full screen transparent window,But
running this little program with Wine on Linux displays a full-screen white
window.
This problem occurred. I tried to modify the SetWindowLong API function
implementation, but it didn't change much. I hope the bosses can help me.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50354
Bug ID: 50354
Summary: Team Fortress 2 crashes during loading
Product: Wine
Version: 5.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: random-nick(a)mail.com
Regression SHA1: d7a54394d469480e4a5e7a8b3359f0e3b32515ac
Distribution: ---
Created attachment 68952
--> https://bugs.winehq.org/attachment.cgi?id=68952
log of launching tf2 before d7a54394d469480e4a5e7a8b3359f0e3b32515ac
Team Fortress 2 crashes while it's loading, without any sort of error message
from the game itself or a crash dialog. This is a regression, since it stopped
working in Wine 5.20.
I bisected it and the first bad commit is
7a54394d469480e4a5e7a8b3359f0e3b32515ac (gdi32: Move the realized font handle
allocation out of freetype.c.), which is why I set the component to gdi32.
Note that tf2 crashes when ran without Steam just after it finishes loading
(which might happen on Windows too, not sure), so if you are testing without
Steam running you have to look for when the black square that says "Loading"
disappears to know this issue isn't happening.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50479
Bug ID: 50479
Summary: A Vampyre Story from GOG crashes due to missing
resolution
Product: Wine
Version: 6.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: titan.costa(a)gmail.com
Distribution: ---
Created attachment 69115
--> https://bugs.winehq.org/attachment.cgi?id=69115
log with +d3d,+ddraw
The game wants a resolution of 1024x768 but does not find it.
--
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.