https://bugs.winehq.org/show_bug.cgi?id=56612
Bug ID: 56612
Summary: AppDB now lists everyone who is e-mailed
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: critical
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: ---
Created attachment 76367
--> https://bugs.winehq.org/attachment.cgi?id=76367
Screenshot (censored)
I've received a few e-mails from the AppDB, which is the norm. It used to only
list me in the To:, now it lists everyone who receives the e-mail.
Leaking the user's e-mail addresses could be considered a data breach.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57479
Bug ID: 57479
Summary: link for email reply in appdb is corrupted.
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alois.schloegl(a)gmail.com
Distribution: ---
I received an email starting with this information;
From: appdb-noreply(a)winehq.org
[PM] Cadence AWR on Wine
-------------------------------------------------------
The following message was sent to you from Franco Curotto through the Wine =
AppDB contact form.
To Reply, visit https://appdb.winehq.org/contact.php?iRecipientId=3D460194&=
amp;sSubject=3DRe%3A+Cadence+AWR+on+Wine
...
The reply link does not work for me, and seems to be corrupted.
--
Do not reply 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=28467
Summary: Chromium Browser restore button doesn't work
Product: Wine
Version: 1.3.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
1. Download chromium from
http://build.chromium.org/f/chromium/snapshots/Win/95816/chrome-win32.zip
unpack chrome-win32.zip, cd to the directory.
2. start chrome.exe with --no-sandbox, works around Bug 21232
$ wine chrome.exe --no-sandbox
Notice that the chrome window is decorated by the Linux native window manager.
Is it a bug? On windows, chrome have no traditional "window bar".
Now there is two "Maximal" button: one is drawn by Linux native window manager,
the other is drawed by wine chrome browser it self.
3. Click on the "Maximal" button which is drawn by Linux native window manager,
then chrome browser switch to maximal mode as expect.
This time, the Linux native window bar is disappear.
4. Click on the "Restore" button of wine chrome browser. However it doesn't
work. Wine chrome switch to normal mode for a second, then switch back to
maximal mode automatically.
I use ubuntu 11.04 , with traditional gnome desktop, gnome 2.32.1 .
There is some ways to work around:
I. Instead of clicking on the native "Maximal" button in step 3, try to click
the wine chrome "Maximal" button, then everything works as expect.
II. Do not set "Allow the window manager to decorate the windows" in winecfg,
then everything works as expect.
III. Do not set "Allow the window manager to control the windows" in winecfg,
then everything works as expect.
--
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=56647
Bug ID: 56647
Summary: ntdll-Junction_Points prevent rustup from correctly
installing a toolchain
Product: Wine-staging
Version: 9.8
Hardware: x86-64
URL: https://rustup.rs/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lorenzofer(a)live.it
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ArchLinux
Created attachment 76423
--> https://bugs.winehq.org/attachment.cgi?id=76423
return STATUS_NOT_A_REPARSE_POINT instead of STATUS_INVALID_PARAMETER
Hi.
With the recent rustup 1.27.0 using wine-staging with the
ntdll-Junction_Points patches, the toolchain installation doesn't complete
properly, failing to write to the settings.toml under the prefix home .rustup
directory info.
A bug with the same root cause is also present on rustup 1.26.0 where while the
installation was completing properly, it was failing to remove the
.rustup/tmp/* directories, causing issues with subsequent installations.
Both bugs express the same behavioral pattern with few differences. I
investigated the directory bug firstly, so I will detail this, and confirmed
that the problem and the expected solution are the same.
Rustup (or one of it's dependency managing files) get the handle of the
temporary directory using CreateFileW and then checking if it's a reparse point
using DeviceIoControl with FSCTL_GET_REPARSE_POINT.
The directories (and the file) aren't reparse points at all, so the readlink
fails returining EINVAL.
This EINVAL is then mapped to an NT_STATUS using errno_to_status that map
EINVAL to STATUS_INVALID_PARAMETER.
However this mapping is incorrect for FSCTL_GET_REPARSE_POINT as in this case
applications that handle this case like rustup try to handle this case by
epxecting STATUS_NOT_A_REPARSE_POINT.
Returning STATUS_NOT_A_REPARSE_POINT in this case allow rustup to work (both
versions )
Attaching a patch to show the change in the file.c code (and restored also the
out_buffer check)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56707
Bug ID: 56707
Summary: AppDB PHP8 rewrite
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jnewman(a)codeweavers.com
Distribution: ---
The current codebase is not compatible with PHP8. We are stuck on 7.4.
The main issue is how all the objects are setup. PHP8 requires you define a
constructor as __construct, but the AppDB is using the old method of naming the
constructor the same as the object itself. While you could just rename all
those to __construct, there are places in the objects where the code refers to
$this->className(), these would need to be changed to $this->__construct() or
parent::__construct if called from a child class
There are other PHP8 issues to be solved as well. Things like some built in
functions changing how the null type is handled.
--
Do not reply 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=36692
Bug ID: 36692
Summary: Bad performance when combineng SetEvent /
WaitForSingleObject for synchronizing worker threads
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: milasudril(a)gmail.com
In a 2d simulation program, each worker thread has its own pair of events. One
event is used to signal master thread that the worker thread is ready. The
other is used by the master thread to signal that the worker thread may
continue.
In Master thread:
while(!m_stop)
{
auto proc_ptr=processors.begin();
while(proc_ptr!=processors.end())
{
// Call SetEvent on "start" event object owned by the object pointed
// to by proc_ptr
proc_ptr->frameNext();
++proc_ptr;
}
proc_ptr=processors.begin();
while(proc_ptr!=processors.end())
{
// Call WaitForSingleObject on "ready" event object owned by
// the object pointed to by proc_ptr
proc_ptr->wait();
++proc_ptr;
}
++framecounter;
}
In worker thread:
while(!m_stop)
{
// Wait for master thread signaling start event (Calls
WaitForSingleObject)
start.wait();
m_model->process(m_framecounter,m_buffers[0].first
,m_buffers[0].second,m_offset);
swap(m_buffers[0],m_buffers[1]);
// Signal master thread that we are ready for next frame (Calls SetEvent)
ready.set();
}
On Wine, the framerate is half of that on Windows 7 on the same machine
Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz. Also there seems to be a huge
different workload on differnt cores when running under Wine.
I realize that SetEvent/WaitForSingleObject are heavy functions on Windows too
as they need kernel assistance, so it might be hard to make it perform 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=43766
Bug ID: 43766
Summary: Safrosoft RoX - Level editor doesn't start
Product: Wine
Version: 2.17
Hardware: x86-64
URL: http://www.autofish.net/shrines/rox/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: oleaut32
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ArchLinux
Created attachment 59268
--> https://bugs.winehq.org/attachment.cgi?id=59268
wine log
The game's level editor crashes with a messagebox:
"Run-time error '481': Invalid picture"
Getting an oleaut32.dll from win7, copying it into wine's system32 folder and
adding a dll override fixes the issue.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44900
Bug ID: 44900
Summary: Colour problem with builtin gdiplus
Product: Wine
Version: 3.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: jeremielapuree(a)yahoo.fr
Distribution: ---
Created attachment 60981
--> https://bugs.winehq.org/attachment.cgi?id=60981
Good looking with a native gdiplus
With a builtin gdiplus, there is a problem with coloring the cases of channel.
Problem does not occur with a native gdiplus dll. Compare the two screenshot:
the first one with native dll, the second one with the builtin dll.
Note the behaviour in a real Windows 10 box is the behaviour of the native dll.
So, there is a problem with the builtin dll.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56667
Bug ID: 56667
Summary: World of Tanks: Unplayable due to extreme CPU usage /
bottlenecking
Product: Wine
Version: 9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xxx43615xxx(a)gmail.com
Distribution: ---
In short, rendering graphics is now heavily CPU-bound for some reason,
resulting in unusably low performance. As far as I can tell, this is not caused
by DXVK or my graphics drivers. I don't think I should fully repeat myself
here, please read the details in my forum thread:
https://forum.winehq.org/viewtopic.php?t=38875
The game can be installed through Wargaming's launcher, EU version available
here after registration (free):
https://worldoftanks.eu/en/game/download/
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57605
Bug ID: 57605
Summary: Visual Studio 2005 "package load failure"
(again/still)
Product: Wine
Version: 10.0-rc3
Hardware: x86-64
OS: FreeBSD
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: damjan.jov(a)gmail.com
CC: hans(a)meelstraat.net
This was first reported in bug 51345, but either it was not completely fixed by
d9d700f3328f00ec419571df0e02cef208fa1e7b, or new regressions have happened
since.
With Wine 10.0-rc3, in a WINEPREFIX where "winetricks vc2005express" was done,
and then Visual Studio is started (via "Microsoft Visual C++ 2005 Express
Edition.lnk" in C:\users\...) these packages fail to load:
Visual Studio XML Editor Package
Windows Forms Designer Package
Windows Forms Designer Resources Package
Visual Studio Explorers and Designers Package
and new projects cannot be created ("VC package not available or not
registered").
If restarted (any number of times), these packages fail to load:
Visual Studio Explorers and Designers Package
Visual Studio Common IDE Package
and it still cannot create new projects.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57379
Bug ID: 57379
Summary: Visual Pinball not start and Visual PinMAME settings
errors
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: augusto7744(a)aol.com
CC: dimesio(a)earthlink.net
Distribution: ---
Created attachment 77349
--> https://bugs.winehq.org/attachment.cgi?id=77349
Menu settings error
Hello.
Thanks for reading my topic.
I have installed recently WINE Staging 9.20 and happen bugs in Visual Pinball X
and Visual PinMAME.
That bug happen in WINE default version too and the link below show exactly the
same error message so was created an bug report in WINE package area.
https://bbs.archlinux.org/viewtopic.php?id=300388
Visual Pinball X not start if WINE is configure for "Windows 10" and is showed
the error message below.
The software load file and when will display the main window happen an crash
closing Visual Pinball.
002c:fixme:winediag:loader_init wine-staging 9.20 is a testing version
containing experimental patches.
002c:fixme:winediag:loader_init Please mention your exact version when filing
bug reports on winehq.org.
0024:fixme:ver:GetCurrentPackageId (00D1ECC4 00000000): stub
0024:fixme:combase:RoGetActivationFactory
(L"Windows.Gaming.Input.RawGameController",
{eb8d0792-e95a-4b19-afc7-0a59f8bf759e}, 7850AC20): semi-stub
0024:fixme:system:SetDisplayAutoRotationPreferences (1): stub
dlls/win32u/dibdrv/objects.c:812: solid_pen_lines: Assertion `num >= 2' failed.
0024:err:seh:NtRaiseException Exception frame is not in stack limits => unable
to dispatch exception.
Visual Pinball X is loaded and started correctly if WINE is configured as
"Windows 7". However happen errors in settings menus showed in image
screenshot.
Other recent bug is Visual PinMAME show errors in option menu buttons (enable
and disable settings) not showing if the setting is selected or not as showed
in screenhost below.
That bug is duplicated. I had created here because of screenshot.
Have an 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=56855
Bug ID: 56855
Summary: Rainbow Six: Lockdown needs 'Cast on the LHS' support
Product: vkd3d
Version: 1.12
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0808:err:d3dcompiler:D3DCompile2 Failed to compile shader, vkd3d result -5.
0808:err:d3dcompiler:D3DCompile2 Shader log:
0808:err:d3dcompiler:D3DCompile2 c:/program files
(x86)/steam/steamapps/common/rainbow six
lockdown/data/shaders/vssafetyglassdynlit.hlsl:148:8: W5300: Implicit
truncation of vector type.
0808:err:d3dcompiler:D3DCompile2 c:/program files
(x86)/steam/steamapps/common/rainbow six
lockdown/data/shaders/vssafetyglassdynlit.hlsl:149:8: W5300: Implicit
truncation of vector type.
0808:err:d3dcompiler:D3DCompile2 c:/program files
(x86)/steam/steamapps/common/rainbow six
lockdown/data/shaders/vssafetyglassdynlit.hlsl:219:24: W5300: Implicit
truncation of vector type.
0808:err:d3dcompiler:D3DCompile2 c:/program files
(x86)/steam/steamapps/common/rainbow six
lockdown/data/shaders/vssafetyglassdynlit.hlsl:239:24: W5300: Implicit
truncation of vector type.
0808:err:d3dcompiler:D3DCompile2 c:/program files
(x86)/steam/steamapps/common/rainbow six
lockdown/data/shaders/vssafetyglassdynlit.hlsl:289:117: E5017: Aborting due to
not yet implemented feature: Cast on the LHS.
1.12-52-gacc9d79f
--
Do not reply 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=24063
Summary: World in conflict fails to start in DX10 mode
Product: Wine
Version: 1.3.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
Created an attachment (id=30246)
--> (http://bugs.winehq.org/attachment.cgi?id=30246)
Log +d3d10
World in Conflict is unable to start in DX10 mode. Native dxdiagn.dll was used
to avoid http://bugs.winehq.org/show_bug.cgi?id=11114 and sh winetricks d3dx10
was run too.
I uploaded a +d3d10 log. If you need other debug channels, please ask.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19471
Summary: Earthworm Jim 3D: Extensive graphics errors
Product: Wine
Version: 1.1.26
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ezekiel000(a)lavabit.com
Created an attachment (id=22632)
--> (http://bugs.winehq.org/attachment.cgi?id=22632)
Terminal output.
While running Earthworm Jim 3D the background to the title screen and intro
video/scene are black and during the game there are various graphics errors
including: missing textures, corrupt textures, low quality textures.
There are also quite a few 3D model animation errors.
--
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=10845
Summary: Application Menu doesn't work
Product: Wine
Version: 0.9.51.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gizmo.gentoo(a)gmx.de
In Propellerheads Reason 3.0 and 4.0 the application menu doesn' work. This
affects, in my experience, all versions >wine-0.9.46 or 0.9.47.
The problem is that i can't give you log files or something else, because
there's no error message. It's just that u click on the menu and nothing
happens.
You can download a demo version from the software here:
http://www.propellerheads.se/download/index.cfm?fuseaction=download_reason_…
Let me know if i can do something to provide more information.
thanks,
marc
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57607
Bug ID: 57607
Summary: wineserver: crashes with pre-existing
HCU\WineTest\subkey
Product: Wine
Version: 10.0-rc3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
Created attachment 77729
--> https://bugs.winehq.org/attachment.cgi?id=77729
wineserver-crash-ntdll-reg-with-leftover.txt
Somehow I managed to interrupt the ntdll:reg test,
so I got the HCU\WineTest not properly deleted.
A following run of the ntdll:reg test makes wineserver crash.
Attached file shows the last lines from user.reg, which transferred to
another prefix cause there the same wineserver crash with ntdll:reg test.
Also backtraces of the req_create_key, req_delete_key
and the crashing req_save_registry.
It looks like the key gets deleted but somehow some parent references
still this 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=53290
Bug ID: 53290
Summary: app is installed but doenst appear
Product: Wine
Version: 7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: steurgo(a)gmail.com
Distribution: ---
Created attachment 72655
--> https://bugs.winehq.org/attachment.cgi?id=72655
it shows the error message
downloaded the app from your website and followe all the steps. now if i check
in the ubuntu softwere it says its installed, but doesnt appear in the app
list. when i try to uninstall if from ubuntu softwere it says there are no
files to delete
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56693
Bug ID: 56693
Summary: Ubuntu 24.04 installation problem
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: addmlbx(a)gmail.com
CC: austinenglish(a)gmail.com
Distribution: ---
Created attachment 76475
--> https://bugs.winehq.org/attachment.cgi?id=76475
Output of apt when trying to install winehq-stable on Ubuntu 24.04
Package winehq-stable is not located by the apt when being installed on Ubuntu
24.04. On the other hand, winehq-staging and winehq-devel can be installed
without any problem (installation steps for all 3 packages were made according
to the instruction on the https://wiki.winehq.org/Ubuntu)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46976
Bug ID: 46976
Summary: All games suffer from moderated to severe stuttering
with mouse polling ~1000
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: xinput
Assignee: wine-bugs(a)winehq.org
Reporter: zeioth(a)hotmail.com
Distribution: ---
Description: Any game running over Wine will stutter under the next conditions:
How to reproduce:
* Use a mouse with a polling rate of 1000.
* Open any game with wine, using any frametimes measurement tool.
* Move the camera quickly in circles. You will experience severe stuttering
and frametimes spikes.
* The issue is solved when the mouse use a polling rate of 125hz
This issue DOESN'T affect linux native games. This fact has been tested with
the games:
* Bioshock: Infinite
* Portal 1
This issue DOES Affect the next Wine (non DXVK) games:
* Doom 2016
This issue DOES affect the next wine games:
* Sekiro
* Quake Champions
* The witcher 3
* Quake Champions
* Paladins
* And every other game I've tested
Wine versions tested:
* 3.16 stating + dxvk 0.61 (Can reproduce)
* 3.18 stating + dxvk 0.61 (Can reproduce)
* 3.20 tkg + dxvk 0.61 (Can reproduce)
* 4.0 + dxvk 0.61 (Can reproduce)
* 4.5 + dxvk 0.61 (Can reproduce)
* 4.5 + dxvk 1.0.2 (Can reproduce)
* 4.5 (Can reproduce) -> Pure wine on command line, no lutris, dxvk... etc.
* esync-staging-pba-3.16 + dxvk 0.61 -> This build doesn't present FPS
drops when the player move the camera. In sekiro, the camera jiggers instead.
All other games run without camera stuttering.
Video demostration: https://youtu.be/5dAHbvSS-P8
To find more details about this issue, please read:
* https://github.com/ValveSoftware/Proton/issues/2455#issuecomment-480502473
* https://forum.winehq.org/viewtopic.php?f=8&t=32235
Personal notes:
Feel free to ask me anything you need. I'm willing to help as much as I can.
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=33643
Bug #: 33643
Summary: Dungeons & Dragons Neverwinter: stuttering mouse input
Product: Wine
Version: 1.5.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kisak42(a)gmail.com
Classification: Unclassified
While in the Dungeons & Dragons Neverwinter game client, I experience a
consistent stutter to to all mouse rotation. Also, every now and then the mouse
input bogs down and causes the player to overcompensate, then wait until the
moment passes. One possible cause of this is the multiple megabytes per minute
of:
fixme:win:GetRawInputBuffer (pData=(nil), pcbSize=0x1212e818, cbSizeHeader=16)
stub!
fixme:win:GetRawInputBuffer (pData=0x278daf8, pcbSize=0x1212bbb8,
cbSizeHeader=16) stub!
This is merely speculation from a users point of view.
The ie8 winetricks was used to workaround bug#33495, other than that I am using
a clean 32bit wineprefix.
--
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=56829
Bug ID: 56829
Summary: Program Crashes Unexpectedly After Updating Wine
Version from WineHQ Repository
Product: Wine
Version: 8.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: csumushu(a)126.com
Distribution: ---
“When I installed Wine 8.0 from the Ubuntu software source on Ubuntu 23.10, the
program worked fine. However, after switching to WineHQ’s repository and
updating to Wine 9.0 on Ubuntu 23.10, the same program crashed due to an assert
error when running with Wine. Interestingly, installing Wine 9.0 from the
Ubuntu software source on Ubuntu 24.04 works without any issues. What could be
the reason for this?”
The following is the error when running in the Wine 9.0 environment on Ubuntu
23.10.
root@mushu:~/osn8800# WINEDEBUG=fixme-all wine64
winosp_release/winospexe/winosp.exe "C:\\ProgramData\\ne1\\WINOSPHARDCFG.INI"
02a0:err:msvcrt:_wassert (L"!sig_type || sig_type->tag ==
SymTagFunctionType",L"dlls/dbghelp/symbol.c",329)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56738
Bug ID: 56738
Summary: ODBC stopped working in Wine 9.9, it works fine in 9.8
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: odbc
Assignee: wine-bugs(a)winehq.org
Reporter: claudius+wine(a)hausnetz.lettenbach.com
Distribution: ---
Created attachment 76517
--> https://bugs.winehq.org/attachment.cgi?id=76517
WINEDEBUG logs
After updating my Arch linux install from wine 9.8-2 to wine 9.9-2 my 32bit
applications using multilib unixodbc stopped working.
I tried WINEDEBUG=+odbc but could get much relevant output.
Most interesting is probabaly this: trace:odbc:SQLAllocEnv Returning 309,
EnvironmentHandle 00000000
WINEDLLOVERRIDES="odbc32=b" or "odbc=b" didn't change anything as far as I can
tell.
If I downgrade the package it immediately starts connecting again.
The driver I use is the proprietary SQL Anywhere 17 odbc driver.
It works fine using unixodbc with both linux x86_64 and linux 32 bit
applications.
Is there any way I can provide more relevant information?
Attached is a trace of +odbc when it works, and when it doesn't.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=35968
Bug ID: 35968
Summary: postgresql 9.3.4-3 has a problem initializing its
database
Product: Wine
Version: 1.7.16
Hardware: x86
URL: http://www.postgresql.org/download/windows/
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Depends on: 35966, 35967
Created attachment 48075
--> https://bugs.winehq.org/attachment.cgi?id=48075
cmd,tid trace
After winetricks wsh57 to work around bug 35966, and applying the patch from
bug 35967, the installer downgrades the database problem to a non-fatal
warning.
The installer log tells us:
Called IsVistaOrNewer()...
Granting service account access to the data directory (using icacls) to NT
AUTHORITY\NetworkService:
Executing batch file 'rad222B0.bat'...
Can't recognize 'icacls "C:\Program Files\PostgreSQL\9.3\data" /T /C /grant
"NT AUTHORITY\NetworkService":(OI)(CI)(F) ' as an internal or external
command, or batch script.
Failed to grant service account access to the data directory (C:\Program
Files\PostgreSQL\9.3\data)
initcluster.vbs ran to completion
Script stderr:
Can't recognize 'CHCP 1252' as an internal or external command, or batch
script.
Can't recognize 'CHCP 1252' as an internal or external command, or batch
script.
Can't recognize 'CHCP 1252' as an internal or external command, or batch
script.
+cmd,+tid attached (with patch from 35967 applied)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57321
Bug ID: 57321
Summary: i could not complete the install of FoxitPDFEditor
without getting exception each time
Product: Wine
Version: 9.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: ebele00(a)gmail.com
Distribution: ---
Created attachment 77271
--> https://bugs.winehq.org/attachment.cgi?id=77271
this attachment was generated when a debugger window opened with a link to
generate the bug report
Each time i try to install FoxitPDFEditor using wine, i keep getting an
exception at almost 95% install completion stage.
This stops the installation from progressing.
The backtrace report 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=51692
Bug ID: 51692
Summary: microchip studio installer crashes
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cedric.dewijs(a)eclipso.eu
Distribution: ---
Created attachment 70560
--> https://bugs.winehq.org/attachment.cgi?id=70560
console messages when running the installer twice
microchip studio installer crashes
Steps to reproduce
$ wine as-installer-7.0.2542-full.exe
The installer displays a splash screen. Next the splash screen dissapears, and
the prompt returns in the console.
My versions:
$ wine --version
wine-6.15-123-gbe8501ac6f1
$ uname -a
Linux cedric 5.13.10-arch1-1 #1 SMP PREEMPT Thu, 12 Aug 2021 21:59:14 +0000
x86_64 GNU/Linux
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.