https://bugs.winehq.org/show_bug.cgi?id=48632
Bug ID: 48632
Summary: Far Cry 2 has poor performance after changing
Anti-Aliasing level
Product: Wine
Version: 5.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Start a new game with AA 16x and after a while downgrade to 8x, 4x or 2x
err:d3d:wined3d_debug_callback 0xe33d20: "GL_INVALID_FRAMEBUFFER_OPERATION
error generated. Operation is not valid because a bound framebuffer is not
framebuffer complete.".
fixme:d3d:wined3d_context_gl_check_fbo_status FBO status
GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT (0x8cd6).
fixme:d3d:context_dump_fbo_attachment GL_DEPTH_ATTACHMENT: 2d-ms texture
39, 0x0, 16 samples, format 0x88f0.
fixme:d3d:context_dump_fbo_attachment GL_STENCIL_ATTACHMENT: 2d-ms texture
39, 0x0, 16 samples, format 0x88f0.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT0: 2d-ms texture
40, 0x0, 16 samples, format 0x8c43.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT1: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT2: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT3: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT4: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT5: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT6: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT7: NONE.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48622
Bug ID: 48622
Summary: Origin crashes when exiting application with Esync
enabled
Product: Wine-staging
Version: 5.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 66470
--> https://bugs.winehq.org/attachment.cgi?id=66470
origin backtrace
How to reproduce:
1) Install EA Origin client
2) Run it with Esync and get greted with a Login screen
3) Through (virtual) task menu icon, exit the application by right clicking
"Quit Origin"
4) Experience a crash in Origin.exe
This only happens if you're no logged in and only if you're running it with
Esync enabled.
Attaching a backtrace ( a log with
+server,+esync,+fsync,+sync,+seh,+timestamp,+pid debug channels will come in
the next message)
--
Do not reply 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=30827
Bug #: 30827
Summary: Uninitialized memory reference in
create_icon_pixmaps() -> GetDIBits() ->
bitmapinfoheader_from_user_bitmapinfo()
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
While looking at bug 30826, I saw
Conditional jump or move depends on uninitialised value(s)
at bitmapinfoheader_from_user_bitmapinfo (dib.c:177)
by GetDIBits (dib.c:1210)
by create_icon_pixmaps.isra.8 (window.c:883)
create_icon_pixmaps calls GetDIBits with bits=NULL and a mostly uninitialized
info, but bitmapinfoheader_from_user_bitmapinfo() assumes that biCompression
has already been initialized.
gdi32/dib.c:
149 static BOOL bitmapinfoheader_from_user_bitmapinfo( BITMAPINFOHEADER
*dst, const BITMAPINFOHEADER *info )
150 {
...
166 else if (info->biSize >= sizeof(BITMAPINFOHEADER)) /* assume
BITMAPINFOHEADER */
167 {
168 *dst = *info;
169 }
...
176 dst->biSize = sizeof(*dst);
177 if (dst->biCompression == BI_RGB || dst->biCompression ==
BI_BITFIELDS)
178 dst->biSizeImage = get_dib_image_size( (BITMAPINFO *)dst );
1187 INT WINAPI GetDIBits(
1188 HDC hdc, /* [in] Handle to device context */
1189 HBITMAP hbitmap, /* [in] Handle to bitmap */
1190 UINT startscan, /* [in] First scan line to set in dest bitmap */
1191 UINT lines, /* [in] Number of scan lines to copy */
1192 LPVOID bits, /* [out] Address of array for bitmap bits */
1193 BITMAPINFO * info, /* [in,out] Address of structure with bitmap
data */
1194 UINT coloruse) /* [in] RGB or palette index */
1195 {
...
1208 /* Since info may be a BITMAPCOREINFO or any of the larger
BITMAPINFO structures, we'll use our
1209 own copy and transfer the colour info back at the end */
1210 if (!bitmapinfoheader_from_user_bitmapinfo( &dst_info->bmiHeader,
&info->bmiHeader )) return 0;
....
1212 if (bits &&
1213 (dst_info->bmiHeader.biCompression == BI_JPEG ||
dst_info->bmiHeader.biCompression == BI_PNG))
winex11.drv/window.c:
868 static BOOL create_icon_pixmaps( HDC hdc, const ICONINFO *icon, struct
x11drv_win_data *data )
869 {
870 char buffer[FIELD_OFFSET( BITMAPINFO, bmiColors[256] )];
871 BITMAPINFO *info = (BITMAPINFO *)buffer;
...
881 info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
882 info->bmiHeader.biBitCount = 0;
883 if (!(lines = GetDIBits( hdc, icon->hbmColor, 0, 0, NULL, info,
DIB_RGB_COLORS ))) goto failed;
Note that GetDIBits is careful to avoid referencing biCompression itself
when bits is NULL, but the function it calls doesn't know whether bits is NULL.
(bug 30266 is nearby but doesn't seem related?)
--
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=48628
Bug ID: 48628
Summary: valgrind shows dependency on uninitialized memory in
riched20/editor.c
Product: Wine
Version: 5.0-rc6
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
==152101== Conditional jump or move depends on uninitialised value(s)
==152101== at 0x403EE7A: bcmp (vg_replace_strmem.c:1113)
==152101== by 0x41837DEE: MSVCRT_memcmp (string.c:2235)
==152101== by 0x7AC534C0: ME_ApplyStyle (style.c:215)
==152101== by 0x7AC27E09: ME_RTFCharAttrHook (editor.c:539)
==152101== by 0x7AC3EE4C: ControlClass (reader.c:2363)
==152101== by 0x7AC3D06C: RTFRouteToken (reader.c:343)
==152101== by 0x7AC3CF85: RTFRead (reader.c:311)
==152101== by 0x7AC2ACA2: ME_StreamIn (editor.c:1688)
==152101== by 0x7AC2F719: ME_HandleMessage (editor.c:3629)
==152101== by 0x7AC336E1: RichEditWndProc_common (editor.c:5062)
==152101== by 0x7AC337AE: RichEditWndProcW (editor.c:5082)
==152101== by 0x4127588F: ??? (winproc.c:175)
==152101== Uninitialised value was created by a stack allocation
==152101== at 0x7AC27992: ME_RTFCharAttrHook (editor.c:418)
--
Do not reply 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=35937
Bug ID: 35937
Summary: The file crashed upon loading the program.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: carlino.designs(a)gmail.com
Created attachment 47995
--> http://bugs.winehq.org/attachment.cgi?id=47995
Error log file for eDCAA.exe
The file crashed upon loading the program.
The file can be downloaded at:
http://brightemo.co.uk/download/eDCAA.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.
http://bugs.winehq.org/show_bug.cgi?id=27570
Summary: Aliens Vs Predator 2 Demo is temporary confined
ingame.
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
I've tried the marine demo at the start the mouse movement is confined like bug
#6971 until you right click or over time, it works as per usual after this plus
"Automatically capture the mouse input in full-screen window" changes nothing.
Make fmv videos not accessible to speed up testing.
I haven't tested when you start the next level due to being a demo.
--
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=43804
Bug ID: 43804
Summary: [Steam] Alien Swarm Reactive Drop: GPU hang after a
minute or two
Product: Wine
Version: 2.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maraku(a)gmx.com
Distribution: ---
Created attachment 59338
--> https://bugs.winehq.org/attachment.cgi?id=59338
dmesg/kernel log cut to the GPU hang lines
After starting running Alien Swarm Reactive Drop through Steam, the GPU errors
and hangs (i don't know how else to describe this behavior). The X-display
becomes unresponsive, and the only way to "fix" this is to switch to another
virtual terminal and end the alien swarm wine process.
I've attached a dmesg/kernel log. Wine itself does not crash (other than for
the web helper, which I do not believe is related to this crash), so I'm not
sure how to get a stack trace.
I'm running the 4.13.4 kernel, but this happened with the 4.13.2 kernel as
well.
The game used to run fine, but I believe the September 15th update caused this
behavior. Let me know if I should attach any other logs. I could not find any
errors in the Xorg.0.log either.
This is on a 7th gen i7-7500U with the intel 620 graphics. No kernel bootflags
(in the bootloader command line) enabled.
Thanks,
Manu
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=35998
Bug ID: 35998
Summary: American Conquest: Divided Nation refuses to start.
(Black Screen followed by crash).
Product: Wine
Version: 1.7.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mjkolar(a)charter.net
I'm trying to play American Conquest: Divided Nations, but when I load it up, I
get a flash of black screen followed by a CTD. The console output is as
follows:
bash-4.2$ wine DMCR.exe
err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling back to
RandR 1.0. Please consider using the Nouveau driver instead.
fixme:win:EnumDisplayDevicesW ((null),0,0x33f5f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x33f828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f6a8,0x00000000), stub!
err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling back to
RandR 1.0. Please consider using the Nouveau driver instead.
err:mmio:MMIO_ParseExtA No extension in szFileName: "Sound\\new\\dr+flute2.wav"
fixme:win:EnumDisplayDevicesW ((null),0,0x33f458,0x00000000), stub!
fixme:d3d_surface:d3dfmt_p8_init_palette No palette set.
Note that I installed this game according to the instructions listed on the
following appdb page:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=24902 , including
the winecfg changes, the external patch, deleting the video directory, and
setting ddraw to native for this app.
I have also installed the original American Conquest demo, and I can confirm it
works with wine 1.7.12, but not wine 1.7.16, so I am presuming there is a
regression between these two releases. The American Conquest: Divided Nation
full version does not run with either release, and shows the same error
messages for both wine releases. Note also I have used a nocd to get around
Divided Nations Starforce (III?) protection. The demo does not have said
protection, so not relevant in that case.
System:
Slackware 14.1 x86_64 with alien multilib pack.
Xorg 1.15.0
NVIDIA Proprietary Blob 334.21 /w Geforce GTX 285m
Pulseaudio 5.0
Wine 1.7.12
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48627
Bug ID: 48627
Summary: Xara Designer Pro 15 and Xara PhotoGraphic 12 error
while exporting/importing bitmaps
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: capellan2000(a)gmail.com
Distribution: ---
Created attachment 66476
--> https://bugs.winehq.org/attachment.cgi?id=66476
Error Logs for Xara Design Pro 15 and Xara Photo Designer 12
Xara Designer Pro 15 and Xara Photo Graphic 12
produces an error while exporting/importing bitmaps.
Probably both programs could not write temporal files
necessary for these operations.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47691
Bug ID: 47691
Summary: Wine 4.14 DX11 demul07_111117 Resident Evil 2 Pal
Product: Wine
Version: 4.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: seganfl2k(a)gmail.com
Distribution: ---
Created attachment 65154
--> https://bugs.winehq.org/attachment.cgi?id=65154
Misssing Shaders
Wine 4.14 DX11 demul07_111117 Resident Evil 2 Pal
just some missing shader ect
here is the video to show you below
https://youtu.be/b6-3LNo1nWA
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48211
Bug ID: 48211
Summary: Regression: midl.exe fails to execute MIDL engine
Product: Wine
Version: 4.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: rpisl(a)seznam.cz
Distribution: ---
midl.exe from Windows Kits 8.1 fails with error MIDL2398 : cannot execute MIDL
engine.
This is a regression caused by commit 1deefb84ee2b6d326b5ae1bad592a72c69a89b36.
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Nov 12 21:41:06 2019 +0100
kernel32: Use RtlCreateUserProcess() to start new processes.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48626
Bug ID: 48626
Summary: Can't restart program in `--gdb` mode
Product: Wine
Version: 5.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
Assignee: wine-bugs(a)winehq.org
Reporter: hi-angel(a)yandex.ru
Distribution: ---
While debugging a program, it's often useful to set a breakpoint and then
restart the application. Unfortunately, `run` command in gdb mode doesn't work.
# Steps to reproduce (in terms of terminal commands)
╰─$ winedbg --gdb ping.exe
0055:0056: create process 'C:\windows\system32\ping.exe'/0x11420
@0x7fea58a84820 (0<0>)
0055:0056: create thread I @0x7fea58a84820
GNU gdb (GDB) 9.1
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
0055:0056: loads DLL C:\windows\system32\ntdll.dll @0x7bc20000 (0<0>)
0055:0056: loads DLL C:\windows\system32\kernelbase.dll @0x7b010000 (0<0>)
0055:0056: loads DLL C:\windows\system32\kernel32.dll @0x7b420000 (0<0>)
0055:0056: loads DLL C:\windows\system32\wow64cpu.dll @0x7fea58a90000 (0<0>)
0055:0056: loads DLL C:\windows\system32\ws2_32.dll @0x7fea58240000 (0<0>)
0055:0056: loads DLL C:\windows\system32\advapi32.dll @0x7fea581b0000 (0<0>)
0055:0056: loads DLL C:\windows\system32\iphlpapi.dll @0x7fea58a40000 (0<0>)
0055:0056: loads DLL C:\windows\system32\msvcrt.dll @0x7fea580d0000 (0<0>)
warning: remote target does not support file transfer, attempting to access
files from local filesystem.
warning: Could not load shared library symbols for linux-vdso.so.1.
Do you need "set solib-search-path" or "set sysroot"?
0x000000007bcd9e89 in DbgBreakPoint () from /usr/bin/../lib/wine/ntdll.dll.so
gdb λ run
The "remote" target does not support "run". Try "help target" or "continue".
## Expected
Gdb would ask me if I really want to restart, and then if I press Y, it would
restart the app
## Actual
The error "target does not support run"
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48620
Bug ID: 48620
Summary: libmdbx (memory-mapped DB) fail on Wine
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: leo(a)yuriev.ru
Distribution: ---
The libmdbx provides an embedded key-value storage engine (i.e. a database
service) and map whole data into memory (i.e. uses a memory mapped file), and I
am the main developer of this project.
https://github.com/erthink/libmdbx
Native versions of libmdbx work fine on both Linux, Windows, MacOS, FreeBSD,
etc.
However, the windows version does not work under Wine, for instance, as part of
the Miranda NG messenger. Therefore, some users ask me to fix libmdbx, but it
is difficult, since there are no such errors in libmdbx.
This is NOT a big problem, as there are relatively few affected users. However,
I think it would be better to fix this error as well. In addition, this fix is
likely to fix problems in other applications that are compelled to use the
Windows native API.
I am not familiar with Wine and do not use it. So I haven't tried debugging the
windows version of libmdbx on Wine yet, but decided it would be wise to fill
out this report first. I hope someone experienced can explain what's wrong on
by simply reading the description below or quickly reviewing the source code.
---
Presumably, the problem with libmdbx is using the Windows native API:
NtCreateSection(), NtMapViewOfSection(), NtExtendSection(),
NtUnmapViewOfSection(), NtClose(), NtAllocateVirtualMemory(),
NtFreeVirtualMemory(). In libmdbx, I am forced to use these functions to
increase the data file without unmap it from memory. In libmdbx, I am forced to
use these functions to increase the data file without unmap it from memory. It
is done by NtExtendSection() when a section created with SECTION_EXTEND_SIZE
access.
The next a potential cause of problems in using the functions:
NtFsControlFile(FSCTL_GET_EXTERNAL_BACKING),
GetFileInformationByHandleEx(FileRemoteProtocolInfo),
GetVolumeInformationByHandleW(), GetFinalPathNameByHandleW(). These functions
are used via GetProcAddress() to determine the placement of files on network
drives.
The last point the NtQuerySystemInformation(0x03 /* SystemTmeOfDayInformation
*/) is used to determine boot time.
Corresponding source code:
https://github.com/erthink/libmdbx/blob/master/src/elements/osal.chttps://github.com/erthink/libmdbx/blob/master/src/elements/lck-windows.c
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.
https://bugs.winehq.org/show_bug.cgi?id=48592
Bug ID: 48592
Summary: Game DayZ Dedicated Server 1.06.152885
Product: Wine
Version: 5.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: chris.76(a)hotmail.com
Distribution: ---
Created attachment 66428
--> https://bugs.winehq.org/attachment.cgi?id=66428
it crashs at the end of logs
Hello Support,
I'm an advanced user on linux and I'm trying to set up a dedicated server for
my game DayZ.
My game is available only on Steam, windows version and in 64-bit.
I used steamcmd for linux version to download the dedicated server windows
version.
Details about depots of this game :
https://steamdb.info/app/223350/depots/
You can see 2 libraries are needed :
- VC 2013 Redist
- VC 2015 Redist
So I installed wine, setted up in windows 10 (and used WINEARACH, WINEPREFIX)
and installed VC 2013 & 2015 in 64-bit edition.
Unfortunately my server crash when loading.
My server is using a vanilla config, it means untouched.
I attached logs.
Thanks in advance for helping me to fix that.
Have a nice day.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=625
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |austinenglish(a)gmail.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=48161
Bug ID: 48161
Summary: AION (32bits) wine: Unhandled page fault on write
access to 00000009 at address 00BF00C2 (thread 0009)
Product: Wine
Version: 4.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dracoanarion(a)gmail.com
Distribution: ---
Created attachment 65789
--> https://bugs.winehq.org/attachment.cgi?id=65789
WINEDEBUG=+seh,+loaddll logs
The bug appears quite soon after starting the 32bit version of the app.
The app was started using the following command:
/opt/wine-staging/bin/wine 'C:\AION\bin32\AION.bin' -ip:79.110.83.80 -noweb
-noauthgg -st -charnamemenu -ingamebrowser -webshopevent:6 -f2p -lbox
-litelauncher -64 -ncping -nosatab -aiontv -nobs -60f2p -n20 /SessKey:
/CompanyID:11 /ChannelGroupIndex:-1 -lang:fra -litestep:9
This issue is not reproducible using wine-stable.
As far as I remember, this issue started to appear on 4.17 (but would need to
be confirmed).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48624
Bug ID: 48624
Summary: Homefront has an issue with shadows in DX11 mode
Product: Wine
Version: 5.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 66473
--> https://bugs.winehq.org/attachment.cgi?id=66473
screenshots
No clues with a default output.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48251
Bug ID: 48251
Summary: packaging or sources are fatal with linux mint
Product: Packaging
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: 1l1k32p00p(a)gmail.com
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
idk
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48543
Bug ID: 48543
Summary: bug nao instala
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: celiobelps(a)gmail.com
Distribution: ---
The following packages have unmet dependencies:
wine-stable: Depende: wine-stable-i386 (= 5.0.0~eoan)
Depende: wine-stable-amd64 (= 5.0.0~eoan) but it is not going to
be installed
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48502
Bug ID: 48502
Summary: Debian buster package not installable as it depends on
unstable package
Product: Packaging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: jorohr(a)gmail.com
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
I was trying to install the freshly released 5.0 on Debian buster:
$ sudo apt install wine-stable-i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
wine-stable-i386:i386 : Depends: libfaudio0:i386 (>= 19.06.07) but it is not
installable
Recommends: libcapi20-3:i386 but it is not going to be
installed
Recommends: libodbc1:i386 but it is not going to be
installed
Recommends: libosmesa6:i386 but it is not going to be
installed
Recommends: libsdl2-2.0-0:i386 but it is not going to
be installed
Recommends: libv4l-0:i386 but it is not going to be
installed
E: Unable to correct problems, you have held broken packages.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48472
Bug ID: 48472
Summary: Debian's dsc file have missing or wrong build
dependencies
Product: Packaging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: fabstz-it(a)yahoo.fr
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Hello,
This is all on debian buster (=stable)
I used this DSC to build myself winehq-devel with a patch.
https://dl.winehq.org/wine-builds/debian/dists/buster/main/source/wine_5.0~…
I ended up facing some problems :
1. In debian/control, the following packages are mentionned. I had to remove
them because they cause problems when doing a build on a clean schroot with
debians sbuild. Sbuild tries to install them as dependencies, and they are not
found
- gcc-5 (>= 5.3) | gcc-6 |
- libgnutls30-dev |
- libncurses6-dev |
- libstdc++6-4.5-dev |
2. In debian/control, the following dependencies are missing, therefore these
packages are not installed by sbuild, and thus not used to build winehq's
binaries (./configure doesn't find them)
libvkd3d-dev [linux-any],
libvulkan-dev [linux-any],
libfaudio-dev (>= 19.06.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=48282
Bug ID: 48282
Summary: installing wine 4.21: 2 problems for ./configure one
without options, one with the option --options; 1
update problem "apt-add-repository"
Product: Packaging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: adriandonraadt(a)gmail.com
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
see 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=46872
Bug ID: 46872
Summary: version 4.4 does not provide d3d12.dll
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: timbers2k(a)gmail.com
CC: michael(a)fds-team.de, sebastian(a)fds-team.de
Distribution: ---
The packages for Ubuntu 18.10 for wine 4.4 do not provide d3d12.dll. I have
tried both winehq-stable and winehq-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=46805
Bug ID: 46805
Summary: Multiple applications crash when playing sound
Product: Wine
Version: 4.3
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: zakk(a)rsdio.com
Created attachment 63826
--> https://bugs.winehq.org/attachment.cgi?id=63826
console output trace+xaudio2
Using the winehq portable 4.3 distribution. 32 bit clean prefix, with d3dx9
installed (required for some games to start).
Multiple games are crashing when they attempt to play the first sound.
(incomplete) list of games:
Eschatos
Minus Zero
DoDonPachi Resurrection
Mushihimesama
Deathsmiles
EXZEAL
XIIZeal
DeltaZeal
There ARE games where audio works great, and even a few that improved with the
move to Faudio in 4.3.
All the stack traces look the same. I've attached an output log with
trace+xaudio2
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47966
Bug ID: 47966
Summary: Please publish SHA256 sums for Wine releases/downloads
Product: WineHQ.org
Version: unspecified
Hardware: Other
OS: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
Thank you.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23887
Summary: Microstation V8.5 opening files only in read only mode
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kalathilsunil(a)yahoo.com
Microstation, one of the popular CAD application got installed in WINE but not
able to edit files
--
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=48617
Bug ID: 48617
Summary: Audio Problem crashes game
Product: Wine
Version: 4.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexterranova81(a)gmail.com
Distribution: ---
My Game crashes with:
0038:err:winediag:MIDIMAP_drvOpen No software synthesizer midi port found, Midi
sound output probably won't work.
wine: Unhandled page fault on read access to 00000000 at address 0045FFB1
(thread 0038), starting debugger...
004a:fixme:dbghelp:elf_search_auxv can't find symbol in module
004a:fixme:dbghelp:elf_search_auxv can't find symbol in module
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48619
Bug ID: 48619
Summary: Overwatch cannot display GPU temperature
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gabriel.faye7(a)free.fr
Distribution: ---
When enabling show GPU temperature in HUD options, it displays 0°C and stays at
this value, no matter what. All other options (FPS, Ping, VRAM usage...) works
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=47377
Bug ID: 47377
Summary: After install between setup it can't be excute
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nameyearbirthday(a)gmail.com
Distribution: ---
Created attachment 64714
--> https://bugs.winehq.org/attachment.cgi?id=64714
execute error log
https://between.us/?lang=zh_hant
This is download setup.exe path
I have tested it in version 4.0.1 (stable version) and version 4.9 (latest
version).
This app will crash after execution.
This app needs to be installed.
It have the same behavior for changing the Windows environment to Windows 7 or
Windows 10.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48395
Bug ID: 48395
Summary: Disco Elysium (Steam version, 1.0.0) crashes on
starting new game, post-Char creation, with GPU error.
Product: Wine
Version: 5.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: aoanla(a)gmail.com
Distribution: ---
Created attachment 66164
--> https://bugs.winehq.org/attachment.cgi?id=66164
Unity engine backtrace on crash
Disco Elysium is a relatively new game using Unity 2019.1.?? engine.
Using wine 5.0-rc3, and launching from Steam, with Wine set to "Windows 7"
compatibility, it is possible to get into the character creation part,
pre-game.
Starting the game itself with any character causes an almost immediate crash,
presumably as the 3d engine is initialised for the game proper. (This is caught
by the Unity bug tracker.)
I'll attach full logs as requested, but here I will note that the wine output
displays:
018a:err:d3d:wined3d_debug_callback 0x81596a0: "GL_INVALID_OPERATION error
generated. Transform feedback must be enabled and not paused.".
018a:err:d3d:wined3d_debug_callback 0x81596a0: "GL_INVALID_OPERATION error
generated. Buffer is mapped.".
twice just before the crash is caught.
The Unity backtrace, attached, suggests that the crash happens in the nvidia
libraries, but it isn't clear to me that this is the fault of the nvidia
drivers themselves.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48365
Bug ID: 48365
Summary: On every update wine mess up everything; reset
folders, setting, forget every installed program.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rencer(a)euromail.hu
Distribution: ---
OS: Manjaro 18.1.4 64bit
Wine version: various
Every time there is an update or somthing, Wine "reboots" (or whatever it is
doing) it's prefix folder. Because of this, every single time ALL SETTINGS that
I changed in winecfg are reset to default and everything I installed are
"gone", Wine doesn't see anything after this. Like it is a freshly created wine
prefix without any change or anything installed in it.
The softwares that I installed before are stay there they won't deleted, just
wine doesn't see them, like they aren't installed.
Because of this every time I have to reinstall and reconfigure everything.
I'm using Lutris to configure and run games, and first I thought this bug is in
Lutris. I tried to find a solution for this unbearable behaviour, and I find
out this is not a bug in Lutris. Wine that doing this stange thing and not
Lutris.
With Lutris I can easily switch between different wine versions.
It doesn't metter if I have the latest or older wine version installed, or
using custom wine version, they all effected by this thing.
It doesn't metter that I installed the different wine versions to different
prefixes; when I run a game that uses that wine version, the given Wine prefix
is reset and I have to reinstall everything.
--
Do not reply 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=9337
Summary: direct 3d errors while running vietcong.exe
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://appdb.winehq.org/appview.php?iVersionId=8864
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: docmccoy80(a)freenet.de
When vietcong.exe is running by wine, I get always the same errors repeatedly:
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33fcb8
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33fa80
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33fd0c
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33df88
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33df68
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33df7c
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33dfa0
When I start a game in Vietcong, it is loading, but then it crashs.
If I want to select the multiplayer character, it also crashs.
I think wine has problems to emulate the direct3d eninge of Vietcong.
Unfortunately I can't give a better bug report, because I don't know much about
wine/d3d/....
Perhaps I just need a dll?!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18172
Summary: Wine crash after fixmes on htmlhelp:HtmlHelpW (Microsoft
Money 99)
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arcepi(a)arcepi.net
Created an attachment (id=20639)
--> (http://bugs.winehq.org/attachment.cgi?id=20639)
Crash log
When trying to use Microsoft Money 99, Wine crashes and dumps core just after
printing some fixmes on htmlhelp:HtmlHelpW.
The crash happens as soon as the user finishes the first step of the start
wizard, which creates the initial configuration.
--
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=48610
Bug ID: 48610
Summary: Game "Hype - The Time Quest" crashes after selecting
play from the menu
Product: Wine
Version: 5.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: benjaminhdavis8(a)yahoo.com
Distribution: ---
Created attachment 66451
--> https://bugs.winehq.org/attachment.cgi?id=66451
contatenated backtrace from crashes (after vidio options selection menu)
After installing "Hype - The Time Quest", selecting play from the menu opens a
dialog for loading video drivers. Selecting Apply from the menu the game then
crashes, printing the following to the terminal:
0087:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
009a:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
00a4:err:ntoskrnl:ZwLoadDriver failed to create driver
L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\Secdrv": c0000001
wine: Unhandled page fault on read access to FFFFFFFF at address 0040AAE2
(thread 009d), starting debugger...
See also attached file backtrace.txt
Following attempts to select play from the menu leads to a crash without the
opening the driver configuration window, with the below terminal output.
0034:err:ntoskrnl:ZwLoadDriver failed to create driver
L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\Secdrv": c0000001
wine: Unhandled page fault on read access to FFFFFFFF at address 0040AAE2
(thread 002f), starting debugger...
See second half of the attached file backtrace.txt
I'm using the latest development package from wineHQ on Uubuntu 18.04.4 LTS.
$ wine --version
wine-5.1
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37610
Bug ID: 37610
Summary: Lotus Approach: Using File, Close dialog causes a
crash
Product: Wine
Version: 1.1.19
Hardware: x86
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: focht(a)gmx.net, ToddAndMargo(a)zoho.com
Depends on: 18157
Distribution: ---
Created attachment 50056
--> https://bugs.winehq.org/attachment.cgi?id=50056
backtrace
Originally reported in bug 18157.
Install Lotus Approach. Open sample database from
ftp://www.xpertss.com/pub/outgoing/invcalcs.zip
Click, 'File', then 'Close'. Crash.
I'll attach the backtrace.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48509
Bug ID: 48509
Summary: Debian Stretch, Wine 1.8.7-2, Lotus Organizer 97
cannot find DLLs (97 (3.1) .or3 1997 SmartSuite 97)
Product: Wine
Version: 1.8.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: john.p.langley(a)gmail.com
Distribution: ---
Created attachment 66315
--> https://bugs.winehq.org/attachment.cgi?id=66315
Terminal output from the above.
Debian Stretch, Wine 1.8.7-2, Lotus Organizer 97 cannot find DLLs (97 (3.1)
.or3 1997 SmartSuite 97)
Installed Lotus Organizer 97 in Wine last year, ran well.
Installed using command line (user), but get same result using
wine-uninstaller.
Latest apt-get update (22/01/2020) caused problem:
Launched Organizer 97 from command line either by:
wine org97.exe
wine start org97.exe
Wine reported missing DLLS (see attachment):
LTASWN13.DLL
LTASBN13.dll
TZBACK32.dll
LTSCSN10.DL
LTASWN13.DLL
LTTMC11.dll
Copying these to the system32 directory produced:
err:module:attach_process_dlls "TZBACK32.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\lotus\\organize\\org32.exe" failed, status c0000142
Really puzzled - see attachment for full output.
Thanks.
CRISPSIV:~/.wine/drive_c/Program Files/lotus/organize$ err:module:import_dll
Library LTSCSN10.DLL (which is needed by L"C:\\Program
Files\\lotus\\organize\\TZBACK32.dll") not found
err:module:import_dll Library LTASWN13.DLL (which is needed by L"C:\\Program
Files\\lotus\\organize\\TZBACK32.dll") not found
err:module:import_dll Library LTASBN13.dll (which is needed by L"C:\\Program
Files\\lotus\\organize\\TZBACK32.dll") not found
err:module:import_dll Library TZBACK32.dll (which is needed by L"C:\\Program
Files\\lotus\\organize\\org32.exe") not found
err:module:import_dll Library LTSCSN10.DLL (which is needed by L"C:\\Program
Files\\lotus\\organize\\org32.exe") not found
err:module:import_dll Library LTASWN13.DLL (which is needed by L"C:\\Program
Files\\lotus\\organize\\org32.exe") not found
err:module:import_dll Library LTTMC11.dll (which is needed by L"C:\\Program
Files\\lotus\\organize\\org32.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\lotus\\organize\\org32.exe" failed, status c0000135
Copied above DLLs to /windows/system32
This results in:
CRISPSIV:~/.wine/drive_c/Program Files/lotus/organize$ wine org32.exe
err:module:attach_process_dlls "TZBACK32.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\lotus\\organize\\org32.exe" failed, status c0000142
jlangley@CRISPSIV:~/.wine/drive_c/Program Files/lotus/organize$
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48511
Bug ID: 48511
Summary: it won't run at all
Product: Wine
Version: 5.0-rc3
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jessesg525(a)gmail.com
I know it's mentioned somewhere in the forum, but it won't run at all on Mac
Catalina 10.15. I need it to work for the OS I'm on right now.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48457
Bug ID: 48457
Summary: Croc installer exits with error 106
Product: Wine
Version: 5.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wyattmeister(a)gmail.com
Distribution: ---
Created attachment 66241
--> https://bugs.winehq.org/attachment.cgi?id=66241
Error dialog box
When running the Croc installer, '_setup.exe' (either directly or from the
launcher, 'setup.exe'), only a dialogue appears:
Window title: Setup Initialization Error
> Setup is unable to initialize the language dialog box.
>
> Error 106
The application terminates upon pressing OK.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48408
Bug ID: 48408
Summary: mixthread monopolizes buffer_list_lock if
WaitForSingleObject returns quickly, causing livelock
and game freeze
Product: Wine
Version: 5.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: florian.will(a)gmail.com
Distribution: ---
Created attachment 66179
--> https://bugs.winehq.org/attachment.cgi?id=66179
C source for reproducing this issue, livelocks on my system
The default WaitForSingleObject implementation is not fast enough to trigger
this, but the bug manifests itself when starting wine-staging with WINEESYNC=1.
I originally reported this at
https://github.com/ValveSoftware/Proton/issues/3387 , but I am now able to
reproduce this on wine-staging. The problem is in dsound though.
The dsound mixthread locks the buffer_list_lock, then calls PerformMix(), then
releases the lock, then waits for something to happen using
WaitForSingleObject, then locks the buffer_list_lock again, in a loop.
This works fine when not using esync (I guess Valve's fsync also triggers the
same issue), since the default WaitForSingleObject implementation is slow
enough to allow other threads to acquire the buffer_list_lock while the
mixthread executes WaitForSingleObject. However, when esync is enabled AND the
mixthread has a lot of work to do (because there are many secondary sound
buffers), it apparently returns from WaitForSingleObject almost immediately,
and very quickly re-acquires the lock after releasing it. The lock
implementation does not guarantee fairness, and on my system, this results in
the mixthread monopolizing the buffer_list_lock.
If the main thread then wants to add a new secondary sound buffer to the list,
it attempts to acquire the buffer_list_lock exclusively, but it can take a very
long time to acquire the lock. This leads to a game freeze in Zusi 3 and maybe
other games / applications if there are lots of sound effects at the same time.
I have added a Sleep(1) in the mixthread before acquiring the lock, and it
fixed the freezes (but it will obviously cause audio stuttering to kick in
earlier than without the sleep). Disabling esync also fixes the freeze.
I came up with a simple reproducer, C source attached. Output is like this with
esync enabled:
[..]
Added buffer No. 283, took 0.056744 sec!
Added buffer No. 284, took 0.616793 sec!
Added buffer No. 285, took 16.775508 sec!
Added buffer No. 286, took 11.163868 sec!
Added buffer No. 287, took 26.308287 sec!
Obviously on more powerful systems with better single-thread CPU performance,
more buffers will be needed before it "almost-livelocks" like this. This output
is from my Phenom II X4 955. (If sound starts stuttering instead of the
freeze/lock, the bug did not manifest itself.)
With esync disabled (or when using my patched dsound.dll with "Sleep(1)"), it
never takes longer than 0.1 sec to add a buffer.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48489
Bug ID: 48489
Summary: .Net 4.7+ requires GpFontFamily to be referenced
counted instead of cloning.
Product: Wine
Version: 5.0-rc6
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: leslie_alistair(a)hotmail.com
Distribution: ---
This is to track the staging patch in regards to .Net 4.7 and reference
counting of the GpFontFamily object.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36521
Bug ID: 36521
Summary: Star Wars rebellion update 1.01 crashes on 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: jopac76(a)mail.com
Created attachment 48603
--> https://bugs.winehq.org/attachment.cgi?id=48603
Output of the crash
Just installed the game, ran it, tried running the patch and it crashes before
anything.
Link to patch:
http://swrebellion.com/downloads/modules.php?name=Downloads&d_op=viewdownlo…
7ae576e99c8b623032e5ab96f384ad354d0e4230 rsupd101.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.
http://bugs.winehq.org/show_bug.cgi?id=18933
Summary: Free PDF to Word Doc converter doesn't work, window
empty/hangs on launch (appinstall)
Product: Wine
Version: 1.1.21
Platform: PC
URL: http://www.hellopdf.com/download.php
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Looking at a list of the most popular windows applications
(http://lifehacker.com/5110552/most-popular-free-windows-downloads-of-2008) for
applications to test with appinstall, I tried Free PDF to Word Doc converter.
Installs relatively fine (there's a couple other bugs, nothing major), but when
trying to launch, the borders of the window appear, but the app doesn't do
anything, and its window is blank.
No 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=45462
Bug ID: 45462
Summary: PDF X-Change Viewer (all versions) cannot click dialog
box in menu
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xyjota(a)amail.club
Distribution: ---
Edit->Preferences->Customize UI-> any of the 'color' buttons when clicked just
stay depressed and dont open their respective options. Tested on multiple
versions including latest (2.5).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43934
Bug ID: 43934
Summary: SumatraPDF 3.1.2 has very narrow buttons in its
installer
Product: Wine
Version: 2.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: t6zm3v62fkp7fe5(a)yandex.ru
Distribution: ---
Created attachment 59570
--> https://bugs.winehq.org/attachment.cgi?id=59570
Wine 2.19 terminal output
SumatraPDF 3.1.2 has very narrow buttons in its installer.
File link: https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe
OS: Lubuntu 16.04.3.
--
Do not reply 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=34848
Bug #: 34848
Summary: PDF-XChange Viewer crashes when switching between
document tabs
Product: Wine
Version: 1.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kalab.oto(a)gmail.com
Classification: Unclassified
I am using LinuxMint 15, wine 1.6, PDF-Xchange 2.5 (213.0). It works fine but
suddenly this bug appeared.
When I open more than one PDF file it's working fine till I click on tab for
another document, then PDF-XChange viewer crashes.
I tried open different documents, also install wine1.7.4, also older viewer
bulid (208), same crash everytime. Only PDFx portable version 2.5(210.0) didn't
cause the crash but switching between tabs is freezy and take a very very long
time.
Attaching the backtrace.
--
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=47018
Bug ID: 47018
Summary: Black transparent images
Product: Wine
Version: 4.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dwmapi
Assignee: wine-bugs(a)winehq.org
Reporter: sk9258user(a)mail.ru
Distribution: ---
Created attachment 64174
--> https://bugs.winehq.org/attachment.cgi?id=64174
wine
In some apps I see black images, but in Windows images is normal.
https://mega.nz/#!P35GwAZI!lhBkgqiKTHSbFgvgMr4zitLMc1OiQmB6z7YcSUWtS7A
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48541
Bug ID: 48541
Summary: Affinity Photo trial (1.7.2) crashes:Call from
0x7b00fa3d to unimplemented function
mscms.dll.WcsGetDefaultColorProfileSize
Product: Wine
Version: 5.0
Hardware: x86
URL: https://store.serif.com/en-us/update/windows/photo/1/
OS: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: mscms
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
>From the forum a user had a question about this program, he used native mscms.
(https://forum.winehq.org/viewtopic.php?f=8&t=33433)
When run with builtin mscms:
Crash as in the title, (also needs b.t.w. mscms.WcsGetDefaultRenderingIntent)
Stubs are enough to get the program going, but maybe someone (hint for Hans ;))
would like to add a more robust piece of code.
Regards
Note: winetricks dotnet35sp1 dotnet40 dotnet48 was used. The 1st one seems to
be necessary for the installer to finish, otherwise it hangs, don`t know why)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48122
Bug ID: 48122
Summary: Arturia MIDI Control Center crashes and won't connect
to MIDI
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: muranyia(a)gmail.com
Distribution: ---
Created attachment 65714
--> https://bugs.winehq.org/attachment.cgi?id=65714
Crash backtrace
Arturia MIDI Control Center version 1.9.1.1186 crashes on startup on one of my
computers, and crashes after a few seconds on another. On the first one, the
GUI doesn't show up, on the second one it does and it reacts until crashing,
but won't see MIDI devices.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48424
Bug ID: 48424
Summary: xl-r8r: Crashes right after splash screen
Product: Wine
Version: 5.0-rc4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: weejamm(a)gmail.com
Distribution: ---
Created attachment 66194
--> https://bugs.winehq.org/attachment.cgi?id=66194
Error log for xl-r8r a benchmark / demo program from 2000 for Windows 98/ME
Hi
XL-r8r is a demo/benchmark back when the company known as Futuremark/3dmark
were called MadOnion. the target os for this app was Windows 98. Here's what
I've done so far
Set Wineprefix to 32bit and ran the installer using the following command:
`env WINEPREFIX="/home/tiny/32bit" wine
C:\\PROG\~FBU\\MadOnion.com\\XL-R8R\\xl-r8r.exe`
Right after the splash screen the error occurs. My intent is to see if wine's
win98 mode can run as intended but I'm unable to decipher the error report. If
I've missed something let me know
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=18159
Summary: Approach has extra caption buttons and Control box
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)verizon.net
Created an attachment (id=20625)
--> (http://bugs.winehq.org/attachment.cgi?id=20625)
Approach has extra set of "caption buttons" and "Control boxes"
Hi All,
I am am the OP on 15088. Now that I can actually get into Approach, I have
been using it all day. I have five bugs to report. (I am presuming you want
them on different reports.) I am running the native msvcrt.
sh -c "cd /home/wine/drive_c/lotus/approach; WINEDEBUG=+loaddll
WINEDLLOVERRIDES=msvcrt=n /usr/local/bin/wine ./approach.exe"
Bug number five: when Approach opens a database, it has its own set of windows
inside the main Approach window. This allows you to tile, etc. several
databases inside the main Approach window. To do this, Approach has a second
"title bar" with a second set of "caption buttons" and "Control box". Under
Wine, this second set of "caption buttons" and "Control boxes" has a duplicate
set.
This causes confusion. I have circled what I am talking about in the
attachment.
To reproduce:
1) open Approach with the native msvcrt
2) open a database
Here is a sample database to play with:
ftp://www.xpertss.com/pub/outgoing/invcalcs.zip
-T
--
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=6085
Zebediah Figura <z.figura12(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|hal |ntoskrnl
--
Do not reply 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=17780
Summary: Symbian epoc emulator: unimplemented function
hal.dll.ExTryToAcquireFastMutex
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntoskrnl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marcus(a)better.se
I get this when trying to launch the Symbian S60 emulator (epoc.exe) from the
Symbian 5th Edition SDK v1.0 [1].
fixme:ntoskrnl:__regs_ExAcquireFastMutex 0x7d7f4d40: stub
wine: Call from 0x7b845e20 to unimplemented function
hal.dll.ExTryToAcquireFastMutex, aborting
[1]
http://www.forum.nokia.com/Resources_and_Information/Tools/Platforms/S60_Pl…
--
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=41111
Bug ID: 41111
Summary: CPU-Z driver needs hal.dll.WRITE_PORT_UCHAR
Product: Wine
Version: 1.9.16
Hardware: x86-64
URL: http://www.cpuid.com/downloads/cpu-z/cpu-z_1.77-en.zip
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: hal
Assignee: wine-bugs(a)winehq.org
Reporter: 00cpxxx(a)gmail.com
CC: austinenglish(a)gmail.com
Distribution: Debian
It is hard to reproduce this, I don't know why. But sometimes when trying to
start CPU-Z we have:
winegl cpuz_x32.exe
fixme:ntoskrnl:MmMapIoSpace stub: 0x00000000000f0000, 65536, 0
fixme:ntoskrnl:HalGetBusDataByOffset (4 0 0 0x32f3dc 0 4) stub!
wine: Call from 0x7b43dae1 to unimplemented function hal.dll.WRITE_PORT_UCHAR,
aborting
wine: Unimplemented function hal.dll.WRITE_PORT_UCHAR called at address
0x7b43dae1 (thread 0031), starting debugger...
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39500
Bug ID: 39500
Summary: Secret Files: Tunguska demo crashes with unimplemented
function hal.dll.KeQueryPerformanceCounter
Product: Wine
Version: 1.7.53
Hardware: x86-64
URL: http://www.gamewatcher.com/downloads/secret-files-tung
uska-download/secret-files-tunguska-demo
OS: Linux
Status: NEW
Keywords: download, obfuscation
Severity: normal
Priority: P2
Component: hal
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Depends on: 23033
Distribution: ---
Got an error message 'DLL not found shell.dll16.dll' and then
fixme:ntoskrnl:KeInitializeTimerEx stub: 0x111100 0
fixme:ntoskrnl:IoGetDeviceObjectPointer stub: L"\\DosDevices\\NTice" 20000
0x53e758 0x53e75c
fixme:ntoskrnl:__regs_ObfDereferenceObject stub: (nil)
fixme:ntoskrnl:MmProbeAndLockPages (0x111158, 1, 1): stub
fixme:ntoskrnl:MmMapLockedPagesSpecifyCache (0x111158, 0, 1, (nil), 0, 32):
stub
wine: Unhandled page fault on write access to 0x00000000 at address 0x57fe27
(thread 0019), starting debugger...
wine: Call from 0x7b839c6c to unimplemented function
hal.dll.KeQueryPerformanceCounter, aborting
wine: Unimplemented function hal.dll.KeQueryPerformanceCounter called at
address 0x7b839c6c (thread 001f), starting debugger...
err:service:service_send_command service protocol error - failed to write pipe!
err:service:service_send_command service protocol error - failed to write pipe!
fixme:ntoskrnl:KeInitializeTimerEx stub: 0x111100 0
wine: Call from 0x7b839c6c to unimplemented function
hal.dll.KeQueryPerformanceCounter, aborting
wine: Unimplemented function hal.dll.KeQueryPerformanceCounter called at
address 0x7b839c6c (thread 0040), starting debugger...
wine-1.7.53-135-g4fb840b
--
Do not reply 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=15102
Summary: "Environment" tab for winecfg
Product: Wine
Version: 1.1.3
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)gbis.com
Please consider adding an additional "tab" to "winecfg" called
"Environment". In this tab, give the functionality to configure the
keys found in the registry branch "HKEY_CURRENT_USER\Environment", such
as the "PATH" variable
Many thanks,
-T
For example, I would not have to create and merge a file like this:
REGEDIT 4
[HKEY_CURRENT_USER\Environment]
"PATH"="C:\\lotus\\compnent;C:\\lotus\\approach;C:\\lotus\\wordpro;C:\\lotus\\123;C:\\lotus\\spell"
--
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=38967
Bug ID: 38967
Summary: LOTUS APPROACH CRASHES ON STARTUP
Product: Wine
Version: 1.7.28
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: matt(a)fraser4wdhire.com.au
Distribution: ---
Created attachment 51911
--> https://bugs.winehq.org/attachment.cgi?id=51911
Error details
OpenSuse 13.2
Lotus Smartsuite 9.8.2
Lotus Approach crashes on startup - see attachment.
Other programs of the Smarsuite seem to work fine.
It works fine running on OpenSuse 13.1
Tried with different computers - same result
--
Do not reply 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=21855
Summary: WordPro Windows pull down does not show file names
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)verizon.net
Created an attachment (id=26459)
--> (http://bugs.winehq.org/attachment.cgi?id=26459)
Missing file names in Windows pull down
Hi All,
Would you guys fix this for me?
I am using Lotus Word Pro N9.8.0208.1200. When you open two files (documents)
from the command line (the jpeg I have attached), then go to the "Window" pull
down to select which file to bring into focus, the file names are missing. If
you start Word Pro, then use File, Open to select two files, one at a time, the
second file does not show.
Many thanks,
-T
--
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=36484
Bug ID: 36484
Summary: Lotus Notes 8.x installer aborts with SAX parser
exception (line breaks not preserved)
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
continuation of bug 36228
As already said, the Java SAXParser still throws same exception as in bug 36228
--- snip ---
...
2014/05/18 19:46:46.452 SEVERE CWPPR0026E: The XML parser reported an exception
at line number 17 and column number 1 when parsing the provisioning manifest.
::class.method=com.ibm.rcp.provisioning.internal.impl.ProvisioningServiceImpl.process()
::thread=Worker-0 ::loggername=com.ibm.rcp.provisioning
org.xml.sax.SAXParseException: Attribute name "ur" associated with an
element type "feature" must be followed by the ' = ' character.
at
org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
Source)
at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)
at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanAttribute(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
at org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source)
at
com.ibm.rcp.provisioning.internal.impl.ProvisioningServiceImpl$3.run(Unknown
Source)
at org.eclipse.core.internal.jobs.Worker.run(Unknown Source)
...
--- snip ---
For reproducing one can short-circuit the whole thing by re-running on a failed
install attempt as follows:
--- snip ---
wine "C:\\Program Files\\IBM\\Lotus\\Notes\\framework\\rcp\\rcplauncher.exe"
-rcpLauncherWait -provManifest -noSplash -product NULL -provisioningOperation
update -vmargs -verbose:class -verbose:jni -DprovisioningOperation=update
-Drcp.system.admin=true
-DprovUpdateSiteListOverride="file:/C:/users/focht/Temp/Lotus Notes/updateSite"
--- snip ---
Java VM args '-verbose:class -verbose:jni' were added for debugging purpose,
they can be omitted.
It seems the culprit is that Wine's msxml (re)generates an 'install.xml' file
with line breaks not preserved/generated (linefeed/carriage return missing).
Good one, each tag is separated by line break (seen in hex-editor with
0x0D,0A).
--- snip ---
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- ***************************************************************** -->
<!--
...
<ibm-portal-composite>
<domain-object name="com.ibm.rcp.installmanifest">
<object-data>
<install version="8.0.0.20080809.0430">
<installfeature default="true" id="Platform.XPD" required="true" show="false"
version="8.0.0.20080809.0430">
<requirements>
<feature download-size="2188" id="com.ibm.langware.engine.feature"
match="perfect" size="3464"
url="jar:file:/C:/Users/focht/AppData/Local/Temp/Lotus Notes/updateSite.zip!/"
version="6.1.2.200808010926"/>
...
--- snip ---
Bad one, generated by Wine msxml.
After the starting '<ibm-portal-composite>' tag it's basically one big line:
--- snip ---
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- ***************************************************************** -->
<!--
...
<ibm-portal-composite><domain-object
name="com.ibm.rcp.installmanifest"><object-data><install
version="8.0.0.20080809.0430"><installfeature default="true" id="Platform.XPD"
required="true" show="false"
version="8.0.0.20080809.0430"><requirements><feature download-size="2188"
id="com.ibm.langware.engine.feature" match="perfect" size="3464"
url="jar:file:/C:/users/focht/Temp/Lotus Notes/updateSite.zip!/"
version="6.1.2.200808010926"/>
--- snip ---
The XML file in question is already present with the installer at unpack time,
located at 'C:\\users\\focht\\Temp\\Lotus Notes\\deploy\\install.xml' (with
proper Windows line breaks).
The file gets rewritten during install time, being smaller in the end with
fewer feature-sets (ok) and line breaks lost (not ok).
'winetricks -q msxml3' works around.
$ sha1sum C1K31EN.exe
5aac0feb578c471e65c0a24a3f5dceb719fd5760 C1K31EN.exe
$ du -sh C1K31EN.exe
456M C1K31EN.exe
$ wine --version
wine-1.7.19
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.
https://bugs.winehq.org/show_bug.cgi?id=625
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |john.p.langley(a)gmail.com
--- Comment #31 from Anastasius Focht <focht(a)gmx.net> ---
*** Bug 48509 has been marked as a duplicate of this bug. ***
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=625
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |arcepi(a)arcepi.net
--- Comment #30 from Anastasius Focht <focht(a)gmx.net> ---
*** Bug 18172 has been marked as a duplicate of this bug. ***
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=625
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P1 |P2
URL| |https://archive.org/details
| |/lotusorganizer97edition
Keywords| |download
CC| |focht(a)gmx.net
Severity|major |normal
Summary|Applications cannot load |Multiple applications need
|dlls from custom folders |support for private dll
| |search paths
| |'HKLM\\Software\\Microsoft\
| |\Windows\\CurrentVersion\\A
| |pp Paths\\AppName.exe'
| |(Lotus Organizer 97,
| |Microsoft Money 99,
| |LeapFrogConnect)
--- Comment #29 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
adding stable download link for reproduce:
https://archive.org/details/lotusorganizer97editionhttps://archive.org/download/lotusorganizer97edition/Lotus%20Organizer%20%2…
Downgrading severity and refining the summary to reflect the actual problem
(taken from my comments in bug 18172).
Collecting more dupes here since it's the oldest bug report for this kind of
issue.
Links to other apps suffering from same issue (taken from bug 18172):
https://web.archive.org/web/20030223020348if_/http://msdl.microsoft.com:80/…https://web.archive.org/web/20170615113613/http://lfcdownload.leapfrog.com/…
$ sha1sum Lotus\ Organizer\ \'97\ Edition\ \(R87820\)\(Lotus\ Development\
Corporation\)\(1996\).iso
834393f37f57f4d220e5da29574d453e8dfdb235 Lotus Organizer '97 Edition
(R87820)(Lotus Development Corporation)(1996).iso
$Â du -sh Lotus\ Organizer\ \'97\ Edition\ \(R87820\)\(Lotus\ Development\
Corporation\)\(1996\).iso
15M Lotus Organizer '97 Edition (R87820)(Lotus Development
Corporation)(1996).iso
$Â wine --version
wine-5.1-391-g7332de64a5
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=21147
Summary: SafeDisc v1.35.000 and Rayman 2
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: smoki00790(a)gmail.com
Created an attachment (id=25388)
--> (http://bugs.winehq.org/attachment.cgi?id=25388)
Head of the Pirate.jpeg
Rayman 2 needs native dinput.dll (md5sum 1adf77b80823ef9267dde1129c35b0f1).
Keybord will not work with wine winver XP and 2003, every other works), also
renderer must be set to "opengl".
Really, it works for first few levels (1-6 levels), but in the middle of "The
Sanctuary of Stone and Fire" (7 level and upper levels periodicaly) it start to
show "head of Pirate":) (screenshot attached) and because of that pirate no
more playing is possibile. This is tried with old original CD and also with
backup CD.
What is maybe interesting to say, game originaly comes on 650 MB CD but files
on it are actually 6.9 GB!?!
--
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=7115
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://www.gamershell.com/d |https://web.archive.org/web
|ownload_4364.shtml |/20200216062309/http://down
| |load.fileplanet.com/ftp1/ga
| |medemos/action/nfs3.zip?st=
| |wvub3Vf1zTJSa2cEu8wAtg&e=15
| |81844950
--- Comment #27 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
thanks for the update/new link.
I've created a snapshot via Internet Archive:
https://web.archive.org/web/20200216062309/http://download.fileplanet.com/f…
$ sha1sum nfs3.zip
ecd4f99b2f2730f09b80c6f9dcb852e46e1a389d nfs3.zip
$Â du -sh nfs3.zip
30M nfs3.zip
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.
https://bugs.winehq.org/show_bug.cgi?id=7115
--- Comment #25 from joaopa <jeremielapuree(a)yahoo.fr> ---
Bug still occurs with wine-5.1.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13886
Summary: Focus is killed after unminimizing the window
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dylan.ah.smith(a)gmail.com
Steps to produce the bug:
1. Open up Wine's wordpad
wine wordpad
2. Minimize the window
3. Restore the window
Afterwards the window will have focus but the caret will not be shown.
I tested this on KDE 3.5.9 and Gnome 2.22.2 with the same bug occurring on
both.
I tested wordpad in Windows XP SP3, and there was no issue there.
I tested with WINEDLLOVERRIDES="riched20=n" and the bug occurred.
>From this I believe that it isn't a wordpad, or richedit issue.
I added some MESSAGE statements to find the sequence of events that cause the
cursor not to be shown, and this is what I found.
1. After the window is minimized WM_KILLFOCUS is sent to the richedit control
as expected.
2. After the window is restored, WM_SETFOCUS is sent as expected, then another
WM_KILLFOCUS is incorrectly sent which will cause the caret to be hidden and
destroyed.
--
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=25126
Summary: AIM 7.4 - Will not start correctly
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greghazi(a)gmail.com
Latest version of AIM (7.4) Will not start correctly in the latest development
release of WINE running in Ubuntu 10.10. It installs just fine but when you try
to run it the top menu bar of aim shows up then it crashes.
--
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=48609
Bug ID: 48609
Summary: winehq-stable depends on wine-stable (Debian Buster)
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: yanestra(a)gmail.com
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
# apt install --install-recommends winehq-stable
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
winehq-stable : Depends: wine-stable (= 5.0.0~buster)
E: Unable to correct problems, you have held broken packages.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48603
Bug ID: 48603
Summary: received error report program could not start
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jrost(a)web.de
Distribution: ---
Created attachment 66440
--> https://bugs.winehq.org/attachment.cgi?id=66440
pgrogram did not start
Program error/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.
https://bugs.winehq.org/show_bug.cgi?id=44723
Bug ID: 44723
Summary: .n3r File Extension
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jarrod(a)dellachiesahospitality.com
Created attachment 60723
--> https://bugs.winehq.org/attachment.cgi?id=60723
Back Trace . TXT
.n3r File Extension won't open with 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=40993
Bug ID: 40993
Summary: NBA2K14 - Poor Performance
Product: Wine
Version: 1.9.14
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ben(a)xnode.org
Distribution: ---
Created attachment 55153
--> https://bugs.winehq.org/attachment.cgi?id=55153
Framerate log
Game should run very well on this hardware, but it's currently struggling and
appears to be limited for some reason other than sheer hardware power.
Logs attached for both +d3d and +fps. As you'll notice, the framerate never
really changes from 12 FPS regardless of whether it's ingame or on the menu.
Changing graphics settings from minimum to maximum also doesn't appear to make
any difference.
GPU info:
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) Iris Pro 6200 (Broadwell GT3e)
OpenGL core profile version string: 4.3 (Core Profile) Mesa 12.1.0-devel
(git-1069461)
OpenGL core profile shading language version string: 4.30
--
Do not reply 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=24704
Summary: Projected shadows do not appear in Lemony Snicket and
other Unreal 2.x games.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peanuthead_069(a)yahoo.com
Title says all. Not really that much of a problem gameplay-wise, although it'll
be better if it's fixed. The problem appears in A Series of Unfortunate Events,
HP: Prisoner of Azkaban and probably a couple of other games (such as UT2003)
that use the same engine (or a variant of 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.
https://bugs.winehq.org/show_bug.cgi?id=48595
Bug ID: 48595
Summary: Excel 2010 32 bit - links not working
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: granric(a)gmail.com
Distribution: ---
Created attachment 66431
--> https://bugs.winehq.org/attachment.cgi?id=66431
Terminal log, with command on top
Steps to reproduce:
- open a new worksheet
- insert a link in a cell (e.g. www.winehq.org) - cell content becomes
hyperlink
- click on the link - nothing happens
Context: Office 2010 Professional, 32 bit - Ubuntu Mate 18.04 LTS, fully
updated, Wine 5.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=46077
Bug ID: 46077
Summary: Pathos: screen flickering / texture tearing
Product: Wine
Version: 3.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: orbisvicis(a)gmail.com
Distribution: ---
Created attachment 62694
--> https://bugs.winehq.org/attachment.cgi?id=62694
terminal output
Pathos is an open-source game available at https://pathos.azurewebsites.net
using the Inv framework available at
https://gitlab.com/hodgskin-callan/Invention/wikis/home. Both users attempting
to run the game via wine have reported the same issue on completely different
hardware. The game auto-updates. As far as I know all versions expose the issue
but I can confirm that w2018.1102.2249 is susceptible. There is a lot of detail
in the following reddit thread, including several work-arounds.
https://www.reddit.com/r/pathos_nethack/comments/9nh6qw/pathos_under_wine/
Wine versions:
* multilib (x86_64 + i686) wine 3.17 from fedora 28 with winepulse.drv audio
output and winetricks 20180603
* wine-devel 2.0.170 on Ubuntu
* latest wine from WineHQ repository on Mint 18.3 with winetricks 20180815-next
Game details:
* "It's all .NET Framework 4.5.0 and WPF controls. The main game board is
custom drawn using System.Windows.Media.DrawingContext."
Game installation
$ env WINEARCH=win32 WINEPREFIX=/.../Pathos/pathos.wine.prefix.win32/
winetricks corefonts dotnet452
$ env WINEARCH=win32 WINEPREFIX=/.../Pathos/pathos.wine.prefix.win32/
winetricks win7
$ env WINEARCH=win32 WINEPREFIX=/.../Pathos/pathos.wine.prefix.win32/ wine
PathosSetup.exe
$ env WINEARCH=win32 WINEPREFIX=/.../Pathos/pathos.wine.prefix.win32/ wine
"C:\Games\Pathos\PathosGame.exe"
Nvidia workarounds
+ GPU: NVIDIA Corporation GM206 [GeForce GTX 960]
+ GPU driver NVIDIA 396.54
+ OS: Fedora 28 + XMonad
* leave fullscreen mode
* run a compositor when the game is fullscreen
* disable "allow flipping" in the nvidia-settings OpenGL tab
* winetricks ddr=gdi (but this makes the game stutter and lag)
ATI workarounds
+ CPU: AMD APU A6-6700
+ GPU: AMD RX 570
+ GPU driver: AMDGPU
+ OS: Mint 18.3
* winetricks ddr=gdi (but this makes the game stutter and lag)
Opinions:
Looks like a double-buffering 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.
http://bugs.winehq.org/show_bug.cgi?id=33385
Bug #: 33385
Summary: Map is black on resolutions bigger than 640x480 in
Gruntz
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: Admc(a)ufurmix.org
Classification: Unclassified
When 800x600 or 1024x768 resolution is set in Gruntz the map is black. Only
Gruntz are visible, this makes game unplayable. Bug occurs both in wine 1.4 and
1.5.28. On 1.2 it works fine, so obviously it's a regression.
Steps to reproduce:
1. Buy Gruntz or download demo -
http://download.cnet.com/Gruntz-demo/3000-2119_4-10026065.html
2. Install it
3. Apply resolution patch (there's a bug in game that prevents changing
resolution in in-game options) -
http://gooroosgruntz.proboards.com/index.cgi?board=GFAQs&action=display&thr…
4. Run game on virtual desktop
5. Start game on any map
6. Map is black, only Gruntz are visible
My graphics card is Nvidia GeForce GTX 550 Ti, I'm using Nvidia proprietary
driver version 319.12
My OS is Kubuntu 12.10, I removed pulseaudio and installed alsa+dmix instad of
it to get working sound in wine.
--
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=43545
Bug ID: 43545
Summary: Path of exile crashes after a few minutes of playing
Product: Wine
Version: 2.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)khelekore.org
Distribution: ---
Created attachment 58945
--> https://bugs.winehq.org/attachment.cgi?id=58945
one of the crashes
Debian sid, running gnome 3 on X.
wine-2.14 (Staging), from deb https://dl.winehq.org/wine-builds/debian/ sid
main
Intel nuc, i7-5557U
Graphics: Mesa DRI Intel(R) Iris 6100 (Broadwell GT3) (0x162b)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 17.1.5
Installed path of exile, tried with both 32 bit and 64 bit wine versions on
different WINEPREFIX, game seems to use 32 bit version no matter what.
Start game and play. It will stutter a bit every now and then which is a bit
annoying, but there are other bugs on that.
After a few minutes of playing, hard crash. Changing zone generally makes the
crash appear faster.
What information is missing?
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48597
Bug ID: 48597
Summary: wine uninstaller does not update list of installed
apps after using the "Install" button
Product: Wine
Version: 5.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: reinhold.hoffmann(a)hotmail.com
Distribution: ---
Created attachment 66433
--> https://bugs.winehq.org/attachment.cgi?id=66433
screenshot of uninstaller to demonstrate the issue
For clarification see attachement
The wine uninstaller offers to uninstall and install Windows apps. An
uninstallation can be initiated by the button "Change/Remove" (in German
"Ändern/Entfernen"). The list of installed apps is immediately updated and the
removed app does not show up in the list any longer.
But when installing an app through the button "Install.." (in German
"Installieren")- see attachment - the Windows app successfully installs but the
list is not updated immediately and the newly installed app does not show up.
Only after closing the uninstaller program and re-launching the uninstaller
program again, the new app shows up in the list of the installed apps. This is
inconsistent compared to removing an app and confusing.
In particular a native user who is not an expert may be very confused because
he/she does not immediately sees his/her newly installed app. He may try again
which may create real issues.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48607
Bug ID: 48607
Summary: Incorrect developer name for YGOPro
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cumandr+wine(a)gmail.com
Distribution: ---
https://appdb.winehq.org/objectManager.php?sClass=application&iId=14884
YGOPro is not developed by "Kaiba Corporation". Numerous forks exist, some
violating the GPL, but the original codebase is located at
https://github.com/Fluorohydride/ygopro and not led by any organization.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48604
Bug ID: 48604
Summary: Best Service Engine 2 crashing when loading virtual
instruments
Product: Wine
Version: 5.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: valinora(a)gmx.net
Distribution: ---
Created attachment 66441
--> https://bugs.winehq.org/attachment.cgi?id=66441
The error message Wine sprints out
I'm used to Best Service ENGINE https://www.bestservice.de/downloads.html which
is available for Windows and Mac only. So I use WINE 5.1 to get it to work. It
runs good up until loading instruments (registering them is not the problem).
At this point the ENGINE says that it does not find the necessary sound files.
These sound files are saved as ytil which the ENGINE fails to load. WINE itself
prints out a cryptic message (see attachment) which I do not understand.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=7054
--- Comment #21 from joaopa <jeremielapuree(a)yahoo.fr> ---
Bug still occurs with wine-5.1.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48526
Bug ID: 48526
Summary: Farming Simulator 19 crashes when loading game
Product: Wine
Version: 5.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: scaniaking326(a)gmail.com
Distribution: ---
After recent update of wine Farming Simulator 19 crashes when going from main
menu to farm (simply said when i create new save with or without DLC/mods game
loaded but when i hit play it fully crashes with error 0). I have tryed several
compatibility changes (Windows 7 Windows 8.1 Windows 10) create new wine 64 bit
prefix and reinstall game with dependecies (Net 3.5 and DX9) but game still
crashes as i say when ggoing from menu to game
Please note that Net Framework is optional and game dont require it but with
NET installed game runs a bit better
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48590
Bug ID: 48590
Summary: World of Tanks crashes on launch
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: chris(a)cjwatts.com
Distribution: ---
Created attachment 66424
--> https://bugs.winehq.org/attachment.cgi?id=66424
Crash backtrace
1. Open Wargaming.com Game Center
2. Launch World of Tanks
3. Immediate crash with error reporting dialog (see attached backtrace)
Ubuntu 19.10
Tested with Ubuntu-bundled Wine 4.0.2 and the latest tested version of Wine
(4.19-staging), both with identical results.
Tried with winetricks, no effect.
Unable to test Wine 5.0+ due to black 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=38054
Bug ID: 38054
Summary: DoDragDrop() should abort when
IDropSource::QueryContinueDrag fails
Product: Wine
Version: 1.7.36
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Distribution: ---
Created attachment 50692
--> https://bugs.winehq.org/attachment.cgi?id=50692
IDrop_Example.exe
I've written some test code for DoDragDrop, and if
IDropSource::QueryContinueDrag returned a FAILED value (for example,
0xdeadbeef), DoDragDrop would about in Win8.
But wine will continue to do the job of DoDragDrop, so I'll see a MessageBox I
created in IDropTarget::DragEnter (In [MSDN], this is the 2nd step of
DoDragDrop)
Code sample:
https://gitcafe.com/endle/IDrop_Helper_Example/tree/DoDragDrop_should_stop
The .exe file was created with VS2013 Community
[MSDN]:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms678486%28v=vs.85…
--
Do not reply 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=31802
Bug #: 31802
Summary: World of Warplanes fails to play intro video
Product: Wine
Version: 20050930
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: blakekl10(a)gmail.com
Classification: Unclassified
Created attachment 41840
--> http://bugs.winehq.org/attachment.cgi?id=41840
log from wine.
after launching World of Warplanes, the loading screen appears. Once the
progress bar is full, the screen goes black and the intro movie is supposed to
play. The screen remains black. Attached are the wine logs, X11 logs, and the
World of Warplanes log.
--
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=44834
Bug ID: 44834
Summary: World of Tanks don't unload from memory after exit
Product: Wine
Version: 3.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: reisenfag(a)gmail.com
Distribution: ---
After update World of Tanks to 1.0 version, if quit from game, process
worlrdoftanks.exe, wineserver and other wine's processes not terminating. In
log no errors. Wine prefix is pure, in 32 / 64 same 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=48589
Bug ID: 48589
Summary: Old-Style OpenFileDialog displays folder list as flat
current folders- windows uses pseudo-tree-view of
current folder.
Product: Wine
Version: 5.1
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: dirk.niggemann(a)gmail.com
When using an old-style (ostensibly win3.1) file comctl32 dialog called from
OpenFileDialogA or OpenFileDialogW (triggered by using OFN_ENABLEHOOK or not
setting OFN_EXPLORER) the folder view is different from any current windows
implementation.
Windows (7 and 10 tested) displays a fake tree view of the current directory
and parent directories by indenting the folders a single space for each level
and showing all folders on the path.
Wine displays a flat list of folders in the current directory including '[..]'.
Each folder has its name surrounded by square brackets, as defined in
DlgDirListW.
I have a pre-95 win32 application (MSDA.EXE from HP ChemStation G1701BA) which
depends on the windows behaviour. It doesn't expect brackets around folder
names in the listbox so cannot 'see' the folders that it treats as files to
load. Its hook function appears to be doing a WM_GETTEXT on the currently
selected entry in the directory listbox and does not match directory entries
ending in *.D as the square brackets are there.
I have a sample application (very dumb) that demonstrates the difference in
appearance but not in behaviour.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48588
Bug ID: 48588
Summary: Nox app player fails at 90% loading
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: barfin(a)protonmail.com
Distribution: ---
Created attachment 66418
--> https://bugs.winehq.org/attachment.cgi?id=66418
Logs
Download link to the application:
https://www.bignox.com/en/download/fullPackage
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47972
Bug ID: 47972
Summary: Paraworld: segfaults at start
Product: Wine
Version: 4.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ybyt4t(a)gmail.com
Distribution: ---
On start I just get a crash with:
# wine C:/Program\ Files/Sunflowers/ParaWorld/bin/Paraworld.exe
---
0009:err:seh:setup_exception_record stack overflow 1040 bytes in thread 0009
eip 7bc6c30c esp 00230f20 stack 0x230000-0x231000-0x330000
---
I did
---
setcap cap_net_bind_service=+eip /usr/bin/wine-preloader
---
before this, as suggested in #18014, which seemed to fix something, as
otherwise it seems to crashes earlier into the debugger with:
--- (crash without setcap) ---
wine: Unhandled page fault on write access to 0x00aceb99 at address 007075C0
(thread 0009), starting debugger...
---
Not sure about the Paraworld version, probably 1.0 (DVD version, box label
ECD008134M).
Distro: Arch (x86-64)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48576
Bug ID: 48576
Summary: Grand Theft Auto IV "gta4Browser.exe" constant 25%
cpu usage
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: darkfantasy500(a)gmail.com
Distribution: ---
For some reason there's a bug with gta4Browser.exe that its constantly using
25% of the cpu and really drops performance without stoping it or kill it soon
as i enter the game. GTA EFLC also has this file and this doesnt happend and i
tried replacing IV's with EFLC and the game run flawlessly.Tried with latest
proton 4.11-12, proton-ge 5.0 and proton tkg 5.1 same result on all.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48573
Bug ID: 48573
Summary: vkd3d demos fail (and possibly vkd3d isn't working at
all) on Pop! OS
Product: vkd3d
Version: 1.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: gardotd426(a)gmail.com
Distribution: ---
Created attachment 66400
--> https://bugs.winehq.org/attachment.cgi?id=66400
apport-cli coredump log
I recently installed all the vkd3d packages in the ubuntu 19.10 repositories on
Pop! OS 19.10. I also have wine-staging and all the necessary development
packages installed. Well, it doesn't seem to work at all. I've seen other
people in the forums here asking about vkd3d and mentioning an error when they
run "make check-TESTS" after compiling vkd3d, which is the exact same error I
get. However, it's never addressed again. I get the following error after
running "make check-TESTS":
FAIL: tests/d3d12
And when running either of the vulkan-demos programs, triangle-vkd3d or
gears-vkd3d, they fail with this output:
fixme:debug_vk_memory_property_flags: Unrecognized flag(s) 0xc0.
fixme:debug_vk_memory_property_flags: Unrecognized flag(s) 0xc0.
fixme:debug_vk_memory_property_flags: Unrecognized flag(s) 0xc0.
fixme:debug_vk_memory_property_flags: Unrecognized flag(s) 0xc0.
triangle-vkd3d: demos/triangle.c:201: cxt_load_pipeline: Assertion
`cxt->swapchain' failed.
[1] 9893 abort (core dumped) triangle-vkd3d
I'll attach the core dump log file from apport-cli, although the only real
mentions of vkd3d in the file seem to be the same message I just pasted above,
along with some other stuff I can't tell whether or not is relevant. On arch,
installing the vkd3d and lib32-vkd3d packages is enough to get vkd3d to work,
however it seems something is wrong on ubuntu 19.10.
Here's the output of some commands that might be relevant:
sudo apt list --installed | grep -i wine:
dxvk-wine32-development/eoan,now 0.96+ds1-1 i386 [installed]
dxvk-wine64-development/eoan,now 0.96+ds1-1 amd64 [installed]
fonts-wine/eoan,eoan,now 4.0.2-1 all [installed,automatic]
libwine-development-dev/eoan,now 4.17-1 amd64 [installed,automatic]
libwine-development/eoan,now 4.17-1 amd64 [installed,automatic]
libwine-development/eoan,now 4.17-1 i386 [installed,automatic]
libwine/eoan,now 4.0.2-1 amd64 [installed,automatic]
libwine/eoan,now 4.0.2-1 i386 [installed,automatic]
wine-devel-amd64/eoan,now 5.1~eoan amd64 [installed,automatic]
wine-devel-dev/eoan,now 5.1~eoan amd64 [installed]
wine-devel-i386/eoan,now 5.1~eoan i386 [installed,automatic]
wine-staging-amd64/eoan,now 5.1~eoan amd64 [installed,automatic]
wine-staging-dev/eoan,now 5.1~eoan amd64 [installed]
wine-staging-i386/eoan,now 5.1~eoan i386 [installed]
wine-staging/eoan,now 5.1~eoan amd64 [installed]
wine32/eoan,now 4.0.2-1 i386 [installed,automatic]
wine64-development-tools/eoan,now 4.17-1 amd64 [installed]
wine64/eoan,now 4.0.2-1 amd64 [installed,automatic]
winehq-staging/eoan,now 5.1~eoan amd64 [installed]
winetricks/eoan,eoan,now 0.0+20190912-1 all [installed]
sudo apt list --installed | grep -i vkd3d:
libvkd3d-dev/eoan,now 1.1-3 amd64 [installed]
libvkd3d-utils1-dbgsym/now 1.1-3 i386 [installed,local]
libvkd3d-utils1/eoan,now 1.1-3 amd64 [installed]
libvkd3d-utils1/eoan,now 1.1-3 i386 [installed,automatic]
libvkd3d1-dbgsym/now 1.1-3 amd64 [installed,local]
libvkd3d1/eoan,now 1.1-3 amd64 [installed]
libvkd3d1/eoan,now 1.1-3 i386 [installed,automatic]
vkd3d-demos-dbgsym/now 1.1-3 amd64 [installed,local]
vkd3d-demos/eoan,now 1.1-3 amd64 [installed]
uname -a:
Linux pop-os 5.5.0-2.1-liquorix-amd64 #1 ZEN SMP PREEMPT liquorix
5.5-3ubuntu1~eoan (2020-02-06) x86_64 x86_64 x86_64 GNU/Linux
wine --version:
wine-5.1 (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=48519
Bug ID: 48519
Summary: Topograph 98
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: angelinapolese18(a)gmail.com
Distribution: ---
Created attachment 66327
--> https://bugs.winehq.org/attachment.cgi?id=66327
Error on Topograph program
I installed the TOPOGRAPH program (Win 32 Bits) on my Ubuntu notebook. The
program opened and worked everything, except for the maps. Attached is the text
file generated by 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=13910
Summary: Changing Wine version should generating warning
Product: WineHQ Bugzilla
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
We're getting a lot of users changing their reported Wine version in bugs.
Doing so should either be blocked to non-admin users, or generating a warning
page.
--
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=22594
Summary: Request to limit the number of screenshots per app
version
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
URL: http://appdb.winehq.org/objectManager.php?sClass=scree
nshot&sState=queued&sTitle=Screenshot%20Queue
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P3
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
There is apparently no numerical screenshot limit per app version. On many an
occasion logging into the AppDB can have over a hundred screenshots waiting,
and most of the time it'll be one user that feels it necessary to submit thirty
or so screenshots of his Call of Duty character standing in different angles.
Firstly, it is unnecessary to have so many screenshots for one version of any
app, ten should be more than enough to get an idea and the AppDB shouldn't be a
place for people to submit galleries of their wonderful death match victories.
Secondly, adding or rejecting each screenshot one by one takes a ridiculous
amount of time for the poor admin/maintainer that gets stuck with the task.
If the number of screenshots were limited, a message could be shown to let the
user know that the limit has been reached, and to encourage them to become an
app maintainer if they wish to change the screenshots. This would save us a
lot of time!
--
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=48562
Bug ID: 48562
Summary: ABUS CMS client black window
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 3dw_50ssu16amyn7(a)byom.de
Distribution: Ubuntu
Created attachment 66377
--> https://bugs.winehq.org/attachment.cgi?id=66377
Screenshot from main UI
ABUS, a german security company, provides a CMS for their cctv cameras.
The CMS consists of three parts, this bug focuses on the client.
After installing and opening the client you're asked to set an admin password
and the main UI loads.
A "Run Error" popup is opened and the main UI is displayed.
The menus are fine but the center is black (see screenshot).
After a short period of time the app stops responding.
No cctv hardware is required to reproduce this bug.
Runlog attached with WINEDEBUG=+seh
Tested with wine-5.0 on Ubuntu 18.04.3
Required winetricks: mdac28, vcrun2008, vcrun6sp6
Download:
https://www.abus.com/ger/Sicherheit-Zuhause/Videoueberwachung/Aufzeichnungs…
Direct link:
https://www.abus.com/var/ImagesPIM/d110001/medias/common/22/TVSW11001_ABUS_…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48566
Bug ID: 48566
Summary: SamyGO PVRDecoder skins show black UI
Product: Wine
Version: 5.1
Hardware: x86
URL: https://forum.samygo.tv/viewtopic.php?f=63&t=6511
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: julius.schwartzenberg(a)gmail.com
Distribution: ---
Created attachment 66388
--> https://bugs.winehq.org/attachment.cgi?id=66388
screenshot showing the problem
When using the default skin (or any theme except for the Windows skin), parts
of the UI are shown in black initially.
A work-around is playing around (pressing but not releasing a button for
instance). Another work-around is switching the application to the Windows skin
through its settings. Then the issue disappears completely.
Apart from the graphical glitches, the application runs fine 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=23261
Summary: Industry Giant 2 demo crashes with
DDERR_UNSUPPORTEDMODE message
Product: Wine
Version: 1.2-rc3
Platform: x86
URL: http://ds.jowood.com/ig2en/ig2_setup_demo.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Created an attachment (id=28971)
--> (http://bugs.winehq.org/attachment.cgi?id=28971)
Console output on ig2_demo.exe crash
The Industry Giant 2 game demo downloadable from
http://ds.jowood.com/ig2en/ig2_setup_demo.exe fails to run under Wine 1.2rc3.
(The installer works, I'm referring to the actual game demo ig2_demo.exe.)
On my system, it opens a (I guess) 800x600-pixel black window, and shows a
dialog box titled Engine Error, with this text:
Engine Version: Tue May 21 14:33:20 2002
[current date and time]
Error: -2005532082 DDERR_UNSUPPORTEDMODE Line: 391
When the mouse pointer is over the dialog box, the pointer vanishes. Clicking
the OK button (or equivalently, pressing return) results in Wine showing a
Program Error dialog box.
--
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=28059
Summary: 3DAnalyzer: Hangs when selecting certain exe's
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jakerman999(a)yahoo.ca
Selecting some exe files results in hanging when file is accepted.
Running in console gives "fixme:commdlg:GetFileName95 Flags 0x00100000 not yet
implemented" when open dialogue is opened, after confirming problem exe the
open dialogue disappears, 3DAnalyzer gets ready to accept further input, then
hangs.
ctrl+c in the terminal gives "fixme:console:CONSOLE_DefaultHandler Terminating
process 22 on event 0".
*note* This only hangs on certain exe files, others work without problem.
Replication can be found on hoi3game.exe from Hearts of Iron 3, and the
kkrieger executable pno0001.exe from http://kk.kema.at/files/kkrieger-beta.zip
among others.
--
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=45148
Bug ID: 45148
Summary: [Overwatch] Left Ctrl does not work
Product: Wine
Version: 3.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pshela94(a)gmail.com
Distribution: ---
Normally crouch is assigned to Left Ctrl, but when I open settings, crouch is
assigned to RCONTROL (Right Ctrl, which works).
What is weird, when assigning Left Ctrl in settings to crouch, game registers
it as LCONTROL, but when I return to game it still does not work. What is even
weirder, when I open settings again, crouch is reassigned back to RCONTROL.
--
Do not reply 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=22006
Summary: OpenProcess does not enforce ACL
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shalomgo(a)gmail.com
Created an attachment (id=26746)
--> (http://bugs.winehq.org/attachment.cgi?id=26746)
Test case
OpenProcess (and probably other functions) does not properly enforce process
ACLs, allowing unprivileged processes to read and write memory of privileged
ones.
--
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=48313
Bug ID: 48313
Summary: unimplemented function
KERNEL32.dll.GetThreadIdealProcessorEx
Product: Wine
Version: 5.0-rc1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
Distribution: ---
SysInternal CPU Stress crashes in Wine since this function is not implemented.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43505
Bug ID: 43505
Summary: Star Wars: Starfighter - screen out of monitor borders
Product: Wine
Version: 2.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: betaversiondot(a)gmail.com
Distribution: Debian
Created attachment 58888
--> https://bugs.winehq.org/attachment.cgi?id=58888
terminal output 2.14
Without using virtual desktop, most part of screen go beyond borders of my
monitor. The lower the resolution, the smaller part of screen is visible. My
monitor is 1920x1080. The game supports only up to 1280x1024.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40013
Bug ID: 40013
Summary: "Git for Windows" fails to install
Product: Wine
Version: 1.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alois.schloegl(a)gmail.com
Distribution: ---
Created attachment 53462
--> https://bugs.winehq.org/attachment.cgi?id=53462
backtrace
Trying to install "Git for Windows" from here
https://git-scm.com/download/winhttps://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/G…
fails. I tested both, 64bit and 32bit version, for the 32bit version I used
prefix
WINEARCH="win32"
Several combination included the use of the "default" settings were tested.
None succeeded.
"Welcome Screen" -> Next
"License Information -> Next
"Select Destination Location":
Used Default "C:\Program Files\git" -> Next
"Select Components": used the default
x Windows Explorer integration
x Git Bash Here
x Git Gui Here
x Associate .git* configurat...
x Associate .sh files ...
"Select Start Menu folder:"
Used Default "Git" -> Next
Adjusting your PATH environment
x "Use Git from Git Bash only" (default)
->Next
Configure the line ending conversions
x "checkout windows-style, commit Unix-style line endings (default)
->Next
Configure the terminal emulator to use with Git Bash
x Use MinTTY (Default)
->Next
Configure experimental performance tweaks
o "Enable file system cache" default is off
->Next
Installing:
Progress bar runs to 100 %
then the installer fails with this message
wine: Call from 0x7b83a9fc to unimplemented function rstrtmgr.dll.RmShutdown,
aborting
and a programm error occurs, generating the attached backtrace.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44618
Bug ID: 44618
Summary: MindManager Pro v7.0: MSI installer complains
"CustomAction unhandled action type 7"
Product: Wine
Version: 3.2
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
During installation of Mind Manager Pro 7 you can notice:
fixme:msi:ACTION_CustomAction unhandled action type 7 (L"RunMSXML6Setup"
L"ALLUSERS=[ALLUSERS] ADDLOCAL=ALL")
Wine version: wine-3.2-167-g7be8beab68
[... and before you ask/complain, i know that fixmes ain't bugs ;) ...]
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36813
Bug ID: 36813
Summary: wineconsole: no text without winetricks corefonts
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Created attachment 48886
--> https://bugs.winehq.org/attachment.cgi?id=48886
screenshot
Whenever I run wineconsole on my gentoo machine, I get a console with no text.
Terminal shows:
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
if I install corefonts, it works fine.
I have fontconfig and liberation fonts installed:
austin@aw25 ~ $ qlist -Iv fontconfig liberation
app-admin/eselect-fontconfig-1.1
media-fonts/liberation-fonts-2.00.1-r1
media-libs/fontconfig-2.11.1-r1
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42554
Bug ID: 42554
Summary: The Magic School Bus Explores The Solar System crashes
while loading
Product: Wine
Version: 2.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
Created attachment 57458
--> https://bugs.winehq.org/attachment.cgi?id=57458
backtrace without environment variables
The exact symptoms of the crash seem to vary depending on whether the WINEDEBUG
and WINEPREFIX variables are set (but not what they are set to). Other
environment variables might have an effect, but none of WINEARCH,
WINEDLLOVERRIDES, WINESERVER do.
If neither are set, the crash looks like:
fixme:mmio:MMIO_InstallIOProc Global procedures not implemented
wine: Unhandled page fault on read access to 0x00001240 at address
0x101f:0x0000f104 (thread 0039), starting debugger...
Unhandled exception: page fault on read access to 0x00001240 in segmented
32-bit code (101f:00000509).
If one of the two is set (it does not matter which), the crash looks like:
fixme:mmio:MMIO_InstallIOProc Global procedures not implemented
wine: Unhandled page fault on read access to 0xffffffff at address
0x101f:0x000016ca (thread 0039), starting debugger...
Unhandled exception: page fault on read access to 0xffffffff in segmented
32-bit code (101f:00000509).
If both are set, the crash looks like:
fixme:mmio:MMIO_InstallIOProc Global procedures not implemented
fixme:mciavi:MCIAVI_mciSetAudio (0002, 00004002, 0x66e3d8) Item 0000: stub
fixme:mciavi:MCIAVI_mciSetAudio (0002, 00002002, 0x66e3d8) Item 0000: stub
fixme:mciavi:MCIAVI_mciPlay Unsupported flag 01000005
fixme:mmio:MMIO_InstallIOProc Global procedures not implemented
wine: Unhandled page fault on read access to 0x00004540 at address
0x101f:0x000016b6 (thread 0039), starting debugger...
Unhandled exception: page fault on read access to 0x00004540 in segmented
32-bit code (101f:00000509).
In the former two cases, the program crashes immediately before playing the
introductory video; in the latter case, the program crashes immediately after
the video is played (or skipped).
It may be noteworthy that the crash always occurs in DPMI_PendingEventCheck()
rather than in the program proper, with the problematic instruction being
"testl $0xffffffff,%fs:0x00000200".
I ran a +heap trace and didn't come up with anything.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48064
Bug ID: 48064
Summary: qmgr:job started failing on XP on Sep 09
Product: Wine
Version: 4.19
Hardware: x86
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: qmgr
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Created attachment 65611
--> https://bugs.winehq.org/attachment.cgi?id=65611
Winetest site showing the failures starting on Sep 09
qmgr:job started failing on Windows XP on Sep 09, that is when winehq.org was
upgraded:
job.c:578: Test failed: unexpected state: 5
[26 times]
job.c:586: Test failed: BITS job timed out
job.c:618: Test failed: got 0x00200017
See http://winetest.dolphin/data/tests/qmgr:job.html
The test accesses https://test.winehq.org/ and, since this only impacts Windows
XP, it is likely that this is the same certificate issue that causes
urlmon:protocol to fail too.
Also the reason why the same failures don't happen on Windows 2003 (unlike for
urlmon:protocol) is that the BITS tests are skipped there:
job.c:719: Tests skipped: Tests need BITS 2.5 or higher
So the fix will likely be the same as for urlmon:protocol.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45501
Bug ID: 45501
Summary: Darksiders - Slow player movement with builtin
d3dx9_42
Product: Wine
Version: 3.13
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 61875
--> https://bugs.winehq.org/attachment.cgi?id=61875
+d3dx
0009:fixme:hlsl_parser:hlsl_parse Array.
0009:fixme:hlsl_parser:hlsl_parse Array.
0009:fixme:d3dcompiler:make_assignment Check for casts in the lhs.
0009:err:d3dcompiler:compile_shader HLSL shader parsing failed.
0009:fixme:d3dcompiler:make_assignment Check for casts in the lhs.
0009:err:d3dcompiler:compile_shader HLSL shader parsing failed.
Output shows that game calls d3dcompiler_43 only.
But actually also needs d3dcompiler_42.
Combinations:
d3dcompiler_43 - builtin
d3dx9_42 - builtin
= black screen
d3dcompiler_43 - native
d3dx9_42 - builtin
= no black screen, slow player movement
d3dcompiler_43 - native
d3dx9_42 - native
= black screen
d3dcompiler_42 - native
d3dcompiler_43 - builtin
d3dx9_42 - native
= no black screen and no slow player movement
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43514
Bug ID: 43514
Summary: Beamng.drive requires sm3_rasterizer sysval semantic
0x2
Product: Wine
Version: 2.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: byi5000(a)gmail.com
Distribution: ---
fixme:d3d_shader:shader_glsl_setup_sm3_rasterizer_input Unhandled sysval
semantic 0x2.
fixme:d3d_shader:shader_glsl_input_pack Unhandled sysval semantic 0x2.
I *think* this is responsible for the wrong sunshine reflection on the street.
https://msdn.microsoft.com/en-us/library/windows/desktop/bb509647.aspx
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45742
Bug ID: 45742
Summary: Sniper Elite V2 has no sound
Product: Wine
Version: 3.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: noonetinone(a)gmail.com
Distribution: ---
Some time between the 3.0 code freeze and version 3.9
Sniper Elite: V2 has lost sound. The game was last
known to have sound in wine staging version 2.21. The
last of the years staging patches. Sadly the game also
has some other issues not related to sound. In my
testing of wine releases, early 3.x builds are unable
to run the game at all. The latest bleeding edge
versions 3.12 & 3.14 have the problem of missing
textures for objects and walls, thus making the main
menu unusable.
All that being said, I think the more serious issue and
one that had really bother me personally is the audio
difficulties. Missing sound completely is one that
affects other titles.
I will keep testing earlier wine releases and try to get
as close to version 2.21 as I can. More info is forth-
coming.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45847
Bug ID: 45847
Summary: Warframe installer update/download gets stuck due to
corruption on large files in 'Bulk Download' mode
(tries over and over again)
Product: Wine
Version: 3.16
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wininet
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
cloned off from bug 45734
There is troll who has no idea how Bugzilla works.
I made the mistake to comment there.
Partial copy/pasta of my initial analysis from
https://bugs.winehq.org/show_bug.cgi?id=45734#c12
Prerequisites:
* work around bug 38960 ("Multiple applications need
'kernel32.SetFileCompletionNotificationModes' implementation (Steam
'steamwebhelper.exe' and Blizzard Battle.net desktop app CEF v3.2+/Chromium
v44+ crash in Win7 mode, Sony Xperia Companion 1.7.x)"
-> 'winetricks winxp' or use Wine-Staging if you need 'Windows 7' mode for
whatever reasons
* work around bug 37797 ("Warframe updater/installer crashes (CEF3 with
Blink/Google Chrome and V8 checks requested font facename, doesn't like
Liberation replacement, Arial font)") -> dupe of bug 32342 ("Multiple
applications and games using 'Webkit' or 'Blink' web browser engine crash on
startup ('Arial' and 'Times New Roman' font face name validation)")
-> 'winetricks -q corefonts' or use Wine-Staging
--- snip ---
$ find .wine -iname *.log
.wine/winetricks.log
.wine/drive_c/windows/DirectX.log
.wine/drive_c/windows/logs/DirectX.log
.wine/drive_c/users/focht/Local Settings/Application Data/Warframe/Launcher.log
--- snip ---
'Launcher.log' is the log file one needs to check for download problems/errors.
It shows each file/chunk downloaded.
There seems to be a problem with very large files (archives) when 'Bulk
Download' mode is used. For example there is always corruption happening in
some chunks for the file
'F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma' (14 GB). Since it's
streaming LZMA it gets detected (see "Bad LZMA stream" in launcher log) and
re-downloaded over and over again.
--- snip ---
...
Queuing Z:\home\focht\Downloaded\Public\Cache.Windows\F.TextureDx9.cache
[7909D15B39359A27EDEF21DEB9D86D3B]
Queuing Z:\home\focht\Downloaded\Public\Cache.Windows\F.TextureDx9.toc
[DCBE1867172A86A365910B6CB36BFC4B]
...
HTTP GET
/Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
GET //Cache.Windows/B.Misc.cache.17C3FB9222153CF642694D33955737BD.lzma HTTP/1.1
Host: content.warframe.com
Connection: Keep-Alive
HTTP/1.1 200 OK
Date: Sun, 16 Sep 2018 11:40:51 GMT
Connection: Keep-Alive
Accept-Ranges: bytes
Cache-Control: public, max-age=86400
Content-Length: 2035849776
Content-Type: chemical/x-cache
Last-Modified: Wed, 01 Aug 2018 20:21:44 GMT
ETag: "79589a30-572657175ce04"
X-HW: 1537098051.dop014.fr8.t,1537098051.cds035.fr8.c
GET //Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP/1.1
Host: content.warframe.com
Connection: Keep-Alive
HTTP/1.1 200 OK
Date: Sun, 16 Sep 2018 11:40:51 GMT
Connection: Keep-Alive
Accept-Ranges: bytes
Cache-Control: public, max-age=86400
Content-Length: 14112683568
Content-Type: chemical/x-cache
Last-Modified: Wed, 01 Aug 2018 20:24:53 GMT
ETag: "3492e7630-572657cb775b4"
X-HW: 1537098051.dop002.fr8.t,1537098051.cds003.fr8.c
Downloading @ 6 MB/s
Downloading @ 6 MB/s
...
Downloading @ 6 MB/s
Bad LZMA stream in
//Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP GET
/Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
GET //Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP/1.0
Host: content.warframe.com
Pragma: no-cache
Connection: Keep-Alive
HTTP/1.0 200 OK
LzmaDec_Allocate failed for
//Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP GET
/Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
GET //Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP/1.1
Host: content.warframe.com
Pragma: no-cache
Connection: Keep-Alive
HTTP/1.1 200 OK
Date: Sun, 16 Sep 2018 11:54:01 GMT
Connection: Keep-Alive
Accept-Ranges: bytes
Cache-Control: public, max-age=86400
Content-Length: 14112683568
Content-Type: chemical/x-cache
Last-Modified: Wed, 01 Aug 2018 20:24:53 GMT
ETag: "3492e7630-572657cb775b4"
X-HW: 1537098841.dop017.fr8.t,1537098841.cds003.fr8.c
Downloading @ 6 MB/s
Downloading @ 6 MB/s
...
Downloading @ 6 MB/s
Bad LZMA stream in
//Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP GET
/Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
GET //Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP/1.0
Host: content.warframe.com
Pragma: no-cache
Connection: Keep-Alive
HTTP/1.0 200 OK
LzmaDec_Allocate failed for
//Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP GET
/Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
GET //Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
HTTP/1.1
Host: content.warframe.com
Pragma: no-cache
Connection: Keep-Alive
HTTP/1.1 200 OK
Date: Sun, 16 Sep 2018 12:05:44 GMT
Connection: Keep-Alive
Accept-Ranges: bytes
Cache-Control: public, max-age=86400
Content-Length: 14112683568
Content-Type: chemical/x-cache
Last-Modified: Wed, 01 Aug 2018 20:24:53 GMT
ETag: "3492e7630-572657cb775b4"
X-HW: 1537099544.dop009.fr8.t,1537099544.cds003.fr8.c
Downloading @ 6 MB/s
Downloading @ 6 MB/s
...
Downloading @ 6 MB/s
Bad LZMA stream in
//Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
Downloaded 11,630,780,172 bytes total (25,743,463,740 expected) ~ 6,349,930 B/s
Finished Binaries1 (1831.7 seconds)
...
--- snip ---
To work around, uncheck the 'Bulk download' mode in settings.
Interestingly this mode is not available in 32-bit WINEPREFIX.
Both, '64-bit Mode' and 'Bulk Download' are automatically disabled in settings
there.
The downloads are ordinary webserver/webdav file requests via 'wininet'.
If you start the launcher as follows you will see all of them (lots of spam
though):
--- snip ---
$ WINEDEBUG=+loaddll,+process,+wininet wine msiexec -i Warframe.msi
--- snip ---
All the files can be downloaded without Warframe installer/launcher by tracing
the installer on +wininet debug channel. Their content is delivered as LZMA
compressed files/streams.
Get list of all files to be downloaded:
--- snip ---
$ wget -qO- /dev/null content.warframe.com//origin/310F099E/index.txt.lzma |
lzmadec
...
/Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma,14112683568
--- snip ---
NOTE: All paths are relative to your Warframe download folder. It depends on
your selection when your started the updater first time. I selected
"c:\\warframe" in my case.
--- snip ---
$ pwd
/home/focht/.wine/drive_c/warframe/Downloaded/Public
--- snip ---
Download one specific file via 'wget' from 'content.warframe.com' using the
file path from list:
--- snip ---
$ wget
content.warframe.com/Cache.Windows/F.TextureDx9.cache.7909D15B39359A27EDEF2…
--2018-09-16 14:58:15--
http://content.warframe.com/Cache.Windows/F.TextureDx9.cache.7909D15B39359A…
Resolving content.warframe.com (content.warframe.com)... 205.185.216.10,
205.185.216.42
Connecting to content.warframe.com (content.warframe.com)|205.185.216.10|:80...
connected.
HTTP request sent, awaiting response... 200 OK
Length: 14112683568 (13G) [chemical/x-cache]
Saving to: ‘F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma’
F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D
100%[==========================================================================================================>]
13.14G 6.07MB/s in 39m 42s
2018-09-16 15:37:57 (5.65 MB/s) -
‘F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma’ saved
[14112683568/14112683568]
$ lzmainfo F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
Uncompressed size: 15749 MB (16514030011 bytes)
Dictionary size: 64 MB (2^26 bytes)
Literal context bits (lc): 3
Literal pos bits (lp): 0
Number of pos bits (pb): 2
$ xz --format=lzma --decompress
F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B.lzma
$ md5sum F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B
7909d15b39359a27edef21deb9d86d3b
F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B
$ cp F.TextureDx9.cache.7909D15B39359A27EDEF21DEB9D86D3B
~/.wine/drive_c/warframe/Downloaded/Public/Cache.Windows/F.TextureDx9.cache
--- snip ---
Essentially with a few script lines you could write your own Warframe
updater/downloader ;-)
--- snip ---
# retrieve all files for 'Cache.Windows' folder in Warframe download cache
$ wget -qO- /dev/null content.warframe.com//origin/310F099E/index.txt.lzma |
lzmadec | sed -ne 's/^\(\/Cache.Windows.*\),.*/content.warframe.com\1/p' |
xargs wget -c
# uncompress downloaded files (keep originals)
$ find . -iname "*.lzma" -exec xz --format=lzma --decompress --keep {} \;
# copy all files that have the md5sum pattern extension to target folder (while
dropping the md5sum extension)
$ find . -regextype sed -regex ".*.[A-F0-9]\{31\}$" -exec bash -c 'cp "$0"
~/".wine/drive_c/warframe/Downloaded/Public/Cache.Windows/${0%.*}"' {} \;
--- snip ---
This looks like 'wininet' related. Unfortunately 'winetricks -q wininet'
provides a very old version of 'wininet.dll' which can't be used due to Win7+
features (Warframe will refuse).
$ sha1sum Warframe.msi
cd9b81c88d0b2888772e1cab570246d5b5b29131 Warframe.msi
$ du -sh Warframe.msi
40M Warframe.msi
$ wine --version
wine-3.16
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=21702
Summary: Continuum: crashes at start up screen
Product: Wine
Version: 1.1.38
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: orbfig(a)wi.rr.com
Created an attachment (id=26235)
--> (http://bugs.winehq.org/attachment.cgi?id=26235)
Terminal output from beginning of execution to the crash
Using openSUSE 11.2 (almost a completely new install, too), Continuum will
crash. Normally Continuum must run using a patched dlls/kernel32/process.c
adding "if (access & PROCESS_VM_WRITE) return NULL;" at the top (otherwise it
will never even reach the first-time-run setup step, let alone the point it's
crashing at.)
This was normally good enough to run the whole game pretty well, but Continuum
now crashes regularly once it reaches the zone select screen (the first window
after the splash logo.)
Backtrace attached.
--
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=35351
Bug ID: 35351
Summary: Allow configuring modifier key mapping
Product: Wine
Version: 1.7.10
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: winemac.drv
Assignee: wine-bugs(a)winehq.org
Reporter: trev(a)adblockplus.org
Classification: Unclassified
Currently the modifier key mapping implemented by Mac driver is: Control =>
Control, Command => Alt, Option => unbound. While this makes some sense, it
also makes sure that all keyboard shortcuts are different between native OS X
applications and Windows applications running via Wine. This is the reason for
numerous requests to remap modifier keys. With the X11 driver people were sent
off reconfiguring X11, this is no longer possible with the Mac driver.
Under http://apple.stackexchange.com/a/116546/66895 I verified that modifying
default_map in dlls/winemac.drv/keyboard.c has the desired effect, one can
define the mapping for the Control key and the two Command keys freely
(changing the mapping for the Option key on the other hand is probably not a
good idea, at least not without changes to the key handling code). What's
missing is merely a way to change the mapping in Wine, patching the binary is
currently the only solution and obviously not a great one. There should be a
way to do the same via a registry key or a configuration file.
--
Do not reply 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=33159
Bug #: 33159
Summary: Loading of some copy-protected .dll Files is not
working (i.e. activation.dll, awc.dll)
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frank(a)ambertation.de
Classification: Unclassified
Some .dll Files are packed and stripped of the relocation table in order to
provide some level of protection against dissasemblers. Those files are
commonly found in DRMed Software.
Trying to start Sim City (2013) in wine on OSX will give a "Activation.dll load
failed" Error. Using WINEDEBUG=+map_image you will find the following line in
the logs
4348.132:0009:warn:module:map_image Need to relocate module from 0x40000000 to
0x10d0000, but there are no relocation records
The same Application runs without problems on wine for linux.
On OSX the memory range 0x00075000-0x40075000 is reserved for WINE_DOS on
startup. When the .dll is loaded, the call to wine_mmap_is_in_reserved_area
will indicate that the base-addres of the library (0x40000000) is already
reserved forcing it to relocate to another, free address range. Without the
relocation table this is impossible and results in the above message.
--
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=43499
Bug ID: 43499
Summary: The Legend of Heroes: Trails of Cold Steel - Graphical
glitches
Product: Wine
Version: 2.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: betaversiondot(a)gmail.com
Distribution: ---
Created attachment 58878
--> https://bugs.winehq.org/attachment.cgi?id=58878
repeating part of terminal output
Many graphical glitches.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42249
Bug ID: 42249
Summary: Speccy installer crashes after clicking "Install"
Product: Wine
Version: 2.0-rc5
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 56929
--> https://bugs.winehq.org/attachment.cgi?id=56929
Terminal output Wine 2.0-rc5
Speccy's installer crashes after you click on the "Install" button in Wine
2.0-rc5. I've tried installing this application in a clean prefix as well as
with winetricks -q ie8 installed.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39229
Bug ID: 39229
Summary: 11111
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: crypt32
Assignee: wine-bugs(a)winehq.org
Reporter: haron13s(a)mail.ru
Distribution: ---
Created attachment 52294
--> https://bugs.winehq.org/attachment.cgi?id=52294
Dragon Age Inquisition
Excuse me. I do not understand how to create a report on the issue. I do as
best I can.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40482
Bug ID: 40482
Summary: Support set title in start, needed by latest MSYS2
Product: Wine
Version: 1.9.8
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: fracting(a)gmail.com
Distribution: ---
Windows cmd start supports the below syntax:
start "this is title" cmd
A new cmd window will be created and the title will be set to "this is title".
Wine does not support this syntax, cause latest MSYS2 fails.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48150
Bug ID: 48150
Summary: ddraw:ddraw{2,4} show new test failures
Product: Wine
Version: 4.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: sven.wine(a)gmail.com
Regression SHA1: bfb901c60c37afa10c8f444dd341cdccafdc8fc5
Distribution: ---
New test failures are
ddraw2.c:1013: Test failed: Got unexpected hr 0x887601c2.
ddraw2.c:1015: Test failed: Got unexpected color 0x00000000.
and
ddraw4.c:1200: Test failed: Got unexpected color 0x0000ff00.
see for instance
https://test.winehq.org/data/90fc020400c06c163d4ab117d8da755b0f0e0861/win10…https://test.winehq.org/data/90fc020400c06c163d4ab117d8da755b0f0e0861/win10…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44917
Bug ID: 44917
Summary: Unable to run DTS MAster Audio Suite Encoder
Product: Wine
Version: 3.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: angelpc.home(a)gmail.com
Distribution: ---
Created attachment 61006
--> https://bugs.winehq.org/attachment.cgi?id=61006
Terminal output of DTS MA installation
DTS-HD Master Audio Suite Encoder Ver 2.6 installed and worked perfectly in
previous versions of wine, in my case in Wine V.2.16 without problems. AppDB
also reports it installs without issues on earlier versions as well. The
program now installs but regardless of which .exe file is opened they all open
a CLI (DOS) window which appears in some cases to be some sort of queue.
Exception being the Authoriser program works. No program quick launch icon is
generated.
At installation time the terminal reports as per 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.
http://bugs.winehq.org/show_bug.cgi?id=32451
Bug #: 32451
Summary: Cannot install the witcher enhanced edition from GOG
(installation freeze)
Product: Wine
Version: 1.5.19
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bigjohnaumic(a)yahoo.fr
Classification: Unclassified
Created attachment 42811
--> http://bugs.winehq.org/attachment.cgi?id=42811
log file
The installation process is freezing at about a third.
There is a popup with nothing written inside and 4 buttons : 'ok', 'cancel',
'abort', '???' (I can't see the last it's cut and the window is not resizable).
No matter which button I click on the result is the same : it does nothing. I
have then to quit the installation (ctrl-c).
I use a fresh 32bit prefix (with winetricks d3dx9_36 d3dx9_43 vcrun2005).
I use the installer in 7 parts (one .exe and six .bin)
--
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=48367
Bug ID: 48367
Summary: MiFlashUnlock 3.5.1128.45: Does not display login
screen
Product: Wine
Version: 5.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rootkea(a)gmail.com
Distribution: ---
Created attachment 66110
--> https://bugs.winehq.org/attachment.cgi?id=66110
backtrace provided by "Program Error" dialog
Hello!
I'm using wine-5.0-rc2(devel) on Debian 10. I'm trying to unlock the bootloader
of my Mi phone using MiFlashUnlock 3.5.1128.45 tool.
MiFlashUnlock 3.5.1128.45 Download link:
http://miuirom.xiaomi.com/rom/u1106245679/3.5.1128.45/miflash_unlock-en-3.5…
$ sha1sum miflash_unlock-en-3.5.1128.45.zip
ffcd4c0400ce4607ddf66e39958ebb88d9431eb1 miflash_unlock-en-3.5.1128.45.zip
$ sha1sum miflash_unlock.exe
714d25cb3bea6b55fdb8e440fd1405202be11711 miflash_unlock.exe
Whenever I try to run the miflash_unlock.exe with wine, a "Program Error"
dialog pops up (screenshot attached: wine-1.png). Also attached the backtrace
log (backtrace.txt) provided by that pop up dialog. Also linked the terminal
o/p until this point of execution. (wine-terminal-1.txt)
Then, if I close that dialog and click on "Agree", the application window hangs
(wine-2.png) and does nothing. Also linked the terminal o/p after clicking
"Agree". (wine-terminal-2.txt). Then I have to close the application by ctrl-c
on terminal or clicking x on the hanged application window.
Expected behavior:
I expected to see the login screen (crossover-1.png) after clicking on "Agree".
Crossover 19.0.0-1 throws the similar "Program Error" dialog couple of times
but after closing them and clicking on "Agree" shows the login screen.
Since, the issue is with web login screen may be the fault lies somewhere in
gecko? Please note that I let it install wine-gecko automatically when I was
asked while setting wineprefix the first time. Also since crossover shows the
login screen may be they have fixed it?
Anyways, please look into it.
Thanks!
wine-1.png: https://i.imgur.com/5JlK0h1.png
backtrace.txt: https://pastebin.com/raw/azTHEH7G (attached)
wine-terminal-1.txt: https://pastebin.com/raw/LVn6hGiS
wine-2.png: https://i.imgur.com/N3Ru0BS.png
wine-terminal-2.png: https://pastebin.com/raw/TTXELvTm
crossover-1.png: https://i.imgur.com/DaA6p9E.png
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48546
Bug ID: 48546
Summary: Roland JUNO-DS Librarian 1.00 crashes when starting
Product: Wine
Version: 5.0
Hardware: x86-64
URL: https://www.roland.com/global/support/by_product/juno-
ds88/updates_drivers/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ukonkivi(a)protonmail.com
Distribution: Gentoo
Created attachment 66354
--> https://bugs.winehq.org/attachment.cgi?id=66354
Backtrace log
Roland JUNO-DS Librarian v1.0 crashes immediately when starting.
Steps to reproduce:
1. Download archive and extract setup.exe
2. rm -rf ~/.wine_juno
3. WINEPREFIX=~/.wine_juno wine setup.exe
4. OK, Next, Next, Install, Finish
5. Start the librarian in any manner, eg. WINEPREFIX=~/.wine_juno wine
"C:\Program Files\Roland\JUNO-DS Librarian\JUNO-DS Librarian.exe"
6. Observe crash
Tested using wine-staging-5.0 from Gentoo (both WINEARCH=win32 and win64) and
plain build from git://source.winehq.org/git/wine.git (git
clone;./configure;make depend;make;make install). Same result.
Backtrace is from git build.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42052
Bug ID: 42052
Summary: ePanel Pearson Desktop crashes in wine-mono
Product: Wine
Version: 1.9.22
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: arabek+wine(a)gmail.com
Created attachment 56534
--> https://bugs.winehq.org/attachment.cgi?id=56534
wine debugger backtrace
While trying to run PearsonDesktop with wine i get strange output to the
terminal window:
[ arab: ~/.wine/drive_c/Program Files/ePanel Pearson ]$ wine PearsonDesktop.exe
Unknown heap type: #GUlD
Unknown heap type: #Blop
Unhandled Exception:
System.TypeInitializationException: The type initializer for
'PearsonDesktop.Program' threw an exception. --->
System.InvalidProgramException: Invalid IL code in
eIOTCwgtN7fvJXNYMS.emYpxP33xAq8jO8oJ1:eopWKtZX1 (int): IL_00c7: stloc.s 12
at PearsonDesktop.Program..cctor () <0x27f1220 + 0x0005f> in <filename
unknown>:0
--- End of inner exception stack trace ---
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeInitializationException: The type
initializer for 'PearsonDesktop.Program' threw an exception. --->
System.InvalidProgramException: Invalid IL code in
eIOTCwgtN7fvJXNYMS.emYpxP33xAq8jO8oJ1:eopWKtZX1 (int): IL_00c7: stloc.s 12
at PearsonDesktop.Program..cctor () <0x27f1220 + 0x0005f> in <filename
unknown>:0
--- End of inner exception stack trace ---
When running with:
WINEDEBUG=warn+all wine PearsonDesktop.exe
the output is different, and the program crashes to wine crash debugger window
instead.
I'm attaching the console and backtrace output.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43709
Bug ID: 43709
Summary: The Sims unable to start on macOS due to page fault in
ddraw_surface4_AddAttachedSurface
Product: Wine
Version: 2.17
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Created attachment 59181
--> https://bugs.winehq.org/attachment.cgi?id=59181
Wine 2.17 debug log
Hi,
I tried starting The Sims on Wine for macOS. It seems to be starting, but I
encounter a black screen and an popup stating that the application crashed.
>From the logs it seems that it is a page fault in the
ddraw_surface4_AddAttachedSurface call.
Please note that this is done without a virtual desktop, as it seems that the
virtual desktop on macOS is currently broken.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40942
Bug ID: 40942
Summary: Dragon Age Inquisition does not run
Product: Wine
Version: 1.9.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mark.lipman(a)gmail.com
Distribution: ---
Created attachment 55076
--> https://bugs.winehq.org/attachment.cgi?id=55076
Log file from POL, showing crash log
Dragon Age:Inquisition installs correctly but will not run. Log file is
attached. I think issue is DirectX 10 related
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48539
Bug ID: 48539
Summary: Cricut design space: crashes on installing
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vo1xa.brad(a)gmail.com
Distribution: ---
Created attachment 66347
--> https://bugs.winehq.org/attachment.cgi?id=66347
output of error log
Cricut design space fails to install encounters major 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.
http://bugs.winehq.org/show_bug.cgi?id=31002
Bug #: 31002
Summary: Livezilla crashes on start without native dotnet20
Product: Wine
Version: 1.5.7
Platform: x86
URL: http://www.livezilla.net/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 19329
Classification: Unclassified
Created attachment 40695
--> http://bugs.winehq.org/attachment.cgi?id=40695
terminal output
Install livezilla and attempt to start LiveZilla.exe. It will fail with some
heap errors/stacktrace. Removing mono/installing dotnet20 works around it, and
gets it to the next failure (missing fonts).
--
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=48536
Bug ID: 48536
Summary: Kairatune VST: Wine crash when plugin try show hint
Product: Wine
Version: 5.0
Hardware: x86-64
URL: http://futucraft.com/download/kairatune-1-2-4-vsti-win
64/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: and3md(a)gmail.com
Distribution: ---
Created attachment 66342
--> https://bugs.winehq.org/attachment.cgi?id=66342
Wine crash log
The Kairatune plugin crashes wine when it has to display hint. For example,
when you change the selected preset and leave the mouse over the name.
Steps to reproduce:
1. Install LMMS -
https://github.com/LMMS/lmms/releases/download/v1.2.1/lmms-1.2.1-win64.exe
2. Download and unzip Kairatune -
http://futucraft.com/download/kairatune-1-2-4-vsti-win64/
3. Open LMMS
4. Change plugin embedding in Settings to No embedding (this is workaround of
https://bugs.winehq.org/show_bug.cgi?id=48527).
5. Restart LMMS
4. Open the instruments plugins tab
5. Drag VeSTige to Song Editor window
6. Click Vestige in Song editor to show Vestige GUI
7. In Vestige Window click green folder icon
8. Go to Kairatune.dll
9. Click Open
10. Change preset in Kairatune window (for example click Impact)
11. Don't move your mouse
12. When hint try to show wine crash
On windows 10 this problem is not present, in WINE the problem occurs in the
case of LMMS 32 bits and 64 bits. So you can test on 32bit version too
(https://github.com/LMMS/lmms/releases/download/v1.2.1/lmms-1.2.1-win32.exehttp://futucraft.com/download/kairatune-1-2-4-vsti-win32/ )
The same problem exist in FL Studio 20 64bit running on wine.
Mint 19 64bit, GeForce 1060
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45600
Bug ID: 45600
Summary: Wargaming Game Center has Russian as default language
Product: Wine
Version: 3.13
Hardware: x86
URL: http://redirect.wargaming.net/WGC/Wargaming_Game_Cente
r_Install_TWA_EU.exe
OS: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Despite not having Russian as language anywhere an my PC, when run under wine
it picks Russian as default language. On my VM it picks the system language
properly.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=41181
Bug ID: 41181
Summary: Assassin's Creed III crashes
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: plata(a)mailbox.org
Distribution: ---
Created attachment 55411
--> https://bugs.winehq.org/attachment.cgi?id=55411
backtrace
Assassin's Creed III crashes at/after "This work of fiction was designed,
developed and produced by a multicultural team of various religious faiths and
beliefs."
I attached what looked relevant to me only because the output was REALLY long.
This could be the same as https://bugs.winehq.org/show_bug.cgi?id=39731
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48548
Bug ID: 48548
Summary: Support running multiple tests in submitted jobs
Product: Wine-Testbot
Version: unspecified
Hardware: Other
OS: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cdavis5x(a)gmail.com
When I submit a job manually on the testbot, I can only run one instance of one
executable. For a binary, this makes sense, since there's only one binary; but
a patch, for which a choice of Wine test executables is offered, can affect
multiple Wine unit tests. I then have to submit the job multiple times, one for
each test unit affected. This seems... suboptimal. It'd be much faster and more
convenient if I could run multiple tests in a single job.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47764
Bug ID: 47764
Summary: World of Warcraft - Keyboard troubles
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cybermax(a)dexter.no
Distribution: ---
With wine-staging-4.16 i need to double click keys sometimes to get things
working.
Example: Need to click W twice to move forwards.
Once it works, it works fine until i do another action requiring a different
key. Sometimes the keystroke "misses", and i need to double click. Bare in mind
that i use mouselook all the time, and i see some changes mentioned with
winex11.drv and "Only grab or warp the cursor when keyboard isn't grabbed" and
stuff like that... Could it be some problems when using mouse + keyboard at the
same time?
This is not something that happened with wine-staging-4.15.
Please confirm.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48500
Bug ID: 48500
Summary: BurnInTest 9.1 build 1001 crashes on start up
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
Distribution: ---
$ wine bit.exe
0009:err:ole:CoGetClassObject class {2735412e-7f64-5b0f-8f00-5d77afbe261e} not
registered
0009:err:ole:CoGetClassObject class {2735412e-7f64-5b0f-8f00-5d77afbe261e} not
registered
0009:err:ole:create_server class {2735412e-7f64-5b0f-8f00-5d77afbe261e} not
registered
0009:fixme:ole:CoGetClassObject CLSCTX_REMOTE_SERVER not supported
0009:err:ole:CoGetClassObject no class object
{2735412e-7f64-5b0f-8f00-5d77afbe261e} could be created for context 0x17
0009:err:seh:setup_exception_record stack overflow 420 bytes in thread 0009 eip
00300030 esp 0023118c stack 0x230000-0x231000-0x330000
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48272
Bug ID: 48272
Summary: Crackling and slower audio on Ubisoft's Assassin's
Creed 1 & Far Cry 3 games
Product: Wine
Version: 4.21
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adrien_fernandes2(a)hotmail.com
Created attachment 65940
--> https://bugs.winehq.org/attachment.cgi?id=65940
Output of Wine 4.21 running Assassin's Creed
So here it is, it might be a bit long and I'll try to be as precise as I can to
explain the problem.
First, list of tested games :
Far Cry 2 : No audio problem ✔
Crysis : No audio problem ✔
XIII : No audio problem ✔
Far Cry 3 : Crackling audio ✖
Assassin's Creed : Crackling audio ✖
I ran all the games set on DirectX 9 and I built Wine to use Open Sound System
for audio (if this is important). Assassin's Creed 1's prefix is set to WinXP
and Far Cry 3's one is set to Win7 (because of Uplay).
The problem is that the audio on Far Cry 3 and Assassin's Creed is weirdly
crackling and slower than it should be but, not EVERY sounds in the game are
making the audio crackles. On Assassin's Creed, it's when a lot of people are
around me and everytime I use the eagle vision. In the menu or when outside the
Animus (in the present time of the game where there are only three people and a
tiny room), the audio works well. Also, an important point is that neither
Assassin's Creed nor Far Cry 3 are slowed down to fit the slowed down audio
issue. They both work very well when it happens which is causing a strange
issue I'll describe AND SHOW below.
I'm using a GTX 765m to play which is not bad for old games like these.
"Your computer certainly isn't powerful enough to run the game !" you say...
Well, you are not totally wrong, I could have better hardware but, in the past,
when I was playing these games on Windows then, later, on GNU/Linux, I never
met this problem. The two differences are that I'm playing, for the first time,
Assassin's Creed _ON_FREEBSD_ and we are now almost in 2020. My last Assassin's
Creed session was on GNU/Linux in 2016. Wine changed so much in almost 4 years
!
But let me remind you that only two of the five games mentioned above are
having issue. all my native FreeBSD games (OpenMorrowind, Xonotic, Minetest,
Tales of Maj'Eyal, Quake II from Yamagi's source code etc...), videos read with
mpv, music listened with moc and even Firefox are all working well without
crackling or slowed down audio. And three tested games on Wine with OSS are
working perfecly. I could have tested more games but I think three is good
enough.
So here is the "show" I mentioned in the beginning. I took a video of
Assassin's Creed's problem. I recorded it with my phone so... sorry for the
poor quality but you can see the problem :
https://www.youtube.com/watch?v=f5rhg-PwFeU
In this video, you can see two people speaking together. In the normal game,
one speak and, when finished, the other answer. They _NEVER_ speak above the
other. In my Assassin's Creed, the game is running well but the audio is slowed
down which creates a desyncing between the slowed down voice played and the
mouth of the character. And, because the game is running well beside this
issue, one didn't finish his sentence and the other will start his speech over
the first one (it shouldn't happen).
I found a longplay video of the game which is certainly played on Windows. I
copied the video link to start at the exact same moment as the one I recorded
from my computer and you can see how the game should normally behave :
https://youtu.be/1gGz6vf35T0?t=2991
About the crackling audio issue, it can be heard by the end of my video when I
use the eagle vision.
For Far Cry 3, don't even need to run the game to hear crackling and slowed
down audio. I also took a video of the problem, it speaks for itself :
https://www.youtube.com/watch?v=JkOXvy_42jc
The original theme can be listened here : https://youtu.be/rfAeL4JfHj8?t=10
I copied the video to start at the same time of my video of Far Cry 3, in the
menu. What you can notice is that the normal music is faster than in my video,
it's the same problem than with Assassin's Creed 1.
I fetched the output of Wine when running Assassin's Creed 1. It repeatedly
says two things so I cut it into "head -n 50" and "tail -n 50". I watched the
long output and nothing is different between the first 50 and last 50 lines.
I hope I was clear enough, English isn't my native language so I apologize if I
didn't use it correctly.
--
Do not reply 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=27774
Summary: VMMap: cannot activate window
Product: Wine
Version: 1.3.24
Platform: x86
URL: http://technet.microsoft.com/en-us/sysinternals/dd5355
33
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Read about it while reading about the Stuxnet worm. I don't fully expect the
app to work on wine (yet :)), but running it works without crashing. I can't,
however, activate the window.
To reproduce:
$ wget http://download.sysinternals.com/Files/vmmap.zip
$ unzip vmmap.zip "vmmap.exe"
$ wine start /min notepad.exe
$ wine vmmap.exe
accept the license, choose notepad, then click ok. The main window will now
appear, but you cannot click anything in it. You can still move it with
alt+drag, though.
Virtual desktop/disabling window manager control/decoration don't make a
difference.
Terminal output is pretty short:
austin@aw25 ~ $ wine vmmap.exe
fixme:system:SetProcessDPIAware stub!
fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
fixme:service:EnumServicesStatusExW resume handle not supported
fixme:service:EnumServicesStatusExW resume handle not supported
fixme:heap:RtlQueryHeapInformation Unknown heap information class 2
fixme:debug_buffer:RtlCreateQueryDebugBuffer (0, 1): stub
fixme:debug_buffer:RtlCreateQueryDebugBuffer (96, 1): returning 0x145658
fixme:debug_buffer:RtlQueryProcessDebugInformation (33, 204, 0x145658): stub
fixme:debug_buffer:RtlDestroyQueryDebugBuffer (0x145658): stub
fixme:file:K32GetMappedFileNameW (0x4c, (nil), 0x33c3bc, 260): stub
fixme:file:K32GetMappedFileNameW (0x4c, 0x110000, 0x33c3bc, 260): stub
Then repeats these lines several dozen times:
fixme:virtual:NtQueryVirtualMemory (process=0x4c,addr=(nil)) Unimplemented
information class: MemoryWorkingSetList
fixme:virtual:NtQueryVirtualMemory (process=0x4c,addr=(nil)) Unimplemented
information class: MemoryWorkingSetList
fixme:virtual:NtQueryVirtualMemory (process=0x4c,addr=(nil)) Unimplemented
information class: MemoryWorkingSetList
fixme:file:K32GetMappedFileNameW (0x4c, 0x220000, 0x33c3bc, 260): stub
2f4c2ed326f82357006820b604a1f9ad99d95f38 vmmap.exe
59b65ca253c3af2dc0f010da13827efb03c7a618 vmmap.zip
--
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=47005
Bug ID: 47005
Summary: d3d[2-9] test_shademode() fails on the testbot
Product: Wine
Version: 4.6
Hardware: x86
OS: Linux
Status: NEW
Severity: trivial
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
The upper-right triangle is painted blue instead of green. I tracked this down
to a bug in Gallium affecting software renderers:
<https://bugs.freedesktop.org/show_bug.cgi?id=98846>
I'm creating this Wine bug to track that one.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
The address lfbn-orl-1-1722-199.w90-107.abo.wanadoo.fr (90.107.35.199) failed too many login attempts (5) for
the account ti3nou(a)gmail.com.
The login attempts occurred at these times:
2020-01-29 05:56:09 CST
2020-01-29 05:56:19 CST
2020-01-29 05:57:54 CST
2020-01-29 05:58:01 CST
2020-01-29 06:26:07 CST
This IP will be able to log in again using this account at
2020-01-29 06:26 CST.
The address lfbn-orl-1-1722-199.w90-107.abo.wanadoo.fr (90.107.35.199) failed too many login attempts (5) for
the account ti3nou(a)gmail.com.
The login attempts occurred at these times:
2020-01-29 05:55:25 CST
2020-01-29 05:56:09 CST
2020-01-29 05:56:19 CST
2020-01-29 05:57:54 CST
2020-01-29 05:58:01 CST
This IP will be able to log in again using this account at
2020-01-29 06:25 CST.
https://bugs.winehq.org/show_bug.cgi?id=44664
Bug ID: 44664
Summary: The Five Cores - distorted rendering
Product: Wine
Version: 3.3
Hardware: x86-64
URL: https://gamejolt.com/games/T5C/319799
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 60668
--> https://bugs.winehq.org/attachment.cgi?id=60668
+d3d_shader
Launched with T5C.exe -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=48532
Bug ID: 48532
Summary: shell32: Support PCS_REMOVEDCHAR of PathCleanupSpec
Product: Wine
Version: 5.0-rc6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: katayama.hirofumi.mz(a)gmail.com
Distribution: ---
PathCleanupSpec won't work correctly against invalid characters.
https://docs.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_co…
Some invalid characters are replaced or removed.
--
Do not reply 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=17205
Summary: MessageBoxes doesn't have the copy(Ctrl-C) feature which
exists on Windows.
Product: Wine
Version: 1.1.14
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diaasami(a)gmail.com
Created an attachment (id=19116)
--> (http://bugs.winehq.org/attachment.cgi?id=19116)
Source of a simple app that shows a messagebox
On Windows, When pressing Ctrl-C with a standard messagebox focused, the
caption and contents are copied to the clipboard(as text), this doesn't happen
with Wine's messageboxes.
When running the attached application and pressing Ctrl-C with the messagebox
focused on Windows, the following is copied into the clipboard:
---------------------------
Caption
---------------------------
Test
---------------------------
OK
---------------------------
--
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=40892
Bug ID: 40892
Summary: Charmap.exe crashes on close after copying a character
Product: Wine
Version: 1.9.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: dexgerig(a)gmail.com
Distribution: ---
Created attachment 54982
--> https://bugs.winehq.org/attachment.cgi?id=54982
Backtrace of crash
Window's charmap application will crash if you try to close it after selecting
and copying a character from it's list.
Steps to reproduce.
1. Create clean 32-bit prefix using wine version 1.9.13
2. Obtain a copy of Window's charmap.exe and the required dll getuname.dll. (I
got mine from my Windows XP machine)
md5sum:
ac9fa2ba34225342a8897930503ae12f charmap.exe
60b9959d333c3d11255d8695d2685430 getuname.dll
3. Open charmap.exe
4. Click the select button then click the copy button.
5. Close exit out of the application.
Backtrace will be attached in this post.
Looking at the backtrace it seems to crash in the clipboard uninitialization
function "OLEClipbrd_UnInitialize". Specifically in the inlined function
"IDataObject_Release". Here is the relevant code.
void OLEClipbrd_UnInitialize(void)
{
ole_clipbrd *clipbrd = theOleClipboard;
TRACE("()\n");
if ( clipbrd )
{
static const WCHAR ole32W[] = {'o','l','e','3','2',0};
HINSTANCE hinst = GetModuleHandleW(ole32W);
if ( clipbrd->window )
{
DestroyWindow(clipbrd->window);
UnregisterClassW( clipbrd_wndclass, hinst );
}
IStream_Release(clipbrd->marshal_data);
if (clipbrd->src_data) IDataObject_Release(clipbrd->src_data);
HeapFree(GetProcessHeap(), 0, clipbrd->cached_enum);
HeapFree(GetProcessHeap(), 0, clipbrd);
theOleClipboard = NULL;
}
}
static FORCEINLINE ULONG IDataObject_Release(IDataObject* This) {
return This->lpVtbl->Release(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=46984
Bug ID: 46984
Summary: InstallShield error
Product: Wine
Version: 4.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: sk9258user(a)mail.ru
Distribution: ---
Created attachment 64147
--> https://bugs.winehq.org/attachment.cgi?id=64147
errors
I use latest wine 4.5, 32 bit.
This program (InstallShield) launch on other PC with Ubuntu. But on my Ubuntu
14.04 only I have this error. What this? How to fix? Before crash with error
screen is black on 5 seconds. In dialog error "1628: Failed to complete
installation".
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42344
Bug ID: 42344
Summary: Metal Gear Solid V: The Phantom Pain - Doesn't
launch/hangs
Product: Wine
Version: 2.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: spleefer90(a)gmail.com
Distribution: ---
Created attachment 57111
--> https://bugs.winehq.org/attachment.cgi?id=57111
steam MGSV launch log
Using steam version and wine-staging.
Set W7 in winecfg.
Launching the executable through the terminal just makes it kill itself after a
few seconds.
Launching through Steam makes one thread work at 100% and it just hangs 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=47917
Bug ID: 47917
Summary: RAOB Reader crashes with Run-time error '7': Out of
memory
Product: Wine
Version: 4.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: snesivan1(a)gmail.com
Distribution: ---
Created attachment 65412
--> https://bugs.winehq.org/attachment.cgi?id=65412
Console output from trying to run RAOB Reader.
RAOB Reader crashes on startup after the splash screen is displayed with the
"Run-time error '7': Out of memory".
The program is written using Visual Basic 6. To run it, one must first install
mfc40 through winetricks.
I attached the console output. Tested on Wine-Staging 4.17.
--
Do not reply 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=31047
Bug #: 31047
Summary: unable to edit gedit's preferences
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
Created attachment 40760
--> http://bugs.winehq.org/attachment.cgi?id=40760
Log: +winsock trace
1. Download win32 version of gedit
http://ftp.gnome.org/pub/gnome/binaries/win32/gedit/2.30/gedit-setup-2.30.1…
2. install via wine
3. start gedit
$ cd ~/.wine/drive_c/Program Files/gedit/bin
$ wine gedit.exe
4. click on edit->preference->view
Expect result:
"Text Wrapping"/"Line Numbers" and other options should be able to edit.
Actual result:
All these checkboxes are unable to edit.
There are two warnings from console at the first of running gedit:
** (gedit.exe:8): WARNING **: Failed to send buffer
** (gedit.exe:8): WARNING **: Failed to send buffer
A +winsock trace show:
warn:winsock:wsaErrno errno 32, (Broken pipe).
warn:winsock:WS2_sendto -> ERROR 10054
After that there are a lot output from console as below:
GConf Error: Adding client to server's list failed, CORBA error:
IDL:omg.org/CORBA/COMM_FAILURE:1.0
There as much of msvcrt message and winsock message with those "GConf Error":
fixme:msvcrt:MSVCRT__wsopen_s : pmode 0x01c0 ignored
warn:winsock:wsaErrno errno 115, (Operation now in progress).
native msvcrt doesn't help.
Will attach a +winsock trace, maybe helpful. Not sure what component yet.
--
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=34153
Bug #: 34153
Summary: wine does not restore mode of direction keys properly
Product: Wine
Version: 1.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: unsuspicious.fakename+wine(a)gmail.com
Classification: Unclassified
Wine seems to change the up key from ^[[A to ^[OA but not always back (reliably
reproducible on unclean exits / crashes and such, but randomly happens after
clean exits too).
1) open terminal (tested in bash / zsh; with xfce4-terminal and lxterminal)
2) ctrl+v [up key] should give you: ^[[A
3) winecfg
4) ctrl+c in terminal to end winecfg
5) ctrl+v [up key] now gives you: ^[OA
This can - depending on shell configuration - temporarily break features like
p.e. bash history search bound to up/down ^[[A (but not explicitly ^[OA) and
leave end-users clueless due to the subtle / weird nature of the unexpected
behaviour.
That being said: Not sure if (wine) bug or (for some reason I can't grasp)
normal / intended behaviour. All I know is it took me quite a while and also
help to figure out what's happening and how to work around 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.
https://bugs.winehq.org/show_bug.cgi?id=8780
Zebediah Figura <z.figura12(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |STAGED
CC| |z.figura12(a)gmail.com
Staged patchset| |https://github.com/wine-sta
| |ging/wine-staging/tree/mast
| |er/patches/oleaut32-CreateT
| |ypeLib
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48518
Bug ID: 48518
Summary: Unrailed! produces unhandled exception and crashes
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lubosz(a)gmail.com
Distribution: ---
Created attachment 66325
--> https://bugs.winehq.org/attachment.cgi?id=66325
Wine 5.0 log and backtrace
The Steam game Unrailed! crashes on wine 5.0, as well as 5.0-staging.
I needed to install dotnet472 with winetricks for the game to run, otherwise I
got:
```
006e:fixme:mscoree:parse_supported_runtime sku=L".NETFramework,Version=v4.7.2"
not implemented
```
Related Proton issue:
https://github.com/ValveSoftware/Proton/issues/3449
--
Do not reply 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=21456
Summary: Mathematica 4.0 crash
Product: WineHQ Apps Database
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jean-pierre(a)piantino.com
Created an attachment (id=25836)
--> (http://bugs.winehq.org/attachment.cgi?id=25836)
Terminal output after launching Mathematica
Mathematica 4.0 was running in Wine 1.1.36 under openSUSE 11.1.
Upgrading openSUSE to 11.2 makes Mathematica crash at launch.
--
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=52
IvanDSM <snesivan1(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |snesivan1(a)gmail.com
--- Comment #42 from IvanDSM <snesivan1(a)gmail.com> ---
Tested on Wine Staging 5.0 with a clean WINEPREFIX on a Fedora Rawhide
installation running Xfce. No issues whatsoever with a static background.
Running glxgears in the background made it a bit flickery (in the sense that it
would reset between very short intervals, but I believe that's intended
behavior) but otherwise no issues. The program runs the effect, the tiles do
not look corrupted and all windows return to normal after the program is 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=17982
Summary: PatBlt cannot draw arbitrary parallelograms based on the
world transform
Product: Wine
Version: 1.1.18
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Using the functions SetGraphicsMode and (Set|Modify)WorldTransform, it is
possible to define an arbitrary matrix to transform all points as things are
drawn to device contexts. Using this matrix, it should be possible to apply
arbitrary rotation/shear effects. Thus, rectangles drawn on the hdc can be
transformed into arbitrary parallelograms.
This only works on systems where GM_ADVANCED is supported (NT but not 9x,
according to MSDN).
I have written a test program that demonstrates this on Windows. On Wine, it
can only draw rectangles.
--
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=32050
Bug #: 32050
Summary: Running Dragon age 2 with High resolution textures
results in GL_OUT_OF_MEMORY errors
Product: Wine
Version: 1.5.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
Classification: Unclassified
When Dragon Age 2 is run with the high resolution textures pack
(http://social.bioware.com/page/da2-patches), I get GL_OUT_OF_MEMORY errors in
about 30 seconds in game and it crashes. Some examples include :
err:d3d_surface:surface_allocate_surface >>>>>>>>>>>>>>>>> GL_OUT_OF_MEMORY
(0x505) from glTexImage2D @ surface.c / 2747
err:d3d_surface:surface_upload_data >>>>>>>>>>>>>>>>> GL_INVALID_VALUE (0x501)
from glCompressedTexSubImage2DARB @ surface.c / 2364
err:d3d_draw:drawStridedFast >>>>>>>>>>>>>>>>> GL_OUT_OF_MEMORY (0x505) from
glDrawElementsBaseVertex @ drawprim.c / 48
err:d3d:buffer_create_buffer_object glBufferDataARB failed with error
GL_OUT_OF_MEMORY (0x505)
err:d3d:buffer_create_buffer_object Failed to create a vertex buffer object.
Continuing, but performance issues may occur
Running the game with the highest DirectX9 settings (Medium, Anti-aliasing 16x)
and High Res textures disabled works well on my system.
wine 1.5.15
Dragon age 2 1.04 with all DLC
Nvidia 550 Ti 2GB Ram
Arch Linux X64
--
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=25945
Summary: C_ASSERT doesn't fail if given non-constant expression
Product: Wine
Version: 1.1.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexander.scott.johns+winebug(a)googlemail.com
In commit wine-1.1.21-63-g5d31eb9 AJ changed the definition of C_ASSERT (in
include/winnt.h) to make it compatible with newer versions of GCC.
Roughly, the change was:
-#define C_ASSERT(e) extern char __C_ASSERT__[(e)?1:-1] __attribute__((unused))
+#define C_ASSERT(e) extern void __C_ASSERT__(int [(e)?1:-1])
Unfortunately, in GCC 4.4.3, the new definition of C_ASSERT doesn't fail when
given a non-constant expression. E.g.:
C_ASSERT(rand() == -1); /* ignored */
I think this is because GCC (as per C99) is treating the parameter of
__C_ASSERT__ as a VLA (variable length array), and so its type is equivalent to
int[*].
--
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=48516
Bug ID: 48516
Summary: Problem with League of Legends
Product: Wine-staging
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: y0rune(a)aol.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
First I use Gentoo ;) After change version from 4.21 -> 5.0. After applying the
same patch as to 4.21 (https://www.yorune.pl/public/gentoo/wine-lol.patch). I
do not have any problem with compilation but when I start the game the launcher
is starting but after log in it is crashed. The launcher ( when you can choose
to play) is not starting.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38271
Bug ID: 38271
Summary: The Docear4Word plugin for MS Word does not work at
all
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: whynot(a)nurfuerspam.de
Distribution: ---
Created attachment 51098
--> https://bugs.winehq.org/attachment.cgi?id=51098
Debug output trying to install/launch docear4word with Word
Docear4Word is a FOSS plugin for MS Word, which allows creating citations and
bibliography in MS Word based on a BibTeX database.
Information about this plugin can be found here:
http://www.docear.org/software/add-ons/docear4word/overview/
This is the download link:
http://docear.org/download/docear4word_setup.exe
The plugin's source code is also available:
http://docear.org/download/docear4word_source.zip
I tried installing this in both Word 2007 and Word 2010. In both cases, the
install of the plugin appears to finish without any errors (in the GUI).
In Word 2007, the progress is a little bit better, since the plugin at least
shows up in the preferences (Word Options => Add-Ins => Inactive Application
Add-ins lists "Docear4Word"). Obviously, since it is inactive, something went
wrong. Also by following "Manage => Add-Ins => COM-Add-Ins" one gets to a modal
pop-up window, which lists all COM Add-Ins. "Docear4Word" appears, but is
unchecked. If one checks it and goes to the same window again (COM Add-Ins), it
will say "Load Behavior: Not loaded. A runtime error occurred during the
loading of the COM Add-in."
If one turns wine debug output on, the are some specific errors in the command
line (see attachment, 1st part), perhaps most importantly
"fixme:ole:CoCreateInstance no instance created for interface
{b65ad801-abaf-11d0-bb8b-00a0c90f2744} of class
{34f82078-360b-4682-8275-0d9b0b641cbd}, hres is 0x800704e5"
In Word 2010, the add-in does not even show up in Word whatsoever. Trying to
manually launch the docear4word.exe installer from the Add-ins Window by using
"Add", there is also some debug output in the console (see attachment, 2nd
part).
The Add-in uses .NET, so an obvious question is how to handle the .NET. I tried
various approaches using several .NET versions and service packs via
winetricks, and I believe also mono. Nothing worked. I do not remember the
outcome of every single variant, but could try specific suggestions.
This add-in is really important, since many in the science community are using
Linux, but have to work with MS Word via wine for several reasons. Most in the
science community use such plug-ins for reference management. Docear4Word is
perhaps the most promising, powerful, and viable one, since the Docear4Word
project strictly follows an FOSS approach. Getting this to work would thus be a
huge progress.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48515
Bug ID: 48515
Summary: Star Wars Starfighter - black screen on movies
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: betaversiondot(a)gmail.com
Distribution: ---
Created attachment 66320
--> https://bugs.winehq.org/attachment.cgi?id=66320
terminal output 5.0
Black screen on movies, but sound works. Movies are .bik
--
Do not reply 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=33065
Bug #: 33065
Summary: Make it possible to build a winetest executable with a
single test
Product: Wine-Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
Currently WineTestBot runs individual tests through TestLauncher (see
testbot/src/TestLauncher). TestLauncher is responsible for checking for
potential issues like missing dlls that could cause the test to hang on an
error dialog. However that means duplicating a lot of WineTest's code and also
that TestLauncher tends to be out of date (see bug 31609 for instance).
Building the regular winetest.exe (with all the tests) and just running one
test would result in a lot of wasted disk space and bandwidth.
So the idea would be to make it possible to build winetest.exe and to only
include the one test we want to run in the resources.
--
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=47997
Bug ID: 47997
Summary: Allow setting $WINEDEBUG
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
To figure out why a test is failing in a TestBot Wine VM it would sometimes be
useful to be able to set $WINEDEBUG.
The trouble with $WINEDEBUG is that it can result in very large logs (e.g. if
set to +all or _relay). But then the tests can already generate large files by
looping on a printf() so that's not really a new issue, it's just less likely
to happen accidentally.
The way to deal with that would be to limit the size of the log and reports
that the TestBot retrieves from the VMs.
Notes:
* The TestBot already collects the whichever traces Wine puts out which would
typically be the FIXME()s and ERR()s. They are at the end of the "full task
log".
* So a workaround is to patch Wine to convert the relevant traces to FIXME()s.
That's not very practical if one does not initially know which ones are going
to be needed which is why being able to set $WINEDEBUG would be better.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47900
Bug ID: 47900
Summary: Enable caching of screenshots and log files
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
web/Screenshot.pl and web/GetFile.pl systematically disable caching of the
files they return by setting their Last-Modified field to the current time.
For Screenshot.pl this may have been to deal with live screenshots that were
updated regularly. But even so this should probably be done through the Expires
field instead. Anyway we don't have live snapshots anymore and when they come
back it will (most likely) be in the form of a timestamped filename so that
once written a file would not change.
The only case where a file may change is when a job is canceled and restarted.
That does not seem to warrant disabling caching altogether.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47901
Bug ID: 47901
Summary: Stream the files in Screenshot.pl and GetFile.pl
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Screenshot.pl and GetFile.pl load their files entirely in memory before
returning them. That's wasteful.
Also GetFiles.pl loads it in a $ImageBytes variable despite returning patches
and executables.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=833
François Gouget <fgouget(a)codeweavers.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|eric.pouech(a)orange.fr |wine-bugs(a)winehq.org
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=838
François Gouget <fgouget(a)codeweavers.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|eric.pouech(a)orange.fr |wine-bugs(a)winehq.org
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44684
Bug ID: 44684
Summary: Shaders fail to compile in Roblox Studio (white
window)
Product: Wine
Version: 3.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: and3md(a)gmail.com
Distribution: ---
Created attachment 60693
--> https://bugs.winehq.org/attachment.cgi?id=60693
Roblox Studio run log
The application displays splash screen correctly. Next, the main window is
showed which is "empty" (the window is white). The cursor changes its shape in
some places so probably it's just a display case. Wine returns a lot of errors:
007d: err: d3dcompiler: compile_shader HLSL shader parsing failed.
007d: fixme: hlsl_parser: declare_vars Complex initializers are not supported
yet.
Hardware: Geforce GTX 1060 (proprietary linux driver).
--
Do not reply 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=19329
Summary: Program installs but client fails to connect to server
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://www.livezilla.net/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: junk(a)mandd.com
Using Wine 1.1.25 and a clean ~/.wine, I had to install dotnet20 and ie6 (I
used winetricks) before the installer would complete. After that the Livezilla
client will run. But when I try to connect to a Livezilla server, an error
window pops up stating:
--------------------------------------------------------------------
The underlying connection was closed: The connection was closed unexpectedly.
Further information:
The underlying connection was closed: The connection was closed unexpectedly.
--------------------------------------------------------------------
--
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=48506
Bug ID: 48506
Summary: Support shared themes installation
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: t6zm3v62fkp7fe5(a)yandex.ru
Distribution: ---
Wine 5.0 has new feature (https://www.winehq.org/announce/5.0): "The Gecko and
Mono add-ons support shared installation, where the files are used directly
from a global location under /usr/share/wine instead of being copied into every
new prefix".
It would be great to implement the same thing for themes (e.g. for placing
.msstyles files to /usr/share/themes directory).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34865
Bug #: 34865
Summary: Can't execute mingw toolchain provided by Rtools
Product: Wine
Version: 1.7.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mail(a)kirill-mueller.de
Classification: Unclassified
I can't execute "R CMD INSTALL" on an installation of R + Rtools in Wine
(latest version from PPA "ppa:ubuntu-wine/ppa"). A reproducible script and
console output can be found here: https://gist.github.com/krlmlr/7333242 . The
script will set and write to $WINEPREFIX and download to $DOWNLOAD_DIR.
Unfortunately, the logs do not show enough detail. After the line `about to run
R CMD SHLIB -o kimisc.dll rcpp_hello_world.cpp RcppExports.cpp --debug`, a call
to `gcc` is made. (I have added the output of the same call on my Linux system
to the Gist.) To me, it seems that the calling process is not notified when the
child process has completed, and it stops after a timeout. My hope is that this
has been seen before and that there's an easy fix. I'm really new to Wine.
--
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=35344
Bug ID: 35344
Summary: Cygwin's post-install scripts fail on fork errors
Product: Wine
Version: 1.7.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mail(a)georg.so
Classification: Unclassified
Executing 'wine setup-x86.exe' seems to work quite well (you can step through
the wizard, packages are downloaded and extracted) until the post-installation
bash scripts are executed.
Then I get for each script a message like:
running: C:\cygwin\bin\bash.exe --norc --noprofile
"/etc/postinstall/glib2.0.sh"
[..]
fixme:ntdll:NtQueryInformationProcess (process=0xffffffff) Unimplemented
information class: ProcessSessionInformation
[..]
fixme:ntdll:NtQueryVolumeInformationFile 0xf0: faking attribute info
fixme:ntdll:NtQueryVolumeInformationFile 0xec: faking attribute info
fixme:ntdll:NtQueryInformationFile Unsupported class (34)
[..]
fixme:ntdll:NtQueryVolumeInformationFile 0xf4: faking attribute info
fixme:ntdll:NtQueryInformationFile Unsupported class (8)
[..]
fixme:ntdll:NtQueryVolumeInformationFile 0xfc: faking attribute info
[..]
fixme:ntdll:NtQueryVolumeInformationFile 0x100: faking attribute info
fixme:ntdll:NtQueryVolumeInformationFile 0x124: faking attribute info
[..]
fixme:ntdll:NtQueryVolumeInformationFile 0x128: faking attribute info
[..]
/etc/postinstall/glib2.0.sh: fork: retry: Resource temporarily unavailable
/etc/postinstall/glib2.0.sh: fork: retry: Resource temporarily unavailable
/etc/postinstall/glib2.0.sh: fork: retry: Resource temporarily unavailable
/etc/postinstall/glib2.0.sh: fork: retry: Resource temporarily unavailable
/etc/postinstall/glib2.0.sh: fork: Resource temporarily unavailable
abnormal exit: exit code=254
The fork error message are always displayed after some kind of timeout.
Where to get the setup-x86.exe:
http://cygwin.com/setup-x86.exe
$ md5sum setup-x86.exe
c9818d3500e42fd9eb755d424450871a setup-x86.exe
Executing Cygwin's setup exe inside wine looks a little bit silly, but I want
to create a reference cygwin installation for deployment purposes.
see also: http://wiki.winehq.org/CygwinSupport
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48448
Bug ID: 48448
Summary: Cannot log into The Lord of the Rings Online:
Connection Closed
Product: Wine-staging
Version: 5.0-rc4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wereturtledev(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 66230
--> https://bugs.winehq.org/attachment.cgi?id=66230
Error log from console
Logging into The Lord of the Rings Online using Wine 4.17 works fine. However,
on wine 5.0-rc3 and 5.0-rc4, logging into the account no longer works, and
therefore the game does not launch. To replicate:
1. Launch The Lord of the Rings Online.
2. Enter username and password when prompted by the login client
3. Select the "LOG IN" button in the login client.
After hanging for a while, an error dialog will pop up stating: "Error logging
in! Connection closed"
The game can be downloaded for free here:
https://www.lotro.com/en/game/download
Note that the game (and logging into it) works 100% when reverting back to wine
4.17.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48341
Bug ID: 48341
Summary: Warframe Online Installer show msgbox 'Unsupported
file system format'
Product: Wine-staging
Version: 5.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lvb.crd(a)protonmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 66078
--> https://bugs.winehq.org/attachment.cgi?id=66078
Winecfg staging-5.0-rc2
Can't possible install Warframe from original site via Warframe Online
Installer
because after choosing folder for installing getting msgbox 'Unsupported file
system format'
direct link: http://content.warframe.com/dl/Warframe.msi
SHA1 (Warframe.msi) = de9df6731e2dcee2daece6acd5238393c7cd5696
Was used wine from binary repository of archlinux
direct link:
https://archive.archlinux.org/packages/w/wine-staging/wine-staging-5.0rc2-1…
I already makes several test and found that first "problem" commit -
https://github.com/wine-staging/wine-staging/commit/73caf7ace23578a2bfce5f4…
If use tree before this commit or build 5.0-rc2 without apply
'ntoskrnl-safedisc-2' patchset - this issuie is gone.
There is some additional symptom.
If in version with 'ntoskrnl-safedisc-2' patchset open Winecfg's tab "Drive"
you will see too many string for Disks (all 28 i guess, look screenshot).
If delete these unnecessary "psevdo-disks" and reopen Winecfg - they will
appear again.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47483
Bug ID: 47483
Summary: Significant performance regression in Overwatch due to
loader-KeyboardLayouts patch
Product: Wine-staging
Version: 4.12.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Seems like this patch creates a lot of entries in system.reg (around 600 lines)
that all look pretty much like this:
[System\\CurrentControlSet\\Control\\Keyboard Layouts\\000b0c00] 1562521578
6843440
#time=1d534ebe1c1fd30
This somehow??? results in 40% drop of FPS in my test app/game, Overwatch
(could be similar to this? https://bugs.winehq.org/show_bug.cgi?id=47431)
Reverting the patch fixes it but only if I also remove all the spammy entries
from the system.reg in the prefix. Leaving them causes even older versions Wine
versions to experience the performance drop.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48460
Bug ID: 48460
Summary: wine/wine-staging breaks Halflife classic - network
Product: Wine-staging
Version: 5.0-rc5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: llenort(a)aol.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Hi wine and wine-staging Team,
wine/wine-staging breaks HalfLife classic (goldsrc). When using the 1.0b Mod of
DOD and when installing wine-staging 5.0 RC5 the game freeze at map startup. I
don‘t know if wine/wine-staging 5 RC2, RC3 or RC4 work. I used the wine 5 RC1
because of the Online Bug when connecting to Origin Servers.
I read that wine 5.0 RC5 fixed this and i tried this release. I noticed that i
can connect to the Origin Server and can start Games but i can‘t enable the
online chat. The chat option report a problem while connect to the server. It
seems that the RC5 Release not fix the hole connection problem.
But back to HL. With using the RC5 Release the Game freeze as soon i start a
map. I can‘t see the Server Port message so it seems to be also a network
problem here.
I don‘t know if both problems has the same origin but it looks like the network
access has a problem.
After installing RC1, Origin and also HL runs perfect. Also the Origin client
status and chat client.
Hope anyone can fix this.
Thanks to all the great wine and wine-staging team members.
Wine a amazing piece of work :-)
bye
lle
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48379
Bug ID: 48379
Summary: RC2 & above break VideoReDo 6 activation
Product: Wine
Version: 5.0-rc2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: carpprotractor(a)yahoo.co.uk
Distribution: ---
Link to current download page -
https://www.videoredo.net/msgBoard/index.php?resources/videoredo-tvsuite-v6…
I've been using VideoReDo 6 on wine-staging for a good few months now and it
works for the most part (the batch manager doesn't as it can't register the COM
component).
I have a licenced version of VideoReDo which you register with a name & key, as
with a lot of other software.
When I installed rc2 the other week and then opened VideoReDo I was prompted
with the activation wizard. As I had already registered and been using the
application, this was a bit of a surprise, however I followed the activation
process again to register the product, but it failed to register.
There's a thread at https://forum.winehq.org/viewtopic.php?f=8&t=33287&e with
the error messages, which appear to suggest the internet connection is
unavailable.
I created a fresh wine prefix to make sure the existing prefix wasn't the
issue. VideoReDo still failed to activate my licence.
I then downgraded back to rc1. The activation wizard still appeared but it did
let me activate the product (unlike rc2).
This error persists with rc3. I have tested again with a new prefix but still
cannot activate my licence unless I downgrade back to rc1.
I would suggest this is therfore a regression.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46508
Bug ID: 46508
Summary: wine uninstaller crashes when attempting to remove
apps/games installed through NSIS installer
Product: Wine-staging
Version: 4.0
Hardware: x86
URL: https://sourceforge.net/projects/apexdc/files/ApexDC%2
B%2B/1.2.1/ApexDC%2B%2B_1.2.1_setup.exe/download
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ArchLinux
Created attachment 63358
--> https://bugs.winehq.org/attachment.cgi?id=63358
backtrace
I came across this problem when I was trying to uninstall some of my games
which were obtained from DotEmu. Apparently, their games was using an older
version of the NSIS (Nullsoft Scriptable Install System) installer (v2.37).
The problem: I'm starting with 'wine uninstaller' and select the game to be
removed. I click on the <Modify/Repair> button which launches the NSIS
uninstaller program. At this point Wine's uninstaller process crashes leaving
the NSIS uninstaller still running and functioning. Despite of the crash
removing of the selected program was successful.
The bug is not present in vanilla Wine, only in Staging.
The patch to blame:
https://github.com/wine-staging/wine-staging/blob/master/patches/user32-msg…
To reproduce the problem I dug up an old version of ApexDC++ . The installer is
NSIS v2.45, but the same problem is present.
https://sourceforge.net/projects/apexdc/files/ApexDC%2B%2B/1.2.1/ApexDC%2B%…
ApexDC++_1.2.1_setup.exe
mdsum: 5867d2696df30a27f7d533caffd12af0
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48069
Bug ID: 48069
Summary: floating point exception (core dumped) when
WINEESYNC=1
Product: Wine-staging
Version: 4.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ZenAnonX(a)protonmail.ch
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Wine-Staging Crashes with "floating point exception (core dumped)" on running
any application with esync enabled.
Applications run fine with esync disabled on staging or with esync enabled on
master
Most probably introduced with commit fb40c21c7280d5cb66f0cec8ed2f4e4e25e1fc56
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=41199
Bug ID: 41199
Summary: SW KoTOR: Unhandled page fault on write access
Product: Wine
Version: 1.9.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bystrzak14(a)gmail.com
Distribution: ---
Created attachment 55439
--> https://bugs.winehq.org/attachment.cgi?id=55439
Log from gameplay
I recently installed KoTOR on Fedora 24. Game starts correctly through Steam
and works fluently, but it randomly crashes during loading new area or saved
game.
I tried tweaking "quartz" to "bultin" as in this thread
https://bugs.winehq.org/show_bug.cgi?id=22910
although is kinda old. Anyway, this didn't solve my problem. Those crashes are
really annoying and I can't really enjoy the game because of that.
I run the game with custom prefix using 32bit.
I attach complete log generated throughout my gameplay.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48497
Bug ID: 48497
Summary: DXVA2 patchset not compatible with GCC 10
Product: Wine-staging
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mike(a)cchtml.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
GCC 10 defaults have changed.
https://gcc.gnu.org/gcc-10/porting_to.html#common
Default to -fno-common
A common mistake in C is omitting extern when declaring a global variable in a
header file. If the header is included by several files it results in multiple
definitions of the same variable. In previous GCC versions this error is
ignored. GCC 10 defaults to -fno-common, which means a linker error will now be
reported. To fix this, use extern in header files when declaring global
variables, and ensure each global is defined in exactly one C file. As a
workaround, legacy C code can be compiled with -fcommon.
int x; // tentative definition - avoid in header files
extern int y; // correct declaration in a header file
Fedora Rawhide (Fedora 32) now has GCC 10 and Wine-staging fails to build.
The fix is simple. Add 'extern' to the two offending lines below:
sed -i 's/BOOL config_vaapi_drm DECLSPEC_HIDDEN;/extern BOOL config_vaapi_drm
DECLSPEC_HIDDEN;/' dlls/dxva2/dxva2_private.h
sed -i 's/char config_vaapi_drm_path\[MAX_PATH\] DECLSPEC_HIDDEN;/extern char
config_vaapi_drm_path\[MAX_PATH\] DECLSPEC_HIDDEN;/' dlls/dxva2/dxva2_private.h
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47417
Bug ID: 47417
Summary: Overwatch doesn't capture mouse movement to croshairs
Product: Wine-staging
Version: 4.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)junaru.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
As of wine-staging 4.10 mouse movement is no longer captured to the crosshairs
while in game.
Mouse works as expected in main menu and up to the point where you enter game
world. When the map loads mouse cursor is still present on screen and
horizontal or vertical movement moves the cursor instead of the croshairs. Left
and right mouse button clicks work as expected.
Once every 10 or so game launches the mouse IS captured to the crosshairs and
everything works as expected. (some race condition?)
This issue is not present in wine-staging 4.8. (archlinux packaged wine-staging
4.9 has different issues that prevent testing)
GPU: RX580 (amdgpu) DXVK 1.2.2
# pacman -Q|grep 'vulkan\|mesa\|linux\|xorg-server\|wine'
lib32-mesa 19.1.0-2
lib32-vulkan-icd-loader 1.1.107-1
lib32-vulkan-radeon 19.1.0-2
linux 5.1.14.arch1-1
linux-api-headers 5.1-1
linux-firmware 20190618.acb56f2-1
linux-headers 5.1.14.arch1-1
mesa 19.1.0-3
vulkan-extra-layers 1.1.97.0+10340+118b2f331-1
vulkan-headers 1:1.1.111-1
vulkan-html-docs 1:1.1.111-1
vulkan-icd-loader 1.1.108-1
vulkan-radeon 19.1.0-3
vulkan-trace 1.1.97.0+10340+118b2f331-1
vulkan-validation-layers 1.1.107-1
wine-mono 4.9.0-1
wine-staging 4.11-1
wine_gecko 2.47-2
winetricks 20190615-1
xorg-server 1.20.5-1
xorg-server-common 1.20.5-1
xorg-server-devel 1.20.5-1
xorg-server-xdmx 1.20.5-1
xorg-server-xephyr 1.20.5-1
xorg-server-xnest 1.20.5-1
xorg-server-xvfb 1.20.5-1
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47513
Bug ID: 47513
Summary: mailing-list-patches breaks gamepad input
Product: Wine-staging
Version: 4.12.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 64902
--> https://bugs.winehq.org/attachment.cgi?id=64902
+tid,+pid,+plugplay,+hid,+hid_report,+hidp,+xinput,+dinput,+rawinput
With mailing-list-patches patchset, all of my games are unable to detect a
gamepad and receive no input from it.
If I build staging with it reverted, the issues disappears.
Attaching log with
+tid,+pid,+plugplay,+hid,+hid_report,+hidp,+xinput,+dinput,+rawinput 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=47834
Bug ID: 47834
Summary: Borderlands 1 (version 1.5.0) doesn't capture mouse
Product: Wine-staging
Version: 4.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dron2065(a)rambler.ru
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Borderlands 1 (version 1.5.0) doesn't capture mouse - full 360 degree view with
mouse is not possible. There is no this problem at previous version of Wine
Staging (4.16) and Wine Devel of last version (4.17)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48433
Bug ID: 48433
Summary: Stalker Call of Pripyat and Stalker Clear Sky: no
mouse input in menus since wine-staging 5.0rc3
Product: Wine-staging
Version: 5.0-rc4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ritalat(a)fastmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 66200
--> https://bugs.winehq.org/attachment.cgi?id=66200
terminal output
Mouse input in menus is broken since wine-staging 5.0rc3. Mouse still works
in-game for movement if you start a new game by navigating the main menu with
your keyboard.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48274
Bug ID: 48274
Summary: Initialization of wineprefix failed
Product: Wine
Version: 4.21
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rmkk(a)atlas.cz
Created attachment 65944
--> https://bugs.winehq.org/attachment.cgi?id=65944
Terminal output of failed wineprefix initialization
Wine-staging was installed including 64-bit support, then I tried to initialize
new wine prefix with errors, terminal output included
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42988
Bug ID: 42988
Summary: Pocket Mirror causes heavy flickering in fullscreen
mode on wine-staging
Product: Wine-staging
Version: 2.7
Hardware: x86
URL: http://astralshiftpro.tumblr.com/pocket-mirror
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ArchLinux
Created attachment 58125
--> https://bugs.winehq.org/attachment.cgi?id=58125
short video of the issue
Running the game Pocket Mirror in fullscreen leads on wine-staging to heavy
flickering. About once or twice each second the desktop or some other image
from the game is partially visible through the game. However, the issue does
not appear in vanilla wine 2.7
I tried to make an apitrace, but it only shows a single frame, so there's
something wrong there, too.
If you need more info please tell me, I'd make a bisect but I don't know how to
apply the staging patches partially since a lot of them depend on each other.
Using Arch Linux with KDE 5.9.5-1, running 32bit wine program on 64bit OS.
Game URL: http://astralshiftpro.tumblr.com/pocket-mirror
Direct download:
http://t.umblr.com/redirect?z=https%3A%2F%2Fmega.nz%2F%23%214YBSWIKb%21nbjS…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48255
Bug ID: 48255
Summary: AIMP4: throws an error when trying to play a file:
Access violation at address 02D77CE1. Write of address
00008201.
Product: Wine
Version: 4.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 93.duke.xperia(a)gmail.com
Distribution: ---
Created attachment 65918
--> https://bugs.winehq.org/attachment.cgi?id=65918
terminal log
AIMP v4.60, build 2161 gives an error when I try to play a file and freezes.
https://www.aimp.ru/?do=download.file&id=4
cc14dd0631910858e96a44857fd2bed1ed6505c5 aimp_4.60.2161.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=47687
Bug ID: 47687
Summary: fail to run winrar installer
Product: Wine-staging
Version: 4.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: b1779506(a)trbvn.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Download url:
https://www.win-rar.com/download.html?&L=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=48063
Bug ID: 48063
Summary: World of Warcraft, Game Initialization fails, when run
from command line
Product: Wine-staging
Version: 4.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: eaglecomputers.ok(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
wine-4.19-158-g88d30985dd (Staging) is the version I just pulled from the git,
and compiled. the previous commit that I have is wine-4.19-85-g7f469b689a
(Staging) and it worked fine. Hope this helps you start regression testing.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48498
Bug ID: 48498
Summary: When I try to open the game 'Flower' it crashes. Crash
log attached
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: slhodson013(a)yahoo.com
Distribution: ---
Created attachment 66294
--> https://bugs.winehq.org/attachment.cgi?id=66294
Crash report when game failed to open
I folowed the direction to install the game 'Flower' with PlayOnLinux. When I
open the game, a black scrren comes up, then immediately a Program Error box
which says "The program Flower.exe has encountered a serious problem and needs
to close. We are sorry for the inconvenience." In a secondary panel, it says
"This can be caused by a problem in the program or a deficiency in Wine. You
may want to check the Application Database for tips about running this
application."
There are no tips in the database at this time.
Once I close that window, a POL window pops up "PlayOnLinux has encountered an
error. If the program you are installing does not work correctly, it might be
the cause of the problem. Visit www.playonlinux.com to get further
information." (was unable to find further information on that site) It also
says "Error in POL_Wine
Wine seems to have crashed"
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42792
Bug ID: 42792
Summary: SQL Server 2012/2014: Installer requires
ChangeServiceConfig2 with
SERVICE_CONFIG_SERVICE_SID_INFO support
Product: Wine
Version: 2.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: pgkos.bugzilla(a)yahoo.com
Distribution: ArchLinux
Currently, during the installation of SQL Server 2012 or 2014, the setup fails
during the configuration of the SqlWriter component, because
ChangeServiceConfig2 (svcctl_ChangeServiceConfig2W) does not implement
SERVICE_CONFIG_SERVICE_SID_INFO.
Relevant part of SqlWriter_Cpu32_1.log:
Doing Action: Do_sqlServiceSidType
PerfTime Start: Do_sqlServiceSidType : Sun Apr 09 11:15:55 2017
<Func Name='Do_sqlServiceSidType'>
SQLWriter
Configuring service:
Name: SQLWriter
SID type: 0x1
Failed:
Unable to set the SID type for service SQLWriter to 1. Error code: 124.
Error Code: 0x80077377 (29559)
Windows Error Text: Source File Name: sqlca\sqlsddlca.cpp
Compiler Timestamp: Fri Feb 10 17:29:21 2012
Function Name: ExceptionInSDDL
Source Line Number: 65
Error Code: 29559
1: 29559
2: SQLWriter
3: pgkos
<Failure Type='Fatal' Error='29559'>
<EndFunc Name='LaunchFunction' Return='29559' GetLastError='0'>
1: 29528
2: Setting Service SID Type
3: Installation failed.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48493
Bug ID: 48493
Summary: Any AutoIt software using built-in Sound.au3 crashes -
FolderImpl_GetDetailsOf problem
Product: Wine
Version: 5.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: tomas(a)unimus.net
Distribution: ---
Greetings,
Environment:
Wine: 5.0-rc2
OS: Manjaro (Arch)
Kernel: 4.19.96
I am attempting to run "ISN AutoIt Studio" under Wine5, but this problem is not
limited to ISN (more details further down).
It crashes during startup.
After a bit of investigation, I found FolderImpl_GetDetailsOf doesn't support
"iColumn" of "-1" in Wine (as suggested by the fixme in console):
[me@pc ISN AutoIt Studio]$ ./Autoit_Studio.exe
000b:fixme:winediag:start_process Wine Staging 5.0-rc2 is a testing version
containing experimental patches.
000b:fixme:winediag:start_process Please mention your exact version when filing
bug reports on winehq.org.
0009:fixme:ver:GetCurrentPackageId (0xaefc1c (nil)): stub
0009:err:winediag:MIDIMAP_drvOpen No software synthesizer midi port found, Midi
sound output probably won't work.
0009:fixme:gstreamer:source_query_accept (0x5be8e88) stub
0009:fixme:shell:FolderImpl_GetDetailsOf (0x5bd95b0,0xaeea40 {VT_DISPATCH:
0x5bd99b0},-1,0xaeebb0)
-- ISN crashes here --
Running ISN in debug mode shows the following error:
The requested action with this object has failed.:
Local $sRaw = $oShellDir.GetDetailsOf($oShellDirFile, -1)
Local $sRaw = $oShellDir^ ERROR
AutoIt requires this in it's built-in Sound.au3 library.
>From the above fragment we can see "$oShellDir.GetDetailsOf($oShellDirFile,
-1)" is called, and "The requested action with this object has failed" is
received.
MS reference:
https://docs.microsoft.com/en-us/windows/win32/shell/folder-getdetailsof
Lack of this function makes any AutoIt script / application using the native
Sound.au3 library non-functional, so this problem is not ISN specific.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.