https://bugs.winehq.org/show_bug.cgi?id=47331
Bug ID: 47331
Summary: Steam browser flickering
Product: Wine-staging
Version: 4.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: werifGX(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
As referenced on https://github.com/PhoenicisOrg/scripts/issues/994 steam
installed using `winetricks 20190310-next` on debian buster using `wine-4.9
(Staging)` which has win7 environment, gameoverlayrenderer dll_override
disabled and CSMT enabled result in flickering of steam browser as presented on
https://youtu.be/LaR8nQ0Ir2w
Suspecting this beeing wine issue.
--
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=48385
Bug ID: 48385
Summary: Rising Lands freezes when navigating back by pressing
ESC key on main menu
Product: Wine
Version: 4.11
Hardware: x86
URL: https://appdb.winehq.org/objectManager.php?sClass=appl
ication&iId=19674
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: vyproyects(a)gmail.com
CC: z.figura12(a)gmail.com
Regression SHA1: 1bc9c4fdb2e6c2762105c14cdafb7d4ea3370625
Distribution: Ubuntu
Created attachment 66145
--> https://bugs.winehq.org/attachment.cgi?id=66145
Rising Lands navigating back output
This is NOT a regression but a still not working at all bug resulting of a
previous bugfix.
I mean, before Wine 4.11 in Rising Lads game (a Win95 game that uses wine 32
bit configuring it with Windows 95 compatibility), it was impossible at all to
navigate back from a secondary menu at main menu by pressing ESC key.
This is, if you clicked on "load game" from main menu and then pressed ESC key
to go back to main menu, all texts were cleared and animations stopped
resulting in a freezed screen. Same happens during gameplay in order to save
the game.
As of a bugfix in wine 4.11 now is possible to go back but just in a certain
situation: being in windowed mode (due to another bug) you have to which to any
other app by pressing Alt+TAB. At the very moment wine loses the focus main
menu is refreshed. No need to go back again to wine, though. As you can see if
dragged apart the new appearing window.
I've made a regression testing to find out which exact commit had fixed this
bug this way, and this is the output:
1bc9c4fdb2e6c2762105c14cdafb7d4ea3370625 is the first fixed commit
commit 1bc9c4fdb2e6c2762105c14cdafb7d4ea3370625
Author: Zebediah Figura <zfigura(a)codeweavers.com>
Date: Mon Jun 17 14:46:20 2019 -0500
winex11: Update the state of all keys on KeymapNotify.
The Binding of Isaac transitions in and out of fullscreen when the "F" key
is pressed. Specifically, it will swap states when receiving WM_KEYDOWN,
provided that the previous key state was not pressed (i.e. bit 30 is 0).
However, as part of the process of transitioning, it hides and shows its
window, causing it to temporarily lose focus. If the F key is released while
the window does not have focus, Wine misses this fact, and thinks that the key
was already pressed the next time it is pressed, causing the game to refuse to
change focus. Windows will not deliver WM_KEYUP messages to a window that does
not have focus, but it will always report the true previous state of any key on
the keyboard when requested.
Signed-off-by: Zebediah Figura <zfigura(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
:040000 040000 2348a78ab9f7e1c7abfa45606b769dc0d28986ee
056dbd175d366ab2ee50c4d1f3674a01307a718d M dlls
Although I use spanish version this also happen on english version even without
installing the patch update.
A download url is available on AppDB:
https://appdb.winehq.org/objectManager.php?sClass=application&iId=19674
VGA compatible controller: Intel Corporation HD Graphics 5500
Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Sun XT [Radeon HD
8670A/8670M/8690M / R5 M330 / M430 / R7 M520] (rev 83)
Subsystem: Lenovo Radeon R5 M330
Kernel driver in use: radeon
Kernel modules: radeon, amdgpu
Hope this help to find out the real problem.
--
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=48381
Bug ID: 48381
Summary: Regression: Video clips shows black on Beasts &
Bumpkins
Product: Wine
Version: 5.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: vyproyects(a)gmail.com
CC: z.figura12(a)gmail.com
Distribution: ---
On Beasts & Bumpkins game, a video clip is played to present every new mission.
This video y shown black, but audio sounds correctly. Note that initial trailer
video clips work properly but if you start a new single campaign the following
video that presents the first mission does not work, showing black.
This is a Win95 game. Therefore I have to use wine 32bit and apply windows 95
configuration.
I use my original copy but as this game is abandonware, you can download it
from https://www.myabandonware.com/game/beasts-bumpkins-bh1
I have made a Regression Testing, and this is the result:
70d842b106d3ccbb0a786a41474903bddc4ea879 is the first bad commit
commit 70d842b106d3ccbb0a786a41474903bddc4ea879
Author: Zebediah Figura <z.figura12(a)gmail.com>
Date: Wed Apr 10 22:30:32 2019 -0500
winex11: Resize the screen when changing CRTC modes.
Based on a patch by Gabriel Corona.
According to the RandR spec for RRSetCrtcConfig:
"The entire area of the CRTC must fit within the screen size, else a Match
error results. As an example, rotating the screen so that a single CRTC fills
the entire screen before and after may necessitate disabling the CRTC, resizing
the screen, then re-enabling the CRTC at the new configuration to avoid an
invalid intermediate configuration."
This patch involves resizing the screen also when shrinking a CRTC, not
just when expanding it past the current screen size. This is partially because
we have no way to reliably determine the current display width (DisplayWidth()
is never updated past opening the connection, and RandR exposes no way to
retrieve the screen dimensions), and partially because it's probably what the
user wants anyway (e.g. it's what the `xrandr` configuration app does when the
screen size is not expliticly specified).
This patch fixes TestBot failures on the Debian machines for ddraw, d3d8,
and d3d9 device tests.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=33290
Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
:040000 040000 d92f238e7027e98c0a0de5bb3b9d347d4e9cdf59
64a7029fc3158c55fd9d1c2822c7cfa18984d054 M dlls
--
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=51792
Bug ID: 51792
Summary: Deus Ex: Mankind Divided some objects render
green/pink/white
Product: Wine
Version: 6.17
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 70683
--> https://bugs.winehq.org/attachment.cgi?id=70683
example
0554:fixme:d3d:create_texture_view Depth slice (0-1) not supported.
04d4:fixme:d3d_shader:shader_sm4_read_param Skipping modifier 0x00000001.
04d4:fixme:d3d_shader:shader_get_registers_used Indexable temporary registers
not supported.
0554:fixme:d3d_shader:shader_glsl_interpolation_qualifiers Unhandled
interpolation mode 0x6.
0554:fixme:d3d:wined3d_gl_compare_func Unrecognized compare function 0x679dce0.
0554:fixme:d3d:wined3d_gl_compare_func Unrecognized compare function
0x42eb3ef0.
wine-6.17-454-g6b724c3dd8d
--
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=49543
Bug ID: 49543
Summary: Several games require bcrypt DH support
Product: Wine
Version: 5.12
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bcrypt
Assignee: wine-bugs(a)winehq.org
Reporter: bshanks(a)codeweavers.com
Distribution: ---
There are a few games that need DH support in bcrypt.
- The Rockstar Games Launcher, GTA V, and RDR 2 all open DH and generate+export
a public key. With DH unimplemented, the only effect I know of is that RDR 2's
online mode fails to load.
- Astroneer dedicated server (see
https://www.reddit.com/r/wine_gaming/comments/gvaa9a/bcryptopenalgorithmpro…).
>From a disassembler, it looks like the server imports/exports public/private
keys, and uses BCryptDeriveKey() with the "HASH" KDF and SHA256.
Microsoft has sample code which tests (some of) the functionality:
https://github.com/microsoft/Windows-classic-samples/blob/master/Samples/Se…
Unfortunately GnuTLS doesn't currently export the needed functionality. There's
an issue open: https://gitlab.com/gnutls/gnutls/-/issues/894
--
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=48175
Bug ID: 48175
Summary: AION (64 bit) - crashes in CrySystem32.dll.CryFree()
due to high memory pointers allocated
Product: Wine
Version: 4.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: gofmanp(a)gmail.com
Distribution: ---
Created attachment 65809
--> https://bugs.winehq.org/attachment.cgi?id=65809
Force down-top memory allocation
Split off from bug #40334.
The crash happens after the original issue in Bug #40334 is solved, after the
loading screen or very soon after login.
The game expects memory pointers from HeapAlloc and VirtualAlloc to fit in the
certain range. It is fine with ~16GB range as per my observations, that is, up
to 0x3ffffffff address.
I am attaching the patch which is confirmed to fix the issue with AION. The
patch consists of two, the first one is not exactly related but the second one
depends on it. At the present moment the first one is passing the review
upstream. The solution in the second patch is to force virtual memory
allocation return lower addresses when they are available (unless top-down
allocation is explicitly requested), that's how it seem to work on Windows. The
patch does it essentially the same way as the allocation with zero_bits mask is
performed.
--
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=54314
Bug ID: 54314
Summary: my eprom programmer software can't recognize the
hardware anymore.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: jacek.zmudzki(a)gmail.com
Distribution: ---
I used WINE for a long Time to program EPROMS with my Parallel-Port bases
Programmer:
http://www.conitec.net/english/galep4.php
After an Update to Ubuntu 22.04 (with WINE 6.0.3) the Software
https://appdb.winehq.org/objectManager.php?sClass=application&iId=2240
can't access the hardware anymore.
I used the Runners from Lutris to investigate further:
It seems that the Last Wine Version that works is WINE 5.4.
--
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=40500
Bug ID: 40500
Summary: Scrap Mechanic : Unable to launch
Product: Wine
Version: 1.9.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: arionrina(a)verizon.net
Distribution: ---
Created attachment 54281
--> https://bugs.winehq.org/attachment.cgi?id=54281
Crash log
Scrap Mechanic doesn't open up the first window, then crashes.
--
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=52212
Bug ID: 52212
Summary: Doom Eternal - Crash on Launch
Product: Wine-staging
Version: 6.23
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 71270
--> https://bugs.winehq.org/attachment.cgi?id=71270
report_1
See attached bugreports for various wine and launch options.
--
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=46803
Bug ID: 46803
Summary: Diablo 1 GOG.com crash
Product: Wine
Version: 4.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xzgamertag(a)mail.com
Distribution: ---
Created attachment 63823
--> https://bugs.winehq.org/attachment.cgi?id=63823
Log
Diablo crashes immidiately after skipping intro, while using hi-res, latest
version. When I try to run Diablo (Classic) version, it requires original CD to
proceed.
--
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=49780
Bug ID: 49780
Summary: wineconsole reports VT sequence support when it does
not
Product: Wine
Version: 5.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: magiblot(a)hotmail.com
Distribution: ---
Created attachment 68092
--> https://bugs.winehq.org/attachment.cgi?id=68092
Demo application to reproduce the issue
Wineconsole does not support applications writing Virtual Terminal sequences
through the Console API. That's fine. However, when enabling the console
ENABLE_VIRTUAL_TERMINAL_PROCESSING mode on stdout with SetConsoleMode, no error
is returned, so the application has no way to detect whether VT sequences are
supported or not. This is documented in
https://docs.microsoft.com/en-us/windows/console/setconsolemode.
The port of Turbo Vision at https://github.com/magiblot/tvision is affected by
this. When using the Console API, Turbo Vision prefers VT sequences over
SetConsoleCursorPosition/SetConsoleTextAttribute for code reusability and
performance. Nevertheless, it can fall back to the latter method when
SetConsoleMode fails to enable either ENABLE_VIRTUAL_TERMINAL_PROCESSING or
DISABLE_NEWLINE_AUTO_RETURN. Since SetConsoleMode does not return error on
wineconsole, garbage is shown instead of a colorful interface.
STEPS TO REPRODUCE
To reproduce the issue on Turbo Vision:
(A) - Using the attached 'tvdemo.exe'
1. Run the application on wineconsole. You should see a black-and-white
background and escape sequences drawn on the console.
2. Press Alt+F, then D. You should see the command prompt, and the message "VT
enabled" at the top, which demonstrates the issue in SetConsoleMode.
(B) - Compiling from source code (requires up-to-date CMake and MSVC).
1. Insert the following code after line 63 in source/linux/win32con.cpp
(https://github.com/magiblot/tvision/blob/dd4e410e60a34e08053399e346d4ed4e63…):
```
if (supportsVT)
cerr << "VT enabled" << endl;
else
cerr << "VT not enabled: " << GetLastError() << endl;
```
2. Follow the build instructions at
https://github.com/magiblot/tvision/blob/dd4e410e60a34e08053399e346d4ed4e63…
3. Follow the steps in (A).
EXPECTED BEHAVIOUR
On Windows, support for VT sequences can be disabled by turning on the "Legacy
Console" mode. If tvdemo.exe is ran in these conditions, the interface is
displayed properly. If entering the command prompt by pressing Alt+F, then D,
the message "VT not enabled: 87" is displayed (error 87 stands for
ERROR_INVALID_PARAMETER), which is what should be shown on wineconsole as well,
since it clearly does not support VT sequences.
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.
http://bugs.winehq.org/show_bug.cgi?id=16302
Summary: [oblivion] can not skip the intro movie by press ESC
Product: Wine
Version: 1.1.8
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wangbinrobin(a)yahoo.com.cn
when runing Oblivion on Windows, we can skip the intro movie by pressing ESC,
but when runing Oblivion by wine, we can not skip it by ESC. it is quite a long
time to wait the intro movie end.
The graphic card I use is ATI Radeon 2600, driver 8.10
--
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=54295
Bug ID: 54295
Summary: Touhou Puppet Dance Performance: Shard of Dreams Can't
Locate Base Game Data After Installation
Product: Wine
Version: 8.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rjtulloh(a)gmail.com
Distribution: ---
Created attachment 73863
--> https://bugs.winehq.org/attachment.cgi?id=73863
Log file produced by the expansion when it can't find the base game's files.
Shard of Dreams is an expansion to Touhou Puppet Dance Performance by developer
FocasLens. In order to be played, the base game needs to be installed on the
same system as the expansion.
On Windows, the expansion can be launched immediately after:
- Installing the base game
- Installing the expansion
Using Wine, the expansion won't launch after running the same installers.
The expansion can be launched by adding a symbolic link with the name "notkey"
in the expansion's installation folder which points to the base game folder.
But this workaround is not needed on Windows.
The expansion also produces an error log when launched without the notkey link.
The log is attached.
--
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=45871
Bug ID: 45871
Summary: Several apps in .NET472 crash with unhandled
exception.\nException at
System.Windows.Media.Composition.DUCE+Channel.SyncFlus
h()\n at
System.Windows.Media.MediaContext.Complet"...(native
d3dcompiler works around it)
Product: Wine
Version: 3.16
Hardware: x86
OS: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
Created attachment 62374
--> https://bugs.winehq.org/attachment.cgi?id=62374
part of crashlog
Hi
Seen this for a bunch of programs while trying to run them with installed
dotnet472.
The bug seems to be hidden for several apps as they ship their owm
d3dcompiler_47, but some don`t I found out, and they crash
Something like:
01c2:fixme:d3dcompiler:make_assignment Check for casts in the lhs.
01c2:err:d3dcompiler:compile_shader HLSL shader parsing failed.
01c2:err:ntdll:vDbgPrintExWithPrefix 65: MIL FAILURE: Unexpected HRESULT
0x88760b59 in caller: intermediate rendering error
01c2:err:ntdll:vDbgPrintExWithPrefix 65: MIL FAILURE: Unexpected HRESULT
0x88760b59 in caller: The render thread failed unexpectedly.
Then crash
Example: Slackinstaller.exe:
winetricks dotnet452 win7 corefonts, then start installer with builtin
d3dcomiler_47 works fine.
However
winetricks dotnet472 win7 corefonts, then start installer with builtin
d3dcomiler_47 --> crash
(Note: for Slackinstller one also needs Staging-patches for bug 40613)
--
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=52078
Bug ID: 52078
Summary: MusicBee: exception when attempting to drag tabs
Product: Wine
Version: 6.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sangv(a)protonmail.com
Distribution: ---
Created attachment 71090
--> https://bugs.winehq.org/attachment.cgi?id=71090
The exception MusicBee gives + the console output, in a tarball
When attempting to move the tabs located near the top of the window (the ones
labelled "Music", "Now Playing", "Playlists", etc by default) MusicBee will
throw an exception. This happens on both my existing MusicBee wineprefix as
well as a fresh one, and on MusicBee versions 3.2.6804 and 3.4.7805. In
addition to happening in Wine version 6.21, the issue remains in 6.22. Both
versions of Wine were compiled from source. I'm using winetricks verbs
`windowscodecs dotnet45 mfc42 xmllite gdiplus d3dx9 vcrun2008 wmp10`. My OS is
EndeavourOS with kernel 5.15.2-zen1-1-zen. (I don't know how much of this
information is really needed but I thought it was all worth a mention just in
case?)
Attached I have both the error MusicBee provides, as well as terminal output
with debug channels warn+all as no information was printed in the terminal
without 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.
https://bugs.winehq.org/show_bug.cgi?id=54755
Bug ID: 54755
Summary: App jamming: Clicking on the zoom email meeting button
causes the app to jam
Product: Wine
Version: 8.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 399989567(a)qq.com
Distribution: ---
Created attachment 74251
--> https://bugs.winehq.org/attachment.cgi?id=74251
Figure 1
Join the zoom meeting( how to apply and join the zoom meeting can refer to: #
Bug 54754 )
According to "Figure 1" and "Figure 2" can trigger the bug, resulting in the
whole application stuck, the following is an err log
> 0024:err:virtual:virtual_setup_exception stack overflow 1220 bytes in thread 0024 addr 0x7bc24170 stack 0x120b3c (0x120000-0x121000-0x220000)
--
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=53985
Bug ID: 53985
Summary: Notepad++ v8.4.7 Does Not Display Icons for
RightArrow, Triangle, & X
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gatlibs.dev(a)gmail.com
Distribution: ---
Created attachment 73571
--> https://bugs.winehq.org/attachment.cgi?id=73571
Notepad++ with a blank file (missing icons for manipulating the tabs)
There are three buttons for manipulating the tabs that have empty squares where
graphics should be. These appear below the window's buttons for minimize,
maximize, and close.
Compare the attachment to the link in NPP++'s site:
https://npp-user-manual.org/docs/images/view-rotate-1.png.
I'm using Fedora 37 with wine 7.20 (Staging) and NPP++ v8.4.7 for 64 bits.
--
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=10472
Summary: File open dialog buffer too short for multiple file
selection
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: freireclaudio(a)yahoo.com.ar
The file open dialog seems to be using a buffer which is too short for multiple
file selection. While Windows itself has this bug/feature, wine's version is
much more annoying since I'm unable to select over 6 files usually (using long
but not excessive names).
A dynamic buffer (with a reasonable limit for security reasons perhaps) would
be preferrable, but even a bigger buffer would help.
I think windows' buffer is 4k.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=52105
Bug ID: 52105
Summary: Handle to \Device\NamedPipe\ cannot be used as the
RootDirectory for NtCreateNamedPipeFile
Product: Wine
Version: 6.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: jinoh.kang.kr(a)gmail.com
CC: jacek(a)codeweavers.com
Regression SHA1: 2600ecd4edfdb71097105c74312f83845305a4f2
Distribution: ---
Commit 2600ecd4edf (server: Use a separated object for each opened named pipe
device file., 2018-10-29) split the role of the named pipe device and the named
pipe file.
However, in doing so, it changed the semantics of opening \Device\NamedPipe\.
In particular, it is no longer possible to use a handle to \Device\NamedPipe\
as RootDirectory when creating a named pipe.
This bug makes Cygwin's named pipe creation
(https://github.com/cygwin/cygwin/blob/4f47e64b11ed8d47c62fa89e9b971f44b7e9a…)
loop forever.
--
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=42606
Bug ID: 42606
Summary: wine doesn't *fully* respect locale settings in some
corner cases
Product: Wine
Version: 2.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: galtgendo(a)o2.pl
Distribution: ---
This time it's a problem even if this is the only app currently running in the
prefix.
Download address for the engine:
http://kikyou.info/dl_redirect.php?%2Ftvp%2Ffiles%2Fkr2_232r2.zip
Instruction for setting up a project:
http://kirikirikag.sourceforge.net/contents/Prepare.html (instructions seem to
be for a different archive, but get the point across)
So, when running 'LANG=ja_JP.utf8 wine krkr.eXe'(as it's different from my
standard locale) and starting that project, most of the things seem to work
correctly (as I've got the standard overrides for Gothic/Mincho set already in
place), yet...
When right clicking the engine console (not the game window), there's mojibake
in that menu.
WINEDEBUG=font log shows that for some reason CreateFontIndirectExW for Tahoma
is called with charset determined by my standard locale, instead of the
Japanese one.
That somehow results in the text being treated as encoded in that locale's
Windows codepage, instead of cp932 (or is that vice versa ?).
--
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=53019
Bug ID: 53019
Summary: MusicBee: inconsistent CJK/non-Latin support with
Tahoma, no support on any other font.
Product: Wine
Version: 7.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: activeds
Assignee: wine-bugs(a)winehq.org
Reporter: v_winebugs(a)outlook.com
Distribution: ArchLinux
Created attachment 72386
--> https://bugs.winehq.org/attachment.cgi?id=72386
All of the screenshots showcasing the bug, in a .tar.gz file.
Tested on wine 7.7 as well as wine-staging 7.7. Running Arch Linux. Font
replacements installed via winetricks - allfonts + fakechinese, fakejapanese,
fakekorean.
When Tahoma is selected as the default font, which is default on new
installations of MusicBee in WINE, MusicBee displays CJK and symbols very
inconsistently. 新しい日の誕生 by 2814 is a good example as not only is Japanese text
used, but the artist name uses full-width characters which comes under the
symbol part of this bug.
The artist and album names are displayed just fine on the left sidebar, tag
editor, track listing panel and mostly on the playing track panel. Generally,
if there is no formatting on the text, it is displayed. However in the Music
Explorer view, as well as playlist views such as Album & Tracks, Albums and
Artists, squares are put in the text's place, typically on the portions meant
to be formatted like headings (bolded, increased font size).
When any other font is used, whether included by the WINE prefix or brought in
from the distro, absolutely no font is displayed for those symbols whatsoever.
Everywhere that renders fonts on MusicBee will not render any non-Latin symbols
whatsoever.
In either case, the title on the Playing Tracks panel does not display any
non-Latin symbols whatsoever. I've checked the formatting and used the Regular
variant of Tahoma. Changing the others on the Playing Tracks panel to Bold will
result in squares, changing the size is fine.
A workaround is to use a font that has all of the scripts needed for use, such
as WenQuanYi Micro Hei for Japanese, Korean (on the font picker as Hangul and
Hangul(Johab)) and Chinese (CHINESE_GB2312 and CHINESE_BIG5). As long as it has
the relevant scripts, the symbols will be displayed, however since most fonts
don't include CJK scripts, WINE/MusicBee has trouble displaying them when those
fonts are picked. To make matters worse, due to .NET limitations, MusicBee can
only use TrueType fonts, and some fonts result in MusicBee complaining that
it's not a valid TrueType font, even though it only displays TrueType fonts in
the font picker (Yu Gothic UI was used for this example).
When searching for related bugs, I came across this:
https://bugs.winehq.org/show_bug.cgi?id=34298#c5
Adding a font that works to the registry changes basically nothing. MusicBee
still has trouble consistently rendering CJK and other symbols.
--
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=55859
Bug ID: 55859
Summary: LabView 2023.3.1 fails to install
Product: Wine
Version: 8.19
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 75381
--> https://bugs.winehq.org/attachment.cgi?id=75381
Terminal output
Steps to reproduce:
1. Extract ni-labview-2023-community-x86_23.3.1_offline.iso to a directory
called ni-labview-2023-community-x86_23.3.1_offline
2. Run `chmod +r -R ni-labview-2023-community-x86_23.3.1_offline`
3. Run `winetricks dotnet48`
4. Run `winecfg` and change the Windows version back to 10
5. Run `winetricks d3dcompiler_47`
6. Run `wine Install.exe`
$ sha256sum ni-labview-2023-community-x86_23.3.1_offline.iso
654dec2f01a3ae2e13ac69dd22bb717fac25e625da1099f974676ea79516e7c5
--
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=51401
Bug ID: 51401
Summary: 6.12-1 can't make server connections anymore
Product: Wine-staging
Version: 6.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winebugs(a)evolution-hosting.eu
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 70257
--> https://bugs.winehq.org/attachment.cgi?id=70257
working tcp connection
Game: Runes of Magic
with 6.12-1 the client can't connect it's version server any more.
downgrade to 6.11-5 solved the issue instantly.
Steps to Reproduce:
update to 6-12
tcpdump -X -n -n host 194.187.19.180
(runewakers updateserver)
start the game
You see the connection, you see some tcp data, but your do not see ANY sign of
a HTTP protocol and unencrypted port 80 connection should contain.
Conclusion: the connection fails on TCP/IP level before HTTP gets involved.
--
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=48426
Bug ID: 48426
Summary: Wine-Gecko can't be installed.
Product: Wine-staging
Version: 5.0-rc4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winebugs(a)evolution-hosting.eu
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
wine-staging 64/32 is asking to install Gecko, but the installation attempt
hangs at "loading down" with no progress.
--
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=49933
Bug ID: 49933
Summary: Alt+Tab doesn't work with gog installers
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rtentser(a)yandex.ru
Distribution: ---
I need to minimize other windows to see progress.
When i try to alttab to an installer i'm getting
"00f0:fixme:win:WINNLSEnableIME hwnd 0001011C enable 0: stub!" in terminal.
When i try to alttab out of it i'm getting "00f0:fixme:win:WINNLSEnableIME hwnd
0001011C enable -1: stub!"
So, i'm guessing, implementing WINNLSEnableIME will help.
--
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=54482
Bug ID: 54482
Summary: RtlCaptureStackBackTrace cause segv
Product: Wine
Version: 8.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: ake.rehnman(a)gmail.com
Distribution: ---
Created attachment 74033
--> https://bugs.winehq.org/attachment.cgi?id=74033
patch attempt
RtlCaptureStackBackTrace crash on segmentation fault because the unwinding
keeps going beyond the stack end. It seems on x86-64 the stack actually starts
at least 32 bytes below StackBase so the compariston with context.rsp to
StackBase will never hit but we get a context.rpc value of 0 which obviously
SEGV:s.
I made a patch attempt and just check if rcp = 0 and end the unwinding.
--
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=41392
Bug ID: 41392
Summary: directory.c: match_filename always false if mask
contains "*?"
Product: Wine
Version: 1.9.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: lcmecmac(a)gmail.com
Distribution: ---
A mask containing '*' followed by '?' will not match any files.
For example, "dir *?" does not show any files in a non-empty directory.
--
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=42407
Bug ID: 42407
Summary: LdrUnloadDll may recursion unload same dll
Product: Wine
Version: 1.9.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: xiewei(a)deepin.com
Distribution: ---
Created attachment 57219
--> https://bugs.winehq.org/attachment.cgi?id=57219
LdrUnloadDll log file
It may cause QQ crash.LdrUnloadDll funcation recursion unload Flash.ocx,and
dsound.dll ldr.LoadCount to 0,then dsound.dll be unload.But QQ process is still
using dsound.dll.
Type: EXCEPTION_ACCESS_VIOLATION
Error: Read address 0x7985C309
Address: 7985C309
--
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=40972
Bug ID: 40972
Summary: RtlVerifyVersionInfo returns wrong results
Product: Wine
Version: 1.9.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: marcinwiaz(a)poczta.onet.pl
Distribution: ---
Created attachment 55126
--> https://bugs.winehq.org/attachment.cgi?id=55126
Tiny test program - EXE and source
(Note: this a different problem than in Bug 36143)
Steps to reproduce:
1) Download and unpack Reproduce.exe, which is attached to this bug report
2) Configure Wine to emulate Windows 2003 (which has version number 5.2) for
Reproduce.exe
3) Launch Reproduce.exe - you will see in the console window:
CurrentOS is: 5.2
RequestedOS is >= than: 5.19
CurrentOS is < than RequestedOS (which is WRONG!)
4) Run true Microsoft Windows 2003 Server
5) Launch Reproduce.exe - you will see in the console window:
CurrentOS is: 5.2
RequestedOS is >= than: 5.19
CurrentOS is >= than RequestedOS
Explanation:
Minor version numbers should be treated similarly to digits after a decimal
point - so when comparing software versions:
version 5.1 is < than version 5.2
version 5.11 is < than version 5.2 (note that 11 is > than 2 !)
version 5.19 is < than version 5.2 (note that 19 is > than 2 !)
So when comparing for VER_MINORVERSION or VER_SERVICEPACKMINOR inside the
"VerifyVersionInfo" API, Microsoft uses a lexical comparison - which works as:
lstrcmp(tostring(dwMinorVersion1),tostring(dwMinorVersion2))
or
lstrcmp(tostring(wServicePackMinor1),tostring(wServicePackMinor2))
Please note, that it's still different than comparing real numbers, because:
5.20 = 5.2
but
lstrcmp("5.20","5.2") != 0
So lstrcmp-like function must be used for VER_MINORVERSION and
VER_SERVICEPACKMINOR checking inside the "RtlVerifyVersionInfo" function (which
is called by the "VerifyVersionInfo" API in Wine) to be compatible with
Microsoft Windows.
Possible fix: in "version.c" file, add a new "version_compare_values_lexical"
function. It should be based on the original "version_compare_values" function,
but should use "lstrcmp" calls instead of integer comparisons. This
"version_compare_values_lexical" function should be called instead of
"version_compare_values" when checking for VER_MINORVERSION and
VER_SERVICEPACKMINOR inside the "RtlVerifyVersionInfo" function.
--
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=49828
Bug ID: 49828
Summary: MSVC 2019 executables with ASAN enabled fail to start
Product: Wine
Version: 5.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nyanpasu64(a)tuta.io
Distribution: ---
Recent versions of MSVC allow building Windows .exes with ASAN (it may have
already been possible using Clang.):
https://devblogs.microsoft.com/cppblog/addresssanitizer-asan-for-windows-wi…
I took an old Win32/MFC application and built it using MSVC ASAN on Windows 10,
to try to discover memory bugs on Windows and Wine.
- Program download at
https://cdn.discordapp.com/attachments/653168829891084298/75454092297227479…
.
- Source at https://github.com/nyanpasu64/Dn-FamiTracker/tree/b3ba802f
(permalink at
https://cdn.discordapp.com/attachments/653168829891084298/75454082852061186…
).
- To build, copy cmake_user_begin.cmake.example to cmake_user_begin.cmake, then
run CMake in MSVC 32-bit Release mode. It may be possible using Visual Studio's
.json file or msbuild, but I haven't tried yet.
On Windows, the program starts without problems. On wine-5.17, when I try to
run this program, it crashes during the loading process.
nyanpasu64@dell-arch ~/apps> wine Dn_FamiTracker_ASAN.exe
0024:fixme:ntdll:EtwEventRegister ({6c6c766d-3846-4e6a-a4fb-5b530bd0f3fa},
00401030, 00884590, 008845A8) stub.
0024:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 0084A41C, 34) stub
==32==AddressSanitizer CHECK failed:
D:\agent\_work\3\s\src\vctools\crt\asan\llvm\compiler-rt\lib\asan\asan_rtl.cc:401
"((!asan_init_is_running && "ASan init calls itself!")) != (0)" (0x0, 0x0)
<empty stack>
`winedbg Dn_FamiTracker_ASAN.exe` doesn't work, it gets stuck on
`0x00000000005c9701 EntryPoint+0xffffffffffffffff in dn_famitracker_asan: ret`.
If I instead `winedbg --gdb Dn_FamiTracker_ASAN.exe`, I get a pile of identical
SIGTRAP with different backtraces. These are non-fatal and can be continued. I
think these correspond to asan errors that would normally terminate the
program, but unfortunately it doesn't print log messages when running in
winedbg. I don't know how to fix that.
0x005c9701 in _sanitizer_print_stack_trace () from
/home/nyanpasu64/.wine/dosdevices/z:/home/nyanpasu64/apps/Dn_FamiTracker_ASAN.exe
The last SIGTRAP is different:
0x7bc52379 in DbgBreakPoint@0 () from
/home/nyanpasu64/.wine/dosdevices/c:/windows/syswow64/ntdll.dll
Afterwards the program starts. (It used to crash, but works with lib32-libpulse
and lib32-mpg123 installed, unsure if that's why.)
--
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=43262
Bug ID: 43262
Summary: Drag&Drop not working between wine explorer and other
applications
Product: Wine
Version: 2.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mintos(a)discard.email
Distribution: ---
https://pastebin.com/39uSnrR7 console output
--
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=55336
Bug ID: 55336
Summary: Touhou 6 : Full-screen with Alt-tabbing or using DXVK
breaks inputs
Product: Wine
Version: 8.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: riyu12383(a)gmail.com
Distribution: ---
-The Game
Here is a very small demo version of the game from archive.orghttps://archive.org/compress/KoumaTr013/formats=ARCHIVE%20BITTORRENT,METADA…
To launch this version, you'll need to add Japanese locale like this :
LANG=ja_JP.UTF-8 wine 東方紅魔郷.exe
-The bug
When launching the game in Full-screen and Alt-Tabbing or using DXVK, the game
inputs breaks, its scrolls the menu infinitely or quit the game by itself, the
user can't control anything anymore. On the demo version it seems the user only
loose the control.
Interestingly on Windows, since Windows 10, the game has an exaggerated
speed/framerate in full-screen. Which was fixed using this dx8 to dx9 converter
: http://enbdev.com/convertor_dx8_dx9_v0036.htm However this doesn't change
anything with wine.
I originally discovered this bug here :
https://github.com/AlpyneDreams/d8vk/issues/155
--
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=52215
Bug ID: 52215
Summary: MSTSC (Remote Desktop) 7.0 cannot find its MUI files
when Windows version is set to 7
Product: Wine
Version: 7.0-rc1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
Distribution: ---
Created attachment 71279
--> https://bugs.winehq.org/attachment.cgi?id=71279
Error. File not found. C:\windows\system32\<LANG_NAME>\mstsc.exe.MUI
A workaround is to set the Windows version to XP but I don't like it because
Wine as far as I know doesn't allow to set a per application Windows version
and my default Windows version is set to 7.
strace shows that Wine doesn't even attempt to find MUI files as if some
resolution inside it breaks completely when Windows != XP.
--
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=48641
Bug ID: 48641
Summary: skse64 is broken with the ntdll-ForceBottomUpAlloc
patchset
Product: Wine-staging
Version: 5.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: qsniyg(a)mail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
While SKSE64 now works properly under wine, it hangs (then fails to launch)
when the ntdll-ForceBottomUpAlloc patchset is enabled. Building wine-staging
without that specific patchset works fine.
This is similar to how it was in earlier wine versions, before a better version
of the F4SE patches (https://github.com/hdmap/wine-hackery/tree/master/f4se)
were mainlined.
--
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=54114
Bug ID: 54114
Summary: Cyberworld Browser: "Could not resolve
'intro_default.url'"
Product: Wine
Version: 7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: doomtay(a)gmail.com
Distribution: ---
Created attachment 73649
--> https://bugs.winehq.org/attachment.cgi?id=73649
Example files
https://web.archive.org/web/20020808051830id_/http://www.cyberworldcorp.com…
Cyberworld Browser Installer
When opening up "intro.borg" in the sample zip, I expect both the large web
panel and side panel to change. Instead, I get a black screen and the message
"Could not resolve 'intro_default.url'" at the bottom
--
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=30615
Bug #: 30615
Summary: Audition CS6 (5.0) - strange UI graphics
Product: Wine
Version: 1.5.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jan(a)lugfl.de
Classification: Unclassified
Created attachment 40072
--> http://bugs.winehq.org/attachment.cgi?id=40072
Audition CS6 Mixer screenshot
The UI looks very strange. Results with native and buildin gdiplus looks
identical.
see attached screenshot.
A log of the console output is attached too.
--
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=43670
Bug ID: 43670
Summary: MsPaint from Win7 does not start
Product: Wine
Version: 2.16
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
First you need a 32bit copy of mspaint from a win7 machine. You'll also need
"winetricks mfc42".
Program fails with a messagebox: "Failed to create empty document"
--
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=54511
Bug ID: 54511
Summary: Cygwin installer hangs during postprocessing step
Product: Wine
Version: 8.1
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Install seems to go fine, but in the end it hangs when running
C:\cygwin64\bin\dash.exe "/etc/postinstall/0p_000_autorebase.dash"
Both wineserver and dash.exe use about half a cpu core each, but nothing seems
to happen. Comparing it to windows, that step should be fast.
Cygwin used to install fine, but even when downgrading wine I can't seem to get
it to work, it all shows the same issue. So it's probably not a Wine
regression.
--
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=52159
Bug ID: 52159
Summary: 64-bit cygwin gdb.exe and python3.8.exe fail to run
Product: Wine
Version: 6.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
Created attachment 71205
--> https://bugs.winehq.org/attachment.cgi?id=71205
details.txt
This issue can be seen if the workarounds for bug #47808 got applied first.
Both gdb.exe and python3.8.exe fail in the python initialisation.
As far as I see it python allocates 8 bytes for a sem_t structure.
This uninitialized struct is given to sem_init which checks if this
is a previously initialized semaphore by checking
with verifyable_object_isvalid. This check happens inside
a __try/__endtry [2] [3].
That way we end up in RtlUnwindEx, which inspects
NtCurrentTeb()->Tib.ExceptionList.
Unfortunately this list finally contains a pointer to the initial stack,
which cygwin deallocated before [1].
See details.txt.
--
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=44467
Bug ID: 44467
Summary: South Park The Fractured But Whole: Crashes on startup
Product: Wine
Version: 3.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: k.haoz(a)zoho.com
Distribution: ---
Created attachment 60410
--> https://bugs.winehq.org/attachment.cgi?id=60410
Backtrace when trying to start the game through Steam.
The game crashes when trying to start it through the Steam client.
--
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=50064
Bug ID: 50064
Summary: A transparent Agent.exe window is shown when
Battle.Net launches
Product: Wine-staging
Version: 5.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Regression SHA1: 3cea972271b4529e332c75b06f902c80e7de1798
Distribution: ArchLinux
Since 3cea972271b4529e332c75b06f902c80e7de1798 (Rebase against
f4a66ad257df4605e73dfea792eec55a70a04e84) and with all later staging commits,
including 5.20 release, when you launch Battle.Net (a client for Blizzard
games), a transparent Agent.exe is shown.
Normally, there shouldn't be any window shown for Agent.exe at all.
With staging commit b49e8743866224df57eb1032b6c63c999b28c808 and older, the
issue cannot be reproduced.
Mainline wine (5.20) doesn't have this issue, and
8d04884c1f6aa6b21435130e42978fdeac06df55 (Updated
winex11.drv-Query_server_position patchset …), which was supposed to fix this,
had no effect. More than that, using a build with that patchset disabled did
not get rid of the issue.
--
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=52642
Bug ID: 52642
Summary: game with avi video as opening will freeze when
started
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: l12436(a)yahoo.com.tw
Distribution: ---
Created attachment 71963
--> https://bugs.winehq.org/attachment.cgi?id=71963
wine console log
seems something error with avi codec
Affect game: VirtualLife2
--
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=54923
Bug ID: 54923
Summary: Drag and drop is not working in Delphi based
applications
Product: Wine
Version: 8.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq.org(a)mail.magynhard.de
Distribution: ---
The drag and drop does not work inside applications that are based on Delphi by
default anymore.
For example, when using HeidiSQL, I'm not able to move entries in the
connection session manager into a folder to organize my connections.
WORKAROUND:
It is working, if i select "Windows XP" in winecfg, but not working for example
for "Windows 10". So it seems that the drag and drop feature got lost at later
"windows versions". On a real Windows 10 machine it works without any problems.
Might be related with "gdiplus_winxp" -> see other Delphi applications with the
same problem:
https://github.com/TES5Edit/TES5Edit/issues/774
--
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=46555
Bug ID: 46555
Summary: cygwin-x86_64.exe: AddAccessAllowedAceEx(, group)
failed: 1337
Product: Wine
Version: 4.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: larrowe.semaj11(a)gmail.com
Distribution: ---
Altogether, the Cygwin installer runs wonderfully, however I have noticed one
problem. There are hundreds of lines stating this:
AddAccessAllowedAceEx(, group) failed: 1337
I would assume that these are probably file permission errors, as they are
shown when downloading and extracting packages.
--
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=55304
Bug ID: 55304
Summary: Kerberos authentication stopped to work after PE
wldap32 conversion
Product: Wine
Version: 8.13
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: patch, regression
Severity: normal
Priority: P2
Component: wldap32
Assignee: wine-bugs(a)winehq.org
Reporter: dmitry(a)baikal.ru
CC: hans(a)meelstraat.net
Regression SHA1: 02e52db7aa627b980dec3dfd4053e20a380ee555
Distribution: ---
Created attachment 74900
--> https://bugs.winehq.org/attachment.cgi?id=74900
patch
SASL2 plugin in libs/ldap/libldap/sasl_w.c doesn't follow the rfc4752
specification in several ways, and it looks like it was never tested with
Kerberos since it queries the key info using
QueryContextAttributesA(SECPKG_ATTR_KEY_INFO) however this attribute is not
supported neither by Wine Kerberos implementation nor by Kerberos in Windows
10. Actually SSF (SASL Security Strength Factor) value returned by the plugin
is never used by libldap, so it's not necessary to set SSF to anything but 1.
Besides, dlls/kerberos uses constants for trailer, signature and max buffer
size that no longer work with modern implementations. Also at least the
Kerberos servers I was testing with use trailer length either 64 or 60, so I
had to add a patch to query Kerberos security trailer length from the context,
otherwise it's not possible to correctly encode/decode LDAP messages and server
responses.
I'm attaching a patch that makes Kerberos authentication work again.
Here are some useful links that were used as a reference:
https://www.rfc-editor.org/rfc/rfc4752#page-3https://github.com/openldap/openldap/blob/master/libraries/libldap/cyrus.chttps://github.com/cyrusimap/cyrus-sasl/blob/master/lib/client.chttps://github.com/cyrusimap/cyrus-sasl/blob/master/plugins/gssapi.c
--
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=54695
Bug ID: 54695
Summary: Adobe Premiere Pro CS6: Fails to load msxml3
Product: Wine
Version: 8.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: ericxiang456(a)gmail.com
Distribution: ---
Created attachment 74204
--> https://bugs.winehq.org/attachment.cgi?id=74204
Terminal output when running Adobe Premiere CS6
When running Adobe Premiere CS6 in Wine with the msxml3 library override to
"Native" (installed via Winetricks), Premiere will fail to run because the
msxml3 library fails to load (terminal output attached below).
When overriding the msxml3 library to "Builtin then native", Premiere will
launch, however the user interface will be displayed incorrectly (UI elements
in black will appear as white).
--
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=29521
Bug #: 29521
Summary: Warhammer Darkomen starts with blank screen
Product: Wine
Version: 1.3.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandrbezenkov(a)gmail.com
Classification: Unclassified
Game starts fine, but I see nothing except cursor. Ingame sounds are present,
when I move cursor I hear sounds that appear when menu item is hovered, also
menu music is present. I tried to run with "winduz 98" and "winduz 95" setting
in winecfg, but result is the same. Specs:
Arch Linux with 3.1.6 kernel.
NVidia gt430 with nvidia 290.10 driver.
wine 1.3.36
--
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=48796
Bug ID: 48796
Summary: Saints Row 2 needs GUID_WICPixelFormat48bppRGB
Product: Wine
Version: 5.4
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
No crashes and noticeable in-game effect.
trace:d3dx:D3DXCreateTextureFromFileInMemory (03A7FD10, 3A212080, 26262,
025272C0)
trace:d3dx:D3DXCreateTextureFromFileInMemoryEx device 03A7FD10, srcdata
3A212080, srcdatasize 26262, width 4294967295, height 4294967295, miplevels
4294967295, usage 0, format 0, pool 0x1, filter 0xffffffff, mipfilter
0xffffffff, colorkey 0, srcinfo 00000000, palette 00000000, texture 025272C0.
trace:d3dx:D3DXGetImageInfoFromFileInMemory (3A212080, 26262, 0BF0BD94)
trace:d3dx:D3DXGetImageInfoFromFileInMemory File type is PNG
warn:d3dx:D3DXGetImageInfoFromFileInMemory Unsupported pixel format
{6fddc324-4e03-4bfe-b185-3d77768dc915}
trace:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
fixme:d3dx:D3DXCreateTextureFromFileInMemoryEx Unrecognized file format,
returning failure.
wine-5.4-173-gaaa625217b
--
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=27933
Summary: Implement "sort" command
Product: Wine
Version: 1.3.25
Platform: x86-64
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
CC: dank(a)kegel.com
Blocks: 15359
Windows expands file wildcards (e.g. f?oo*) according to directory (unsorted)
order, and not alphanumeric order.
This prevents consistent testing of many cmd command expanding file wildcards
(e.g. for /d, for /f)
An external command would probably be preferable to an intrinsic, as windows
does.
--
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=47776
Bug ID: 47776
Summary: Timeshift needs D3DXOptimizeVertices()
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
Reportedly; this was recovered from the old Staging bug tracker.
--
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=54623
Bug ID: 54623
Summary: unimplemented
websocket.dll.WebSocketCreateClientHandle
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: a44687(a)gmail.com
Distribution: ---
Created attachment 74148
--> https://bugs.winehq.org/attachment.cgi?id=74148
Crash dump
Trying to install and run MediRoutes (a niche dotnet application I use for
work) and it consistently throws the following:
wine:Call from 7B012302 to unimplemented function
websocket.dll.WebSocketCreateClientHandle, aborting
The app gets as far as prompting for login credentials (which are successful),
after which a few status dialogs while it loads, then immediately crashes.
I have tried on wine versions 7.22, 8.0, 8.2, 8.3 (Ubuntu bionic packages) with
identical results.
Thank you for your time.
--
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=53914
Bug ID: 53914
Summary: Pivot Animator crashes during install
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 73467
--> https://bugs.winehq.org/attachment.cgi?id=73467
Log
Download at https://www.pivotanimator.net/DownloadV5.php
Can't archive because it downloads a different version then? Very weird...
--
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=31519
Bug #: 31519
Summary: App installer that uses fc.exe and find.exe fails
because they don't exist
Product: Wine
Version: 1.5.11
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
A user emailed me privately with the log of an installer that had failed.
The first problem was it had executed the command
fc /b foo.bar c:\windows\system32\foo.bar | FIND /I "FC: no differences
encountered" > nul
and expected status 0.
--
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=44948
Bug ID: 44948
Summary: fixme:file:CreateSymbolicLinkW() is not implemented
Product: Wine
Version: 3.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: phaidros(a)gmx.at
Distribution: ---
Spine is a Mod-starter for Gothic which supports easy patching and installation
of Mods. It uses CreateSymbolicLinkW() to copy files into the game directory.
This function is not implemented
005e:fixme:file:CreateSymbolicLinkW
(L"C:/games/Gothic-Spine/system/GothicGame.ini"
L"C:/users/gottfried/Application Data/Clockwork
Origins/Spine/mods/37/system/GothicGame.ini" 0): stub
hence the game cannot be started via Spine, it crashes with an access
violation.
--
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=45208
Bug ID: 45208
Summary: Microsoft Office 2010 installer crashes at around 50 %
mark
Product: Wine
Version: 3.8
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: bunglehead(a)gmail.com
Distribution: ---
The crash happens in custom action process I think, installer does not recover
from that. I'm using 32bit prefix, default Win7 version, and Home & Business
product edition.
This looks like a regression, I'm going to try to find what broke 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.
https://bugs.winehq.org/show_bug.cgi?id=52386
Bug ID: 52386
Summary: err:module:LdrInitializeThunk
"libclang_rt.asan_dynamic-i386.dll" failed to
initialize when using clang address sanitizer
Product: Wine
Version: 5.0.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ralf.habacker(a)freenet.de
Distribution: ---
Created attachment 71603
--> https://bugs.winehq.org/attachment.cgi?id=71603
testcase binary
This test case
$ cat use-after-free.cc
int main(int argc, char **argv) {
int *array = new int[100];
delete [] array;
return array[argc]; // BOOM
}
compiled with
$ i686-w64-mingw32-clang use-after-free.cc -fsanitize=address -g -o
use-after-free-i386.exe
makes wine fail with the error message in the title.
The compiler was downloaded from
https://github.com/mstorsjo/llvm-mingw/releases
(https://github.com/mstorsjo/llvm-mingw/releases/download/20211002/llvm-ming…)
--
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=26888
Summary: Wine limits file names to 255 bytes even on NTFS
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jjudin+wine(a)iki.fi
Wine limits file names to 255 bytes even when underlying file system permits
longer file names (like NTFS) when creating a file. This is an issue with
programs that can create file names that are something like 140 characters but
if one character takes 2 or 3 bytes, this 255 byte filename limit will be
evident when same files that can be created in Windows can't be created with
Wine. NTFS supports 255 UTF-16 code units that can easily result in longer file
names than 255 bytes, especially for users of Japanese systems.
You can test this by creating a NTFS file system and some files with long names
on it:
truncate -s 2g /tmp/ntfsfs
losetup /dev/loop7 /tmp/ntfsfs
mkfs.ntfs -f /dev/loop7
mkdir /tmp/ntfsfs-mnt
mount -t ntfs-3g /dev/loop7 /tmp/ntfsfs-mnt
# Do this or whatever enables regular user to access this file system.
chmod 777 /tmp/ntfsfs-mnt
Then you can try to create long files outside of Wine:
# 257 UTF-8 bytes, 129 characters
echo foo >
/tmp/ntfsfs-mnt/ääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääa
# 325 UTF-8 bytes, 109 characters
echo foo >
/tmp/ntfsfs-mnt/亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜a
And inside Wine:
wine cmd
# 257 UTF-8 bytes, 129 characters
echo foo >
/tmp/ntfsfs-mnt/ääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääääb
# 325 UTF-8 bytes, 109 characters
echo foo >
/tmp/ntfsfs-mnt/亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜亜b
Remember to have UTF-8 support enabled in your system.
--
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=49963
Bug ID: 49963
Summary: MobaXTerm 20.3: cannot start a local terminal
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fevrier.simon(a)gmail.com
Distribution: ---
Created attachment 68354
--> https://bugs.winehq.org/attachment.cgi?id=68354
Backtrace MobaXterm 20.3
Using MobaXTerm from here ->
https://download.mobatek.net/2032020060430358/MobaXterm_Installer_v20.3.zip
Using Wine 5.18 on Ubuntu 20.04 using winehq ubuntu ppa.
When clicking on "Start local terminal", what assume to be the terminal exe
cygtermd.exe crashes.
Log and backtrace in attachment.
--
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=51965
Bug ID: 51965
Summary: Rise of Legends Demo: Cannot attack territory
Product: Wine
Version: 6.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: jeffersoncarpenter2(a)gmail.com
Distribution: ---
After starting a new campaign and attacking a territory, the campaign map
reloads. The following is output to standard out:
0024:fixme:msxml:SAXContentHandler_putDocumentLocator (002C6EB0)->(077785A4)
The trace I collected between clicking "Attack!" and the campaign map reloading
is large (58M) and may not be very informative.
--
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=12104
Summary: Cygwin's setup.exe doesn't resize properly
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://cygwin.com
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
You can resize cygwin's setup, but the inner table of
packages doesn't resize.
--
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=55138
Bug ID: 55138
Summary: msys2: bash.exe is not able to fork/start another
process.
Product: Wine
Version: 8.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
Created attachment 74697
--> https://bugs.winehq.org/attachment.cgi?id=74697
allocation stacks in parent and child bash.exe
This is a followup to bug 47808.
If I understand it right, bug 47808 was primarily about native libraries
getting called at a win32 stack which was not yet committed.
Those native libraries then jumped over the guard page, therefore the stack
got not grown, instead a crash reported.
This aspect was fixed by using the syscall interface and
therefore bug 47808 was closed.
But there is another issue that causes a msys2-forked process crashing,
because after the stack was grown it still misses the PAGE_READWRITE flags.
For this Zeb Figura included in the first attachement to bug 47808
"always expand the stack if within the stack reserve"
a line adding the flags "VPROT_COMMITTED | VPROT_READ | VPROT_WRITE"
to the page that gets the VPROT_GUARD removed in grow_thread_stack.
This modification still enables a forked process to run.
The issue can be reproduced with an unmodified wine by just
- running msys2 bash.exe interactively
- then trying to start e.g. notepad from it.
Attached file shows the stack when the stack gets allocated
- in a working msys2-parent process and
- in a failing msys2-forked child process.
Therefore it looks like the forked stack get really setup differently,
but it is still not clear if or when this memory gets the READ/WRITE
added in native windows.
--
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=52411
Bug ID: 52411
Summary: Cygwin installer: "Select Prackages" dialog maximizes
itself
Product: Wine
Version: 7.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: shefben(a)gmail.com
Distribution: ---
Created attachment 71669
--> https://bugs.winehq.org/attachment.cgi?id=71669
MAXIMUM CYGWIN
The only way to get the dialog to a normal size is by dragging on the edges.
--
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=44238
Bug ID: 44238
Summary: PowerPoint 2000 disjointed graphics
Product: Wine
Version: 3.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jpleonard12(a)gmail.com
Distribution: ---
Graphics become disjointed while scrolling with the slider bars. This happens
only at higher magnifications (when zoomed greater than 150%)
Graphics also do not always refresh properly when returning to application from
elsewhere on the desktop. Usually this is a black screen, which can be
refreshed with zoom 100%.
--
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=44893
Bug ID: 44893
Summary: SKSE64 fails to initialize correctly
Product: Wine
Version: 3.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: labmailssadur(a)gmail.com
Distribution: ---
SKSE64 complains about failing to allocate "trampoline" and subsequently fails,
even though the game itself (Skyrim SE) still launches.
Steps to reproduce:
1. Set up a 64-bit prefix.
2. Install Skyrim Special Edition via Steam.
3. Install SKSE64.
4. Launch SKSE64 (via Mod Manager, such as MO, or directly, doesn't matter)
5. Watch SKSE64 complain about said "trampoline".
This occurs whether you try to launch a modded or unmodded game, although when
trying to launch an instance that relies on SKSE64 (such as SkyrimSE with
SkyUI), the game is unable to proceed into its loding screen, but doesn't
complain about it.
I tried to find an issue report or something similar, but didn't find one, so I
am assuming this is an issue with Wine.
Further info:
Tested SKSE64 version 2.0.6 on SkyrimSE Runtime 1.5.23.0.8
--
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=53887
Bug ID: 53887
Summary: Wing Commander IV drawing offset on screen.
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: jcarthew(a)gmail.com
Distribution: ---
Created attachment 73429
--> https://bugs.winehq.org/attachment.cgi?id=73429
ingame offset drawing
Wing Commander IV The Price of Freedom renders incorrectly in WINE. I have
tested this in a Virtual machine running Debian Squeeze 6.0 Wine 1.0.1 as well
as a current Debian Bookworm 12.0 Wine 7.20 installation. The error exists in
all versions of WINE. The display is drawn offset vertically down on the screen
from where it should be displaying.
--
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=55213
Bug ID: 55213
Summary: Half-Life 2: Game won't start on the experimental
wow64 mode
Product: Wine-staging
Version: 8.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: m1m1k4tz(a)protonmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 74823
--> https://bugs.winehq.org/attachment.cgi?id=74823
hl2
No matter what when I open the game nothing comes up if you run a source game
exe outside of the game directory it say missing gameinfo.txt but if you run it
inside of the game directory it just makes a minidump with
InvalidParameterHandler in the name
--
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=56072
Bug ID: 56072
Summary: Weird box appears on startup with native Wayland on
fallout 3
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: m1m1k4tz(a)protonmail.com
Distribution: ---
Created attachment 75739
--> https://bugs.winehq.org/attachment.cgi?id=75739
startup
This isn't a regression though and the app still works so it should probably be
fixed after the freeze
--
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=55669
Bug ID: 55669
Summary: Vulkan is broken on the Wayland driver
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: m1m1k4tz(a)protonmail.com
Distribution: ---
When using the Wayland driver you get a error that says Failed to load Wine
graphics driver supporting Vulkan.
--
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=53014
Bug ID: 53014
Summary: HICON leak in CopyImage causes TheBat! to crash after
a while
Product: Wine
Version: 7.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: jswinebz(a)kanargh.org.uk
Distribution: ---
So, I just updated from my locally patched wine to the current F35 version,
which is 7.5 plus staging.
That means I lost my version of the patch on bug 52207 and gained the official
version.
Unfortunately my original problem then reappeared. After about 30 minutes
runtime The Bat! freezes up and cannot even repaint its windows.
If I disable its "Animate System Tray Icon" preference, then it runs stable
indefinitely. (As it did under my version of the patch against 6.21.)
The debug trace output doesn't look entirely the same: I'm not seeing any clear
indication of HBITMAP overflow, in fact those counts look stable and
reasonable. But it definitely looks like *something* is still leaking within
CopyImage, and eventually causing a complete breakdown of GDI.
(I'll continue to dig into this, just raising in case it's more obvious to
someone else.)
--
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=52974
Bug ID: 52974
Summary: MuLab 9: subwindow loses focus instantly
Product: Wine
Version: 7.7
Hardware: x86-64
URL: https://www.mutools.com/mulab/app/mulab-app-9-0-35-win
64.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: oldcastlehq(a)protonmail.com
Distribution: ArchLinux
When you open ML9 and right-click on any track head, and then click on "Choose
Target Module", the subwindow loses focus instantly. It likes that the new
window that should pop up stays behind the main window.
No idea why the specific client causes so much trouble and how much this is
application specific (ie. whether the focus handling is supposed to be
completely handled by wine or whether it forwards some windows API), but it
does seem that the window reacts to changes in the active window and my guess
is that this turns into a race between the main window (claiming focus and
becoming active when the popup closes) and the target module window when the
context "popup" closes.
More information about this bug can be found at
https://bbs.archlinux.org/viewtopic.php?id=276107
--
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=37906
Bug ID: 37906
Summary: iLivid: Unhandled page fault on write access during
setup
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: anonymous.maarten(a)gmail.com
Distribution: ---
Created attachment 50488
--> https://bugs.winehq.org/attachment.cgi?id=50488
Complete console output
To reproduce:
1) Download "iLividSetup-r0-n-bc.exe" from http://www.ilivid.com/
2) Run the setup executable
$ wine iLividSetup-r0-n-bc.exe
It fails with a page fault (null pointer access).
Unhandled exception: page fault on write access to 0x00000000 in 32-bit code
(0x69c88d88).
Complete console output is attached.
--
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=41204
Bug ID: 41204
Summary: Winehd-staging - 64 bit installer crash on java with
"EXCEPTION_ACCESS_VIOLATION (0xc0000005)"
Product: Wine-staging
Version: 1.9.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fg.antonini(a)hotmail.it
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 55450
--> https://bugs.winehq.org/attachment.cgi?id=55450
PDF Studio 11 64 bit Installer output, with java crash.
When I run PDF Studio 11 64 bit installer the program issue an error and then
crash in Java module whit error:
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000000000202, pid=45,
tid=50
...
Instead, the 32 bit installation work fine. This problem occurred with latest
update on v. 1.9.17. I have previously installed the 64 bit version, but
unfortunately I do not remember exactly the version that worked. I tried all
the available versions (that are 1.7.5, 1.9.16 and 1.9.17, in some PPA) by
running a "clean" installation, that is erasing all files and folder named
*wine* after normal uninstallation, but none of these works with the 64-bit
installations. Maybe, but I'm not sure, the version that works was the 1.9.6,
but is no longer in any repository. I also tried more settings and dll
add/remove with "winetricks" (directx, etc.), but without success. All other my
32 and 64 bit applications works fine.
Regards
Flavio
--
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=33296
Bug #: 33296
Summary: Need For Speed Most Wanted 1 - Control sticks
Product: Wine
Version: 1.5.27
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vova7890(a)mail.ru
Classification: Unclassified
>From 1.5.17 have regression in input control on nfs mw. Pressing is delayed a
few seconds after you released it. Like RELEASE action is delayed, and when,
for example, pressing to left a few secconds, then release key - car stil going
to the left. It reproduced not only on the that, have on any key in game.
Regression still have 1.5.17 - 1.5.27, on <= 1.5.16 work fine.
--
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=55002
Bug ID: 55002
Summary: Product Manager by IK Multimedia does not let you type
text
Product: Wine
Version: 8.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hadresadri(a)gufum.com
Distribution: ---
IK Multimedia Manager https://www.ikmultimedia.com/products/productmanager/
will not let you input text in the home screen which essentially renders it
useless as you can't log in. Also, I have discovered with bottles this can be
avoided however even if you do manager to get it open it won't let you download
anything, it will just freeze and crash
--
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=51922
Bug ID: 51922
Summary: Xinput Joystick backend broke Force Feedback in
Starlancer
Product: Wine
Version: 6.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xinput
Assignee: wine-bugs(a)winehq.org
Reporter: jcarthew(a)gmail.com
Distribution: ---
Recent Joystick backend updates added in WINE 6.20 have broken Force Feedback
support in Microsoft StarLancer. Have tested with a Microsoft SideWinder Force
Feedback 2. Joystick has Force Feedback in Control Panel but no longer has
Force Feedback in game. This has been working in WINE for the past ~10 years.
--
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=55458
Bug ID: 55458
Summary: DrawAuto() not working
Product: Wine
Version: 8.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: owl2(a)etersoft.ru
Distribution: ---
The DrawAuto() function is not working in wine.
I have a DirectX 11 program, which is using a geometry shader with stream
output. If I use DrawAuto() to draw contents of the stream output buffer, it
works fine in windows, but displays nothing in wine (i tried opengl, vulkan and
dxvk). It also spams
"108:fixme:d3d11:d3d11_device_context_DrawAuto iface 00000000002423D8 stub!"
If Draw() is used instead, everthing works in wine as well.
I uploaded the program and its source code here
https://drive.google.com/drive/folders/1yKoMOdrFBShPo359q5zXtH0TjoS3kJ8N
Also I checked the wine source code. Looks like this is the DrawAuto method
https://gitlab.winehq.org/wine/wine/-/blob/master/dlls/d3d11/device.c#L1225
Which is obviously not implemented yet, but i didn't find any existing bug
reports about this
--
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=48264
Bug ID: 48264
Summary: WineHQ Debian repos are missing Wine 4.21
Product: Packaging
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: shtetldik(a)gmail.com
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
WineHQ Debian repo (testing for example) is still at 4.20, even though 4.21
came out at the end of last month already:
https://dl.winehq.org/wine-builds/debian/dists/testing/main/binary-amd64/
--
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=34579
Bug #: 34579
Summary: rotated ArcTo drawing problem
Product: Wine
Version: 1.7.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralf.habacker(a)freenet.de
Classification: Unclassified
Created attachment 46038
--> http://bugs.winehq.org/attachment.cgi?id=46038
wine screenshot showing bug
Drawing arcs with gdi function ArcTo() using GM_ADVANCED graphics mode and
rotation set with SetWorldTransform() is not correct.
--
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=48097
Bug ID: 48097
Summary: Lost Horizon NPCs models in the main menu are totally
orange
Product: Wine
Version: 4.19
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 65655
--> https://bugs.winehq.org/attachment.cgi?id=65655
backtrace
Crashes randomly with this
--
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=35332
Bug ID: 35332
Summary: Text position problem using GM_ADVANCED graphics mode
and dc rotation
Product: Wine
Version: 1.7.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: ralf.habacker(a)freenet.de
Classification: Unclassified
With the applied patches from bug 33190 there is still an issue with the text
display position in GM_ADVANCED graphics mode when using SetTextAlign() modes
TA_TOP and TA_BOTTOM.
--
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=35331
Bug ID: 35331
Summary: Ellipse drawing problem using GM_ADVANCED graphics
mode
Product: Wine
Version: 1.7.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: ralf.habacker(a)freenet.de
Classification: Unclassified
Painting Ellipses in GM_ADVANCED graphicsmode and using dc rotation set with
SetWorldTranform fails.
Instead of painting a rotated ellipse a still unrotated ellipse is drawn. The
dc rotation only effects the height of the ellipse.
--
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=34115
Bug #: 34115
Summary: rotated FillRect problem
Product: Wine
Version: 1.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralf.habacker(a)freenet.de
Classification: Unclassified
Created attachment 45361
--> http://bugs.winehq.org/attachment.cgi?id=45361
testcase source
A filled rectangle drawing with gdi function FillRect() is not drawn correctly
when using dc rotation set with SetWorldTransform.
--
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=45047
Bug ID: 45047
Summary: Wine Wiki: Move action not available even on
unprotected pages
Product: WineHQ.org
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.auble(a)zoho.com
Distribution: ---
Created attachment 61174
--> https://bugs.winehq.org/attachment.cgi?id=61174
Screenshot showing that I'm logged in but the move inaction isn't available
I'm stopping by to do some updates to the wiki, and in a few cases, that
involves moving / renaming pages so that they're more distinct or easier to
find by searching. For some reason, even though I'm logged in with Trustworthy
rights, the box for the "move" action isn't showing up. I also tried passing
"move" and "rename" through the standard URL format for actions, but both just
take me to an "action does not exist" page.
The "page information" link on any unprotected page shows that both edits and
moves should be open to all users. My suspicion is there's a mismatch in the
permissions, and you actually need Admin or Bureaucrat rights to move any
pages. I can see the value behind that setup, but if we do want to keep a
tighter leash on page moves, then the page info isn't displaying correctly.
I'm attaching two screenshots, one showing that there's no move action even
when logged in, and another of page information showing moves should be
allowed.
--
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=50910
Bug ID: 50910
Summary: wrong search results
Product: WineHQ.org
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lanthruster(a)gmail.com
Distribution: ---
Website search box is amazingly misleading. You should add command:
site:wnehq.org into each google search to only include search results that are
related to *.winehq.org
Today it searches globally the Internet, making it a mirror of google.com
--
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=48079
Bug ID: 48079
Summary: Corel Draw 12 - Not possible to create a new document
Product: Wine
Version: 4.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 65629
--> https://bugs.winehq.org/attachment.cgi?id=65629
Console output - wine 4.19 (staging)
Hello everyone,
I am testing "Corel Draw 12" (EDU Version) which installs and opens up fine but
it's not possible to create a new document from the splash/intro-screen.
Console output is attached.
--
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=27594
Summary: Indiana Jones and the emperor's tomb crashes
Product: Wine
Version: 1.3.23
Platform: x86
URL: http://www.jeuxvideo.com/telecharger/jeux-et-demos/000
05589-indiana-jones-et-le-tombeau-de-l-empereur-pc.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
CC: julliard(a)winehq.org
Indiana Jones and the tomb of emperor crash. It is a regression caused by
commit a8d8e4a3679d7b81466e1e010add25948bd11c8a
THe attached console output is in 2 parts since it is 1.8M after compressed.
--
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=38309
Bug ID: 38309
Summary: Rufus theme broken, does not see files or USB devices
(or anything), crashes upon use - Fatal Error.
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeff.mount420(a)gmail.com
Distribution: ---
Created attachment 51148
--> https://bugs.winehq.org/attachment.cgi?id=51148
WINE backtrace log
Linux Mint 17 64 Cinnamon
I tried both versions repeatedly.
WINE Version: 1:1.7.38-0ubuntu1
WINE Version: 1:1.6.2
These are fresh installs, with Rufus being my only use for WINE. Before these
installs, I tested WINE with a few other Apps and most seemed to work properly.
I then removed and purged WINE and Rufus before each install.
I tried the last three versions of Rufus. All would load, but with theme
glitches and lack of USB and directory/folder/file presence, the latter being
caused by the theme glitch or lack of connectivity. When an active button is
used to search for a file, a fatal error message comes up, then it closes.
I have attached the report.
I am only a low-intermediate Linux compiler, so I am not sure of the exact
problem, but I did notice sel=0067 (32-bit) ends at 0 (null).
I am not sure what to do with this...
Thanks
--
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=15359
Summary: wcmd: msysgit does not work
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kirr(a)landau.phys.spbu.ru
I'm trying to use msysgit from here
http://msysgit.googlecode.com/files/Git-1.6.0.2-preview20080921.exe
it installs just fine, but git itself does not run:
Z:\home\kirr\tmp\trashme\msysgit>git
fixme:cmd:WCMD_for /F needs to handle options
Syntax error
File not found
it seems it wants that /F to be implemented.
Thanks beforehand.
--
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=50850
Bug ID: 50850
Summary: Just Cause crashes due to unsupported texture format
Product: Wine
Version: 6.4
Hardware: x86-64
URL: https://store.steampowered.com/app/6880/Just_Cause
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3d-util
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 69666
--> https://bugs.winehq.org/attachment.cgi?id=69666
d3dx
02e4:trace:d3dx:D3DXGetImageInfoFromFileInMemory File type is DDS
02e4:trace:d3dx:dds_pixel_format_to_d3dformat pixel_format: size 32, flags
0x20, fourcc 0, bpp 8.
02e4:trace:d3dx:dds_pixel_format_to_d3dformat rmask 0, gmask 0, bmask 0, amask
0.
02e4:trace:d3dx:get_image_info_from_dds Pixel format is 0x29
02e4:trace:d3dx:D3DXCheckTextureRequirements device 00162598, width 0033F5CC,
height 0033F5D0, miplevels 0033F5D4, usage 0, format 0033F5DC, pool 1.
02e4:trace:d3dx:check_texture_requirements Requested format 29
02e4:trace:d3dx:check_texture_requirements Requested format is not supported,
looking for a fallback.
02e4:trace:d3dx:check_texture_requirements Format chosen: 15
02e4:trace:d3dx:D3DXCreateTexture device 00162598, width 256, height 64,
miplevels 1, usage 0, format 0x15, pool 0x1, texture 635EB2EC.
02e4:trace:d3dx:D3DXCheckTextureRequirements device 00162598, width 0033F3E4,
height 0033F3E8, miplevels 0033F3EC, usage 0, format 0033F3F4, pool 1.
02e4:trace:d3dx:check_texture_requirements Requested format 15
02e4:trace:d3dx:check_texture_requirements Format chosen: 15
02e4:trace:d3dx:D3DXCreateTextureFromFileInMemoryEx Texture created correctly.
Now loading the texture data into it.
02e4:trace:d3dx:D3DXLoadSurfaceFromMemory (0465F248, 00000000, (null),
62FB1580, 0x29, 256, 00000000, (0,0)-(256,64), 0xffffffff, 0x00000000)
02e4:fixme:d3dx:D3DXLoadSurfaceFromMemory Unhandled filter 0x80004.
02e4:trace:d3dx:point_filter_argb_pixels src 62FB1580, src_row_pitch 256,
src_slice_pitch 0, src_size 0033F2D8, src_format 7CC44AE0, dst 0464F230,
dst_row_pitch 1024, dst_slice_pitch 0, dst_size 0033F2E4, dst_format 7CC44608,
color_key 0x00000000, palette 00000000.
wine-6.4-180-g41df83c50e1
--
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=39848
Bug ID: 39848
Summary: Can't launch Victoria 2 from steam
Product: Wine
Version: 1.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Distribution: ---
1. winetricks steam
2. cd "~/.wine/drive_c/Program Files/Steam"
wine Steam
3. Log in, download Victoria 2
4. Run Victoria 2, it just crashed before meeting Bug 35163
If I type
cd "~/.wine/drive_c/Program Files/Steam/steamapps/common/Victoria 2"
Then run wine v2game.exe, the game will launch, then hit bug 35163
--
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=16734
Summary: get_ptrace_tid defined but not used on OpenBSD
Product: Wine
Version: 1.1.12
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: trivial
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
ccache gcc -c -I. -I. -I../include -I../include -D__WINESRC__ -Wall -pipe
-fno-strict-aliasing -Wwrite-strings -Wpointer-arith -I/usr/local/include -g
-O2 -o ptrace.o ptrace.c
ptrace.c:174: warning: `get_ptrace_tid' defined but not used
There's an '#ifdef linux' on the same code a few lines earlier (in
get_ptrace_tid), which fixes compile here as well:
diff --git a/server/ptrace.c b/server/ptrace.c
index b446de9..92b7db5 100644
--- a/server/ptrace.c
+++ b/server/ptrace.c
@@ -172,7 +172,9 @@ static int get_ptrace_pid( struct thread *thread )
/* return the Unix tid to use in ptrace calls for a given thread */
static int get_ptrace_tid( struct thread *thread )
{
+#ifdef linux
if (thread->unix_tid != -1) return thread->unix_tid;
+#endif
return thread->unix_pid;
}
but I'm not sure if that's right or not. Comments welcome.
--
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=33408
Bug #: 33408
Summary: CAJViewer 7.2 needs MDAC while installing
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
0. download and type $wine 'CAJViewer 7.2.self.exe'
1. just click Next
2. Before the installation finished, the installer reportered that MDAC 2.8 is
needed, but I closed that dialog, and the installation finished successfully.
3. I don't know if it has more influnce than an annoying dialog.
winetricks mdac28 to workaround it.
By the way, this bug doesn't block bug 33404
--
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=30222
Bug #: 30222
Summary: Symantec VIP Access can not be activated - take 2
Product: Wine
Version: 1.5.0
Platform: Other
URL: http://www.symantec.com/products/trialware.jsp?pcid=pc
at_info_risk_comp&pvid=vip_1
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winhttp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
Classification: Unclassified
As a follow-up to bug #29891 , after installing Symantec VIP Access the user is
required to accept a license agreement and activate the program. The activation
is unsuccesful and therefore the program can not be used.
Please note that the 'activation' does not refer to copy protection mechanisms,
but rather to connecting to a server using HTTP and obtaining an initial unique
credential ID.
--
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=33190
Bug #: 33190
Summary: Font display problem using text and dc rotation
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralf.habacker(a)freenet.de
Classification: Unclassified
We recognized an gdi text display issue using the application Gausz
http://appdb.winehq.org/objectManager.php?sClass=application&iId=13649.
The problem appears when gdi text is drawn with font rotation *and* display
context rotation.
The problem do not appear when either font rotation or display context rotation
is zero.
The application uses CreateIndirectFont to set a fixed size font with optional
set rotation and draws the text with TextOut(). The display context rotation
has been set with SetWorldTransform().
We tried to find a test case application, but where not able to reproduce the
problem outside the application. We also tried to debug into wine's code based,
but got lost by the details.
--
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=55544
Bug ID: 55544
Summary: .NET Desktop Runtime 7 program doesn't work if .NET 7
is installed locally on the system
Product: Wine
Version: 8.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tw0ali(a)tutanota.com
Distribution: ---
Created attachment 75104
--> https://bugs.winehq.org/attachment.cgi?id=75104
I've pasted two logs
I'm on Artix Linux and have installed locally on the system the dotnet-runtime
and dotnet-host packages on version 7. I also need to use a Windows program
(https://projectpokemon.org/home/files/file/1-pkhex/) that uses .NET Desktop
Runtime 7.0.10. I've downloaded the x64 setup from the Microsoft site
(https://dotnet.microsoft.com/en-us/download/dotnet/7.0) and installed it in my
Wine prefix.
If I start the program I get some errors. I've attached two logs:
- the first one happens when both dotnet-runtime and dotnet-host are installed
locally, and .NET Desktop Runtime 7.0.10 is installed in the Prefix;
- the second ones happens when I uninstall dotnet-runtime and dotnet-host from
the system and only .NET Desktop Runtime 7.0.10 is installed in the Prefix.
If I reboot the system and don't install dotnet-runtime and dotnet-host (so
only .NET Desktop Runtime 7.0.10 is installed in the Prefix) the program starts
fine.
--
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=45277
Bug ID: 45277
Summary: 006b:fixme:vulkan:X11DRV_vkCreateWin32SurfaceKHR
Application requires child window rendering, which is
not implemented yet!
Product: Wine
Version: 3.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cootacarft(a)gmail.com
Distribution: ---
Created attachment 61537
--> https://bugs.winehq.org/attachment.cgi?id=61537
Image of Far Cry 5's Arcade Editor not displaying the game, just a white
screen.
When attempting to launch Far Cry 5 Arcade Editor, I am only able to load into
the editor itself, and no the game window - it only displays a white screen. I
use DXVK to load the game itself without any errors. DXVK isn't affecting the
results of the Arcade Editor as DXVK and the Arcade Editor work fine on
Windows.
--
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=41996
Bug ID: 41996
Summary: Hitman: Blood Money demo has color issues with
built-in d3dx9_27
Product: Wine
Version: 2.0-rc1
Hardware: x86-64
URL: http://www.gamewatcher.com/downloads/hitman-blood-mone
y-download/hitman-blood-money-demo
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 56417
--> https://bugs.winehq.org/attachment.cgi?id=56417
d3dx
fixme:d3dx:d3dx9_base_effect_get_desc partial stub!
fixme:d3dx:get_format_info Unknown format 0x3c (as FOURCC "<\x00\x00\x00").
wine-2.0-rc1-29-g3c6cbc2
--
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=52842
Bug ID: 52842
Summary: Oculus Runtime Installer Fails at
"CreateLibraryServiceStep"
Product: Wine
Version: 7.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maksisk(a)gmail.com
Distribution: ---
Created attachment 72237
--> https://bugs.winehq.org/attachment.cgi?id=72237
Installation output right before and when error is thrown
After applying Louis Lenders' patch in this bug:
https://bugs.winehq.org/show_bug.cgi?id=52300 the Oculus installer successfully
proceeds to download ~5GB of content, extract it and begin installation.
Shortly thereafter, the installer throws two unhandled exception which cause
the installer to fail with the message "Install
'Dawn.Setup.CreateLibraryServiceStep' failed.", then rolling back the
installation and additionally throwing a "System.UnauthorizedAccessException:
Access to the path 'DaybreakNative.dll' is denied." message. The GUI shows the
message "Restart your computer". The full trace is attached.
--
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=30919
Bug #: 30919
Summary: [.net 2.0] ListBox items should not display any
newline characters
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danieleds0(a)gmail.com
Classification: Unclassified
Created attachment 40550
--> http://bugs.winehq.org/attachment.cgi?id=40550
Expected behavior vs actual behavior
In a .net application, if you add an item to a ListBox, newline characters are
shown (in windows, they're hidden). Look at the attached image to see the
differences.
This is the code used to reproduce the problem (VB.NET):
ListBox1.Items.Add("aaa" & "|" & vbNewLine & "bbb" & "|" & vbNewLine & "ccc")
I suspect this problem is not limited to .net, but maybe is at some lower
level.
--
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=35056
Bug #: 35056
Summary: Pro⁄Engineer Wildfire 5.0: Fails to start installation
Product: Wine
Version: 1.7.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Classification: Unclassified
Created attachment 46746
--> http://bugs.winehq.org/attachment.cgi?id=46746
WINEDEBUG=+relay,+seh,+tid on wine-1.7.7-107-g61358d0
Steps to reproduce:
1) remove ~/.wine
2) wine setup.exe
Behaviour:
Nothing.
Expected behaviour:
Something.
--
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=46784
Bug ID: 46784
Summary: Broken wildcard expansion in FindFirstFile() and
FindNextFile()
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: vaporeon(a)vaporeon.io
Distribution: ---
On WINE, *.dll for example will be treated as *.dll* so any extension starting
with .dll will be found, this does not happen on Windows.
--
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=55914
Bug ID: 55914
Summary: PNGGauntlet doesn't install it's support programs
Product: Wine
Version: 8.20
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Use 64bit WINEPREFIX
Download from https://pnggauntlet.com/PNGGauntlet-3.1.2.exe
When you can enter the path, mark everything, enter C:\a and press ENTER. The
folder c:\a\support will be missing.
When you click the "Next button" with the mouse instead of pressing enter while
having the cursor in the edit box it seems to work.
Either it is that weird, or it's random.
--
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=32791
Bug #: 32791
Summary: Fail to receive stdout from .NET application.
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
Classification: Unclassified
Created attachment 43302
--> http://bugs.winehq.org/attachment.cgi?id=43302
Source and exe of Sample application.
Unzip the attached Program.
Run the CreateProcess.exe in the Debug directory.
I am expecting to see the "passed" message, but instead see "failed".
CreateProcess.exe create a process of MyAssembly.exe and is expecting to
receive data via the stdin/out. However this fails when using mono.
If you run MyAssembly.exe by itself, the text appears on the console.
--
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=31905
Bug #: 31905
Summary: Windows from virtual desktop are able to steal focus
from external windows
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: phoenix(a)mail.ru
Classification: Unclassified
I'm not sure if it is by design or not, but here's situation:
I launch dota 2 using following command:
WINEPREFIX=~/.wine_dota2/ ./wine explorer /desktop=dota2,1920x1080 "C:\Program
Files\Steam\Steam.exe" -applaunch 570
As steam app, it launches steam first, then launches dota within it. Process is
quite lengthy, so i switch focus to another window (e.g. browser) when virtual
desktop is initialized.
During steam load process, focus is stolen from browser. It remains as top-most
window, but 'inactive'. And, e.g. to continue typing something in the browser i
have to bring focus back. Few moments later (1-2), wine's window becomes
top-most, even if i click inactive browser window to restore focus.
During steam shutdown process, it steals focus again, but this time without
bringing virtual desktop to top.
Steam is just example: this occurs with numerous other apps, in some cases it
may happen even multiple times during launch process of some complex
application. For me as user, it is extremely annoying - i always thought that
virtual desktop is a way to avoid integration between wine and OS WM, with its
own tray and window management, and that virtual desktop should present itself
as normal OS window.
I'm using Debian Wheezy amd64, Gnome 3, NVIDIA binary driver, latest Wine from
git.
--
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=13637
Summary: MechCommander Gold: Two keypresses simultaneously are
not recognized
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquitsnake(a)gmx.net
Under Windows it was possible to scroll diagonally using two arrow keys at the
same time. This is not possible under Wine. The second keypress overrides the
first one.
e.g. I want to scroll into the upper left corner. I press left, it scrolls
left. I keep left pressed and press up -> It only scolls upwards.
Modifier keys like Ctrl are handled properly.
I don't think the game is based on dinput. At least, I don't get anything when
I enable the dinput debug channel.
--
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=21599
Summary: ACDSee Pro Photo Manager 3 : Not running
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor.demyanov(a)gmail.com
Created an attachment (id=26059)
--> (http://bugs.winehq.org/attachment.cgi?id=26059)
WINEDEBUG=+all
Application still exit.
Trial version http://downloads.acdsystems.com/en/acdseepro.exe
err:ole:CoUninitialize Mismatched CoUninitialize
Wine 1.1.37
--
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=54275
Bug ID: 54275
Summary: Obduction unable to render videos
Product: Wine
Version: 7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
Created attachment 73841
--> https://bugs.winehq.org/attachment.cgi?id=73841
Initial log Obsidian startup
When playing Obduction the videos are not rendered, and the screen appears to
be black during the intro video sequence.
The game works as expected when I install <a
href="https://github.com/z0z0z/mf-install">mf-install</a> libraries, which
tells me that the problem is with the video rendering.
In the logs (attached) these lines are found:
winegstreamer error: decodebin0: Your GStreamer installation is missing a
plug-in.
winegstreamer error: decodebin0: ../gst/playback/gstdecodebin2.c(4701):
gst_decode_bin_expose (): /GstBin:bin0/GstDecodeBin:decodebin0:
no suitable plugins found:
Couldn't set bcmdec0 to READYElement vaapidecodebin0 does not accept caps
--
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=37383
Bug ID: 37383
Summary: Office 2010 - Submenus invisible on GNOME 3.14
Product: Wine
Version: 1.7.28
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: anmeldung(a)r-system.de
## summary
Submenus are invisible.
If I was running GNOME 3.12 everything was fine with OFFICE 2010.
Now I've upgraded to GNOME 3.14.0 with:
i | gnome-shell | Paket | 3.14.0-308.1 | x86_64 | GNOME
i | xorg-x11 | Paket | 7.6_1-16.1 | noarch | repo-oss
with Vendor NVIDIA Driver NVIDIA-Linux-x86_64-340.46
sidenote:
this issue is not related to playonlinux only. It also appears in crossover. So
the question is, if it is a wine or gnome problem?
I can reproduce this on T500 Lenovo with Intel Chipset and on Desktop Computer
with NVIDIA GraphicsCard. So it seems not to be a display driver problem.
## actual behaviour
If I want to see a submenu in any Office 2010 application with either "right
click" or from "ribbon menu" they do not appear in any case. But if you call a
menu with richt click and imagine it was there and use the keyboard to select
an item from that invisible menu -the actions itself are working.
If I switch to another desktop environment the menus do appear.
See videolinks:
xfe -> [https://vid.me/AaY]
gnome 3.14 [https://vid.me/GU7]
## expected behaviour
see the menu in any case.
## additional info
I'm not sure where to put this issue. If this is correct here on pol or if this
should be posted to GNOME Bugtracker or it should be posted to the wine
bugtracker.
As this is not quite clear, i'll post it cross and reference each.
Any hints are welcome.
## confirmation
it would be very good if anybody could confirm this
## crossreference
*
http://www.playonlinux.com/en/topic-12497-Office_2010__Submenus_invisible_o…
--
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=41268
Bug ID: 41268
Summary: Songr 1 installation fails
Product: Wine
Version: 1.9.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 55568
--> https://bugs.winehq.org/attachment.cgi?id=55568
Console output during installation
Hello everyone,
I am having problems installing an application on wine 1.9.17 - Download URL is
at:
http://www.xamasoft.com/songr/
--
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=52208
Bug ID: 52208
Summary: WSCGetApplicationCategory does not exist
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: euloanty(a)live.com
Distribution: ---
wine malus
wine: Call from 7BC2B310 to unimplemented function
WS2_32.dll.WSCGetApplicationCategory, aborting
This software could not run.
https://getmalus.com/
--
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=54312
Bug ID: 54312
Summary: (FL Studio 21) ilbridge.exe doesn't work.
Product: Wine
Version: 6.0.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: djtech.developer(a)gmail.com
Distribution: ---
Hi, I was trying to use FL Studio 21 with wine on Ubuntu 22.04.
Everything works, execpt ilbridge.exe (the internal component that lets the
user run 32-bit plugin on 64-bit machines, located at `C:\Program
Files\Image-Line\FL Studio 21\System\Tools\Bridge\(32bit/64bit)\ilbridge.exe`)
I tried using the DVS plugins and the Tonmann DeEsser plugin and they both
worked on my Windows 11 virtual machine, but when I tried using them with wine,
FL would stop responding and `ilbridge.exe` would start using 100% of my CPU
without actually loading the plugin (I tried waiting for about 10 minutes, but
nothing).
I wanted to ask if there was a solution to this.
Thanks in advance.
--
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=25974
Summary: AutoCAD 2009 LT: acadlt.msi doesn't start installer
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=33110)
--> (http://bugs.winehq.org/attachment.cgi?id=33110)
WINEDEBUG=+msi on wine-1.3.12-272-g2d6b748
Steps to reproduce:
1) remove ~/.wine
2) wine start /x86/acadlt.msi
Behaviour:
Fatal error
"Installation ended prematurely because of an error"
Expected behaviour:
Installer's window.
Terminal output:
fixme:exec:SHELL_execute flags ignored: 0x00000100
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:msi:check_assembly_installed we should probably check the manifest file
here
err:msi:ITERATE_Actions Execution halted, action L"SetupWizard" returned 1603
--
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=15346
Summary: Winamp disappears when you move it's location
Product: Wine
Version: 1.1.5
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: homerhomer(a)gmail.com
Created an attachment (id=16178)
--> (http://bugs.winehq.org/attachment.cgi?id=16178)
DwmSetWindowAttribute error
Sort of a silly bug, basically once winamp is up and running, if you click on
the title bar and move it around winamp disappears. To make sure that the bug
happens make sure to swirl it around a couple of times. ( A Swirly if you will
)
Attached
I also noticed this when running winamp manually at startup. This may be
related. but then I move winamp and it disappears I don't get any more error
messages. So I'm not sure. I appreciate the good work
Thank you
I'm running Ubuntu 8.04, Wine 1.1.5, AMD64
--
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=55029
Bug ID: 55029
Summary: Wishlist: do reflink on CopyFileW for WINEPREFIX size
reduction
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: arthur200126(a)gmail.com
Distribution: ---
The current implementation of CopyFileW consists of a simple read-write loop.
This of course is completely fine in terms of Windows emulation, but one of the
consequences is huge file size inflation when setting up things like a
WINEPREFIX: on a wine 7.7-staging 64-bit install, each fresh prefix takes up
1.2 GiB: 619M of that is System32, and Syswow64 520M.
Doing reflink on the CopyFileW interface (which is what rundll32 uses to get
wine.ini set up) would greatly reduce the disk space burden associated with
setting up a fresh prefix. Removal of real disk IO would also make the process
a lot faster. Back in GNU land, the `cp` utility has been doing reflink by
default since June 2020.
--
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=36447
Bug ID: 36447
Summary: Test for exe date fails - Avanti
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: marawuti0(a)gmail.com
Avanti [http://www.avanti.arrozcru.org/] tests the ffmpeg.exe for a minimum
date. This fails under Wine but the identical downloaded files work fine under
Windoz.
I was using Avanti-078.7z (released 06-05-2014) [May 6] and
ffmpeg from http://ffmpeg.zeranoe.com/builds/ Version: git-4cdea92
(2014-05-07)
--
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=51386
Bug ID: 51386
Summary: ln.exe needs KERNEL32.dll.FindFirstFileNameW
Product: Wine
Version: 6.12
Hardware: x86-64
URL: https://web.archive.org/web/20210530064017/https://sch
inagl.priv.at/nt/ln/ln.html
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: awineuser(a)mail.com
Distribution: Ubuntu
ln.exe, a command line utility that works with hard links and symbolic links,
can crash during a "deloreon copy" (incremental backup). Specifically, the
command used was this:
ln --backup --unroll --1023safe --progress --delorean <source directory>
<previous backup dir> <new backup dir>
When it crashes, the terminal output says:
wine: Call from 7BC2980A to unimplemented function
KERNEL32.dll.FindFirstFileNameW, aborting
Sometimes the command completes without crashing, so apparently it doesn't
always call this function?
Note: the 32-bit version of ln.exe was used. I haven't tested the 64-bit
version.
--
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=55448
Bug ID: 55448
Summary: Motor4MX crashes due to HLSL syntax error 'unexpected
KW_DOUBLE'
Product: vkd3d
Version: 1.8
Hardware: x86-64
URL: http://www.gamepressure.com/download.asp?ID=21182
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Distribution: ---
0024:err:d3dcompiler:D3DCompile2 <anonymous>:114:1: E5000: syntax error,
unexpected KW_DOUBLE
--
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=16367
Summary: multimedia keys not available for wine applications
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marc.menghin(a)gmail.com
Some applications like Winamp use global hotkeys. Hotkeys work fine in Gnome
for me but do not work in Winamp (Can't set them in the Winamp config). Other
keys work fine there.
It looks like multimedia keys are not forwarded to a application running with
Wine.
Ubuntu 8.10, Wine 1.1.10 (Winamp 5.541)
--
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=53242
Bug ID: 53242
Summary: Bizhawk emulator memory leak
Product: Wine
Version: 7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: theoc284(a)gmail.com
Distribution: ---
When running Bizhawk, there is a very fast memory leak. It appears to happen
the most with RTC's modified variant found here: https://redscientist.com/rtc
To get the dependencies that are needed to run on WINE, follow this guide:
https://corrupt.wiki/rtcv/other-rtc-guides/running-rtcv-on-linux
The memory leak is very fast, at roughly 50-200MB/sec
If you want to test the bug, Steam has a collection of ROMs with an emulator
called the Sega Genesis and Mega Drive classics collection. If you own it, go
to your Steam directory, steamapps, common, Sega Classics, then you can find
the ROMs in "Uncompressed ROMs".
--
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=52839
Bug ID: 52839
Summary: Possible regression: Application menu bar entries
disappear when opening the corresponding menu
Product: Wine
Version: 7.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: scallegari(a)arces.unibo.it
Distribution: ---
Created attachment 72235
--> https://bugs.winehq.org/attachment.cgi?id=72235
Screenshot showing the issue
With recent updates to wine, I have noticed that in the LTSpice application the
menu bar entries disappear when opening the corresponding menu.
The problem is illustrated in the attached screenshot where the "Edit" menu is
opened and the "Edit" menu bar entry becomes invisible in the process.
I do not know if the problem is specific to LTSpice or if it happens in other
applications as well. Nonetheless, I think that correcting the issue in LTSpice
would be both useful and important. In education LTSpice is probably (one of)
the most used circuit simulator with an integrated schematic capture and
waveform viewer that happens to be both unrestricted and free (although as in
beer only). Furthermore, its documentation actively advertises wine as the way
to use it under Linux.
--
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=53559
Bug ID: 53559
Summary: Cult of the Lamb leaks memory due to mfplat
unsupported service
Product: Wine
Version: 7.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mfplat
Assignee: wine-bugs(a)winehq.org
Reporter: joseskvolpe(a)gmail.com
Distribution: ---
Created attachment 72923
--> https://bugs.winehq.org/attachment.cgi?id=72923
Log output
After the developer opening, the game tries to reproduce another video. You can
hear the sound playing, but the video fails to load. The game seems to try to
load the video again and finds itself in a failing loop, leaking memory.
While trying to reproduce the intro video, the game spams to the log:
>fixme:mfplat:media_source_get_service_GetService Unsupported service {dd0ac3d8-40e3-4128-ac48-c0add067b714}.
This issue (memory leak) doesn't occurs on Proton, but the intro video still
can't be reproduced.
Procedure:
1 - Open up the game
2 - Wait until the first intro (Massive Monster opening) ends
3 - Watch for the system monitor that RAM is leaking. Kill the application or
else it'll freeze your system
Game is paid and can be downloaded from Steam or GOG. Their official page:
https://www.cultofthelamb.com/
--
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=53419
Bug ID: 53419
Summary: HeapReAlloc is slower than HeapFree, HeapAlloc +
memcpy combos
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: euloanty(a)live.com
Distribution: ---
This shouldn't happen.
HeapReAlloc
cqwrteur@HOME-SERVER:~/Libraries/fast_io/benchmark/0011.containers/vector/0002.multi_push_back$
wine ./vector.exe
fast_io::vectors:5.3254482s
HeapAlloc combos
cqwrteur@HOME-SERVER:~/Libraries/fast_io/benchmark/0011.containers/vector/0002.multi_push_back$
wine ./vector.exe
fast_io::vectors:3.2410441s
On Windows:
HeapReAlloc
D:\hg\fast_io\benchmark\0011.containers\vector\0002.multi_push_back>vector
fast_io::vectors:2.1215775s
HeapAlloc combos
D:\hg\fast_io\benchmark\0011.containers\vector\0002.multi_push_back>vector
fast_io::vectors:2.1650619s
--
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=53727
Bug ID: 53727
Summary: TreeView doesn't check the return value of
TREEVIEW_SendExpanding
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: katayama.hirofumi.mz(a)gmail.com
Distribution: ---
comctl32!TREEVIEW_Collapse function has a bug.
That function didn't check the return value of TREEVIEW_SendExpanding.
So, I can't forbid collapsing on a treeview control.
--
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=55347
Bug ID: 55347
Summary: widl generated winrt headers fails to compile with C++
code
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: nathbappai(a)gmail.com
Distribution: ---
Created attachment 74933
--> https://bugs.winehq.org/attachment.cgi?id=74933
minimal sample code
If winrt headers are used with C++ code, it fails to compile with both g++ and
clang++. In this case, the error comes from data types of virtual function
parameters. Replacing the data types with fully qualified name fixes the
compiler errors.
In the attachment section, a minimal sample code is added. That code does not
do anything, it's just for compilation testing purpose. It compiles fine with
MSVC/Visual Studio. Firefox is one of the project which is affected by this
issue. Currently, a patch is used with mingw-w64
https://hg.mozilla.org/mozilla-central/file/tip/taskcluster/scripts/misc/mi…
--
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=10648
Summary: Async WSASend does not send all bytes.
Product: Wine
Version: 0.9.5.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marius(a)scimore.com
On Server sending 1500 bytes with non-blocked WSASend and 2 WSABUFFERS will
transfer only 1452 bytes. On client WSARecv called again will be blocked and
does not receive the the remaining bytes.
The completion port receives event on transfered 1452 bytes, and there is no
more followed events on transfered the last 8 bytes.
OS: Ubuntu 7.10
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55936
Bug ID: 55936
Summary: Sven Bømwøllen series: Several games crash after
loading screen
Product: Wine
Version: 8.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nikolas.gur(a)stud.uni-due.de
Distribution: ArchLinux
Created attachment 75501
--> https://bugs.winehq.org/attachment.cgi?id=75501
wine output for starting the games
At least the second, third and forth entry from the Sven Bømwøllen series
(https://www.mobygames.com/group/3577/sven-b%C3%B8mw%C3%B8llen-games/) called
Sven Zwø, Sven XXX and Sven 004 crash after showing briefly the loading screen
(the main menu is not entered, and no GUI error messages are shown). The wine
log messages appear to be similar in all three cases and are uploaded in the
attachments. The first game in the series does not have any problems and is
perfectly playable in wine.
The issue occurs both with demo and full CD versions of the games. The demo for
Sven 4 can be downloaded from here, for the maintainers to confirm the bug:
https://www.pcwelt.de/article/1143476/sven-004-xs.html (direct link:
https://download.pcwelt.de/area_release/files/BB/C1/BBC1C93E4C2BA5EC30CBEBA…)
sha1sum Setup_Sven004-XS_BTO_v104.exe
99105e743bbd60889bf476d357e2dd047ed0b0dd
Since the error mentions something about DirectDraw, I tried using
https://github.com/FunkyFr3sh/cnc-ddraw. I also tried setting WinXP
compatibilty, emulating a virtual desktop and tried both Wine 32 and 64
prefixes, but none of this worked in any way.
--
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=51202
Bug ID: 51202
Summary: Chessbase 11 Incorrect window brought to front on
search termination
Product: Wine
Version: 6.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dav75uk(a)yahoo.co.uk
Distribution: ---
In Chessbase 11, when search is terminated (manually or by completion) a
different ChessBase window (main one?) is brought to the front rather than
refreshing the current one.
This has always been an issue in wine.
--
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=38889
Bug ID: 38889
Summary: Microsoft Orca unable to create transform file
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: crosstieger(a)gmail.com
Distribution: ---
Created attachment 51827
--> https://bugs.winehq.org/attachment.cgi?id=51827
terminal output of the error
Microsoft Orca is unable to modify cells within an .msi file. Modifying a cell
returns the following error message:
Could not change this cell to '<Value>'. The data was rejected by the database.
It may be out of the valid range or formatted incorrectly.
In the terminal you can see the error message:
fixme:msidb:TABLE_modify 0x7a5098 4 0x7a5e40 - mode not implemented
The value 0x7a5098 and 0x7a5e40 changes depending on the cell you edit.
If you click on 'Transform - Generate Transform' and want to save your .MST
file, it returns the error:
Orca was unable to generate the transform. (MSI Error 120)
On the terminal:
fixme:msi:MsiDatabaseGenerateTransformW 3 2
L"Z:\\home\\techniktriberg\\Downloads\Untitled.mst" 0 0
The path depends on where you want to save the file.
Full terminal output as an attachment.
----
Installation process
----
run: winetricks dotnet40
run: winetricks mfc42
run: msiexec -i Orca.Msi
--
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=12532
Summary: Autodesk TrueView fails to install
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://usa.autodesk.com/adsk/servlet/index?id=6703438&si
teID=123112
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download, Installer
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi, a user submitted this new app into appdb with garbage test results, so i
gave it a try as well. That user reported a problem that the disk was full, but
i can't reproduce that, it fails differently here.
To run into this bug you need Alex Villacis' patch here:
http://article.gmane.org/gmane.comp.emulators.wine.patches/49916
hopefully that patch will make it into git monday.
after applying that patch the intaller failed with a message 'Call not
implemented'
The problem seems to be:
fixme:MsiDatabaseGenerateTransformW
By just returning ERROR_SUCCESS, it ran into two other unimplemnted functions:
MsiQueryFeatureStateFromDescriptorA and MsiCreateTransformSummaryInfoW
By stubbing these out with ERROR_SUCCESS the installer claimed to be
successfull (but i guess that's doubtful).
Anyway , this all shows that these three functions need to be implemented to
get this installer finish, and that's where I created this bug for.
--
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=51732
Bug ID: 51732
Summary: TradeStation Installer: Unable to register servers.
Setup will now abort.
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: christopher.m.penalver(a)gmail.com
Distribution: Ubuntu
Created attachment 70617
--> https://bugs.winehq.org/attachment.cgi?id=70617
WINEDEBUG=+relay wine 'TradeStation Setup.exe' 2>&1
Hello, attempting to install TradeStation from
https://update.tradestation.com/Installs/TradeStation/10.00.02.925/TradeSta…
with wine 6.0.1 causes a window to pop up noting precisely:
Unable to register servers. Setup will now abort.
In other words, the install fails and the user is left scratching their head
about why it doesn't work.
--
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=56030
Bug ID: 56030
Summary: Left 4 Dead 2 Version 2.2.0.0 Keyboard / Mouse inputs
not properly recognized.
Product: Wine
Version: 9.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hibbsncc1701(a)gmail.com
Distribution: ---
With Wine-9.0-rc1 Left 4 Dead 2 Version 2.2.0.0 does not properly recognize
keyboard / mouse inputs.
It seems that in some cases key state changes are ignored. I.e. The key "gets
stuck" in the last read state. Causing behaviors like the player not moving
despite any of the WSAD keys being held down, continuing to move in a single
direction, or the player constantly firing / reloading / switching a weapon
(similar to a turbo controller) despite the mouse having only been clicked /
scrolled once (and the mouse not having a turbo mode). This seems to happen
about once every ~15-20 seconds. Making the game unplayable.
It also seems that the only way for the key to be "unstuck" is to change it's
state while the game is getting input. For example, If the player is stuck
firing a weapon, the player needs to manually fire the weapon again (Mouse1 by
default) and release the key before the game ignores input again to make the
weapon stop firing. Simply doing nothing will *not* fix the key state as far as
the game is concerned.
It should be noted that mouse movement does not seem to be affected by this. As
the player can still use mouse look normally despite the above behaviors.
--
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=37263
Bug ID: 37263
Summary: World Of Warcraft: stuck keys
Product: Wine
Version: 1.7.25
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: brian(a)infinityplusb.com
I'm running WoW 5.4.8.
At random intervals keys appear "stuck", even though they are not physically
stuck. I can really only notice the ones where the "stuck key" is for moving
(e,d,s,f) cause the character keeps strafing or running. Sometimes repressing
these keys causes the key to unstick, but that's maybe a 20-25% success rate.
Maybe less.
I'm new to this bug-filing thing so I'll try replicate the issue.
I'm not sure this issue is specific to Warcraft, but it's the only game I play.
There are other google tracks related to this, but they seem quite old
(pre-2008).
--
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=55849
Bug ID: 55849
Summary: Wine sends WM_(SYS)KEYUP event twice for Alt (and
such) key if Fcitx/iBus daemon is running
Product: Wine
Version: 8.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: emuser20140816(a)gmail.com
Distribution: ---
Created attachment 75355
--> https://bugs.winehq.org/attachment.cgi?id=75355
A test application
I've attached an example application that reproduces this issue
(win32-syskey-test.exe).
The expected behavior of this application is to toggle background color
(red/green) by pressing Alt (VK_MENU) key.
This application behaves correctly on Windows, and behaves correctly on Wine
too but only when the Fcitx/iBus daemon (with XIM integration enabled) is *not*
running:
WM_SYSKEYDOWN: wParam: 18, lParam: 0x20380001
WM_SYSKEYUP: wParam: 18, lParam: 0xc0380001
However, the application behaves differently on Wine if Fcitx/iBus daemon is
running:
WM_SYSKEYDOWN: wParam: 18, lParam: 0x20380001
WM_SYSKEYUP: wParam: 18, lParam: 0xc0380001
WM_KEYUP: wParam: 18, lParam: 0xc0380001
and the toggle switch no longer works.
(This affects every application that takes a similar approach, i.e. an
application that uses Alt, Ctrl or Shift key to toggle something on
WM_(SYS)KEYUP event.)
The workaround for this issue is either quit the Fcitx/iBus daemon (which makes
IME unusable for this application) or revert the commit
https://gitlab.winehq.org/wine/wine/-/commit/a4a5a2ec121eeb2a7cd4ffbb5ba7b2…
(which requires complete rebuild from wine source tree).
--
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=53994
Bug ID: 53994
Summary: Internet Explorer 11: Install fails due to lack of
DISM.exe implementation
Product: Wine
Version: 7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: masterbuilder102(a)gmail.com
Distribution: ---
Created attachment 73579
--> https://bugs.winehq.org/attachment.cgi?id=73579
Log of IE11. (Contains two duplicate install attempts).
Info:
Debian 11, 32 bit wine prefix.
Workarounds: Need to use native version of inseng.dll
Download Link for IE11 32 bit:
https://web.archive.org/web/20210701100535/http://download.microsoft.com/do…
When installing IE11, it checks for a few files
d3d11.dll
api-ms-win-downlevel-user32-l1-1-0.dll
Ntoskrnl.exe
api-ms-win-security-base-l1-1-0.dll
conhost.exe
segoeui.ttf
taskhost.exe
tcpip.sys
tdh.dll
Wine lacks taskhost.exe, tcpip.sys, tdh.dll and segoeui.ttf, manually copying
these files over will cause the installer to not manually install it, except
for segoeui.ttf which fails regardless if the file is present.
In my log I have all these files copied over already which is why they all say
(True).
Based on Bug 43509 I believe the issue is that the wine implementation of
dism.exe is incomplete, but I also think it is possible to get IE11 working if
the segoeui.ttf check can be done.
--
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=24684
Summary: SMP problems with Source games
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: pitlicek(a)gmail.com
Some games with latest Source engine (Alien Swarm, Left for Dead 2) has
sometimes grayed out "Enable multicore rendering" in options menu. But when
It's not grayed out, and I enable it, it works like it's supposed to, giving me
notable fps boost and using both my CPU cores.
But I'm using virtual desktop, to still be able to communicate with my friend
using IM. But sometimes, when I leave virtual desktop and want to return back,
the VD is not redrawing. I can still hear music, game sounds, even blindly open
in-game console nad write quit to exit the game properly. This is not happening
if multicore is disabled in game.
--
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=54249
Bug ID: 54249
Summary: Temple of Elemental Evil Demo Backtrace
Product: Wine
Version: 8.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 73802
--> https://bugs.winehq.org/attachment.cgi?id=73802
Backtrace 8.0-rc2 (Slackware 15.0)
Hello everyone,
I was revisiting bug 9304 and did a fresh install from:
https://www.fileplanet.com/archive/p-12410/The-Temple-of-Elemental-Evil-Demo
sha256sum ToEE_Demo.exe
827a280487c3615ae4be0185daefbb63098a93c71f6a21409446040969e8c6a9 ToEE_Demo.exe
I ran into the problem that now a backtrace is thrown in 8.0-rc2
--
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=43461
Bug ID: 43461
Summary: NoLimits2 crashes on startup
Product: Wine
Version: 2.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: alt.stephan(a)web.de
Distribution: ---
Created attachment 58835
--> https://bugs.winehq.org/attachment.cgi?id=58835
Wine console messages
While initializing, the program quits with a fatal error: The application
failed with: D3DXAssembleShader return with an unexpected error. (see
crash.png)
Wine console log (crash.log) attached below, as well as the wine "crash
detected" log (err_report.log).
I tried with both UseGLSL enabled and disabled.
--
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=23150
Summary: Mass Effect 2: No audio in menus/videos/game
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=28791)
--> (http://bugs.winehq.org/attachment.cgi?id=28791)
terminal output
The only place you can get sound is in the launcher. Everything else is silent.
I have OpenAL installed, and ~/.alsoftrc contains:
austin@midna:~$ cat .alsoftrc
drivers = alsa
I've tried disabling mmdevapi in winecfg, changing windows version to vista/7,
using hardware emulation, using OSS instead of ALSA, etc., but have yet to get
any sound out.
The AppDB suggests installing foobar2000, then:
"Use foobar2000 to set the playback device and then select the Direct Analog
version in MassEffect2Config.exe."
though in the configuration tool's audio tab, the sound devices list is empty,
for me (with/without foobar2000).
Terminal output attached, though there's nothing obvious there.
--
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=29947
Bug #: 29947
Summary: Option to set virtual desktops to the current
resolution
Product: Wine
Version: 1.4-rc4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
At default the option "Emulate a virtual desktop" is set to 800x600 in winecfg.
What about an option that sets the desktop size for virtual desktops
automatically to the resolution of the system?
--
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=53574
Bug ID: 53574
Summary: MSYS2 "pacman -Sy" fails key lookup
Product: Wine
Version: 7.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: joel(a)airwebreathe.org.uk
Distribution: ---
Created attachment 72951
--> https://bugs.winehq.org/attachment.cgi?id=72951
Log of console interaction
With a fresh Msys2 installation, pacman fails to run, because it keeps
producing "key lookup failed" errors. The user is prompted to with the
following message:
error: mingw32: key "5F944B027F7FE2091985AA2EFA11531AA0AA7F57" is unknown
:: Import PGP key 5F944B027F7FE2091985AA2EFA11531AA0AA7F57? [Y/n] Y
However, if the user selects "yes", pacman simply asks the same question again
after a short delay, in an infinite loop.
--
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=18846
Summary: Anti-Grain Geometry GDI Demo does not render
Product: Wine
Version: 1.1.23
Platform: PC
URL: http://www.antigrain.com/demo/GDI_graph_test.zip
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
This is a follow up to bug 10981. The Anti-Grain Geometry GDI Demo runs now,
but GdipDrawImagePointRectI is a stub so Wine users don't see the pretty
pictures.
http://www.antigrain.com/demo/graph_test.gif
--
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=56103
Bug ID: 56103
Summary: PropertySheet - CTRL+TAB and CTRL+SHIFT+TAB not
processed
Product: Wine
Version: unspecified
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: ---
PropertySheet - CTRL+TAB and CTRL+SHIFT+TAB not processed
They should allow to change active tab but they don't.
Cause : in do_loop function, if(!IsDialogMessageW(hwnd, &msg)) should be
replaced by if (!PROPSHEET_IsDialogMessage(hwnd, &msg)) as
PROPSHEET_IsDialogMessage correctly implement TAB management for
propertysheets.
--
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=26813
Summary: Problems extracting python-3.1.3.amd64.msi under
wine's msiexec (works on WinXP)
Product: Wine
Version: 1.3.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: conathan(a)gmail.com
I was attempting to extract the contents of python-3.1.3.amd64.msi
under wine 1.3.17 32bit, using the following command:
wget http://python.org/ftp/python/3.1.3/python-3.1.3.amd64.msi
msiexec /a python-3.1.3.amd64.msi /qb TARGETDIR=out #tried c:\\out as well
and it exits immediately with the following (which I believe is a red
herring, 32bit also says this)
fixme:storage:create_storagefile Storage share mode not implemented.
I tried this out on windows XP 32bit, and it extracted the files just fine.
the 32bit python extracted just fine
(http://python.org/ftp/python/3.1.3/python-3.1.3.msi)
(Note: Not trying to install it, just extract the files within for use
within a bash script)
--
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=55322
Bug ID: 55322
Summary: SBCL 2.3.4: unattended msiexec in administrator mode
fails
Product: Wine
Version: 8.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: awkravchuk(a)gmail.com
Distribution: ---
Created attachment 74916
--> https://bugs.winehq.org/attachment.cgi?id=74916
wine output
I'm trying to use SBCL installer from here
https://github.com/roswell/sbcl_bin/releases/download/2.3.4/sbcl-2.3.4-x86-…
in untattended mode:
```
$ wine msiexec /a sbcl-2.3.4-x86-64-windows-binary.msi /qn /lv log.txt &>
wine.log; echo $?
90
```
When using `/i` switch, installation seems to succeed.
Log files are attached below.
--
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=42601
Bug ID: 42601
Summary: Foxit Reader Crashes after running for an extended
period of time
Product: Wine
Version: 2.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: seanaubin(a)gmail.com
Distribution: ---
Created attachment 57546
--> https://bugs.winehq.org/attachment.cgi?id=57546
Backtrace of the crash
After running Foxit Reader for an extended period of time (30 minutes) the
reader crashes. Before crashing, the graphics fail to render and are only
updated if the mouse click on them. However, the PDF itself is never updated.
Foxit Reader Version: 8.2.1.6871
--
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=18154
Summary: cmd.exe: failure to handle file extension association
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P4
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: swelef(a)post.sk
cmd.exe doesn't handle extension association.
Test case:
Install ActivePerl, create a dummy perl script test.pl and run
wine cmd /c test.pl
cmd.exe will try to run test.pl as Unix binary
trace:process:CreateProcessW starting L"C:\\\\test.pl" as Unix binary
and (probably) fail instead of running Perl.exe as the Windows XP command
cmd /c perl.pl
Source code analysis:
The function programs/cmd/wcmdmain.c:WCMD_run_program calls FindExecutable
but mostly ignores the result. This looks like an unfinished work.
Remark:
Theoretically, some program could rely on the association. As long as such
program is not known, this is a low priority issue. Users should prefer
the explicit command
wine perl test.pl
(or "wine start /W test.pl" if they want a new console).
--
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=49244
Bug ID: 49244
Summary: GdipDeleteFontFamily is declared, but does nothing
Product: Wine
Version: 5.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: mikrutrafal54(a)gmail.com
Distribution: ---
Function just check if FontFamily is null and return value without doing
anything.
https://github.com/wine-mirror/wine/blame/056c9df854817670dc4fb9c095cba29c9…
--
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=55964
Bug ID: 55964
Summary: wine-mono: Dlls include reference to filenames
different to the files in
wine-mono-8.1.0-dbgsym.tar.xz
Product: Wine
Version: 8.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
I was trying get a backtrace from #55736 with debug symbols.
Therefore I tried using a windows build of LLDB.
Unfortunately it took me some time to figure out that the PDB file name
embedded in the dll files did not match the filename
in the archive wine-mono-8.1.0-dbgsym.tar.xz.
After renaming to the name libmonosgen-2.0.pdb it got found by LLDB.
Maybe either the build can be modified to build with the expected file names
in the first place, or add a short readme to the archive file describing
this issue?
$ strings windows/mono/mono-2.0/bin/libmono-2.0-x86*.dll | grep -i
"mono.*\.pdb"
/vagrant/build/mono-x86_64/mono/mini/.libs/libmonosgen-2.0.pdb
/vagrant/build/mono-x86/mono/mini/.libs/libmonosgen-2.0.pdb
--
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=54212
Bug ID: 54212
Summary: Nexus ECU Tuning Software for HALTECH ECU
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: nbehnken(a)gmail.com
Distribution: ---
Created attachment 73755
--> https://bugs.winehq.org/attachment.cgi?id=73755
Startup Trace before error message is Displayed about Windows Installer
The Nexus software is a DOTNET application that controls the Haltech ECU for
automotive tuning.
ERROR from APP
"Nexus Software cannot be installed on systems with Windows Installer version
lower than 5.0."
Download Location
https://www.haltech.com/wp-admin/admin-ajax.php?action=ht_latest_software
wine NexusInstallPackageWeb_v1.40.2.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=55343
Bug ID: 55343
Summary: Game Constantine Doesn't Work
Product: Wine
Version: 8.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jon9097(a)gmail.com
Distribution: ---
Constantine's game doesn't work.
I've been trying to run it for years and it's all to no avail. Either it starts
but doesn't respond to any key, or it doesn't start at all.
Here is the link to the game: https://archive.org/details/constantine_202007
--
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=55410
Bug ID: 55410
Summary: msi:package fails on w8adm
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
msi:package fails on w8adm:
package.c:8054: Test failed: Expected ERROR_SUCCESS, got 1605
package.c:8055: Test failed: Expected a valid product handle
package.c:8099: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8100: Test failed: Expected "", got "apple"
package.c:8101: Test failed: Expected 0, got 260
package.c:8106: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8107: Test failed: Expected "", got L"apple"
package.c:8108: Test failed: Expected 0, got 260
package.c:8114: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8115: Test failed: Expected "{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}",
got "apple"
package.c:8117: Test failed: Expected 38, got 260
package.c:8123: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8124: Test failed: Expected
L"{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}", got L"apple"
package.c:8126: Test failed: Expected 38, got 260
package.c:8132: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8133: Test failed: Expected 38, got 260
package.c:8138: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8139: Test failed: Expected 38, got 260
package.c:8149: Test failed: Expected 38, got 260
package.c:8158: Test failed: Expected 38, got 260
package.c:8165: Test failed: Expected ERROR_MORE_DATA, got 6
package.c:8166: Test failed: Expected first 3 chars of
"{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}", got "apple"
package.c:8168: Test failed: Expected 38, got 4
package.c:8174: Test failed: Expected ERROR_MORE_DATA, got 6
package.c:8175: Test failed: Expected first 3 chars of
L"{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}", got L"apple"
package.c:8177: Test failed: Expected 38, got 4
package.c:8184: Test failed: Expected ERROR_MORE_DATA, got 6
package.c:8185: Test failed: Expected first 37 chars of
"{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}", got "apple"
package.c:8193: Test failed: Expected ERROR_MORE_DATA, got 6
package.c:8194: Test failed: Expected first 37 chars of
L"{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}", got L"apple"
package.c:8203: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8204: Test failed: Expected "{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}",
got "apple"
package.c:8206: Test failed: Expected 38, got 39
package.c:8212: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8213: Test failed: Expected
L"{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}", got L"apple"
package.c:8215: Test failed: Expected 38, got 39
package.c:8222: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8223: Test failed: Expected "", got "apple"
package.c:8224: Test failed: Expected 0, got 260
package.c:8229: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8230: Test failed: Expected "", got L"apple"
package.c:8231: Test failed: Expected 0, got 260
package.c:8234: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8240: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8241: Test failed: Expected "", got "apple"
package.c:8242: Test failed: Expected 0, got 260
package.c:8247: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8248: Test failed: Expected "", got L"apple"
package.c:8249: Test failed: Expected 0, got 260
package.c:8252: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8258: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8259: Test failed: Expected "{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}",
got "apple"
package.c:8261: Test failed: Expected 38, got 260
package.c:8267: Test failed: Expected ERROR_SUCCESS, got 6
package.c:8268: Test failed: Expected
L"{1DF3BC35-22CE-4AE5-8CB6-CD8312577038}", got L"apple"
package.c:8270: Test failed: Expected 38, got 260
See https://test.winehq.org/data/patterns.html#msi:package
These failures started on 2023-07-27 which is when the w8 VM's memory was
increased to 4GB, and older WineTest builds still produce the failures. So the
2023-07-27 VM change is the cause of these failures but it's not clear why.
Also note that, unlike msi:msi and msi:source, msi:package fails even if run on
its own (see bug 55396).
--
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=53154
Bug ID: 53154
Summary: Crash of EpicOnlineServicesUserHelper.exe" --setup
Product: Wine
Version: 7.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: me(a)janryll.de
Distribution: ---
Created attachment 72586
--> https://bugs.winehq.org/attachment.cgi?id=72586
Unhandled exception: page fault on read access.
1. Start "Epic Games Lauchner"
2. Goto Settings
3. Click on Install Epic Online Services
4. Crash after some seconds
Epic Games Launcher displays Error EOS-ERR-1603.
--
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=55804
Bug ID: 55804
Summary: DICOM Viewer (eFilm Workstation 2.x/3.x) aborts
because libxml2 doesn't like "ISO8859-1" (builtin
msxml6).
Product: Wine
Version: 8.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
Created attachment 75294
--> https://bugs.winehq.org/attachment.cgi?id=75294
xml2: Allow encoding="ISO8859-1".
Bug #13340 is for the same application but with native msxml6.
This bug is about the nearly same error message when using builtin msxml6:
> XML Parser Error
> LoadXMLFile 'C:\efilmlite_dvd\eFilmLite\Profiles
> \Default\ToolBarMiniCfg.xml':
> Error:
> Code = 0x80004005
> Source = Line: 0; Char: 0
> Error Description = error
But this seems to be caused by the bundled libxml2 not accepting
as encoding "ISO8859-1", just "ISO-8859-1".
--
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=43472
Bug ID: 43472
Summary: R-Link 2 Toolbox crashes on startup
Product: Wine
Version: 2.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sb(a)monkey-mind.net
Distribution: ---
Created attachment 58852
--> https://bugs.winehq.org/attachment.cgi?id=58852
R-Link 2 Toolbox Backtrace
The Renault R-Link 2 Toolbox application crashes upon launch.
The installer manages to install just fine, but when trying to launch the
actual application, the crash dialog pops up. See attached backtrace.
The shell window from which the application was started says:
wine: Unhandled page fault on execute access to 0x00000000 at address
(nil) (thread 0009), starting debugger...
Tried with emulation set to Windows 10, Windows 7, Windows Server 2003; all
failed with the same error. SELinux is in permissive mode.
--
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=56102
Bug ID: 56102
Summary: Comdlg32/Color - Out of bound value is used
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
- Set HSV to max value by typing 999
- Automatically sets to 239, 240, 240
Scenario 1 :
- Click on the 2D spectrum
- Lum gets to 999 => should stay to 240
Scenario 2 :
- Click on right ribbon
- H & S gets to 999 and ribbon gets crazy
> Faulty code is CC_CheckDigitsInEdit where the raw value is returned even when exceeding max value
if (value > maxval) /* build a new string */
{
sprintf(buffer, "%d", maxval);
result = 2;
}
should be replaced by
if (value > maxval) /* build a new string */
{
value = maxval;
sprintf(buffer, "%d", maxval);
result = 2;
}
--
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=50365
Bug ID: 50365
Summary: Starcraft Remastered black screen on launch or window
only mode
Product: Wine-staging
Version: 6.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: darinsmiller(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
2 display issues appeared a few releases prior to the 6.0 rc's and are still
present:
1st issue: Starcraft Remaster fails to set proper video mode by launching with
black screen. Starcraft cursor is visible and underlying menu items react with
hover sound, but screen remains black even after clicking on invisible menu
items. Alt-tabbing from/to the game refreshes the screen to normal display
mode.
2nd issue: Running dual monitors: primary 4K, secondary 2K scaled to 4K.
Starcraft Rem. launches in window mode on the 4K screen even though settings
specify full-screen mode. Alt-enter fails to scale to full screen. If the
secondary 2K monitor is set to native (non-scaled resolution) before the game
is launched, the game launches to the black fullscreen mode on the primary
display as described above.
Lutris with wine version 5.7.10-x86_64 correctly runs Starcraft Remastered on
the primarly 4K display.
Operating System: Kubuntu 20.10
KDE Plasma Version: 5.19.5
KDE Frameworks Version: 5.74.0
Qt Version: 5.14.2
Kernel Version: 5.8.0-33-generic
OS Type: 64-bit
Processors: 8 × Intel® Core™ i7-4771 CPU @ 3.50GHz
Memory: 15.6 GiB of RAM
Graphics Processor: GeForce GTX 1080/PCIe/SSE2
NVidia Driver: 455.45.01
wine version: wine-6.0-rc3 (Staging)
--
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=52687
Bug ID: 52687
Summary: OpenKiosk installer not working
Product: Wine
Version: 7.4
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Running "wine msiexec /i OpenKiosk91.7.0-2022-02-22-x86_64.msi" I only get:
> 00d4:fixme:file:NtLockFile I/O completion on lock not implemented yet
> 00d4:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
> 00d4:err:msi:read_properties_from_data propid 10 has unknown type
> 00d4:err:msi:read_properties_from_data propid 10 has unknown type
It seems to install for another user though, see bug 52685.
It also works on windows, so probably not a corrupted file.
MD5Sum
bd5c917f09bdc35f79a2156a00459531 OpenKiosk91.7.0-2022-02-22-x86_64.msi
--
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=48404
Bug ID: 48404
Summary: Can't close free game notifications from Epic Games
Store
Product: Wine
Version: 5.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
Distribution: ---
How to reproduce:
1) Install Epic Games Store (which can be done easily by using a version of
Lutris installer that doesn't install any native components
https://lutris.net/games/epic-games-store-untainted/installer/edit)
2) Launch it with -opengl -SkipBuildPatchPrereq flags
2) Get a notification about current free game giveaway
3) Click on [X] (close) button
Instead of being closed, the notification instead gets recreated, and after
that, it can't be closed without use of tools like xkill.
--
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=11770
Summary: mapi32.dll.so does not support attachments for sending
mail
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Mark_Neyhart(a)legis.state.ak.us
Applications like Microsoft Excel 2002 and Word 2002 have a File...Send To
function which should bring up an email client with the current file attached.
The DLL override mapi32.dll.so does not support attachments. The sendmail.c
source for this dll has a FIXME which outputs "Ignoring attachments".
--
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=45289
Bug ID: 45289
Summary: Wine Crashes Some Programs If Compiled with AVX
Support
Product: Wine
Version: 3.9
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ben(a)xnode.org
Distribution: ---
This is a really specific bug and I'm not sure what other programs/games it
affects. I assume there are more, but this is the only example that I've
reliably run into at the moment:
== To Recreate
Run Cemu under a 64bit Prefix. Start Mario Kart 8. After Mario announces the
game, it will crash.
== Workaround
Compiling Wine without AVX support (i.e. adding the -mno-avx C/XXFLAG) negates
the issue.
People won't see this when using distro packages because they'll be compiled
using something like -march=x86-64 which doesn't enable any of the AVX options
(as they aren't available in all processors). If you compile it yourself using
something like -march=native then GCC will enable the AVX functions which in
turn triggers this issue.
I saw this behaviour on both my old i7-5775C and the i7-8700K which has since
replaced it.
In case it's relevant, it looks like this problem may have not existed before
Wine 3.0 because I've tracked down an old post of my own wherein I stated
(regarding the Mario Kart 8 crash on Cemu):
=======================
Tried on a brand new Wine 3.2 prefix, same issue (Segmentation fault after the
splash screen). Works fine with Staging 2.21.
More specifically:
002c:fixme:seh:RtlCaptureStackBackTrace (0, 40, 0x25152ba0, (nil)) stub!
002c:err:seh:call_stack_handlers invalid frame 25153728 (0x116a0000-0x117a0000)
002c:err:seh:NtRaiseException Exception frame is not in stack limits => unable
to dispatch exception
EDIT: The issue was vcrun2015. Wine-staging didn't need it. Standard wine does,
for some reason.
=======================
Not sure if the vcrun2015 issue was a red-herring as that's installed now but
no-longer fixes the issue.
--
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=43481
Bug ID: 43481
Summary: GeoForms Demo needs "vs_2_a" compilation target
Product: Wine
Version: 2.14
Hardware: x86-64
URL: http://www.nvidia.com/coolstuff/demos#!/geoforms
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
fixme:d3dcompiler:compile_shader Compilation target "vs_2_a" not yet supported
--
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=49407
Bug ID: 49407
Summary: Display device initialization fails due to
vkGetRandROutputDisplayEXT() causing X exception on
dual Nvidia / Intel GPU configuration (regression).
Product: Wine
Version: 5.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: pgofman(a)codeweavers.com
Distribution: ---
Wine can't create any window on the mentioned configuration after
145cfce1135a7e59cc4c89cd05b572403f188161:
> winex11.drv: Add a Vulkan UUID property for GPUs.
> A Vulkan UUID property is used to find the corresponding GPU in SetupAPI.
> Signed-off-by: Zhiyi Zhang <zzhang(a)codeweavers.com>
> Signed-off-by: Liam Middlebrook <lmiddlebrook(a)nvidia.com>
> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
$ xrandr --listproviders
Providers: number : 2
Provider 0: id: 0x1b8 cap: 0x1, Source Output crtcs: 4 outputs: 4 associated
providers: 1 name:NVIDIA-0
Provider 1: id: 0x1e9 cap: 0xf, Source Output, Sink Output, Source Offload,
Sink Offload crtcs: 3 outputs: 4 associated providers: 1 name:modesetting
The exception happens when vkGetRandROutputDisplayEXT is called with Nvidia
device for Provider 1 (modesetting):
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 155 (NV-GLX)
Minor opcode of failed request: 31 ()
Serial number of failed request: 147
Current serial number in output stream: 147
This looks like a bug between between vulkan implementation and xrandr, as
vulkan spec for vkGetRandROutputDisplayEXT clearly says that it should return
VK_NULL_HANDLE for missing output.
Still I guess we might need a temporary solution as it looks like Wine is going
to be totally broken on such configurations until this is fixed elsewhere.
--
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=18288
Summary: Quicktime 3 creates unusual menus / string value error
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.oldversion.com/download/quicktime302.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20819)
--> (http://bugs.winehq.org/attachment.cgi?id=20819)
Wine 1.1.20 +menubuilder
The Quicktime 3.0.2 installer reports an error when attempting to create
program groups and icons:
"String variable is not large enough for string.
Check the string declarations.
Error 401."
The installer then creates an unusual directory structure:
ls -aR /home/test/.local/share/applications/wine/Programs
/home/test/.local/share/applications/wine/Programs:
. .. QuickTime QuickTime 3.0
/home/test/.local/share/applications/wine/Programs/QuickTime:
. .. MoviePlayer.desktop PictureViewer.desktop ReadMe.desktop UnInstall
QuickTime 3.0.desktop
/home/test/.local/share/applications/wine/Programs/QuickTime 3.0:
. .. .desktop
Setup completes successfully.
--
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=52685
Bug ID: 52685
Summary: Crash with openkiosk
OpenKiosk91.3.0-2021-10-28-i686.msi
Product: Wine
Version: 7.0
Hardware: Other
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: philippereix.csc(a)gmail.com
Distribution: ---
Created attachment 72023
--> https://bugs.winehq.org/attachment.cgi?id=72023
Backtrace of the database application
I installed kubuntu 18.04 (32 bit) on an old pentium 4 3ghz (i386 architecture)
with 4gb ram and the only installable version
OpenKiosk91.3.0-2021-10-28-i686.msi with
Wine 7.0 installed. OpenKiosk is a cross platform kiosk web browser based on
Mozilla Firefox that can be easily installed and used to secure a computer for
use as a public terminal. This is a complete solution for any kiosk
installation. This software is released under the MPL "as is" with no warranty
or support. (https://openkiosk.mozdevgroup.com/)
The OpenKiosk command is: env WINEPREFIX="/home/acsm-borne-pres/.wine" wine
C:\\Program\ Files\\OpenKiosk\\OpenKiosk.exe
and the working folder is: /home/acsm-borne-pres/.wine/dosdevices/c:/Program
Files/OpenKiosk/
OpenKiosk launches well but after 1 to 2 minutes I have this error message with
the detail attached
Can you help me please?
Thanks very much
Philip
--
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=32680
Bug #: 32680
Summary: cmd.exe Add support for CMDEXTVERSION, CMDCMDLINE,
HIGHESTNUMANODENUMBER
Product: Wine
Version: 1.5.21
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: us(a)edmeades.me.uk
Classification: Unclassified
%CMDEXTVERSION%
%CMDCMDLINE%
%HIGHESTNUMANODENUMBER%
--
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=55829
Bug ID: 55829
Summary: Legend of Grimrock series has rendering glitch
Product: vkd3d
Version: 1.9
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 75325
--> https://bugs.winehq.org/attachment.cgi?id=75325
example
Continuation of bug 55182.
Commit 167ad1ee7bbdaa1ec329f4b6a27b2e9b9389c0e2 makes main menu be visible but
added rendering glitch.
--
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=55516
Bug ID: 55516
Summary: Motor4MX crashes due to missing 'refract' handling
Product: vkd3d
Version: 1.8
Hardware: x86-64
URL: http://www.gamepressure.com/download.asp?ID=21182
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Distribution: ---
0024:err:d3dcompiler:D3DCompile2 <anonymous>:107:31: E5005: Function
"refract" is not defined.
--
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=43599
Bug ID: 43599
Summary: Engine Prime: application fails to launch
Product: Wine
Version: 2.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: smidge(a)xsco.net
Distribution: ---
Created attachment 59013
--> https://bugs.winehq.org/attachment.cgi?id=59013
Terminal output
Engine Prime is a music preparation application targeted at DJs who use Denon's
latest hardware. It can be downloaded at http://www.denondj.com/engineprime
Engine Prime v1.0.0 fails to launch, crashing with a page fault. A window does
appear (without any content) before the crash occurs. The full terminal output
(quite verbose) is attached.
Note that the installer works without issue.
Wine version: wine 2.15 (staging)
Installer checksum:
ec3c75d7d923163d0fba3dfd6561ce318e344182 EnginePrime1.0.0Setup.exe
Post-installation executable checksum:
e462a0e5d08736c50d7b164956a12ff38ecc4a65 EnginePrime.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=49505
Bug ID: 49505
Summary: Grim Dawn hangs while loading with builtin
d3dcompiler_43
Product: Wine
Version: 5.11
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3d-util
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 67633
--> https://bugs.winehq.org/attachment.cgi?id=67633
+d3dcompiler
Hangs before entering the main menu. Setting library to 'native,builtin' is a
workaround.
wine-5.11-303-g10b17932fa
--
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=54709
Bug ID: 54709
Summary: Spider-Man Remastered shows only a black screen
Product: vkd3d
Version: 1.6
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0880:trace:d3dcompiler:D3DCompile data 0000000144F23FA0, data_size 1428,
filename (null), defines 0000000000000000, include 0000000000000000, entrypoint
"QuadVertexShader", target "vs_4_0", sflags 0, eflags 0, shader
00000000635DF3B0, error_messages 00000000635DFA10.
0880:trace:d3dcompiler:D3DCompile2 data 0000000144F23FA0, data_size 1428,
filename (null), macros 0000000000000000, include 0000000000000000, entry_point
"QuadVertexShader", profile "vs_4_0", flags 0, effect_flags 0, secondary_flags
0, secondary_data 0000000000000000, secondary_data_size 0, shader_blob
00000000635DF3B0, messages_blob 00000000635DFA10.
1.6-207-g4110f1e5
--
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=54725
Bug ID: 54725
Summary: BeamNG Techdemo 0.3 crashes on missing 'determinant'
handling
Product: vkd3d
Version: 1.6
Hardware: x86-64
URL: https://www.moddb.com/games/beamng/downloads/beamng-te
chdemo-03
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Depends on: 34106
Distribution: ---
0024:err:d3dcompiler:D3DCompile2 Failed to compile shader, vkd3d result -4.
0024:err:d3dcompiler:D3DCompile2 Shader log:
0024:err:d3dcompiler:D3DCompile2 <anonymous>:272:28: E5005: Function
"determinant" is not defined.
0024:err:d3dcompiler:D3DCompile2
--
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=54973
Bug ID: 54973
Summary: Renegade Ops needs literal sample index.
Product: vkd3d
Version: 1.7
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
06c8:err:d3dcompiler:D3DCompile2 Failed to compile shader, vkd3d result -4.
06c8:err:d3dcompiler:D3DCompile2 Shader log:
06c8:err:d3dcompiler:D3DCompile2 <anonymous>:6:243: E5002: Expected literal
sample index.
1.7-218-g1af662ae
--
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=54595
Bug ID: 54595
Summary: Split/Second crashes on launch due to missing
HLSL_IR_RESOURCE_LOAD instruction type
Product: vkd3d
Version: 1.6
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
03c8:err:d3dcompiler:D3DCompile2 Shader log:
03c8:err:d3dcompiler:D3DCompile2 <anonymous>:1:436: E5017: Aborting due to
not yet implemented feature: Instruction type HLSL_IR_RESOURCE_LOAD.
03c8:err:d3dcompiler:D3DCompile2 <anonymous>:1:478: E5017: Aborting due to
not yet implemented feature: Instruction type HLSL_IR_RESOURCE_LOAD.
03c8:err:d3dcompiler:D3DCompile2 <anonymous>:1:520: E5017: Aborting due to
not yet implemented feature: Instruction type HLSL_IR_RESOURCE_LOAD.
03c8:err:d3dcompiler:D3DCompile2
03c8:err:d3dcompiler:D3DCompile2 Shader log:
03c8:err:d3dcompiler:D3DCompile2 <anonymous>:1:469: E5017: Aborting due to
not yet implemented feature: Instruction type HLSL_IR_RESOURCE_LOAD.
03c8:err:d3dcompiler:D3DCompile2 <anonymous>:1:511: E5017: Aborting due to
not yet implemented feature: Instruction type HLSL_IR_RESOURCE_LOAD.
03c8:err:d3dcompiler:D3DCompile2 <anonymous>:1:553: E5017: Aborting due to
not yet implemented feature: Instruction type HLSL_IR_RESOURCE_LOAD.
03c8:err:d3dcompiler:D3DCompile2 <anonymous>:1:594: E5017: Aborting due to
not yet implemented feature: Instruction type HLSL_IR_RESOURCE_LOAD.
03c8:err:d3dcompiler:D3DCompile2
1.6-171-gb1e13d6e
--
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=55207
Bug ID: 55207
Summary: SM1 register allocation for matrix types is innacurate
Product: vkd3d
Version: 1.8
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: bunglehead(a)gmail.com
Distribution: ---
Created attachment 74810
--> https://bugs.winehq.org/attachment.cgi?id=74810
test
See attached shader. For "m1" matrix only one register is allocated because
second row is not used. In addition to that register order switches and "m1" is
using c2 on windows, instead of c0.
This test has to be compiled for ps_2_0.
--
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=45038
Bug ID: 45038
Summary: Shadow Tactics displays a pink screen
Product: Wine
Version: 3.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blue-t(a)web.de
Distribution: ---
Created attachment 61160
--> https://bugs.winehq.org/attachment.cgi?id=61160
Terminal Output
If you start Shadow Tactics it will render a pink screen.
--
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=49837
Bug ID: 49837
Summary: Just Grandma and Me (win16) softlock. Win16Mutex wait
timed out
Product: Wine
Version: 5.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: besentv(a)gmail.com
Distribution: ---
Created attachment 68176
--> https://bugs.winehq.org/attachment.cgi?id=68176
Console output when running the game.
I try to run the game JustGrandmaAndMe from 1997 (Version 2.0) in Wine Staging
5.16-1.
Using a clean Wineprefix set to Winearch=win32 and Windows-Version 98 I ran the
game's "jgmd.exe" with (put into a bashscript):
WINEARCH="win32" WINEPREFIX="/home/nutzer1/Dokumente/JGM/" WINEDEBUG=warn+all
wine "/home/nutzer1/Dokumente/LIVING_BOOKS/jgmd.exe"
(it doesn't work in a clean ~/.wine as well)
This gave me the error: err:dosmem:setup_dos_mem Cannot use first megabyte for
DOS address space, please report
Looking it up I found you can circumvent this error by doing: sudo sysctl -w
vm.mmap_min_addr=0
But now I'm getting the error:
00b8:err:ntdll:RtlpWaitForCriticalSection section 6BB42940
"../../../wine/dlls/krnl386.exe16/syslevel.c: Win16Mutex" wait timed out in
thread 00b8, blocked by 00bc, retrying (60 sec)
The retries are infinite, thus causing a softlock.
There are multiple bug reports with the same issue already. Overall it seems to
me that the issue was fixed before but somehow reappeared.
If you need the game files I will send them to you in private.
--
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=48024
Bug ID: 48024
Summary: Betfair Poker: black screen during install
Product: Wine
Version: 4.18
Hardware: x86-64
URL: https://poker-com-banner.bfcdl.com/installer/SetupPoke
r.exe
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 65562
--> https://bugs.winehq.org/attachment.cgi?id=65562
Wine 4.18 console log
The Betfair Poker install client briefly shows the install screen before being
blacked out. The installation cannot continue.
https://youtu.be/U53jzEdIN98
Workarounds:
winetricks ie6 (Bug 38929)
The workaround is to use a virtual desktop where the black screen appears
BEHIND the main installer. (Z-order problem?) Same with Staging 4.18.
No account needed to get this far.
--
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=55557
Bug ID: 55557
Summary: wpcap:wpcap crashes on macOS
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Mac OS X
Status: NEW
Severity: normal
Priority: P2
Component: wpcap
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
wpcap:wpcap crashes on macOS:
wpcap.c:368: lib version
wpcap.c:369: supports PCAP_MMAP_32BIT: no
Unhandled exception: page fault on read access to 0xffffffffffffffff in 64-bit
code (0x000002c74cd410).
See https://test.winehq.org/data/patterns.html#wpcap:wpcap
The crash is systematic and only happens macOS (see Remi's rbernon-macos-*
cloud test machines).
The issue is probably that Wine is being compiled against macOS' pcap library
which is too old. Using a newer library would require installing it with
something like Homebrew and then making sure Wine can find and use it.
So there are two things to do:
* Detect cases when the pcap library is too old and skip the tests accordingly.
* Check if installing a newer pcap library on the macOS test machines is
feasible.
--
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=32619
Bug #: 32619
Summary: Tom Clancy's Rainbow Six: Lockdown can't save a game
(directory not created)
Product: Wine
Version: 1.5.20
Platform: x86
URL: http://www.fileplanet.com/160005/160000/fileinfo/Tom-C
lancy%27s-Rainbow-Six:-Lockdown-Demo
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 43045
--> http://bugs.winehq.org/attachment.cgi?id=43045
terminal output
Normally the game should perform an autosave when starting the first mission,
and it should allow you to perform a manual save anytime in a mission. Neither
of them work in Wine.
1. After performing a manual save in the game, a 'save successful' message is
shown on the screen, however, if I open the <Load game> menu, it is empty.
2. When the player dies there is an option to restore the last saved game:
clicking on this option results in a crash as can be seen in the attached log
file.
The demo version doesn't let you save the game, but it does perform an
autosave, thus the crash can be reproduced with the demo too. Here's how:
1. install the demo, the game needs native d3dx9_36 and dxdiagn (bug #32163).
2. start the demo with Lockdown.exe, skip the intros. In the menu choose
<Single Player> - <Start Mission> and wait until the game is loaded.
3. press '4' to instruct teammates to stay back. There will be some bad guys
around the corner, step to them without shooting so the player dies pretty
soon.
4. the menu with statistics appears, click on <Load Last Save>...the game
crashes at this point.
There's nothing serious in the terminal, the game's own log file contains:
[ERROR | IkeStateMgr::SaveGame | 735] Could not open file c:/program
files/ubisoft/red storm entertainment/rainbow six lockdown
demo/data/save/game/autosave.sav
This directory structure does exist in Wine:
C:/Program Files/Ubisoft/Red Storm Entertainment/Rainbow Six Lockdown
Demo/data/save
Inside ../save there should be a /game directory which contains the saved
games. This directory (as well as an autosave.sav) should be created when you
start the first mission. For some reason the /game directory is not created in
Wine.
Workaround: you have to manually create the /game directory before starting the
game the first time. Saving/loading will work from then on.
--
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=54372
Bug ID: 54372
Summary: World in Conflict crashes due to missing SM1 'cast'
handling
Product: vkd3d
Version: 1.6
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Distribution: ---
Split off from bug 41310.
0024:err:d3dcompiler:D3DCompile2 Shader log:
0024:err:d3dcompiler:D3DCompile2 <anonymous>:7:1: E5017: Aborting due to
not yet implemented feature: SM1 "cast" expression.
0024:err:d3dcompiler:D3DCompile2
--
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=31078
Bug #: 31078
Summary: Need For Speed Hot Pursuit (2010) performance is
unacceptable
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vanuan(a)gmail.com
Classification: Unclassified
After fixing the crash http://bugs.winehq.org/show_bug.cgi?id=31031
I was able to run NFS11 (via Launcher.exe).
The performance, however, is unacceptable.
Running WINEDEBUG=fps reveals 5 fps on car selection screen. Setting UseGLSL to
disabled makes it 6 fps. AlwaysOffsceen=enabled makes it 4 fps.
When actually playing the game I see a mere 4 fps when UseGLSL=disabled and
minimal settings.
trace:fps:swapchain_gl_present 0x15e280 @ approx 4.35fps
trace:fps:glxdrv_SwapBuffers @ approx 4.52fps, total 14.99fps
trace:fps:swapchain_gl_present 0x15e280 @ approx 4.52fps
trace:fps:glxdrv_SwapBuffers @ approx 4.45fps, total 14.96fps
trace:fps:swapchain_gl_present 0x15e280 @ approx 4.45fps
trace:fps:glxdrv_SwapBuffers @ approx 4.52fps, total 14.93fps
trace:fps:swapchain_gl_present 0x15e280 @ approx 4.52fps
trace:fps:glxdrv_SwapBuffers @ approx 4.39fps, total 14.90fps
trace:fps:swapchain_gl_present 0x15e280 @ approx 4.39fps
trace:fps:glxdrv_SwapBuffers @ approx 4.42fps, total 14.87fps
trace:fps:swapchain_gl_present 0x15e280 @ approx 4.42fps
trace:fps:glxdrv_SwapBuffers @ approx 4.29fps, total 14.85fps
trace:fps:swapchain_gl_present 0x15e280 @ approx 4.29fps
trace:fps:glxdrv_SwapBuffers @ approx 3.79fps, total 14.81fps
trace:fps:swapchain_gl_present 0x15e280 @ approx 3.79fps
trace:fps:glxdrv_SwapBuffers @ approx 3.85fps, total 14.78fps
trace:fps:swapchain_gl_present 0x15e280 @ approx 3.85fps
I have nvidia GeForce 8600 which is enough according to
http://www.game-debate.com/games/index.php?g_id=1099&game=Need%20for%20Spee…
Appreciate any suggestions on improving the game performance.
--
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=55476
Bug ID: 55476
Summary: Unhandled exception: page fault on read access to
0x0000000000000010 in 64-bit code (0x000000073586a3).
Product: Wine
Version: 8.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: masterweb801(a)gmail.com
Distribution: Debian
Created attachment 75038
--> https://bugs.winehq.org/attachment.cgi?id=75038
Wine had given this backtrace file.
I am installing my own application. I build it with python and made it
executable using pyinstaller. Then created MSI Installer of it using Advanced
Installer. Then I installed it with wine on Debian 12. It installed but when I
open it up, it throws an error. But this gives no error in Windows 10. I have
attached some files related this error.
--
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=54656
Bug ID: 54656
Summary: The winscard tests are not run on the GitLab CI
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winscard
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
The winscard tests are not run on the GitLab CI:
winscard=dll is missing
See the gitlab-debian-* Linux results on:
http://winetest.dolphin/data/tests/winscard:winscard.html
I'm putting this as a Wine bug rather than a Wine GitLab one because I think
the fix is to update the tools/gitlab/image.docker file.
Also I'd argue this is a regression introduced by the commit that added the
dependency on libpcsclite because the Docker image update should have been made
there.
commit 8490c43f38e306fef7b5fed3ffcb256efd73af58
Author: Hans Leidekker <hans(a)codeweavers.com>
AuthorDate: Thu Feb 16 09:56:12 2023 +0100
winscard: Implement SCardEstablish/ReleaseContext() on top of libpcsclite.
--
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=48068
Bug ID: 48068
Summary: Mostly black window in Epic Games Launcher
Product: Wine
Version: 4.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: michelle(a)iheartmichelle.com
Distribution: ---
Created attachment 65617
--> https://bugs.winehq.org/attachment.cgi?id=65617
Output of % wine {Prefix}/drive_c/Program Files (x86)/Epic
Games/Launcher/Portal/Binaries/Win64/EpicGamesLauncher.exe
-SkipBuildPatchPrereq
I have installed the Epic Games Launcher. It opens up with a mostly black
window. However, the app draws its own window controls, such as minimize and
close, and those work. Also, there's a "Settings" icon in the corner. When I
click that, it takes me to a settings screen which appears to work. However,
the rest of the window is black and I cannot install the untitled goose game,
as I so desperately want to do.
I'm using wine 4.19-staging. The Epic Games Launcher version ... well, I have
a story about that: While I was gathering info for this bug report, I started
the launcher and this time, the "Settings" icon had a dot on it. So I clicked
the Settings icon, and it said there was a new version of the launcher and I
should click here to install the new version and restart the launcher, and I
did and it worked. So at least that much of the app is working.
Anyway, the version (which is visible from the Settings screen) is now
10.9.1-10088168+++Portal+Release-Live
I don't think this is related to the ancient #40376 since that was last updated
2 years ago and seems to be caused by a bug which was fixed in a prior version
of wine.
--
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=55824
Bug ID: 55824
Summary: Unable to enter text in Epic Game Launcher
Product: Wine
Version: 8.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: guidoj2269(a)gmail.com
Distribution: ---
The most recent version of Epic Game Launcher 15.7.0 installs and starts up in
Wine 8.18 without any problems. On a clean install the Epic Game Launcher opens
a window and asks you to sign up or sign in. There is a textbox where you are
required to enter an email address. This textbox can be selected, but it is
impossible to enter any text. Nothing happens when hitting keys on the keyboard
when this textbox is active. This leaves the Epic Games not accessible.
Console output gives the following messaging, although maybe not every line is
related to this problem:
02f0:fixme:win:GetPointerDevices (00007FFFFEC7EE84 0000000000000000): partial
stub
02f0:fixme:system:NtUserQueryDisplayConfig flags 0x2, paths_count
0x7ffffec7ee50, paths 0x7998007bbb70, modes_count 0x7ffffec7ee84, modes
0x799800705580, topology_id (nil) semi-stub
02f0:fixme:system:NtUserDisplayConfigGetDeviceInfo Unimplemented packet type
11.
02f0:fixme:ui:uisettings2_get_TextScaleFactor iface 00007F655C7822E8, value
00007FFFFEC7ED60 stub!
02f0:fixme:msctf:TextStoreACPSink_OnLayoutChange STUB:(00007F655C95A930)
02f0:fixme:msctf:TextStoreACPSink_OnLayoutChange STUB:(00007F655C95A930)
The most recent version of the Epic Games Launcher can be freely downloaded
here:
https://launcher-public-service-prod06.ol.epicgames.com/launcher/api/instal…
Note that previous versions of both the Epic Games Launcher and Wine worked
well together, but I do not know which versions, nor do I have them available.
--
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=55970
Bug ID: 55970
Summary: Switching sound devices does not work correctly
Product: Wine
Version: unspecified
Hardware: aarch64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: preston(a)babypuncher.net
App tested: foobar2000
Behavior when switching sound devices is inconsistent.
Switching from headphone jack to internal speaker does work when "Primary Sound
Driver is selected" and output device is changed in macOS or by unplugging
headphones.
The inverse does not work, Wine will continue playing audio through the
internal speakers after macOS has switched back to the headphone jack.
Manually changing sound devices away from "Primary Sound Driver" in foobar2000
itself causes playback errors.
--
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=54561
Bug ID: 54561
Summary: Google Chrome unable to load widevine_cdm.dll
4.10.2557.0 (and up)
Product: Wine
Version: 8.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ionic(a)ionic.de
Distribution: ---
Created attachment 74101
--> https://bugs.winehq.org/attachment.cgi?id=74101
WINEDEBUG=warn+all /usr/bin/wine-vanilla-9999
GoogleChromePortable64/App/Chrome-bin/chrome.exe --no-sandbox
Google Chrome is currently unable to load widevine_cdm.dll as of version
4.10.2557.0.
Version 4.10.2449.0 of widevine_cdm.dll (for instance shipped/bundled with
Google Chrome 105.0.5195.127) will load just fine, but is now useless, since
most streaming services have blocked this old version by now.
I've tested with wine 8.2 (I'm currently using git master from about a week
ago, built 20.02.2023), but the behavior shows also up with older wine
versions, down to 7.0.
My main use case is to watch content on Amazon Prime in Full HD resolution -
which is now impossible.
I'm also attaching a warn+all log, but the relevant part, as far as I can tell,
is this one:
033c:warn:seh:dispatch_exception EXCEPTION_ACCESS_VIOLATION exception
(code=c0000005) raised
033c:warn:module:process_attach Initialization of L"widevinecdm.dll" failed
[824:828:0223/065058.326:ERROR:cdm_module.cc(114)] CDM at
C:\users\ionic\AppData\Local\Google\Chrome\User
Data\WidevineCdm\4.10.2557.0\_platform_specific\win_x64\widevinecdm.dll could
not be loaded.
[824:828:0223/065058.326:ERROR:cdm_module.cc(115)] Error: 998
Error 998, conveniently, is ERROR_NOACCESS, which doesn't seem surprising given
the previous access violation.
I honestly don't know if this issue is caused by wine itself, especially since
older versions of the widevine library still load just fine.
For testing this, I recommend installing the current version of Google Chrome,
either normally or using the (64 Bit testing) version of Google Chrome Portable
and starting video playback on https://www.nuevodevel.com/nuevo/showcase/drm ,
which embeds the free Big Buck Bunny video in a Widevine-based DRM setting.
Note, however, that downgrading to widevine 4.10.2449.0 will make it work - but
Amazon Prime will complain about an outdated browser version (which is a lie,
because it really [also] checks the widevine version) and refuse to play any
content.
--
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=48614
Bug ID: 48614
Summary: Windows 10 Opera browser hangs/freezes immediatly on
install using Wine 4.1 linux x86/64bit
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stevedonato(a)gmail.com
Distribution: ---
trying to use windows 10 Opera browser because native linux browser nolonger
can run Amazon Prime Videos. Tried playing NEW Amazon Prime tv series called
"Hunter"
at https://www.amazon.com/gp/video/detail/B07ZPF4DVK/ref=atv_dl_rdr?autoplay=1
Gets Digital rights error. Win 10 version of Opera works OK.
Linux and Windows version of Opera have no option to enable DRM, also called
"Widevine".
The error msg text is"A later version of Opera is required for Prime Video. To
check for updates, click the Opera menu, click About Opera, and then click
Relaunch Now."
But I am using latest Oper ver 66. also tried the Developer and Beta versions
of Oper ver 67 and 68. Same error.
Oddly, the windows 10 version of Opera was even older,at ver 63 but it worked?
Something to do with HTML5 videos and DRM/Widevine ?
--
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=52539
Bug ID: 52539
Summary: foobar2000 undocking from system tray works randomly
Product: Wine
Version: 7.1
Hardware: x86-64
URL: https://www.foobar2000.org/getfile/foobar2000_v1.6.9.e
xe
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: lukasz.wojnilowicz(a)gmail.com
Distribution: Fedora
Created attachment 71844
--> https://bugs.winehq.org/attachment.cgi?id=71844
foobar2000 undocked after 5 LMB clicks
Steps to reproduce:
1) remove ~/.wine
2) install foobar2000
3) wine foobar2000.exe
4) in menubar select "Library->Configure"
5) in configuration tree select "Display->Default User Interface->Background
and Notifications"
6) Under "Window minimize and close" select "Minimize hides, close exits"
7) Under "Notification area icon" select "Show only when foobar2000 is hidden"
8) In the right top corner press minimize icon
9) foobar2000 minimizes to the system tray
10) LMB click on an icon of foobar2000 in the system tray
Behaviour:
foobar2000 icon in the system tray flashes but its main window is not restored.
After a couple of clicks it gets restored (see the attached movie).
Expected behaviour:
foobar2000 main window should be restored after first click on its system tray
icon every time.
Additional comment:
1) using KDE Plasma 5.23.5 X11 on Fedora 35
2) nothing shows in the terminal when docking/undocking foobar2000
3) "journalctl -f -g xembedsniproxy" gives
kde.xembedsniproxy: adding damage watch for 85983387
kde.xembedsniproxy: Received click 1 with passed x*y 1052 784
kde.xembedsniproxy: Click point: QPoint(4,4)
kde.xembedsniproxy: trying to undock window 85983387
kde.xembedsniproxy: trying to dock window 85983392
kde.xembedsniproxy: adding damage watch for 85983392
kde.xembedsniproxy: Received click 1 with passed x*y 1053 783
kde.xembedsniproxy: Click point: QPoint(4,4)
kde.xembedsniproxy: trying to undock window 85983392
Until foobar2000 window is finally restored.
--
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=49390
Bug ID: 49390
Summary: ETaskbarException in CSS HTML Validator 2020 and Batch
Wizard
Product: Wine
Version: 5.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: support(a)htmlvalidator.com
Distribution: ---
Created attachment 67458
--> https://bugs.winehq.org/attachment.cgi?id=67458
Screenshots of user email reporting the bug
Download and install CSS HTML Validator Pro Trial 2020:
https://www.htmlvalidator.com/css-html-validator-trial-setup.exe
Perform the following steps to reproduce the exception which causes program
malfunction:
1. Open CSS HTML Validator (version 20.03, under Wine 5.10 on Arch Linux, bare
metal)
2. Main Menu Bar > Tools > Batch Wizard
3. In the Batch Wizard dialog, do Options > Force Toolbar
4. If necessary, increase width of the Batch Wizard dialog, so that the entire
toolbar is visible.
5. Click the "Add Target" button.
6. Click the "Add file target(s)" option (or any other of the three options).
7. Select an HTML file, and click the "Open" button.
8. In the toolbar, click the "Start" button.
9. In the "HTML Validator: Confirm Job" dialog, click the "Start processing
now" option.
10. The "ETaskbarException: Could not register tab." error window appears.
11. Program ceases to function properly after exception (i.e. cannot be closed
properly).
Also see attachments which are screenshots provided by a user.
Sidenote: Toolbar (which contains the "New List" button) is still not
displaying properly as it displays fully justified when it should display left
justified. Can see this in the first screenshot (EmailPart1.png) in the
attachment.
--
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=55249
Bug ID: 55249
Summary: tried to play borderlands 3. crashed on start
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jchoneandonly(a)gmail.com
Distribution: ---
Created attachment 74854
--> https://bugs.winehq.org/attachment.cgi?id=74854
the program told me to send this your way to get oyu information on the bug.
went to start borderlands 3 (epic games version) and it crashed before anything
would start up.
--
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=55520
Bug ID: 55520
Summary: Witch's Heart and its two other games: Runs too
quickly in windowed mode
Product: Wine
Version: 8.15
Hardware: x86-64
URL: https://vgperson.com/games/witchheart.htm
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blankie(a)nixnetmail.com
Distribution: ArchLinux
Created attachment 75082
--> https://bugs.winehq.org/attachment.cgi?id=75082
Logs and save files
When running Witch's Heart in Windowed mode, the game runs normally from
starting a new game to seeing a big red monster. However, the rest of the game
(as far as I can tell, I did not continue playing) runs at an unplayably quick
rate. The two other games (Witch's Heart -Bonus Stage- and Unknown Past,
Dorothy's Secret: Conclusion) seem to run quickly throughout the entire game.
Running the games in fullscreen makes the game run at a normal rate (or perhaps
a bit slower).
For convenience, two save files for Witch's Heart are provided, the first is
when you first get control of the player and the second is when the bug
manifests. It is to be placed inside the Data folder.
Running `winetricks dlls quartz` makes it stop displaying the
fixme:quartz:MediaSeeking_SetRate messages, but the games are still unbareably
quick. `winetricks dlls directshow` does not appear to do anything.
Here are the sha1 hashes for the executables (StartWindowed.exe and
StartFullscreen.exe are only wrappers for Data/RPG_RT.exe):
6aafea701997929954b57cb3df7c492198dcd96c witchs-heart/StartWindowed.exe
ed793071fd3c23ca2aed323ca3f80e2ffd4654ea witchs-heart/StartFullscreen.exe
6a12f54c1cd533c753d8ace33a8d1cf65180d10c witchs-heart/Data/RPG_RT.exe
ac00ec884efe848ba879242828173754696cb981
witchs-heart-bonus-stage/StartWindowed.exe
68aa9ab88c1e8b39c762e73fde93026702bdb1c0
witchs-heart-bonus-stage/StartFullscreen.exe
a09386880c3a65470bec482ab52e896fb6699640
witchs-heart-bonus-stage/Data/RPG_RT.exe
3c17dd2b49e4b21966eff0b26dbacc40994945b0
witchs-heart-unknown-past-dorothys-secret/StartWindowed.exe
fa75f052c1776505dd3b677cee9eec3ae7fce42f
witchs-heart-unknown-past-dorothys-secret/StartFullscreen.exe
96fe5cf21e66aebc44a87260db4faae9923b1aae
witchs-heart-unknown-past-dorothys-secret/Data/RPG_RT.exe
neofetch reports my GPU as Intel Alder Lake-UP3 GT2 [Iris Xe Graphics], and I
have mesa, lib32-mesa, vulkan-intel, and lib32-vulkan-intel installed. (I don't
know what info to grab)
--
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=20456
Summary: FEAR's installer will not let me enter the serial
number
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
Hi, F.E.A.R. installer requires entering serial number. It has several fields
for entering 4 characters (clasic 1234-5678-9abc-def0-1234).
I can enter:
* 4 "narrow" chars like 1111, iiii, etc.
or
* only 3 "fat" chars like AAA, CCC, etc.
or
* only 2 "extra fat" like WW
There are other pepole affected in AppDB:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=5159&iTestingI…http://appdb.winehq.org/objectManager.php?sClass=version&iId=5159&iTestingI…
Based on other confirmations in AppDB consider UNCONFIRMED->NEW. Tested wine
versions: 0.9.50, 0.9.60, 1.0.1, 1.1.7, 1.1.10, 1.1.13, 1.1.22, 1.1.29, 1.1.31,
1.1.32 ...so it probably never worked correctly.
This is show stopper. I own two original and none is usable under wine because
of too wide chars in serial :-/
--
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=49623
Bug ID: 49623
Summary: winedevice high cpu load over all the time
Product: Wine
Version: 5.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dieter.ferdinand(a)gmx.de
Distribution: Other
hello,
i have a big problem with winedevice of different versions of wine.
after the last updates of my system, i see, that winedevice need over 90% (most
99%) of cpu-time over hours and days. so my system must run all the time with
highest possible cpu-clock and i can't like this.
so i try to find out why this happens and because udisksd need also much
cpu-time, i kill it and lock it for automatic restart, so i can start it, if i
need it.
after that, i see, that winedevice no more need over 90% cpu-time.
because i deaktivate udisks always in the past, i think, i don't have this
problem with winedevice. but every update of udisks will reaktivate it again
and after some days, i deaktivate it again.
udisks is a nice program, but i can't like it, if one program kill all
powersaving functions of my system which runs 24 hours a day.
since i deaktive udisks, i have no more problems with winedevice.
i will deactive usage of udisks for wine to solve this problem.
goodby
--
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=51162
Bug ID: 51162
Summary: Xfce systray icons have a background of a next icon
Product: Wine
Version: 6.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: explorerframe
Assignee: wine-bugs(a)winehq.org
Reporter: fin4478(a)hotmail.com
Distribution: ---
Created attachment 70030
--> https://bugs.winehq.org/attachment.cgi?id=70030
Xfce4.16 systray bug
Systray icons have a background of a next icon when running Ubisoft Connect,
Steam and Epic Games launchers. Switching the desktop compositor on and off
changes the background between blank and the next icon. The network icon is
from connman-gtk. Version: xfce4-panel 4.16.2. OpenGL: renderer: Radeon RX 580
Series (POLARIS10 DRM 3.41.0 5.13.0-rc2 LLVM 12.0.0) v: 4.6 Mesa 21.2.0-devel
(git-0df249f 2021-05-19 focal-oibaf-ppa)
I inspected source code of the Xfce4 systray plugin and the problem is not
solvable there.
--
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=54915
Bug ID: 54915
Summary: Some applications refuse to open if "emulate virtual
desktop" and "NVIDIA PRIME render offload" is used
Product: Wine
Version: 8.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alandms123(a)gmail.com
Distribution: ---
GPU: RTX 3050 (Mobile) (driver version: 530.41.03-1)
OS: archlinux
CPU: i5-11400H
I tested with league of legends client, and the epic games launcher (both won't
open with render offload and virtual desktop enabled). Both application works
without virtual desktop.
Environment variables used:
__NV_PRIME_RENDER_OFFLOAD=1
__VK_LAYER_NV_optimus=NVIDIA_only
__GLX_VENDOR_LIBRARY_NAME=nvidia
Virtual desktop set to 1920x1080.
--
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=49990
Bug ID: 49990
Summary: Gray window for Minecraft Dungeons Launcher & Riot
Client
Product: Wine
Version: 5.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: iroalexis(a)outlook.fr
Distribution: ---
Created attachment 68393
--> https://bugs.winehq.org/attachment.cgi?id=68393
Wine log for Minecraft Dungeons Launcher
It is impossible to launch applications that ask to display a "Windows
interface" such as the login window Riot and/or Minecraft Dungeons Launcher. I
get an empty gray window.
The commit
https://source.winehq.org/git/wine.git/commit/bd27af974a21085cd0dc78b37b715…
provoc this problem.
--
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=48406
Bug ID: 48406
Summary: Epic Games Store fails to install prerequisites with
Wine Mono
Product: Wine
Version: 5.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
Distribution: ---
Created attachment 66178
--> https://bugs.winehq.org/attachment.cgi?id=66178
log
To reproduce the issue, you just need to install Epic Games Store with Wine
Staging. After you launch it and it downloads its own files, it will try to
install its "prerequisites", which will fail with Wine Mono. The issue
disappears if you install "dotnet48" using winetricks, or if you launch EGS
with -SkipBuildPatchPrereq flag, but neither are really good solutions as some
games don't seem to work with dotnet48 and -SkipBuildPatchPrereq sometimes
doesn't work.
Should be noted that on real Windows, it seems to install dotnet48 using
"Windows Features" component.
Attaching standard debug output. Let me know if you need a log with additional
debug channels.
--
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.