http://bugs.winehq.org/show_bug.cgi?id=58297
Bug ID: 58297
Summary: [Wayland-only mode] Minimize button click makes the
app window buttons lock up
Product: Wine
Version: 10.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winewayland
Assignee: wine-bugs(a)winehq.org
Reporter: alexschwartz01(a)gmail.com
Distribution: ---
Clicking on the minimize button makes the window buttons not work
So if you accidentally minimize an app, you have to close the app and reopen
again
--
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=58310
Bug ID: 58310
Summary: Raid shadow legends crashes whn I click on
tournaments boton
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: adam31j(a)gmail.com
Distribution: ---
Unhandled exception: page fault on read access to 0x0000000000000010 in 64-bit
code (0x0000035911d9eb). Register dump:
--
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=58299
Bug ID: 58299
Summary: [Feature request] Some sort of way of disabling
internet connection per prefix.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fatihbakal7(a)protonmail.com
Distribution: ---
Wine doesn't have its own networking settings and instead relies on the host
Linux system's configuration. That said, I was wondering if there's a way to
disable internet access on a per-prefix basis without implementing an entirely
new networking layer within Wine. I'm asking this because Wine’s current
approach to networking allows VPNs like Hamachi to function seamlessly with
Windows applications running on Linux.
Related issue: https://github.com/Winetricks/winetricks/issues/2379
Edit: Apologies if this isn't the appropriate place to suggest feature
requests.
--
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=57833
Bug ID: 57833
Summary: JUCE 8 incompatibility
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andiejs(a)gmail.com
Distribution: ---
This is a problem that will affect anyone making music using vst plugins
through wine. JUCE is the most widely used framework for audio application and
plug-in development. It is an open source C++ codebase. Is anyone working on
making WINE compatible with the latest (JUCE 8)?
here's a forum post with some details that may help
https://forum.juce.com/t/juce8-direct2d-wine-yabridge/64298
--
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=58293
Bug ID: 58293
Summary: Regression caused by switch to realloc which doesn't
zero added memory
Product: Wine
Version: 10.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wintrust
Assignee: wine-bugs(a)winehq.org
Reporter: twhitehead(a)gmail.com
Distribution: ---
Created attachment 78644
--> http://bugs.winehq.org/attachment.cgi?id=78644
Log showing run with and without reverting 6db69d0 under wine 10.7
In wine 8 `LibOVR.dll` (the shim) would load `LibOVRRT32_1.dll` (the Oculus
API). In wine 9 and later this is no longer the case. Reverting 6db69d0
(wintrust: Use CRT allocation function) makes it work again.
Looking over this commit I expect the issue is the switch from
```
static void* WINTRUST_ReAlloc(void *ptr, DWORD cb) __WINE_ALLOC_SIZE(2);
static void* WINTRUST_ReAlloc(void *ptr, DWORD cb)
{
return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, ptr, cb);
}
```
which zeros added memory to realloc which does not. Presumably this is
resulting in some field being populated with garbage, and that makes
`LibOVR.dll` unhappy when it verifies the signatures on `LibOVRRT32_1.dll`.
I put more details and a test program in the following github repo
https://github.com/twhitehead/issue-wine-ovrf
--
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=58141
Bug ID: 58141
Summary: [MDK] [WOW64] Stack overflow
Product: Wine
Version: 10.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: redwindwanderer(a)gmail.com
Distribution: ---
MDK (be it software MDK95.EXE or 3D-accelerated MDKD3D/MDK3DFX) causes an STACK
OVERFLOW error on experimental WOW64 as soon as the executable is run:
0148:err:environ:init_peb starting L"Z:\\root\\wine\\MDK\\MDK3DFX.EXE" in
experimental wow64 mode
0148:err:virtual:virtual_setup_exception stack overflow 1280 bytes addr
0x6fffffc226b7 stack 0x7ffffe100b00
(0x7ffffe100000-0x7ffffe101000-0x7ffffe1ffd20)
The game works fine in 32bit mode. The problem is clearly related to WOW64
(which is how I run all my Windows games and has a pretty good compatibility
nowadays).
--
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=58275
Bug ID: 58275
Summary: Wrong "range" selection logic using SHIFT
Product: Wine
Version: 10.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
wine explorer
single select /lib
hit "SHIFT+a"
expected result : move selection to 1st item starting by "a"
observed result : group selects from 1st item starting by "a" to current
selection (here : /lib)
--
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=55136
Bug ID: 55136
Summary: Empire Earth: Crashes after few minutes of gameplay
Product: Wine
Version: 8.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ndx4co9lt(a)mozmail.com
Distribution: ---
Created attachment 74693
--> https://bugs.winehq.org/attachment.cgi?id=74693
Terminal output
After starting a new game I can play a few minutes of actual gameplay and then
suddenly it crashes.
wine-devel 8.11
Setup:
Fedora 38 (64 bit)
Linux 6.3.9 (-200.fc38.x86_64)
Mesa 23.1.2
CPU: AMD Ryzen 5 5600
GPU: AMD Radeon RX 6600
Download link: https://empireearth.eu/de/herunterladen/
--
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=58060
Bug ID: 58060
Summary: Zafehouse: Diaries demo crashes in
d3dx_initialize_image_from_wic with unsupported pixel
format {6fddc324-4e03-4bfe-b185-3d77768dc902}
Product: Wine
Version: 10.5
Hardware: x86-64
URL: https://web.archive.org/web/20160606064900if_/https://www.zafehouse.com/files/getdemo.php?demo=1
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: d3d-util
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Distribution: ---
Created attachment 78313
--> https://bugs.winehq.org/attachment.cgi?id=78313
+d3dx (32MB uncompressed)
Continuation of bug 51584.
Needs 'winetricks -q d3dcompiler_47' to work around bug 37676.
This happens with both native dotnet and wine-mono.
$ sha1sum ZafehouseDiariesDemoSetup.exe
0c15d5024c9a1e327ac7383fee48ad55a6fec35a ZafehouseDiariesDemoSetup.exe
$ du -sh ZafehouseDiariesDemoSetup.exe
31M ZafehouseDiariesDemoSetup.exe
--
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=57387
Bug ID: 57387
Summary: Sega Rally Championship Demo crashes at startup if
Direct3d/renderer set to GDI
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
URL: https://www.classicdosgames.com/game/Sega_Rally_Champi
onship.html
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: boxedwine(a)danoon.net
Regression SHA1: a6e969560b02ca776f987319db37e6550a1ecfec
Distribution: Mint
Created attachment 77357
--> https://bugs.winehq.org/attachment.cgi?id=77357
crash log
I tested this on 64-bit Linux Mint.
steps
1) set registry to use GDI renderer (does not crash if this is not set)
2) install Sega Rally Championship Demo
3) Launch Sega Rally Championship Demo
It crashes immediately during launch
I did a git bisect and after finding the commit, I verified it by checking out
wine-9.0-rc3 and doing a revert for the commit,
a6e969560b02ca776f987319db37e6550a1ecfec, then verifying the game works if
reverted.
I also verified that this game crashes on master (wine-9.20-143-gff2070b7900).
But I was unable to test reverting the commit on master because of a conflict.
--
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.