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=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=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.
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=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=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=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.
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=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=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=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=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.
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=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.
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.
https://bugs.winehq.org/show_bug.cgi?id=43680
Bug ID: 43680
Summary: Epic Games Launcher crashes if tool-tip is shown in
D3D11 mode
Product: Wine
Version: 2.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: plata(a)mailbox.org
Distribution: ---
Tested with Wine staging 2.16.
How to reproduce:
- run EpicGamesLauncher.exe (maybe you need the "-SkipBuildPatchPrereq"
parameter)
- wait until the login window is shown
- everything seems to be ok
- move the mouse over one of the fields where you can enter email/password
- the window starts to flicker and finally EpicGamesLauncher.exe crashes
If you launch EpicGamesLauncher.exe with "-OpenGL", you do not get the crash.
Therefore I assume that it is a problem with D3D11.
--
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=54587
Bug ID: 54587
Summary: GMG-Vision - ShellExecuteEx failed: Bad EXE format for
install.exe.
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: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 74120
--> https://bugs.winehq.org/attachment.cgi?id=74120
Console output (wine-8.2 on Slackware64/Multilib)
Hello everyone,
I am having problems starting an installation routine with the following
details.
Download URL: https://intern.gte.de/opendownload/GMG-Vision.zip
bash-5.1$ sha256sum GMG-Vision.zip
5502fe9e3fd79d67a8bea0a6dd0699b7c63ade2da9e99a5d026ba4bae059f58e
GMG-Vision.zip
bash-5.1$ sha256sum install.exe
645317d955e157fab7e4c5c3c905a9ce5477e7c46e1a146614e684d759cea928 install.exe
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=30938
Bug #: 30938
Summary: Update a XIM candidate position when cursor location
changed
Product: Wine
Version: 1.5.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felixonmars(a)gmail.com
Classification: Unclassified
How to reproduce:
1. $ wine notepad
2. Activate input method (SCIM/IBUS/FCITX, etc), input something
Result:
Candidate window is below the notepad window, and never moved.
Expected result:
Candidate window moves as it is in gedit.
Probably related to these patches I found:
http://markmail.org/message/haq2zykslfkhwdilhttp://markmail.org/thread/2bfrrce47cqzga4l
--
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=37732
Bug ID: 37732
Summary: Corel Paint Shop Pro X7 Installer fails
Product: Wine
Version: 1.7.32
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 50235
--> https://bugs.winehq.org/attachment.cgi?id=50235
PSP X7 Backtrace on wine 1.7.32
Hello everyone,
I would like to share my experiences installing "Corel Paint Shop Pro X7" with
you. The installation starts up okay but a fatal error comes up when
initialising the trial installation.
I am assuming this is related to bug 27240 and 35057.
Some further info:
mwagner@linux-dnat:~/Downloads> shasum PSPX7_TBYB30.exe
7958bacb4ab198f7408066d269ca787c5b66042f PSPX7_TBYB30.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=41607
Bug ID: 41607
Summary: Piggi 2 Demo version fails to start and throws runtime
and fatal error
Product: Wine
Version: 1.9.20
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 55951
--> https://bugs.winehq.org/attachment.cgi?id=55951
Backtrace wine 1.9.20
Dear wine-team,
I had a request from somebody working in agriculture to test an application in
wine and used wine 1.9.20 as 1.9.21 is not currently available on openSUSE.
A demo version is available at the following URL:
http://www.oask.de/Sauenplaner/piggi20_setup.exe
$ md5sum piggi20_setup.exe
bfd61acc354000a14e2974d383e7bd5f piggi20_setup.exe
The application throws a runtime error of 3633 (Laufzeitfehler) and then
crashes producing the debugging output shown in the attachment.
Is there anything I can do with winetricks to work aroud this issue?
Kind regards,
Maik
--
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=42997
Bug ID: 42997
Summary: Opera Neon Installation throws backtrace
Product: Wine
Version: 2.7
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 58133
--> https://bugs.winehq.org/attachment.cgi?id=58133
Opera Neon Backtrace on wine 2.7
Hello everyone,
I tried installing Opera Neon in a fresh prefix but the installation wouldn't
even start and throws a backtrace on 2.7 which 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=45106
Bug ID: 45106
Summary: OOB write in gdi32
Product: Wine
Version: 3.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: robert.gawlik(a)rub.de
Distribution: ---
Created attachment 61285
--> https://bugs.winehq.org/attachment.cgi?id=61285
affected source code
Original submitted report can be found here:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/1764719
The attachment also contains more details.
If more info is needed, please let me know!
--
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=45105
Bug ID: 45105
Summary: heap-buffer overflow in gdi32
Product: Wine
Version: 3.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: robert.gawlik(a)rub.de
Distribution: ---
Created attachment 61284
--> https://bugs.winehq.org/attachment.cgi?id=61284
affected source code
Original submitted report can be found here:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/1764719
The attachment also contains more details.
If more info is needed, please let me know!
--
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=48521
Bug ID: 48521
Summary: StaxRip throes errors: Win32Exception (2.0.6.0)
Invalid function System.ComponentModel.Win32Exception
(0x80004005): Invalid function
Product: Wine
Version: 5.0
Hardware: x86
URL: https://github.com/staxrip/staxrip/releases
OS: Linux
Status: NEW
Keywords: dotnet, download, source
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
Steps to reproduce:
Use Staging (workaround https://bugs.winehq.org/show_bug.cgi?id=45868) and do
- winetricks -q dotnet40 dotnet48
- Invoke like ''wine start /unix /home/louis/StaxRip.exe'' otherwise you run
into
https://bugs.winehq.org/show_bug.cgi?id=48503
Try open an avi, it`ll tell you to install AviSynth, let it complete, then try
convert it; In the end an errormessage pops up:
Win32Exception (2.0.6.0)
Invalid function
System.ComponentModel.Win32Exception (0x80004005): Invalid function
at StaxRip.PowerRequest.SuppressStandby() in
D:\Projekte\VB\staxrip\General\General.vb:line 1532
at StaxRip.GlobalClass.ProcessJobs() in
D:\Projekte\VB\staxrip\General\GlobalClass.vb:line 36
The source is available from github:
Public Class PowerRequest
Private Shared CurrentPowerRequest As IntPtr
Shared Sub SuppressStandby()
If CurrentPowerRequest <> IntPtr.Zero Then
PowerClearRequest(CurrentPowerRequest,
PowerRequestType.PowerRequestSystemRequired)
CurrentPowerRequest = IntPtr.Zero
End If
Dim pContext As POWER_REQUEST_CONTEXT
pContext.Flags = &H1 'POWER_REQUEST_CONTEXT_SIMPLE_STRING
pContext.Version = 0 'POWER_REQUEST_CONTEXT_VERSION
pContext.SimpleReasonString = "Standby suppressed by StaxRip" 'shown
when the command "powercfg -requests" is executed
CurrentPowerRequest = PowerCreateRequest(pContext)
If CurrentPowerRequest = IntPtr.Zero Then
Dim err = Marshal.GetLastWin32Error()
If err <> 0 Then Throw New Win32Exception(err)
End If
Dim success = PowerSetRequest(CurrentPowerRequest,
PowerRequestType.PowerRequestSystemRequired)
If Not success Then
CurrentPowerRequest = IntPtr.Zero
Dim err = Marshal.GetLastWin32Error()
If err <> 0 Then Throw New Win32Exception(err)
End If
End Sub
Shared Sub EnableStandby()
If CurrentPowerRequest <> IntPtr.Zero Then
Dim success = PowerClearRequest(CurrentPowerRequest,
PowerRequestType.PowerRequestSystemRequired)
If Not success Then
CurrentPowerRequest = IntPtr.Zero
Dim err = Marshal.GetLastWin32Error()
If err <> 0 Then Throw New Win32Exception(err)
Else
CurrentPowerRequest = IntPtr.Zero
End If
End If
End Sub
Enum PowerRequestType
PowerRequestDisplayRequired
PowerRequestSystemRequired
PowerRequestAwayModeRequired
PowerRequestExecutionRequired
End Enum
<DllImport("kernel32.dll", SetLastError:=True)>
Shared Function PowerCreateRequest(ByRef Context As POWER_REQUEST_CONTEXT)
As IntPtr
End Function
<DllImport("kernel32.dll", SetLastError:=True)>
Shared Function PowerSetRequest(PowerRequestHandle As IntPtr, RequestType
As PowerRequestType) As Boolean
End Function
<DllImport("kernel32.dll", SetLastError:=True)>
Shared Function PowerClearRequest(PowerRequestHandle As IntPtr, RequestType
As PowerRequestType) As Boolean
End Function
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Structure POWER_REQUEST_CONTEXT
Public Version As UInt32
Public Flags As UInt32
<MarshalAs(UnmanagedType.LPWStr)>
Public SimpleReasonString As String
End Structure
End Class
Returning STATUS_SUCCESS for Nt{Create,Set,Clear}PowerRequest gets rid of the
errors. AFAICT it should be pretty safe to just return success from these three
functions, right?
Relevant console-output:
009c:fixme:ntdll:NtCreatePowerRequest (0x22d5e8, 0x22d5f0): stub
009c:fixme:ntdll:NtSetPowerRequest (0x110ea80, 1): stub
.
.
009c:fixme:ntdll:NtClearPowerRequest (0x110ea80, 1): stub
--
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=45455
Bug ID: 45455
Summary: Installation of Cetus3D-Software crashes
Product: Wine
Version: 3.0.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pellwestphal(a)googlemail.com
Distribution: ---
Hello forum,
I wanted to install this software: https://www.tiertime.com/downloads/software/
its a 3D-printer software to load print jobs and control the printer.
https://pastebin.com/ThMrEcAh <- terminal output during installation
The installation starts up fine and I can go through the first few steps
without any issues except those repeating first lines you see in the terminal
paste. When I come to the actual installation it starts but then crashes after
the installation bar filled after a few seconds. The errors and fixme lines
appear instantly in the terminal.
Please help finding the underlying issue
My system is an x220 running Ubuntu 16.04 LTS with an i3wm as ui.
Thank you,
Per
--
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=43251
Bug ID: 43251
Summary: Anarchy Online Login Window Play and Settings button
disapper after minimising and maximising window
Product: Wine
Version: 2.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Hello everyone,
I noticed some strange behaviour in Anarchy Online.
Steps to reproduce:
- Start up AnarchyOnline.exe
- Patch the game (if necessary)
- Click the minimise button of the window
- Maximise the window again
-> Settings and play button disappear.
--
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=53839
Bug ID: 53839
Summary: Anarchy Online (Old Engine) Installer hangs after
downloading game files
Product: Wine
Version: 7.19
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: ---
sha256sum AnarchyOnline_EP1.exe
ed5ff785e38cbee788f30c5c6305b441c3c1c8590f852b53199c9d8c15607c9e
AnarchyOnline_EP1.exe downloaded from
https://ctrack.funcom.com/ad/?ref=AODOWNLOAD
Tested in a clean prefix on Slackware 15.0 with wine 7.19
It downloades the necessary game files but hangs at the end. (execute
'install.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=44516
Bug ID: 44516
Summary: Anarchy Online doesn't startup anymore
Product: Wine
Version: 3.1
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 60469
--> https://bugs.winehq.org/attachment.cgi?id=60469
Console Output wine 3.1 (Non-staging)
Hello everyone,
I would like to report that I did some testing on "Anarchy Online" but it
doesn't seem to start up anymore and wants to launch a debugger but also fails
there.
Please see the console output for further information.
--
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=46375
Bug ID: 46375
Summary: Vietcong: game save thumbnails (screenshots) have
corrupted colors
Product: Wine
Version: 4.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: havran.jan(a)email.cz
Distribution: Other
Created attachment 63117
--> https://bugs.winehq.org/attachment.cgi?id=63117
Game-save screenshots - left = created on windows, right = Wine
Every time Vietcong game creates new game save (psg file), it also creates
in-game screenshot of what scene game currently render on screen. This
screenshot is part of the psg file. In main menu, game shows screenshot of
selected game save (as a thumbnail). On native Windows, these screenshots are
created relative nice (but they are low quality/compressed pictures), while on
Wine they have always corrupted colors.
It is not problem of showing these screenshots (since I tried in Wine to load
game save created on Windows, which had nice thumbnail), but they are being
created corrupted. I have not looked into this bug deeply yet, so I do not know
which API game uses to create these screens.
This bug is in Wine probably for very long time, maybe since beginning. There
is nothing special in the Wine log.
--
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=25689
Summary: Combat Mission: Barbarossa to Berlin - failing to
initialize graphics
Product: Wine
Version: 1.3.10
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mat69(a)gmx.net
Created an attachment (id=32722)
--> (http://bugs.winehq.org/attachment.cgi?id=32722)
terminal output when starting cmbb
I installed CMBB and updated to 1.03, using a crack made it possible to avoid
BUG:219.
Trying to start I get a message complaining that Direct3D graphics could not be
recognised.
Attached is the terminal output.
--
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=43146
Bug ID: 43146
Summary: gtkmm hello world program can't show window
Product: Wine
Version: 2.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bing(a)nym.hush.com
Distribution: ---
Created attachment 58373
--> https://bugs.winehq.org/attachment.cgi?id=58373
gtkmm hello world tarball
So I tried the gtkmm hello world program:
https://developer.gnome.org/gtkmm-tutorial/stable/sec-helloworld.html.en
and I put it in a tarball (Attached.)
Anyway, I cross-compiled it with mingw and it runs fine in a windows VM.
When I run it with wine though, it crashes -- which is surprising because the
program does so little!
I ran it with GDK_DEBUG=all and I can see that it's crashing on the showing of
a window.
I guess I should mention that I'm running this in an Xorg session, and not
Wayland.
Anyway, I'm running wine 2.8 as provided by Fedora 25.
Here is the backtrace:
https://pastebin.com/yWZkHkDZ
I don't know if it's customary to upload executables here, so I won't do that
unless asked.
--
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=49381
Bug ID: 49381
Summary: Building wine from source on 32 bit Slackware Linux
fails since 5.10.
Product: Wine
Version: 5.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: studiosg(a)giustetti.net
Distribution: ---
Created attachment 67441
--> https://bugs.winehq.org/attachment.cgi?id=67441
Archive containing the configure, make dep and make output in 2 files
The issue arises while building Wine 5.10 on 32 bit Slackware. Both Slackware
14.2 stable and current (15.0 beta) are affected while The 64 bit version
builds just fine.
The build procedure exits badly while linking ntdll.so, returning errors like:
/usr/bin/ld: unix/server.o: in function `remove_fd_from_cache':
server.c:(.text+0x29d): undefined reference to
`InterlockedCompareExchange64'
/usr/bin/ld: unix/server.o: in function `add_fd_to_cache':
server.c:(.text+0x60f): undefined reference to
`InterlockedCompareExchange64'
The output of the configure, make dep and make command is included into the
attached archive. They refer to the 14.2 current environment.
Thanks
Simone
--
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=47396
Bug ID: 47396
Summary: Lord of the Rings Mouse Pointer falls back to
System-Pointer since wine 4.9
Product: Wine
Version: 4.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wasti2k(a)gmail.com
Distribution: ---
Mouse Pointer falls back to System-Pointer since wine 4.9
Mouse Pointer changes to System Pointer, by moving the pointer over an enemy.
Last working Version was Wine 4.6
--
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=45244
Bug ID: 45244
Summary: MapleStory: screen freezes with certain audio files
Product: Wine
Version: 3.8
Hardware: Other
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alpha.s3r(a)gmail.com
Created attachment 61485
--> https://bugs.winehq.org/attachment.cgi?id=61485
Trimmed bug report. Frame Sync failed repeated indefinitely (but file size was
125 MB), so I erased most of those lines.
Wine screen freezes when playing certain audio files. It seems to be either
non-MPEG2 files or audio files that don't conform to 24k bps or 22050 Hz (any
audio under this classification seems to be fine).
The specific audio file that was used to replicate the crash was: MPEG 2.5 / 8k
bps / 8000 Hz. I've tested out other Wine versions, and Wine Stable 3.0 has the
same error, along Wine Staging 3.6, 3.7, 3.8.
However, if you use Wine 2.22 or Wine 1.4.1, the app runs fine and doesn't
freeze at these sound effects.
--
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=39276
Bug ID: 39276
Summary: Resizing window in TellTale games does not resize
active area
Product: Wine
Version: 1.7.50
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: robertc(a)gmail.com
Distribution: ---
In recent Telltale games (Walking Dead Season 2, Tales from the Borderlands)
resizing the display leads to some areas of the screen becoming hidden.
The games start in 1024x768 resolution by default, if you change that in the
game settings to, for instance, match your desktop resolution then you end up
with a 1024x768 panel showing the top left of game in the middle of a
blank/broken area. It is possible to interact with things outside the 1024x768
panel but you have to guess where they are.
I've attached a screenshot of the issue on my 1366x768 laptop.
This doesn't happen with The Walking Dead Season 1 so I assume this is some
update that Telltale have made to their game engine which is now broken 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=43284
Bug ID: 43284
Summary: I have tried to install Altium Designer in Ubuntu
12.04 through wine version 1.4 and aloso tried ubuntu
14.04 through wine version 1.6.It's successfully
installed the altium Designer.But when i tried to open
the application it hang on the machine.
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kalidass.s(a)ahana.co.in
Distribution: ---
Hey Guys,
This is kalidoss.I have been using altium designer software in my
windows 7 machine ( x64 ) with out any fails.I want to use this application in
my ubuntu linux machine.
I have tried to install Altium Designer in Ubuntu 12.04 through
wine version 1.4 and also ubuntu 14.04 through wine version 1.6.It's
successfully installed the altium Designer software .But when i tried to open
the application it hang on the machine, particularly it was stopped when
loading some view modules in both machines.Please help me to resolve this
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=53621
Bug ID: 53621
Summary: When i tried to run ssf2 on my Chromebook it said page
fault on execute access to the error then it said this
program register dump
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dedethejake(a)gmail.com
CC: austinenglish(a)gmail.com
Distribution: ---
Unhandled exception page fault
--
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=43823
Bug ID: 43823
Summary: FL Studio: Cannot play wav files
Product: Wine
Version: 2.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tichit.bryce(a)gmail.com
Distribution: ---
Hello,
I have an issue with wine when I use it on FL Studio (x64), I can't play any of
the wav files with the program. I tried many things in order to get it working
but I'm no wine expert.
Launching FL Studio in a terminal doesn't give me a lot more information, but
it seems like it is a system-wide issue since I tried to play a wav directly
with wine (and a windows soft called Gspot) and it doesn't work indeed I've got
a "unable to render the audio" issue.
Also if I try to open a media file (mp3 or wav, I did not test other formats)
with foobar2000 it doesn't work. Error "Unrecoverable playback error: Audio
data format not supported by this device (0x88780064)" while playing a wav
file.
Anyone has any clues on how to troubleshoot this issue? I file this as a bug
but maybe there is a codec issue or something.
Regards.
--
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=31563
Bug #: 31563
Summary: Problem with an usb-serial card reader
Product: Wine
Version: 1.5.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthieu.nue(a)gmail.com
Classification: Unclassified
I would like to use a cards reader (twin30
http://medprice.fr/lecteur-carte-vitale-fixe/lecteur-sesam-vitale-twin30-us…)
on linux with a windows programm.
The cards reader is a native serial device but it solds with a USB-serial
converter.
For testing the cards reader, i use a little programme named cpgesw32.exe.
On windows, it works.
On linux, it works with the equivalent program for linux.
So my card reader works on linux.
Now i want testing my cards reader with cpgesw32.exe on linux with wine.
The cards reader freeze after several seconds.
So i look the source code of wine.
The freeze of the device happens with the command
KERNEL32.WriteFile(0000004c,0033f2a4,00000009,0033f13c,00000000).
To continue, i used an usb sniffer. Before the freeze, the cpgesw32's program
call several command :
KERNEL32.GetCommState(0000004c,003552c0)
KERNEL32.SetCommState(0000004c,003552c0)
KERNEL32.GetCommTimeouts(0000004c,0033f8f8)
and others.
When KERNEL32.GetCommState(0000004c,003552c0) is called, the wine programm
launch :
- get_baud_rate
- get_line_control
- get_hand_flow
- get_special_chars
With the sniffer, i noticed that only the first command (get_baud_rate)
transmit a packet on the usb. After that, nothing on the usb port before the
WriteFile.
I noticed that if i open a connexion with my serial-usb device, only one
command works. If i want a second command, i need to close the conexion and
reopen it.
I suppose this is the object of the "server_get_unix_fd" function for wine.
So,
- is everyserial device works like that (one command by connexion) or is it
only my device ?
- is someone can help me on the "server_get_unix_fd" function ?
Thank you and sorry for my english (french speaker).
Matteli
--
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=52521
Bug ID: 52521
Summary: RMS Express: Intermittent TCP connections between
program components
Product: Wine
Version: 7.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: eric.wheez(a)gmail.com
Distribution: ---
Context: RMS Express is a "Email over Radio" email-like client that interfaces
with sound modems (sound is then sent over radio to listening stations), much
like the old dial-up modems of the 1990's. Its modems are separate programs
that connect to it over local TCP.
Problem: I would technically call this a minor bug, but since many users of
this program don't like using computers and might not try closing and
re-running RMS Express, I would consider it basically a 'crash' for this
program. RMS Express's code can be peeked at with ILspy and ARDOP (one of the
modem programs) is open-source (available by joining
https://ardop.groups.io/g/main - and then later joining
ardop.groups.io/g/developers )
System:
- Happens on Debain 10/x86 (VMWare) & on RPi4/armv7l (see
https://github.com/WheezyE/Winelink/)
- Using wine-devel-7.1 (has been present since at least wine-devel-5.19 -
haven't tried earlier than that)
- Happens whether using wine-mono or .NET 4.6 (so we can rule out a wine-mono
bug)
Installation: If you're interested, here are some quick install commands &
notes.
```
# Set up wine
# NOTE: wine-mono is also required for RMS Express!
winetricks -q win7 sound=alsa # for RMS Express
winetricks -q vb6run pdh_nt4 win7 sound=alsa # for VARA
# Install RMS Express & VARA HF/FM (no matter what their version numbers are)
# NOTE: ARDOP, VARA HF, & VARA FM need the user to configure soundcards after
installation.
mkdir rmsdownloads 2>/dev/null; cd rmsdownloads
sudo apt-get install curl megatools p7zip-full -y
# Download / extract RMS Express
echo -e "\nDownloading and installing RMS Express . . .\n"
wget -q -r -l1 -np -nd -A "Winlink_Express_install_*.zip"
https://downloads.winlink.org/User%20Programs
7z x Winlink_Express_install_*.zip -o"WinlinkExpressInstaller"
wine WinlinkExpressInstaller/Winlink_Express_install.exe /SILENT
# Download / extract VARA HF
echo -e "\nDownloading VARA HF . . .\n"
VARAHFLINK=$(curl -s https://rosmodem.wordpress.com/ | grep -oP
'(?=https://mega.nz).*?(?=" target="_blank" rel="noopener noreferrer">VARA HF
v)') # Find the mega.nz link from the rosmodem website no matter its version,
then store it as a variable
megadl ${VARAHFLINK}
7z x VARA\ HF*.zip -o"VARAHFInstaller"
wine VARAHFInstaller/VARA\ setup*.exe /SILENT
# Download / extract VARA FM
echo -e "\nDownloading VARA FM . . .\n"
VARAFMLINK=$(curl -s https://rosmodem.wordpress.com/ | grep -oP
'(?=https://mega.nz).*?(?=" target="_blank" rel="noopener noreferrer">VARA FM
v)') # Find the mega.nz link from the rosmodem website no matter its version,
then store it as a variable
megadl ${VARAFMLINK}
7z x VARA\ FM*.zip -o"VARAFMInstaller"
wine VARAFMInstaller/VARA\ FM\ setup*.exe /SILENT
cd ..
rm -rf rmsdownloads
# NOTE: RMS Express requires a free user account, which you can sign up for on
first run of the program.
```
Terminal output: The terminal output segments when ARDOP connects to RMS
Express (vs when ARDOP fails to connect to RMS Express) look basically
identical
(process numbers -and also the address in ImmReleaseContext- change every run)
Connects:
---snip---
0238:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
0238:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll",
(null), 0021E7F8, 00258AF8, 0021E7FC, 0021E7F0
0238:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll",
(null), 0021E7F8, 00258AF8, 0021E7FC, 0021E7F0
0238:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll",
(null), 0021E7F8, 00258AF8, 0021E7FC, 0021E7F0
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0238:fixme:imm:ImeSetActiveContext (0x2596c8, 1): stub
0238:fixme:imm:ImmReleaseContext (000200E4, 002596C8): stub
---snip---
Doesn't connect:
---snip---
0288:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
0288:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll",
(null), 0021E7F8, 00258AF8, 0021E7FC, 0021E7F0
0288:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll",
(null), 0021E7F8, 00258AF8, 0021E7FC, 0021E7F0
0288:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll",
(null), 0021E7F8, 00258AF8, 0021E7FC, 0021E7F0
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0060:fixme:nsi:ipv6_forward_enumerate_all not implemented
0288:fixme:imm:ImeSetActiveContext (0x2596c8, 1): stub
0288:fixme:imm:ImmReleaseContext (000300EC, 002596C8): stub
---snip---
I'm excited to say I got this program working on Android (without root)
recently thanks to box86/Termux/PRoot https://youtu.be/FkeP_IW3GGQ?t=23 . Lots
of ham radio operators are using really old Windows PC's to run this software
on their message servers. Many people want to take this software with them in a
backpack too (without getting an expensive Windows tablet) or strapped to their
radio on a Raspberry Pi, and I think solving this weird intermittent TCP
connection issue in Wine could help make using wine with RMS Express pretty
popular.
--
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=42460
Bug ID: 42460
Summary: League of Legends performance degradation over time
Product: Wine
Version: 2.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: krzysztofmachura1(a)gmail.com
Distribution: ---
After 30-40 min in game any spell casted causes stutter and fps becomes a lot
lower.
I get ~25fps at 30 min as well as stutter, after restarting game its back at
~80fps without any sttuter
Checked with
Windows xp, winetricks d3dx9_39+old LoL launcher
Windows 10, winetricks d3dx9, d3dcompiler_47 set to native+old Launcher
It happens on wine-staging with CSMT on and CSMT off, as well as normal 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=39689
Bug ID: 39689
Summary: I was trying to open sims 4 then it said there was a
erroe but i was like whatever but now whenever i try
to open the game it is just blank. It seems to have a
error with origin
Product: Wine
Version: unspecified
Hardware: Other
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: yungeun123(a)yahoo.com
Created attachment 52923
--> https://bugs.winehq.org/attachment.cgi?id=52923
I was trying to load the game sims 4 but there seems to be a problem
I was trying to open sims 4 then it said there was a erroe but i was like
whatever but now whenever i try to open the game it is just blank
--
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=29071
Bug #: 29071
Summary: Falcon BMS 4: Low FPS on Wine 1.3.32
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: victhor.foster(a)gmail.com
Classification: Unclassified
Created attachment 37463
--> http://bugs.winehq.org/attachment.cgi?id=37463
In-game graphics settings window
Falcon 4 BMS runs with a very low framerate(5-7 FPS as reported by the in-game
FPS indicator) in Wine 1.3.32. However, in Wine 1.2.3, the game runs at 20-23
FPS.
The scene used for the tests was the same(default "Korea" theater, game was
started using "instant action" > "commit" button). Attached is a screenshot of
the settings window, the settings used were exactly the same for both Wine
versions.
I would just use 1.2.3 for the time being if it wasn't for a annoying bug,
where switching to another window while the game is being played(Alt+Tab)
causes the gameplay window to turn black(on menu windows, this doesn't happen).
This does not happen on 1.3.32.
--
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=21267
Summary: Fallout 3 GOTY: Crashes Randomly
Product: Wine
Version: 1.1.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hibbsncc1701(a)yahoo.com
Created an attachment (id=25570)
--> (http://bugs.winehq.org/attachment.cgi?id=25570)
The Console log after a crash during the black screen after the opening video.
Fallout 3 Game of the Year Edition will crash in semi-random places when
starting a New game. Some of these places include the black screen right after
the opening video, after inputting the player's name, after customizing the
character, During the Birthday scene when you are shooting the radroach with
your BB Gun, etc. It seams to be a script executing error as the game is
usually supposed to be doing something (ie. controlling the radroach so it
doesn't attack the player, moving an NPC somewhere, setting game values(player
name, how the player looks) when it stops. The Game has two different crashes
for these events, but only one shows at anytime. The first one is obvious and
the rarest a Message box pops up saying the Program encountered an error an
needs to close. A stacktrace is able to be retrieved in this case. The second
one is a freeze, ie the game is no longer controllable by the user, and the
render has stopped. Music and sound effects (such as talking) still work until
the program is killed, but the player cannot make any sound effects such as
walking or shooting a gun. The game's menus are also disabled.
I've followed the hq's guides on getting the program to run, with the small
exception of manually installing the Games for Windows Live client and .Net
Framework. As the game's installer hangs when the installer for those
components have crashed, and thus must be killed to allow the installer to
continue.
It must be noted that a save game made after Vault 101 will work normally. It's
unknown if it's the result of the save being from another computer with the
game running normally or just after Vault 101 because i can't get the game past
Vault 101 when starting a new game.
System Specs:
Mandriva Linux 2010.0 X86_64
Intel Core 2 Quadcore
Latest Nvidia Drivers as of 1/5/2010
Wine 1.1.35 Mandriva Linux Repo
(If anyone needs more just ask.)
--
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=47819
Bug ID: 47819
Summary: Gramps does not display text labels, displays boxes
instead
Product: Wine
Version: 4.16
Hardware: x86-64
URL: https://www.gramps-project.org/wiki/index.php?title=Do
wnload#MS_Windows
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
Created attachment 65316
--> https://bugs.winehq.org/attachment.cgi?id=65316
screenshot
$ wine --version
wine-4.16
$ openssl sha256 GrampsAIO-5.1.1-1_win32.exe
SHA256(GrampsAIO-5.1.1-1_win32.exe)=
fa32bb3914508844420fe602f6746ba8f77709775c584481b979a024e3e2a69a
Gramps does not display labels properly, it shows boxes instead.
--
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=26706
Summary: SolidWorks: Some tools cannot be activated
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maarten.bezemer(a)gmail.com
When clicking on the toolbar button or the menu item to activate a tool,
nothing happens.
Known tools which do not work:
- Plane (menu Insert -> Reference Geometry -> Plane)
- Convert Entities (menu Tools -> Sketch Tools -> Convert Entities)
But there are probably more occurences...?
Steps to reproduce:
- Start designing a new part
- Click the new plane button
Actual results:
Nothing happens
Expected results:
After clicking the button a new plane pane should show to fill in the
properties of the new plane and to actually create it.
--
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=26873
Summary: Dekaron: crashes when starting the game from the
launcher
Product: Wine
Version: 1.3.17
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: simondani91(a)gmail.com
Created an attachment (id=34257)
--> (http://bugs.winehq.org/attachment.cgi?id=34257)
This is the backtrace from the console
Dekaron launcher works fine, but the game itself crashes just when I try to
start.
--
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=52800
Bug ID: 52800
Summary: FL Studio Knob Cursor Capture
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: variouscrap+wine(a)protonmail.com
Distribution: ---
Volume, pitch and other knobs in FL Studio work in a way that while you are
holding left click on them, it captures the cursor and you can move your mouse
up and down to adjust the knob.
With Wine after a certain amount of mouse movement, the cursor will appear
outside of the FL Studio window.
The cursor is invisible while in the FL Studio window, but is visible,
functional and stopped by the screen borders when it goes outside.
After going outside, you can use the cursor normally, but when going back to
the FL Studio window, it is still captured and will adjust the knob and you
have to click once to release the knob.
I'm using the latest version of FL Studio 20, KDE/Kwin and Arch btw.
--
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=47172
Bug ID: 47172
Summary: Win64 prefix installs 64-bit libraries to system32
instead of syswow64
Product: Wine
Version: 4.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: joakimpokemeg(a)hotmail.no
Distribution: ---
Created attachment 64423
--> https://bugs.winehq.org/attachment.cgi?id=64423
WINEDEBUG=+wineboot,+setupapi wineboot
When I was about to install DXVK through the install script it told me that it
could not find the d3d10.dll int the syswow64 directory. So I investigated and
found that syswow64 was in fact an empty directory. I made a clean new
wineprefix with win64 architechture and the syswow64 was still completely empty
but the system32 folder was filled with alot of dlls.
When I debugged the prefix creation with "WINEDEBUG=+wineboot,+setupapi
wineboot" I saw that it put dlls from a lib64 folder into the system32 folder
(log as 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=48721
Bug ID: 48721
Summary: SSL errors and "fixme" when launching a wow .bat
application
Product: Wine
Version: 5.0-rc2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: py_lrr(a)hotmail.fr
Distribution: ---
Created attachment 66595
--> https://bugs.winehq.org/attachment.cgi?id=66595
Console backtrace
Hi,
Running a wow (BfA) .bat launcher with Wine cmd, I get a warning saying TLS
library was not found and, then, some errors about windows functions (lines
beginning with "fixme").
I looked for a solution and didn't find one for this precise case, with the
fixme I guessed it could be something unimplemented ?
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.
https://bugs.winehq.org/show_bug.cgi?id=49827
Bug ID: 49827
Summary: sDate stopped working after Wine 3.x
Product: Wine
Version: 5.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: michaelwitten82(a)gmail.com
Distribution: ---
I am on Ubuntu and have recently moved up to 20.04.1, and after the re-install
I installed MYOB in PlayOnLinux (as I always have) and the date format was
wrong.
After a LOT of testing (you can see further in a Ubuntu bug I submitted -
https://bugs.launchpad.net/ubuntu/+source/playonlinux/+bug/1892859) I have
found what the issue is. After seeing that between Ubuntu 18.04 and 20.04 they
moved from wine 3.0 to 5.0, I have tested various versions in PlayOnLinux (all
32-bit, 64-bit seemed to have other issues):
5.0 (default) - NOT working
5.16 (latest in PlayOnLinux) - NOT working
4.21 - NOT working
3.21 - WORKS
There is an easy way to test this (in PlayOnLinux)
1. Open the General tab in the Config for the VM
2. Change the Wine version to whichever you want to test
3. Go to the Wine tab and Windows reboot (I do this to be safe)
4. Open the Command prompt (under the same tab)
5. Type "date"
It will show the current date in the format being used in wine on that vm. For
me, even though everything is set to en_AU and registry settings etc are to
dd/MM/yyyy (also tried d/MM/yyyy) my date format shows as en_US format
(MM/dd/yyyy -not sure if its dd or d as its the 13th today), until I drop back
to version 3.x.
This won't be an issue to people playing games etc I guess, but to anyone doing
anything with dates important (for example I am doing accounting, so my
invoices show wrong dates) this is a show stopper.
I have seen other people online ask about it but none of the answers worked for
me. I would think this is something pretty urgent to look at and get correct.
--
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=26839
Summary: 888 Poker Crashes after login and password entered
Product: Wine
Version: 1.3.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nmorozov(a)atlas-print.ru
Created an attachment (id=34200)
--> (http://bugs.winehq.org/attachment.cgi?id=34200)
Crash screenshot
888 Poker Crashes after login and password entered, If just wait 888 poker
reports "server unreacheble" but show player on tables and some more info. Ater
I login i see my Name my status and that got crash (see screenshor) and 888
poker client hangs
--
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=38437
Bug ID: 38437
Summary: Does not load game
Product: Wine
Version: 0.9
Hardware: Other
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alika0009(a)mail.ru
Created attachment 51298
--> https://bugs.winehq.org/attachment.cgi?id=51298
I do not know what to do, and want to play(((
Good day, I have a problem with the game The Sims 4. Turn on the game and
seeing the following((
--
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=55334
Bug ID: 55334
Summary: Steam fails to load if compiled --with-wine64
Product: Wine
Version: 8.13
Hardware: x86-64
URL: https://cdn.cloudflare.steamstatic.com/client/installe
r/SteamSetup.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 74927
--> https://bugs.winehq.org/attachment.cgi?id=74927
wine-8.13 console output (eventually killed with SIGHUP)
Steam fails to load if compiled with --with-wine64.
Sometimes it'll let you know something has crashed and give you options to
restart various components (including the whole thing) but it makes no
difference.
A. This does not occur if Wine is compiled with --enable-archs=x86_64,i386.
B. It also does not occur using the official Wine binaries (for Ubuntu).
I have tried finding a library and/or kernel issue, but I cannot find it. The
openSUSE logs don't seem to build with --with-wine64. I don't know how those
binaries actually work. Something to do with multiarch setup?
I've tried building with a number of Ubuntu versions, Debian Stable and
Testing, and openSUSE Tumbleweed but the result is always the same.
My build process:
CFLAGS="-g -O0 -pipe"
64 bit: configure --enable-win64 => wine64
32 bit (schroot): configure => wine32
Combine (schroot): configure --with-wine64=wine64 --with-wine-tools=wine32
i386 chroots are need to build 32-bit Wine parts.
$ gcc --version
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Also tried GCC 12 but no change.
Tried compiling a few older Wines but it made no difference, and eventually hit
other bugs. Doesn't look like a regression.
From what I can see in htop it looks like one of the steamwebhelper processes
is the problem, but I don't know what the problem is exactly.
My guess is there's a problem with the i386 part (or some sort of chroot
madness?). (A) and (B) don't seem to touch 32-bit libraries, at least not in
the same way.
I'm at a loss.
Waffle:
https://forum.winehq.org/viewtopic.php?t=37852
Note: On first run Steam will self-update. This seems to work fine.
No log-in 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=51800
Bug ID: 51800
Summary: UserBenchmark Crash
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lolothepro29(a)gmail.com
Distribution: ---
Created attachment 70686
--> https://bugs.winehq.org/attachment.cgi?id=70686
Logs
UserBenchmark crash in full benchmark
--
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=37740
Bug ID: 37740
Summary: Photoshop CS2 - Scanner IO problems
Product: Wine
Version: 1.7.32
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 50251
--> https://bugs.winehq.org/attachment.cgi?id=50251
Console output - Wine 1.7.32
Hello everyone,
Photoshop CS2 seems to be unable to contact the TWAIN source of my USB scanner
a Hewlett Packard 2544 AIO device. I will create two attachments, one for the
plain console output and one with WINEDEBUG=+twain
--
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=46049
Bug ID: 46049
Summary: Regression?: Unable to draw green annotations in
Chessbase 11
Product: Wine
Version: 3.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dav75uk(a)yahoo.co.uk
Distribution: ---
It no longer seems to be possible to draw green annotations in Chessbase 11. To
do this hold down alt and click (and move the mouse for an arrow). Alt + shift
and alt + ctrl (red and yellow) appear to work still. This could be an effect
of the window manager (KDE) as alt and mouse moves the window and that appears
to be happening, but surely the Windows behaviour should be the default if
actioned on a windows application?
This used to be possible.
--
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=52347
Bug ID: 52347
Summary: Can't copy text from Notepad++ running in Wine and
paste to Google Chrome (natively installed)
Product: Wine
Version: 6.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: EmilySeville7cf(a)gmail.com
Distribution: ---
Notepad++: 8.2
Google Chrome: 96.0.4664.110
I have Notepad++ launched in Wine and Google Chrome on the host OS. When I try
copy-paste from Wine app to natively running browser nothing is pasted.
--
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=47742
Bug ID: 47742
Summary: Nexus mod manager doesn't work on 4.15 [REGRESSION]
Product: Wine
Version: 4.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: timofeevsv1989(a)gmail.com
Distribution: ---
It works on 4.10, but on 4.15 subprocess crashing and it doesn't 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=37739
Bug ID: 37739
Summary: Web page with ActiveX component crashes IE8
Product: Wine
Version: 1.7.32
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: steko(a)iosa.it
Distribution: ---
Created attachment 50249
--> https://bugs.winehq.org/attachment.cgi?id=50249
backtrace
We are trying to use IE8 in Wine for accessing an Intranet application that is
also based on ActiveX components. I was positively surprised to see that
everything works smoothly, except for this crash that seems to happen
consistently.
Obviously I have no way to make this application available for testing, as I am
only a user and I've got no control over the deployment.
The crash occurs when I load a specific type of page in the app, with forms
that display file attachments and normally would let me upload attachments -
not with normal HTML forms but through the ActiveX controls, AFAICT. This stuff
works normally under 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.
http://bugs.winehq.org/show_bug.cgi?id=35741
Bug ID: 35741
Summary: Native Mumble push-to-talk issues when in steam under
wine games
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mysticknight487(a)aim.com
Once in a steam game the push to talk gets the initial push, but not the
releasing of the push-to-talk button, when using a mouse key for push to talk.
When using keyboard push to talk the behavior is as expected.
--
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=36770
Bug ID: 36770
Summary: Pinball Arcade refuses to start
Product: Wine
Version: 1.7.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dmn2004404(a)gmail.com
Created attachment 48831
--> http://bugs.winehq.org/attachment.cgi?id=48831
backtrace.txt generated by error report for PinballArcade.exe
On starting Pinball Arcade from the Windows version of Steam installed via
Winetricks, Wine reports: "The program PinballArcade.exe has encountered a
serious problem and needs to close. We are sorry for the inconvenience."
Clicking "Error Details" returns the following backtrace, attached to this bug
report.
--
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=27909
Summary: EVE Online: Installer is missing left half of text
Product: Wine
Version: 1.3.24
Platform: x86
URL: http://www.eveonline.com/download/
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=35705)
--> (http://bugs.winehq.org/attachment.cgi?id=35705)
bad screenshot
See screenshot. No terminal output.
tried winetricks ie7 allfonts riched20 riched30 gdiplus, but none made a
difference (though allfonts gave better fonts, obviously :p).
481a33ca000fcc136cbecd666cd181688882d836 EVE_Premium_Setup_273475.exe
--
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=45895
Bug ID: 45895
Summary: World of Tanks 1.1 not able to start "Wine C++
Library, R, Program: C, a"
Product: Wine
Version: 3.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: m(a)maltris.org
Distribution: ---
Created attachment 62410
--> https://bugs.winehq.org/attachment.cgi?id=62410
back trace
0.9 worked perfectly, I used it for a while some time ago. When trying 1.1 no
matter if its wine-staging or -stable, it crashes with this problem. Cleared
the winepath multiple times and reinstalled fully. No success.
--
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=51165
Bug ID: 51165
Summary: All programs fail to find libraries
Product: Wine
Version: 6.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ilkka.prusi(a)gmail.com
Distribution: ---
Wine versions from 6.6 to newest 6.9 all programs fail to find system
libraries.
Failing programs include wine-programs like winecfg.
Returning to 6.5 all works well again.
System is Debian 11 (testing), gcc (Debian 10.2.1-6) 10.2.1 20210110, kernel
version 5.11.22
For example, running winecfg gives:
0024:err:module:import_dll Library sechost.dll (which is needed by
L"C:\\windows\\syswow64\\advapi32.dll") not found
0024:err:module:import_dll Library advapi32.dll (which is needed by
L"C:\\windows\\syswow64\\shlwapi.dll") not found
0024:err:module:import_dll Library sechost.dll (which is needed by
L"C:\\windows\\syswow64\\advapi32.dll") not found
0024:err:module:import_dll Library advapi32.dll (which is needed by
L"C:\\windows\\syswow64\\gdi32.dll") not found
--
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=24028
Summary: WaitForInputIdle doesn't return for specific
application (infinite loop?)
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zajec5(a)gmail.com
There is application called Injection Launcher that launches Ultima Online
(game) client and then hacks it. When using Wine, Injection Launcher doesn't
notice that client started.
Is uses something like:
if (WaitForInputIdle(pi.hProcess, INFINITE) != 0)
{
api_error("Failed waiting for client window to open");
error_stage(STAGE_STARTCLIENT);
return 0;
}
This bug is present in Wine since "ever" and exists in 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.
https://bugs.winehq.org/show_bug.cgi?id=53184
Bug ID: 53184
Summary: It said no Direct3D
Product: Wine
Version: 7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: alloyedbrick(a)outlook.com
Distribution: ---
Created attachment 72624
--> https://bugs.winehq.org/attachment.cgi?id=72624
Unity web player
First I can't run Red Alert2 Mental Omega now,but I can run it before
Then Unity web player said no DX9
--
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=47743
Bug ID: 47743
Summary: Witcher Script Merger doesn't work on 4.15
Product: Wine
Version: 4.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: timofeevsv1989(a)gmail.com
Distribution: ---
It works on 4.10, but on 4.15 it cant find its config, and always loosing
dependencies.
--
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=41075
Bug ID: 41075
Summary: Into The Stars requires libcef.dll
Product: Wine
Version: 1.9.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fjfrackiewicz(a)gmail.com
Distribution: ---
Created attachment 55258
--> https://bugs.winehq.org/attachment.cgi?id=55258
Terminal output Wine 1.9.15-272-g0b49495
While testing the latest git version of Wine with this game, I noticed that
there is the following terminal output when starting the game:
err:module:import_dll Library libcef.dll (which is needed by L"C:\\GOG
Games\\Into the
Stars\\Nebraska\\CefRuntime\\Binaries\\Win64\\CefFramework.dll") not found
Some basic googling shows that this might be a .DLL related to Chrome but I am
not 100% sure.
If this bug is invalid, please let me know. Terminal output 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=37711
Bug ID: 37711
Summary: payday 2 broken lighting
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: davyaxel(a)free.fr
Distribution: ---
On wine/radeonsi, payday 2 has broken lighting, and objects have no shadows.
This doesn't make the game unplayable. It's just objects have no shadows.
Gallium Nine has light working.
While trying to fix a bug with Gallium Nine textures of some parts of the road,
I tested different configuration of input channels / default values for empty
channels for the textures used by the game.
In particular for depth stencil formats, like D3DFMT_D24S8 used by the game, we
have the depth on r, the stencil on g, and b=0 a=1
I don't remember what different combinations I tried for this format, but
basically when different from that, I got broken lights exactly like wine.
Which makes me think wine probably doesn't handle this format correctly.
If you want to reproduce we have a server with the trace (too big to put here -
taken with apitrace), come on our channel (#d3d9) to ask for access.
--
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=43819
Bug ID: 43819
Summary: steam overlay - unusable on ultrawide screen
Product: Wine
Version: 2.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bronsonmathews(a)gmail.com
Distribution: ---
Have an issue with steam overlay. It reners semi-transparent but nothing can be
used in it. This issue only occurs on my machine with an ultrawide screen. On
my other identical machine with identical OS, it works flawless.
--
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=39768
Bug ID: 39768
Summary: scaling window for games with low resolution
Product: Wine
Version: 1.8-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: legluondunet(a)free.fr
Distribution: ---
Hello,
some old games do not have a resolution bigger than 640x480.
For example:
Shivers
The longest journey
Motoracer
..
and the modern displays does not have a 4:3 ratio, so it is not possible to put
this games in fullscreen or the games will be stretch. Some modern screens do
not even support this resolution.
Do you plan to add a scaling feature to wine?
LGDN
--
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=52131
Bug ID: 52131
Summary: wine-mono + RMS Express: HF Channel Selection Browser
crashes
Product: Wine
Version: 6.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: eric.wheez(a)gmail.com
Distribution: ---
wine-mono + RMS Express: HF Channel Selection Browser crashes when updating
from the internet (crashes soon after the "Update from Internet" button is
pushed - after downloading data, during "STANDBY - Updating RMS channels
propagation indices for" [callsignhere]). Crash happens with wine-mono, but
does not happen with dotnet46.
A very similar-looking crash also happens when pushing the "SFI" (solar flux
index) button in the HF Channel Selection Browser (which also crashes during
"STANDBY - Updating RMS channels propagation indices for" [callsignhere]). This
crash could be the same crash as the "Update from Internet" crash.
Notes:
Madewokherd (Esme) has been incredibly gracious (already fixing three other
errors in wine-mono + RMS Express) that I didn't want to be annoying by posting
another RMS Express error on their github page, so I thought maybe this would
be the best place to post. The other bugs that Esme fixed (thank you!!) and
their terminal logs (for comparison) can be found here:
https://github.com/madewokherd/wine-mono/issues/116 &
https://github.com/madewokherd/wine-mono/issues/122
System specs:
- Program: RMS Express.exe (Winlink Express) v1.5.42.0 (latest as of
11/28/2021 - downloaded from https://downloads.winlink.org/User%20Programs/ ).
Note: This program requires a free user account to use. User accounts can be
created for free using the in-program prompts on first-run.
- Winetricks packages: winetricks -q dotnet46 win7 sound=alsa
- Wine version: wine-devel 6.22
- wine-mono version: Nov 26, 2021 nightly (PR #126 / commit 6831b18 - msi
downloaded from
https://github.com/madewokherd/wine-mono/actions/runs/1496716432 )
- OS: x86 Debian 10 Linux (on VMWare Workstation 16 on a Windows laptop)
Logs:
I've logged quite a bit of behavior and attached those below.
- For larger logs, I've included truncated versions and 'interesting' parts.
- The crash 'backtrace' from the wine/wine-mono "Program Error" window is
included.
- Logs also include both the program running idly in wine-mono (without
pushing the "Update from Internet" button) and the program crash in wine-mono.
- Different logs were made using by running wine-mono's built-in functions:
WINE_MONO_TRACE=x, WINE_MONO_TRACE=program, and WINE_MONO_TRACE=wrapper. (No
suspicious WINE_MONO_TRACE=x exceptions pop up during the crash though).
- I've also logged normal behavior on Windows using "Improved dotNET Tracer"
(by Kao / Kurapica), which shows which program VB.NET methods are supposed to
be being used when the crash happens (it also doesn't expose any .NET
Windows/Winlink code internals, just program method names near the crash).
- Some pictures are also included for reference.
Let me know what you think or if I can submit any other logs. And thank you
for reading/considering 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=37725
Bug ID: 37725
Summary: Tera Online seems to Freeze
Product: Wine
Version: 1.7.32
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: eli(a)orbsky.homelinux.org
Distribution: ---
Tera online seems to freeze after clicking on the Play on the Launcher.
Debug info is coming soon.
--
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=51607
Bug ID: 51607
Summary: Microsoft Edge Installer: Unsupported query properties
issue when prefix version is set to Win10
Product: Wine
Version: 6.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mountmgr.sys
Assignee: wine-bugs(a)winehq.org
Reporter: madbyte(a)tuta.io
Distribution: ---
Created attachment 70462
--> https://bugs.winehq.org/attachment.cgi?id=70462
Error message after downloading files
I tried the same thing because for me Edge fails to install if Win10 is set
before the installer is run, stating that there was an error when temporarily
saving the downloaded setup files.
Backtrace (win10 prefix - fails):
https://gist.github.com/MadByteDE/d0ebe8056aa95ef160c17166f58bff57
Backtrace (win7 prefix - succeeds):
https://gist.github.com/MadByteDE/a965e3ebb3b784f85369effa2ba64aae
Issue seems to be this part (after comparing the backlogs):
0058:fixme:mountmgr:query_property Unsupported property 0x7
0058:fixme:mountmgr:query_property Unsupported property 0x8
0058:fixme:mountmgr:query_property Unsupported property 0x7
0058:fixme:mountmgr:query_property Unsupported property 0x8
0058:fixme:mountmgr:query_property Unsupported property 0x7
0058:fixme:mountmgr:query_property Unsupported property 0x8
There is another (seemingly unrelated) issue with Microsoft Edge that lead me
to this bug because I tried to set win10 first and then run the installer.
https://bugs.winehq.org//show_bug.cgi?id=51437
--
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=42822
Bug ID: 42822
Summary: Steam slow with multi-monitor setup
Product: Wine
Version: 2.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bronsonmathews(a)gmail.com
Distribution: ---
I'm running KDE/ubuntu, and have noticed that when I run steam if I have two
monitors plugged in it runs at an unusable speed. If i unplug my second monitor
wine runs steam perfectly 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=45767
Bug ID: 45767
Summary: tracert: Can't recognize 'tracert' as an internal or
external command, or batch script.
Product: Wine
Version: 3.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: asdfghrbljzmkd(a)outlook.com
Distribution: ---
The "tracert" utility does not seem to exist 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.
http://bugs.winehq.org/show_bug.cgi?id=18950
Summary: eBay unable to authorise Turbo Lister
Product: Wine
Version: 1.1.23
Platform: PC
URL: http://download.ebay.com/turbo_lister2/setupUK.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21800)
--> (http://bugs.winehq.org/attachment.cgi?id=21800)
Screenshot
Turbo Lister connects to eBay to authorise itself to access your account.
Under Wine, the eBay site reports success, but Turbo Lister doesn't do anything
about it. Nothing new is printed in the console, but there are lots of these:
fixme:shdocvw:ClOleCommandTarget_Exec
Not sure what traces would help here...
--
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=55083
Bug ID: 55083
Summary: Sacred 2 needs support for instruction type
HLSL_IR_LOOP
Product: vkd3d
Version: 1.7
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Distribution: ---
0024:err:d3dcompiler:D3DCompile2 <anonymous>:130:1: E5017: Aborting due to
not yet implemented feature: Instruction type HLSL_IR_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.
https://bugs.winehq.org/show_bug.cgi?id=38923
Bug ID: 38923
Summary: Unity editor eror [32x with 32x wine]
Product: Wine
Version: 20050930
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: free9988771(a)gmail.com
Distribution: ---
Created attachment 51853
--> https://bugs.winehq.org/attachment.cgi?id=51853
unity editor eror
[07/15/15 13:06:45] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
wineserver crashed, please enable coredumps (ulimit -c unlimited) and restart.
[07/15/15 13:07:31] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
[07/15/15 13:08:01] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred
wineserver crashed, please enable coredumps (ulimit -c unlimited) and restart.
[07/15/15 13:52:29] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred
[07/15/15 13:59:00] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
[07/15/15 13:59:01] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred
ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred
wineserver crashed, please enable coredumps (ulimit -c unlimited) and restart.
[07/15/15 13:59:19] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
wineserver crashed, please enable coredumps (ulimit -c unlimited) and restart.
[07/15/15 14:07:12] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred
wineserver crashed, please enable coredumps (ulimit -c unlimited) and restart.
[07/15/15 14:08:12] - Running wine-1.7.47 Unity.exe (Working directory :
/home/toghrul/.PlayOnLinux/wineprefix/Unity3new/drive_c/Program
Files/Unity/Editor)
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:mountmgr:harddisk_ioctl Unsupported ioctl 2d1400 (device=2d access=0
func=500 method=0)
fixme:wbemprox:client_security_SetBlanket 0xf71feabc, 0x158ff0, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0xf71feabc
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:win:DisableProcessWindowsGhosting : stub
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:imm:ImmDisableTextFrameService Stub
fixme:thread:GetThreadPreferredUILanguages 56, 0xe7fe508, (nil) 0xe7fe50c
fixme:winsock:WSALookupServiceBeginW (0xe7fe3dc 0x00000ff0 0xe7fe418) Stub!
fixme:iphlpapi:NotifyAddrChange (Handle 0xe7fe544, overlapped 0x67a1e48): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x10062,
filter=0xe7fe550,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x10062,
filter=0xe7fe550,flags=0x00000000) returns a fake device notification handle!
fixme:ver:GetCurrentPackageId (0xd02ea08 (nil)): stub
fixme:win:EnumDisplayDevicesW ((null),0,0xe7fdeb0,0x00000000), stub!
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x2004e 0x00000000
fixme:msctf:InputProcessorProfileMgr_GetActiveProfile
(0x15a4d8)->({34745c63-b2f0-4784-8b67-5e12c8701a31} 0xe7fe290)
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:advapi:RegisterTraceGuidsW (0x352a270, 0x57eea98,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x57b6354, (null), (null),
0x57eeab0): stub
fixme:advapi:RegisterTraceGuidsW register trace class
{00000000-0000-0000-0000-000000000000}
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:advapi:RegisterTraceGuidsW (0x1013a270, 0x123fea98,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x123c6354, (null), (null),
0x123feab0): stub
fixme:advapi:RegisterTraceGuidsW register trace class
{00000000-0000-0000-0000-000000000000}
fixme:gdi:GdiInitializeLanguagePack stub
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x292ea08 (nil)): stub
fixme:wtsapi:WTSUnRegisterSessionNotification Stub 0x2004e
fixme:win:EnumDisplayDevicesW ((null),0,0x2dae078,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x2dadf58,0x00000000), stub!
fixme:dxgi:dxgi_output_GetDesc iface 0x1c00f0, desc 0x2dae41c stub!
fixme:wbemprox:client_security_SetBlanket 0xf71feabc, 0x1c0118, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0xf71feabc
fixme:win:EnumDisplayDevicesW ((null),0,0x2dade58,0x00000000), stub!
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
fixme:imm:ImmReleaseContext (0x100e2, 0x1e0a08): stub
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:win:RegisterRawInputDevices Unhandled flags 0x100 for device 0.
fixme:win:RegisterDeviceNotificationW (hwnd=0x100ee,
filter=0x2dae9a4,flags=0x00000004) returns a fake device notification handle!
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
err:wgl:glxdrv_wglShareLists Could not share display lists, one of the contexts
has been current already !
fixme:dbghelp:validate_addr64 Unsupported address fffffffff71d0000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff71b0000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff7060000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff75b0000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff7310000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff72f0000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff72b0000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff6470000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff30b0000
fixme:dbghelp:validate_addr64 Unsupported address fffffffff2520000
fixme:dbghelp:validate_addr64 Unsupported address ffffffffeb4e0000
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x105a097
wineserver crashed, please enable coredumps (ulimit -c unlimited) and restart.
--
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=41275
Bug ID: 41275
Summary: Don't set Notepad as the default application handler
for .txt
Product: Wine
Version: 1.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ddascalescu+wine(a)gmail.com
Distribution: ---
After installing Wine, Notepad became the default handler for .txt files.
Double-clicking on a .txt file from Nautilus or Unity Dash launches Notepad,
which is definitely not what I want. Notepad is one of the worst editors out
there, and I had Kate and Geany installed.
In Ubuntu, Default Applications doesn't show an entry for Text files, so it's
not easy to undo this change.
--
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=43213
Bug ID: 43213
Summary: Far Cry 4 Texture bugs
Product: Wine-staging
Version: 2.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tall89(a)mail.ru
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Far Cry 4 Texture bugs at high settings, wherein sound and music there is
--
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=52442
Bug ID: 52442
Summary: WM_SIZING not handled correctly
Product: Wine
Version: 7.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: hjkl(a)quantentunnel.de
Distribution: ---
Created attachment 71714
--> https://bugs.winehq.org/attachment.cgi?id=71714
Example to reproduce the issue
In case of using the WM_SIZING message to create a "raster" when resizing a
window, resizing is completely prevented.
I attached an example to reproduce the issue. The .zip file contains a Visual
C++ 2019 solution. When running the EXE (x64\Release\Example.exe), it creates a
parent and a child window. The child window has the WS_THICKFRAME style to be
resizable.
Furthermore, it overwrites the WM_SIZING message and manipulates the right
border of the passed RECT to have a raster for the resizing (window width can
only be a multiple of 16 pixels). The example only does this when dragging the
bottom right corner of the child window with the mouse.
In Windows it works fine. In Wine resizing the window doesn't work correctly.
This is the critical code part:
case WM_SIZING:
if(wParam==WMSZ_BOTTOMRIGHT) //dragging bottom right corner?
{
//create a raster of 16 pixels in X direction by manipulating
RECT::right
RECT* pRect=(RECT*)lParam;
pRect->right=pRect->left + ((pRect->right - pRect->left) &
0xfffffff0);
return TRUE;
}
--
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=48496
Bug ID: 48496
Summary: TimeShift demo crashes on startup with builtin
d3dcompiler_47 or d3dx9_34
Product: Wine
Version: 5.0
Hardware: x86-64
URL: https://www.fileplanet.com/archive/p-56060/TimeShift-D
emo
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 66291
--> https://bugs.winehq.org/attachment.cgi?id=66291
d3dcompiler+d3dx
Demo launches when libraries set to 'native,builtin'. Anyway when shaders
building done it hangs pointing to bug 46301.
--
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.