https://bugs.winehq.org/show_bug.cgi?id=56102
Bug ID: 56102
Summary: Comdlg32/Color - Out of bound value is used
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
- Set HSV to max value by typing 999
- Automatically sets to 239, 240, 240
Scenario 1 :
- Click on the 2D spectrum
- Lum gets to 999 => should stay to 240
Scenario 2 :
- Click on right ribbon
- H & S gets to 999 and ribbon gets crazy
> Faulty code is CC_CheckDigitsInEdit where the raw value is returned even when exceeding max value
if (value > maxval) /* build a new string */
{
sprintf(buffer, "%d", maxval);
result = 2;
}
should be replaced by
if (value > maxval) /* build a new string */
{
value = maxval;
sprintf(buffer, "%d", maxval);
result = 2;
}
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56352
Bug ID: 56352
Summary: comctl32: Handle progress bar state messages
Product: Wine
Version: 8.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: rikul(a)inbox.ru
Distribution: ---
PBM_SETSTATE, PBM_GETSTATE messages are not handled for Progress Bar control.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50365
Bug ID: 50365
Summary: Starcraft Remastered black screen on launch or window
only mode
Product: Wine-staging
Version: 6.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: darinsmiller(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
2 display issues appeared a few releases prior to the 6.0 rc's and are still
present:
1st issue: Starcraft Remaster fails to set proper video mode by launching with
black screen. Starcraft cursor is visible and underlying menu items react with
hover sound, but screen remains black even after clicking on invisible menu
items. Alt-tabbing from/to the game refreshes the screen to normal display
mode.
2nd issue: Running dual monitors: primary 4K, secondary 2K scaled to 4K.
Starcraft Rem. launches in window mode on the 4K screen even though settings
specify full-screen mode. Alt-enter fails to scale to full screen. If the
secondary 2K monitor is set to native (non-scaled resolution) before the game
is launched, the game launches to the black fullscreen mode on the primary
display as described above.
Lutris with wine version 5.7.10-x86_64 correctly runs Starcraft Remastered on
the primarly 4K display.
Operating System: Kubuntu 20.10
KDE Plasma Version: 5.19.5
KDE Frameworks Version: 5.74.0
Qt Version: 5.14.2
Kernel Version: 5.8.0-33-generic
OS Type: 64-bit
Processors: 8 × Intel® Core™ i7-4771 CPU @ 3.50GHz
Memory: 15.6 GiB of RAM
Graphics Processor: GeForce GTX 1080/PCIe/SSE2
NVidia Driver: 455.45.01
wine version: wine-6.0-rc3 (Staging)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=52687
Bug ID: 52687
Summary: OpenKiosk installer not working
Product: Wine
Version: 7.4
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Running "wine msiexec /i OpenKiosk91.7.0-2022-02-22-x86_64.msi" I only get:
> 00d4:fixme:file:NtLockFile I/O completion on lock not implemented yet
> 00d4:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
> 00d4:err:msi:read_properties_from_data propid 10 has unknown type
> 00d4:err:msi:read_properties_from_data propid 10 has unknown type
It seems to install for another user though, see bug 52685.
It also works on windows, so probably not a corrupted file.
MD5Sum
bd5c917f09bdc35f79a2156a00459531 OpenKiosk91.7.0-2022-02-22-x86_64.msi
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48404
Bug ID: 48404
Summary: Can't close free game notifications from Epic Games
Store
Product: Wine
Version: 5.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
Distribution: ---
How to reproduce:
1) Install Epic Games Store (which can be done easily by using a version of
Lutris installer that doesn't install any native components
https://lutris.net/games/epic-games-store-untainted/installer/edit)
2) Launch it with -opengl -SkipBuildPatchPrereq flags
2) Get a notification about current free game giveaway
3) Click on [X] (close) button
Instead of being closed, the notification instead gets recreated, and after
that, it can't be closed without use of tools like xkill.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770
Summary: mapi32.dll.so does not support attachments for sending
mail
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Mark_Neyhart(a)legis.state.ak.us
Applications like Microsoft Excel 2002 and Word 2002 have a File...Send To
function which should bring up an email client with the current file attached.
The DLL override mapi32.dll.so does not support attachments. The sendmail.c
source for this dll has a FIXME which outputs "Ignoring attachments".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45289
Bug ID: 45289
Summary: Wine Crashes Some Programs If Compiled with AVX
Support
Product: Wine
Version: 3.9
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ben(a)xnode.org
Distribution: ---
This is a really specific bug and I'm not sure what other programs/games it
affects. I assume there are more, but this is the only example that I've
reliably run into at the moment:
== To Recreate
Run Cemu under a 64bit Prefix. Start Mario Kart 8. After Mario announces the
game, it will crash.
== Workaround
Compiling Wine without AVX support (i.e. adding the -mno-avx C/XXFLAG) negates
the issue.
People won't see this when using distro packages because they'll be compiled
using something like -march=x86-64 which doesn't enable any of the AVX options
(as they aren't available in all processors). If you compile it yourself using
something like -march=native then GCC will enable the AVX functions which in
turn triggers this issue.
I saw this behaviour on both my old i7-5775C and the i7-8700K which has since
replaced it.
In case it's relevant, it looks like this problem may have not existed before
Wine 3.0 because I've tracked down an old post of my own wherein I stated
(regarding the Mario Kart 8 crash on Cemu):
=======================
Tried on a brand new Wine 3.2 prefix, same issue (Segmentation fault after the
splash screen). Works fine with Staging 2.21.
More specifically:
002c:fixme:seh:RtlCaptureStackBackTrace (0, 40, 0x25152ba0, (nil)) stub!
002c:err:seh:call_stack_handlers invalid frame 25153728 (0x116a0000-0x117a0000)
002c:err:seh:NtRaiseException Exception frame is not in stack limits => unable
to dispatch exception
EDIT: The issue was vcrun2015. Wine-staging didn't need it. Standard wine does,
for some reason.
=======================
Not sure if the vcrun2015 issue was a red-herring as that's installed now but
no-longer fixes the issue.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=53110
Bug ID: 53110
Summary: Latest Cyberpunk 2077 game v1.52, freezes just after
launch
Product: Wine
Version: 7.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: rahul.kumar1(a)amd.com
Distribution: ---
Created attachment 72552
--> https://bugs.winehq.org/attachment.cgi?id=72552
Cyberpunk v1.52 is not working with wine, game freezes and wine throws
exception
Latest Cyberpunk 2077 game v1.52, freezes just after launch.
Wine version - tried 7.0 stable, 7.10 development.
We had working userspace component(mesa, libdrm) where older Cyberpunk. works,
but lastest one is not working.
Older cyberpunk game still works.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43481
Bug ID: 43481
Summary: GeoForms Demo needs "vs_2_a" compilation target
Product: Wine
Version: 2.14
Hardware: x86-64
URL: http://www.nvidia.com/coolstuff/demos#!/geoforms
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
fixme:d3dcompiler:compile_shader Compilation target "vs_2_a" not yet supported
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=49407
Bug ID: 49407
Summary: Display device initialization fails due to
vkGetRandROutputDisplayEXT() causing X exception on
dual Nvidia / Intel GPU configuration (regression).
Product: Wine
Version: 5.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: pgofman(a)codeweavers.com
Distribution: ---
Wine can't create any window on the mentioned configuration after
145cfce1135a7e59cc4c89cd05b572403f188161:
> winex11.drv: Add a Vulkan UUID property for GPUs.
> A Vulkan UUID property is used to find the corresponding GPU in SetupAPI.
> Signed-off-by: Zhiyi Zhang <zzhang(a)codeweavers.com>
> Signed-off-by: Liam Middlebrook <lmiddlebrook(a)nvidia.com>
> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
$ xrandr --listproviders
Providers: number : 2
Provider 0: id: 0x1b8 cap: 0x1, Source Output crtcs: 4 outputs: 4 associated
providers: 1 name:NVIDIA-0
Provider 1: id: 0x1e9 cap: 0xf, Source Output, Sink Output, Source Offload,
Sink Offload crtcs: 3 outputs: 4 associated providers: 1 name:modesetting
The exception happens when vkGetRandROutputDisplayEXT is called with Nvidia
device for Provider 1 (modesetting):
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 155 (NV-GLX)
Minor opcode of failed request: 31 ()
Serial number of failed request: 147
Current serial number in output stream: 147
This looks like a bug between between vulkan implementation and xrandr, as
vulkan spec for vkGetRandROutputDisplayEXT clearly says that it should return
VK_NULL_HANDLE for missing output.
Still I guess we might need a temporary solution as it looks like Wine is going
to be totally broken on such configurations until this is fixed elsewhere.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.