https://bugs.winehq.org/show_bug.cgi?id=49877
Bug ID: 49877
Summary: Minecraft Education Edition shows error during
install: Fails to create scheduled task
Product: Wine
Version: 5.17
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 68223
--> https://bugs.winehq.org/attachment.cgi?id=68223
Screenshot error message
As the title says, it won't install. Might have other issues as well, but this
is about this first error.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48110
Bug ID: 48110
Summary: Toad for MySQL Freeware 7.x (.NET 4.5 app) wants
TaskService::ConnectedUser property
Product: Wine
Version: 4.20
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: taskschd
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as it says.
Prerequisite: 'winetricks -q dotnet45'
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files (x86)/Quest Software/Toad for MySQL
Freeware 7.3
$ wine ./toad.exe
002f:fixme:taskschd:TaskService_get_ConnectedUser 15ACF3A8,0032EB38: stub
--- snip ---
The exception dialog can be dismissed though (non-fatal).
Managed backtrace from app:
--- snip ---
...
System.NotImplementedException
The method or operation is not implemented.
Stack Trace:
at
Microsoft.Win32.TaskScheduler.V2Interop.TaskSchedulerClass.get_ConnectedUser()
at Microsoft.Win32.TaskScheduler.TaskService.Connect()
at Microsoft.Win32.TaskScheduler.TaskService..ctor()
at Quest.Toad.Util.Migration.CheckScheduledTasks(Boolean force)
at Quest.Toad.Util.Migration.MigrateSettings()
at Quest.Toad.Gui.MainForm.runFirstEverExecution()
at Quest.Toad.Gui.MainForm.MainForm_Shown(Object sender, EventArgs e)
at System.Windows.Forms.Form.OnShown(EventArgs e)
at System.Windows.Forms.Form.CallShownEvent()
at System.Windows.Forms.Control.InvokeMarshaledCallbackDo(ThreadMethodEntry
tme)
at System.Windows.Forms.Control.InvokeMarshaledCallbackHelper(Object obj)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext
executionContext, ContextCallback callback, Object state, Boolean
preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext,
ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext,
ContextCallback callback, Object state)
at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry
tme)
at System.Windows.Forms.Control.InvokeMarshaledCallbacks()
--- snip ---
https://source.winehq.org/git/wine.git/blob/86faa3d2765f8159d38b7fac069a188…
--- snip ---
3931 static HRESULT WINAPI TaskService_get_ConnectedUser(ITaskService *iface,
BSTR *user)
3932 {
3933 FIXME("%p,%p: stub\n", iface, user);
3934 return E_NOTIMPL;
3935 }
--- snip ---
Microsoft docs:
https://docs.microsoft.com/en-us/windows/win32/taskschd/taskservice
Download:
https://web.archive.org/web/20191116093038/https://files.downloadnow.com/s/…
$ sha1sum ToadforMySQL_Freeware_7.3.1.3290.*
8afd76a00c1ebb538230bb11036471778af5c2a6 ToadforMySQL_Freeware_7.3.1.3290.exe
29c1bd74b1e9133a9f9cacdd2b25244bdab38d4a ToadforMySQL_Freeware_7.3.1.3290.zip
$ du -sh ToadforMySQL_Freeware_7.3.1.3290.*
80M ToadforMySQL_Freeware_7.3.1.3290.exe
80M ToadforMySQL_Freeware_7.3.1.3290.zip
$ wine --version
wine-4.20
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=44863
Bug ID: 44863
Summary: Performance regression in Prince of Persia 3D
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: stefan(a)codeweavers.com
Distribution: ---
Prince of Persia 3D's performance went from perfectly smooth to about 0.5 fps.
I suspect 0b92a6fba7a6e60c6ff1a3729a3b21019c2df0ce is to blame, but I have not
run a regression test yet.
The problem is that the game creates a rather large (2MB)
D3DVBCAPS_SYSTEMMEMORY, maps it (the entire buffer due to API limitations),
writes a handful of vertices and draws a handful of vertices. Currently wined3d
uploads the entire 2MB, evicts the sysmem copy and downloads it from the GPU
every map / unmap / draw cycle.
The most obvious performance fix is not to create a VBO. Doing this restores
the performance, but questions remain.
On startup, the game writes "NetImmerse D3DDriver Info: Hardware supports
system memory textures" and "NetImmerse D3DDriver Info: No AGP support
detected". The first info seems wrong, so it is possible that the game enters a
codepath it does not choose on Windows.
Not creating a VBO is not an option on Core Contexts, so I investigated what's
going wrong with the PBO codepath on. First of all, evicting the sysmem copy
seems like a bad choice. It happens because ddraw buffers are not marked
dynamic. We may want to chance this. The game uses d3d3, so there's no
DDLOCK_DISCARDCONTENTS. The game passes DDLOCK_WAIT | DDLOCK_WRITEONLY to
IDirect3DVertexBuffer::Lock.
Commenting out the eviction call improves performance quite a bit, but it is
still noticeably slow. wined3d_buffer_map maps through heap_memory instead of
glMapBuffer because of the "(flags & WINED3D_MAP_WRITE) && !(flags &
(WINED3D_MAP_NOOVERWRITE | WINED3D_MAP_DISCARD))" condition.
Removing this condition uses glMapBuffer, but does not improve performance. It
seems the large glMapBuffer is still slow, at least on OSX with legacy
contexts.
So there are a few questions that need to be answered:
*) Is the game using a broken codepath?
*) Write tests for sysmem buffers
*) Consider making all d3d3 buffers dynamic
*) Test if the glMapBuffer path is fast on Linux
*) Investigate if Core Contexts + GL_ARB_buffer_storage help on OSX.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56122
Bug ID: 56122
Summary: LANCommander won't start, prints "error code
0x8007046C" (ERROR_MAPPED_ALIGNMENT)
Product: Wine
Version: 8.21
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 75792
--> https://bugs.winehq.org/attachment.cgi?id=75792
Terminal output
On start, LANCommander.exe prints:
Failed to load System.Private.CoreLib.dll (error code 0x8007046C)
Path: Z:\home\alex\Downloads\LANCommander-v0.4.0\System.Private.CoreLib.dll
Error message:
Failed to create CoreCLR, HRESULT: 0x8007046C
0x8007046C is HRESULT_FROM_WIN32(ERROR_MAPPED_ALIGNMENT). I've never seen that
one before.
`winetricks dotnet48` does not help.
$ sha256sum LANCommander-v0.4.0.zip
00d9ca25c982c15a1934055805cba0a89be0400237d3273457ae523a5bba3359
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56078
Bug ID: 56078
Summary: Livreoffice crashes: Call to unimplemented function
msvcp140_2.dll.__std_smf_hypot3, aborting
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
URL: https://ftp.nluug.nl/office/libreoffice/libreoffice/st
able/7.6.4/win/x86_64/LibreOffice_7.6.4_Win_x86-64.msi
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
As the title says: Do 'wine swriter.exe' and the click 'Help'-->'About' :
Call from 00006FFFFF483D77 to unimplemented function
msvcp140_2.dll.__std_smf_hypot3, aborting
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55724
Bug ID: 55724
Summary: mfmediaengine:mfmediaengine sometimes gets a
threadpool assertion in Wine
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mfplat
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
mfmediaengine:mfmediaengine sometimes gets a threadpool assertion in Wine:
mfmediaengine.c:147: created L"C:\\users\\winetest\\Temp\\rgb32frame.bmp"
Unhandled exception: assertion failed in 32-bit code (0x7bc24980).
[...]
Backtrace:
=>0 0x7bc24980 raise_status+0x30(status=0x80000101, rec=00000000)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/ntdll/exception.c:201]
in ntdll (0x0499fd20)
1 0x7bc249a9 in ntdll (+0x249a9) (0x0499fd40)
2 0x7bc24d7b debugstr_a(str="!object->num_running_callbacks",
file="../wine/dlls/ntdll/threadpool.c", line=0x84c)
[/home/winetest/tools/testbot/var/wine-win32/../wine/include/wine/debug.h:507]
in ntdll (0x0499fd70)
3 0x7bc24d7b _assert+0x1b(str="!object->num_running_callbacks",
file="../wine/dlls/ntdll/threadpool.c", line=0x84c)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/ntdll/exception.c:627]
in ntdll (0x0499fd70)
4 0x7bc5cb88 tp_object_release+0x198(object=<register EBX not accessible in
this frame>)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/ntdll/threadpool.c:2123]
in ntdll (0x0499fdb0)
5 0x7bc60645 TpReleaseWait+0x35(wait=013E32C8)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/ntdll/threadpool.c:2117]
in ntdll (0x0499fde0)
6 0x6b141a08 work_item_Release+0x6e(iface=<internal error>)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/rtworkq/queue.c:567]
in rtworkq (0x0499fe00)
7 0x6b141a08 work_item_Release+0x88(iface=009E7EA0)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/rtworkq/queue.c:580]
in rtworkq (0x0499fe00)
8 0x6b142f9a waiting_item_cancelable_callback+0x2a(instance=0499FE90,
context=009E7EA0, wait=013E32C8, wait_result=0)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/rtworkq/queue.c:769]
in rtworkq (0x0499fe30)
9 0x7bc5d55a tp_object_execute+0x14a(object=<register EDI not accessible in
this frame>, wait_thread=<register EBX not accessible in this frame>)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/ntdll/threadpool.c:2248]
in ntdll (0x0499fed0)
10 0x7bc5daf0 threadpool_worker_proc+0x100(param=00249938)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/ntdll/threadpool.c:2356]
in ntdll (0x0499ff30)
11 0x7b829770 in kernel32 (+0x29770) (0x0499ff48)
12 0x7bc5a557 in ntdll (+0x5a557) (0x0499ff5c)
13 0x7bc5ada0 RtlCreateUserThread(entry=7BC5D9F0, arg=00249938)
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/ntdll/thread.c:315]
in ntdll (0x0499ffec)
0x7bc24980 raise_status+0x30
[/home/winetest/tools/testbot/var/wine-win32/../wine/dlls/ntdll/exception.c:201]
in ntdll: sub $0x04, %esp
201 for (;;) RtlRaiseException( &ExceptionRec ); /* never returns */
See https://test.winehq.org/data/patterns.html#mfmediaengine:mfmediaengine
There are only two instances so far but both are only days old and the GitLab
CI is impacted too:
2023-10-04 MR!4012 (test-linux-32)
2023-10-02 debian11-fr-32
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56681
Bug ID: 56681
Summary: 3d games continue receiving mouse input while not
focused
Product: Wine
Version: 9.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winewayland
Assignee: wine-bugs(a)winehq.org
Reporter: pmargeti34(a)gmail.com
Distribution: ---
Wine wayland windows seem to get the mouse input even if the application window
is not focused. 3D game world continues to respond to mouse input as if the
game still had focus.
To reproduce:
-launch a 3d game in wayland mode (warframe in my example)
-open another application and make sure it has focus
-observe that when the mouse cursor is over the game window, game still
receives input
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=52203
Bug ID: 52203
Summary: The plane effect demo (gog) has lighting issue in menu
with opengl renderer
Product: Wine
Version: 7.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: titan.costa(a)gmail.com
Distribution: ---
Created attachment 71261
--> https://bugs.winehq.org/attachment.cgi?id=71261
Wrong rendering with gl renderer
The plane effect demo (gog) has lighting issue in menu with opengl renderer.
Rendering works fine with vulkan renderer.
Ubuntu 22.10
NVIDIA 470.86
wine-7.0-rc1
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55568
Bug ID: 55568
Summary: kernel32:file - test_GetFileType() fails on 'nul'
device on macOS
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Mac OS X
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
kernel32:file - test_GetFileType() fails on 'nul' device on macOS:
file.c:3160: Test failed: expected type char for nul got 1
This failure is systematic and only happens on macOS (see Remi's
rbernon-macos-* cloud test machines).
See https://test.winehq.org/data/patterns.html#kernel32:file
Where 1 == FILE_TYPE_DISK
2 == FILE_TYPE_CHAR
So GetFileType() fails to distinguish the nul device from a regular disk device
on macOS.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40495
Bug ID: 40495
Summary: Impossible to function at 64 bit on FreeBSD
Product: Wine
Version: 1.7.46
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexandrosperdikomatis(a)gmail.com
Created attachment 54269
--> https://bugs.winehq.org/attachment.cgi?id=54269
the regular backtrace report
I've compiled wine64 several times in many ways at FreeBSD.
32 bit version always works fine.
This is the port emulators/wine-devel from RELEASE ports collection at FreeBSD
10.2
Application tried was Wow-64.exe
I am really disappointed with wine64 at FreeBSD. On Linux it flies.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.