https://bugs.winehq.org/show_bug.cgi?id=57470
Bug ID: 57470
Summary: Abiword 2.6.8 - Trauncated icons in menus
Product: Wine
Version: 9.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 77475
--> https://bugs.winehq.org/attachment.cgi?id=77475
Truncated icons in menu
Abiword 2.6.8 from
https://web.archive.org/web/20210925210302/http://www.abisource.com/downloa…
Open menus, icons are truncated
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16302
Summary: [oblivion] can not skip the intro movie by press ESC
Product: Wine
Version: 1.1.8
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wangbinrobin(a)yahoo.com.cn
when runing Oblivion on Windows, we can skip the intro movie by pressing ESC,
but when runing Oblivion by wine, we can not skip it by ESC. it is quite a long
time to wait the intro movie end.
The graphic card I use is ATI Radeon 2600, driver 8.10
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54295
Bug ID: 54295
Summary: Touhou Puppet Dance Performance: Shard of Dreams Can't
Locate Base Game Data After Installation
Product: Wine
Version: 8.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rjtulloh(a)gmail.com
Distribution: ---
Created attachment 73863
--> https://bugs.winehq.org/attachment.cgi?id=73863
Log file produced by the expansion when it can't find the base game's files.
Shard of Dreams is an expansion to Touhou Puppet Dance Performance by developer
FocasLens. In order to be played, the base game needs to be installed on the
same system as the expansion.
On Windows, the expansion can be launched immediately after:
- Installing the base game
- Installing the expansion
Using Wine, the expansion won't launch after running the same installers.
The expansion can be launched by adding a symbolic link with the name "notkey"
in the expansion's installation folder which points to the base game folder.
But this workaround is not needed on Windows.
The expansion also produces an error log when launched without the notkey link.
The log is attached.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57329
Bug ID: 57329
Summary: Desktop files generated by Wine do not conform to the
Desktop Entry Specification
Product: Wine
Version: 9.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: meator.dev(a)gmail.com
Distribution: ---
Desktop files generated by Wine do not conform to the latest (and older)
version to of the Desktop Entry Specification, primarily the Exec key
specification:
https://specifications.freedesktop.org/desktop-entry-spec/1.5/exec-variable…
For example, this is how the desktop file for Notepad++ looks like (located at
/home/meator/.local/share/applications/wine/Programs/Notepad++.desktop):
[Desktop Entry]
Name=Notepad++
Exec=env WINEPREFIX="/home/meator/.wine" wine
C:\\\\ProgramData\\\\Microsoft\\\\Windows\\\\Start\\
Menu\\\\Programs\\\\Notepad++.lnk
Type=Application
StartupNotify=true
Path=/home/meator/.wine/dosdevices/c:/Program Files/Notepad++
Icon=7ABC_notepad++.0
StartupWMClass=notepad++.exe
I will ignore the `env WINEPREFIX="/home/meator/.wine"` part of Exec now.
The Exec key parsing is done in two rounds (that's why there are so many
backslashes). The first round is common to all keys of type string,
localestring and iconstring (which includes the Exec key). The standard
mandates:
> The escape sequences \s, \n, \t, \r, and \\ are supported for values of type string, localestring and iconstring, meaning ASCII space, newline, tab, carriage return, and backslash, respectively.
This is how the command line looks after undoing the first layer of escapes:
> wine C:\\users\\meator\\AppData\\Roaming\\Microsoft\\Windows\\Start\ Menu\\Programs\\Microsoft\ Office\ PowerPoint\ Viewer\ 2003.lnk
Then the Exec quoting continues. The standard mandates:
> Quoting must be done by enclosing the argument between double quotes and escaping the double quote character, backtick character ("`"), dollar sign ("$") and backslash character ("\") by preceding it with an additional backslash character. Implementations must undo quoting before expanding field codes and before passing the argument to the executable program. Reserved characters are space (" "), tab, newline, double quote, single quote ("'"), backslash character ("\"), greater-than sign (">"), less-than sign ("<"), tilde ("~"), vertical bar ("|"), ampersand ("&"), semicolon (";"), dollar sign ("$"), asterisk ("*"), question mark ("?"), hash mark ("#"), parenthesis ("(") and (")") and backtick character ("`").
The first problem is that the second argument is not enclosed in double quotes,
so all escapes in it are unspecified. The second problem is that `\ ` space
escape is used, which is not specified (this is the most severe problem). It is
specified as a "reserved character", but not as a character requiring a
backslash escape. Because of these issues, fully conformant desktop file
parsers will fail to parse desktop files generated by Wine.
This is how a fixed Notepad++ desktop file looks like:
[Desktop Entry]
Name=Notepad++
Exec=env "WINEPREFIX=/home/meator/.wine" wine
"C:\\\\ProgramData\\\\Microsoft\\\\Windows\\\\Start
Menu\\\\Programs\\\\Notepad++.lnk"
Type=Application
StartupNotify=true
Path=/home/meator/.wine/dosdevices/c:/Program Files/Notepad++
Icon=7ABC_notepad++.0
StartupWMClass=notepad++.exe
I have also quoted `WINEPREFIX=/home/meator/.wine` in whole, because the entire
argument should be quoted according to the standard (but I consider this issue
to be less important).
System info
===========
OS: Void Linux
Wine version: wine-9.20 (downloaded through package manager)
Notepad++ download:
https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45871
Bug ID: 45871
Summary: Several apps in .NET472 crash with unhandled
exception.\nException at
System.Windows.Media.Composition.DUCE+Channel.SyncFlus
h()\n at
System.Windows.Media.MediaContext.Complet"...(native
d3dcompiler works around it)
Product: Wine
Version: 3.16
Hardware: x86
OS: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
Created attachment 62374
--> https://bugs.winehq.org/attachment.cgi?id=62374
part of crashlog
Hi
Seen this for a bunch of programs while trying to run them with installed
dotnet472.
The bug seems to be hidden for several apps as they ship their owm
d3dcompiler_47, but some don`t I found out, and they crash
Something like:
01c2:fixme:d3dcompiler:make_assignment Check for casts in the lhs.
01c2:err:d3dcompiler:compile_shader HLSL shader parsing failed.
01c2:err:ntdll:vDbgPrintExWithPrefix 65: MIL FAILURE: Unexpected HRESULT
0x88760b59 in caller: intermediate rendering error
01c2:err:ntdll:vDbgPrintExWithPrefix 65: MIL FAILURE: Unexpected HRESULT
0x88760b59 in caller: The render thread failed unexpectedly.
Then crash
Example: Slackinstaller.exe:
winetricks dotnet452 win7 corefonts, then start installer with builtin
d3dcomiler_47 works fine.
However
winetricks dotnet472 win7 corefonts, then start installer with builtin
d3dcomiler_47 --> crash
(Note: for Slackinstller one also needs Staging-patches for bug 40613)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56368
Bug ID: 56368
Summary: hlsl_types_are_equal assert when vertex shaders uses
SV_VertexID as lookup index
Product: vkd3d
Version: 1.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: martins.mozeiko(a)gmail.com
Distribution: ---
Created attachment 76109
--> https://bugs.winehq.org/attachment.cgi?id=76109
test.c
Assertion failed: hlsl_types_are_equal(arg1->data_type, arg2->data_type), file
../wine/libs/vkd3d/libs/vkd3d-shader/hlsl.c, line 1320
This assert happens when D3DCompileFromFile or D3DCompile is called on hlsl
vertex shader (vs_5_0 profile) source like this:
struct Input
{
float4 c0 : COL0;
float4 c1 : COL1;
float4 c2 : COL2;
float4 c3 : COL3;
uint id : SV_VertexID;
};
float4 vs_main(Input input) : SV_Position
{
float4 col[] = { input.c0, input.c1, input.c2, input.c3 };
return col[input.id];
}
See attached test.c file that reproduces this assert. On Windows it prints out
"ok = 1" and shader is successfully compiler. It can be compiled also with
fxc.exe on commandline.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56465
Bug ID: 56465
Summary: d3dcompiler fails to compile shader functions that
have optional arguments ("E5000: syntax error,
unexpected '=', expecting ')'")
Product: vkd3d
Version: 1.11
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Minimal example (compile with `i686-w64-mingw32-cc *.c -ld3dx9_36`):
#include <windows.h>
#include <d3dx9shader.h>
#include <stdio.h>
int main()
{
static const char src[] = "float4 main(float4 color : COLOR =
float4(0,0,0,0)) : COLOR { return color; }";
ID3DXBuffer *out = NULL;
HRESULT res = D3DXCompileShader(src, sizeof(src), NULL, NULL, "main",
"ps_2_0", 0, &out, NULL, NULL);
printf("res=%x\n", res);
return res;
}
Output:
0024:err:d3dcompiler:D3DCompile2 Failed to compile shader, vkd3d result -4.
0024:err:d3dcompiler:D3DCompile2 Shader log:
0024:err:d3dcompiler:D3DCompile2 <anonymous>:1:36: E5000: syntax error,
unexpected '=', expecting ')'
0024:err:d3dcompiler:D3DCompile2
res=80004005
Output after `winetricks d3dcompiler_47`:
res=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=56785
Bug ID: 56785
Summary: Spider-Man: Shattered Dimensions crashes in the title
screen after a few seconds
Product: vkd3d
Version: 1.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: tinozzo123(a)gmail.com
Distribution: ---
Created attachment 76590
--> https://bugs.winehq.org/attachment.cgi?id=76590
Shader dumped by VKD3D_SHADER_DUMP_PATH
Like the title says, after spending a few seconds in the title screen,
Spider-Man: Shattered Dimensions crashes, with the following logs:
```
017c:err:d3dcompiler:D3DCompile2 Failed to compile shader, vkd3d result -4.
017c:err:d3dcompiler:D3DCompile2 Shader log:
017c:err:d3dcompiler:D3DCompile2 <anonymous>:146:1: W5302: Ignoring unknown
attribute "optimizeAutoZ".
017c:err:d3dcompiler:D3DCompile2 <anonymous>:121:14: E5016: Overlapping
register() reservations on 'c27'.
017c:err:d3dcompiler:D3DCompile2
```
This is a regression: it didn't happen on vkd3d 1.11 (Wine 9.9).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57438
Bug ID: 57438
Summary: Alt+Tab makes Unity games no longer respond to input
Product: Wine
Version: 9.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: es20490446e(a)gmail.com
Distribution: ---
== SYSTEM ==
- Plasma 6
- Kwin
- Arch Linux
== STEPS ==
1. Open a Unity game, like Prodeus.
2. Alt+Tab twice.
== RESULT ==
- The game no longer responds to input: you lose all unsaved gameplay.
- This is an issue that many people are experiencing
(https://askubuntu.com/questions/299286/how-to-recover-focus-after-losing-it…)
== WORK-AROUND ==
wine reg add 'HKEY_CURRENT_USER\Software\Wine\X11 Driver' /t REG_SZ /v
UseTakeFocus /d N /f
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57434
Bug ID: 57434
Summary: Program doesn't run and Program Error Details window
popped up.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dogshed(a)gmail.com
Distribution: ---
Created attachment 77428
--> https://bugs.winehq.org/attachment.cgi?id=77428
backtrace
Program Error Details window popped up.
https://www.dropbox.com/s/awzrdiw5477c86r/EseeCloud_Setup_3.0.7.10.exe?dl=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=57417
Bug ID: 57417
Summary: Failed to start Wineserver
Product: Wine
Version: 9.21
Hardware: aarch64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: cdfrosty(a)gmail.com
Distribution: ---
Created attachment 77403
--> https://bugs.winehq.org/attachment.cgi?id=77403
Wine Arm64 Log
Hi there I am trying to compile and use Wine on Manjaro Arm64 but I am running
into a issue with Wineserver,
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57460
Bug ID: 57460
Summary: Wine Regedit and Wine Control don't minimize and
become unresponsive
Product: Wine
Version: 9.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winewayland
Assignee: wine-bugs(a)winehq.org
Reporter: agarplayerarlon(a)gmail.com
Distribution: ---
I've attached a video of the issue
Basically those apps instead of minimizing they compress and become
unresponsive afterwards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57451
Bug ID: 57451
Summary: Heroes of Might and Magic V not working due to not
supported GL_* extensions
Product: Wine
Version: 9.0
Hardware: aarch64
OS: MacOS
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: butuz8(a)gmail.com
Tried to run HoMM5 with latest stable Wine v9.0 on MacOS with M2 Pro CPU/GPU:
wine H5_Game.exe > ~/homm5_wine_pure_short.log 2>&1
but its freezes on start screen.
I noted error window "Error setting display mode" behind it. Pressing Esc
process is terminated.
In terminal it produces logs stating for lack of support for some GL_*
extensions, see homm5_wine_pure_short.log
I tried also with enabled graphics logging:
WINEDEBUG=+d3d,+dxgi,+wgl,+opengl,+vulkan,+display wine H5_Game.exe >
~/homm5_wine_pure_full.log 2>&1
Please find both logs attached.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57464
Bug ID: 57464
Summary: Worms World Party Remastered have a black box placed
over the main window
Product: Wine
Version: 9.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lio_hernou(a)hotmail.com
Distribution: ---
Created attachment 77464
--> https://bugs.winehq.org/attachment.cgi?id=77464
winelog
I am using open box, but this issue is related to on protondb
I launch my game with lutris
so it's the dialog windows who is the black hole in fact :
```
 powabanga  ~  obxprop | grep "^_OB_APP"
_OB_APP_TYPE(UTF8_STRING) = "dialog"
_OB_APP_TITLE(UTF8_STRING) =
_OB_APP_GROUP_CLASS(UTF8_STRING) =
_OB_APP_GROUP_NAME(UTF8_STRING) =
_OB_APP_CLASS(UTF8_STRING) = "w2.exe"
_OB_APP_NAME(UTF8_STRING) = "w2.exe"
_OB_APP_ROLE(UTF8_STRING) =
 powabanga  ~  obxprop | grep "^_OB_APP"
_OB_APP_TYPE(UTF8_STRING) = "normal"
_OB_APP_TITLE(UTF8_STRING) = "WWPGame"
_OB_APP_GROUP_CLASS(UTF8_STRING) =
_OB_APP_GROUP_NAME(UTF8_STRING) =
_OB_APP_CLASS(UTF8_STRING) = "w2.exe"
_OB_APP_NAME(UTF8_STRING) = "w2.exe"
_OB_APP_ROLE(UTF8_STRING) =
```
I do not have more information for 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=52078
Bug ID: 52078
Summary: MusicBee: exception when attempting to drag tabs
Product: Wine
Version: 6.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sangv(a)protonmail.com
Distribution: ---
Created attachment 71090
--> https://bugs.winehq.org/attachment.cgi?id=71090
The exception MusicBee gives + the console output, in a tarball
When attempting to move the tabs located near the top of the window (the ones
labelled "Music", "Now Playing", "Playlists", etc by default) MusicBee will
throw an exception. This happens on both my existing MusicBee wineprefix as
well as a fresh one, and on MusicBee versions 3.2.6804 and 3.4.7805. In
addition to happening in Wine version 6.21, the issue remains in 6.22. Both
versions of Wine were compiled from source. I'm using winetricks verbs
`windowscodecs dotnet45 mfc42 xmllite gdiplus d3dx9 vcrun2008 wmp10`. My OS is
EndeavourOS with kernel 5.15.2-zen1-1-zen. (I don't know how much of this
information is really needed but I thought it was all worth a mention just in
case?)
Attached I have both the error MusicBee provides, as well as terminal output
with debug channels warn+all as no information was printed in the terminal
without it.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57288
Bug ID: 57288
Summary: Windows that shouldn't be resizable are
Product: Wine
Version: 9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winewayland
Assignee: wine-bugs(a)winehq.org
Reporter: tileacids946(a)gmail.com
Distribution: ---
Windows that shouldn't be resizable (e.g. MessageBox), are still resizable,
which can cause issues like the window opening as tiled on tiling compositors.
Steps to reproduce:
1. Open Notepad
2. Open the print menu, for example
3. The menu can be resized, but in Xwayland it cannot
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56157
Bug ID: 56157
Summary: Deep Rock Galactic fails to launch
Product: Wine
Version: unspecified
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Alexander88207(a)Protonmail.com
Created attachment 75842
--> https://bugs.winehq.org/attachment.cgi?id=75842
FSD Log with seh, fixme and warn messages.
Hello,
the game Deep Rock Galactic fails to launch.
The splash image appears and then shortly after that, the Unreal Crash Reporter
opens.
When i taking a look at the log i do see messages about EnumProcessModulesEx.
I do have other Unreal Engine 4 titles aswell that dont work but also have
messages with EnumProcessModulesEx maybe it could be related to that?
Tested with Wine 8.0.2
Thank you in advance!
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57260
Bug ID: 57260
Summary: Ableton Live 12: Severe graphical issues on default
options
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pedrodarch15b(a)gmail.com
Distribution: ---
Created attachment 77177
--> https://bugs.winehq.org/attachment.cgi?id=77177
black settings window
This problem can be alleviated partially by writing '-_ForceGdiBackend'
(without the quotes) on %AppData%\Roaming\Ableton\Live (version)\Options.txt
Without this option set, all Ableton modal windows appear completely black
until some element inside of it is clicked or something inside of it moves
(screenshot attached)
The following is spammed on the console when this option is not set:
...
0134:fixme:dxgi:d3d11_swapchain_GetDesc Ignoring ScanlineOrdering and Scaling.
0134:fixme:dxgi:d3d11_swapchain_Present1 Ignored present parameters
000000000011F400.
0134:fixme:dxgi:d3d11_swapchain_GetDesc Ignoring ScanlineOrdering and Scaling.
0134:fixme:dxgi:d3d11_swapchain_Present1 Ignored present parameters
000000000011F400.
0134:fixme:dxgi:d3d11_swapchain_GetDesc Ignoring ScanlineOrdering and Scaling.
0134:fixme:dxgi:d3d11_swapchain_Present1 Ignored present parameters
000000000011F400.
0134:fixme:dxgi:d3d11_swapchain_GetDesc Ignoring ScanlineOrdering and Scaling.
0134:fixme:dxgi:d3d11_swapchain_Present1 Ignored present parameters
000000000011F400.
0134:fixme:dxgi:d3d11_swapchain_GetDesc Ignoring ScanlineOrdering and Scaling.
0134:fixme:dxgi:d3d11_swapchain_Present1 Ignored present parameters
000000000011F400.
...
With -_ForceGdiBackend on, the entire program works correctly, except for Max
devices, which do not update their interfaces corretly, except when Ableton
window size changes (and until it's resized again they stay frozen). They do
still function (you can move knobs) but their UIs won't update.
Tested with a clean build of latest git wine (commit
3a6e226e9ae25a6ad2646c7f8846be68386a3680 as I'm writing this).
Ableton Live 12 Trial can be downloaded for free here:
https://cdn-downloads.ableton.com/channels/12.0.25/ableton_live_trial_12.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=56852
Bug ID: 56852
Summary: I need DirectX 11 installed to run this game. Also
says InitialzeEngine graphics failed
Product: Wine
Version: 0.9.11.
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jordanap06(a)gmail.com
Distribution: ---
Created attachment 76658
--> https://bugs.winehq.org/attachment.cgi?id=76658
screenshot of pop up window
Pop up window keeps occurring.
says I need to download DierectX11
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54755
Bug ID: 54755
Summary: App jamming: Clicking on the zoom email meeting button
causes the app to jam
Product: Wine
Version: 8.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 399989567(a)qq.com
Distribution: ---
Created attachment 74251
--> https://bugs.winehq.org/attachment.cgi?id=74251
Figure 1
Join the zoom meeting( how to apply and join the zoom meeting can refer to: #
Bug 54754 )
According to "Figure 1" and "Figure 2" can trigger the bug, resulting in the
whole application stuck, the following is an err log
> 0024:err:virtual:virtual_setup_exception stack overflow 1220 bytes in thread 0024 addr 0x7bc24170 stack 0x120b3c (0x120000-0x121000-0x220000)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57284
Bug ID: 57284
Summary: Wine-staging 9.18-1 broken dependencies
Product: Wine-staging
Version: 9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ToddAndMargo(a)zoho.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Fedora 41
$ su root -c "dnf upgrade wine-staging winehq-staging"
Password:
Updating and loading repositories:
Repositories loaded.
Problem 1: cannot install the best update candidate for package
wine-staging-1:9.17-1.1.x86_64
- nothing provides libavcodec.so.60()(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavcodec.so.60(LIBAVCODEC_60)(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavutil.so.58()(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavutil.so.58(LIBAVUTIL_58)(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavformat.so.60()(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavformat.so.60(LIBAVFORMAT_60)(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
Problem 2: package winehq-staging-1:9.19-1.1.x86_64 from WineHQ requires
wine-staging = 1:9.19-1.1, but none of the providers can be installed
- cannot install the best update candidate for package
winehq-staging-1:9.17-1.1.x86_64
- nothing provides libavcodec.so.60()(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavcodec.so.60(LIBAVCODEC_60)(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavutil.so.58()(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavutil.so.58(LIBAVUTIL_58)(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavformat.so.60()(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
- nothing provides libavformat.so.60(LIBAVFORMAT_60)(64bit) needed by
wine-staging-1:9.19-1.1.x86_64 from WineHQ
Package Arch Version Repository
Size
Skipping packages with broken dependencies:
wine-staging x86_64 1:9.19-1.1 WineHQ 1.3
GiB
winehq-staging x86_64 1:9.19-1.1 WineHQ 62.1
KiB
Nothing to do.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57443
Bug ID: 57443
Summary: Mod Organizer 2 Launches Oblivion (GOG) With Only a
Corner of the Screen Visible
Product: Wine
Version: 9.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nekoNexus(a)protonmail.ch
Distribution: ---
Created attachment 77439
--> https://bugs.winehq.org/attachment.cgi?id=77439
Terminal Output Log
Mod Organizer github download link:
https://github.com/ModOrganizer2/modorganizer/releases/tag/v2.5.2
Relevant Store Page for Oblivion:
https://www.gog.com/en/game/elder_scrolls_iv_oblivion_game_of_the_year_edit…
-----
So, specifically launching the game (even in an unmodded/vanilla state) causes
Oblivion to only display the top left corner of the screen regardless of the
window mode used (Windowed, Fullscreen, and even Borderless if enabled with a
mod that adds Borderless support).
This *does not* happen if launching the game directly, so something is clearly
going wrong with how MO2 is launching the game through Wine to be making this
possible somehow
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57427
Bug ID: 57427
Summary: After uninstalling Bionicle Heroes demo, it won't
reinstall. Error: -1627 Function failed
Product: Wine
Version: 9.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: doomtay(a)gmail.com
Distribution: ---
Created attachment 77420
--> https://bugs.winehq.org/attachment.cgi?id=77420
Terminal outputs from initial installation, uninstallation, and attempted
subsequent reinstallations
If I install the Bionicle Heroes demo from
https://web.archive.org/web/20111216135946/http://gameshadow.vo.llnwd.net/o…,
it installs fine the first time around, but if I then uninstall it, the window
saying the game was unsuccessfully uninstalled seems to pop up twice. If I then
attempt to reinstall the game, I get an error saying "Error: -1627 Function
failed". In case it was a fluke or something, I also tried again, while
installing to a different location, and the same error occurred.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.