https://bugs.winehq.org/show_bug.cgi?id=49653
Bug ID: 49653
Summary: Pattern Maker for Cross Stitch: blocked on using
inches and could not display metric in Wine
Product: Wine-staging
Version: 5.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ovi.sergiu(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: Mint
Hello!
Linux Mint 20 x64 Cinnamon
wine-5.14 (Staging)
I successfully installed Hobbyware Pattern Maker for Cross Stitch.
Inside this program, there is this setting that appears in inches.
I know this software for years and it does not have any setting to switch from
metric to imperial and viceversa.
In Windows, this software borrows Windows' settings from Locale / Language.
I even opened a forum thread and even tho the software I mention is commercial,
the FREE version (called Pattern Maker Viewer has the same problem regarding
the inches information.
https://forum.winehq.org/viewtopic.php?p=128989&sid=42d1faadc31d59c28363605…
--
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=48834
Bug ID: 48834
Summary: Rockstar Games Launcher CEF helper crashes (x11drv
use-after-free for HWND_MESSAGE)
Product: Wine
Version: 5.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: bshanks(a)codeweavers.com
Distribution: ---
Created attachment 66751
--> https://bugs.winehq.org/attachment.cgi?id=66751
Valgrind output showing backtraces of UAF
The problem: When the Rockstar Games Launcher is launched, 3 of its helper
processes (SocialClubHelper.exe) crash in XDeleteContext().
SocialClubHelper.exe is part of CEF, and the code causing the crash is ANGLE's
D3D9
renderer.<https://github.com/google/angle/blob/6dfdca836806b661cd0d0e090ef2cf1dc06a2e…>
Here's what I've figured out:
* ANGLE creates an HWND_MESSAGE window.
<https://github.com/google/angle/blob/6dfdca836806b661cd0d0e090ef2cf1dc06a2e…>
In X11DRV_create_win_data(), win_data is not created for the window (comment:
"don't create win data for HWND_MESSAGE windows")
* ANGLE uses the window as the focus window and device window when initializing
D3D9.
* The wined3d CS thread starts and calls wined3d_swapchain_gl_create_context(),
leading to x11drv create_gl_drawable(), then create_client_window().
create_client_window() creates win_data (comment is "explicitly create data for
HWND_MESSAGE windows since they can be used for OpenGL"), using the current
thread's (the CS thread's) Display pointer. I believe this is when the CS
thread calls XOpenDisplay().
* This works ok, until ANGLE shuts down. It first releases all the D3D9
objects:
<https://github.com/google/angle/blob/6dfdca836806b661cd0d0e090ef2cf1dc06a2e…>
Releasing D3D9 triggers wined3d to stop the CS thread, which ends with calling
FreeLibraryAndExitThread(). This eventually calls X11DRV_ThreadDetach(), which
closes the CS thread's Display.
* ANGLE then calls DestroyWindow() on the device/focus window. This leads to
x11drv destroy_whole_window(), which calls XDeleteContext() using the Display
from the win_data. This was the CS thread's Display, which has since been
closed/freed, causing use-after-free and (in this case) a crash.
Commenting out the HWND_MESSAGE exception in X11DRV_create_win_data() does fix
the crash, but this is likely not the correct fix.
I've attached part of a Valgrind output showing the crash and backtraces, and
should be able to add an ANGLE sample exe later that reproduces the 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=46742
Bug ID: 46742
Summary: The Sims 2 demo needs support for ProcessVertices()
with software vertex shaders
Product: Wine
Version: 0.9.35.
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
Split off from bug 8051:
"Without ProcessVertices, characters will explode in family thumbnails (and
same if you disable shaders through the game's cheat menu), and explosion of
vertices will also happen with little icons that pop up above characters when
they make a friend or get married (you can realiably observe it by loading
Pleasant family).
In both cases, this pops up:
fixme:d3d:wined3d_device_process_vertices Output vertex declaration not
implemented yet.
err:d3d:get_flexible_vertex_size Unexpected position mask: 0x0"
--
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=8051
--- Comment #175 from Alexandr Oleynikov <sashok.olen(a)gmail.com> ---
Logs really aren't needed, the cause of it is unknown and the patches to
implement the features are already in 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=8051
--- Comment #174 from Chebanenko Igor <chebanenkoigor93(a)gmail.com> ---
Created attachment 67947
--> https://bugs.winehq.org/attachment.cgi?id=67947
d3d9 winedbg output
Wine 5.14 winedbg output d3d9 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=8051
Chebanenko Igor <chebanenkoigor93(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |chebanenkoigor93(a)gmail.com
--- Comment #173 from Chebanenko Igor <chebanenkoigor93(a)gmail.com> ---
Created attachment 67946
--> https://bugs.winehq.org/attachment.cgi?id=67946
Wine 5.14 winedbg output
The Sims 2 Demo - winedbg output from Wine 5.14
--
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=5977
Olivier F. R. Dierick <o.dierick(a)piezo-forte.be> changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://downloads.scifinews. |https://download.cnet.com/S
|de/file_13372.html |tar-Trek-Armada-demo/3000-2
| |095_4-10044363.html
CC| |o.dierick(a)piezo-forte.be
--
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=49686
Bug ID: 49686
Summary: StarMoney 12 Basic doesn't start up
Product: Wine
Version: 5.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 67926
--> https://bugs.winehq.org/attachment.cgi?id=67926
Console Output (wine 5.14 - Staging)
Hello everyone,
as somebody on the ubuntuusers.de requested some help for the application I
gave "StarMoney12 Basic" a try which can be downloaded from:
https://hilfe.starmoney.de/hc/de/articles/360018689873-StarMoney-herunterla…
I used the 5.14 staging version of wine but with no luck as it seems to hang in
a deadlock.
--
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=5977
--- Comment #37 from joaopa <jeremielapuree(a)yahoo.fr> ---
Created attachment 67945
--> https://bugs.winehq.org/attachment.cgi?id=67945
Hack: Animations in the menu
When forcing the recreation of the window with topmost style, the animations
occur but the background dissapear. Problem of Z-order?
--
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=33518
Bug #: 33518
Summary: Some floors in Star Trek (2013) are completely black
Product: Wine
Version: 1.5.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eurekafag(a)eureka7.ru
Classification: Unclassified
This is how they look like in the game: http://i.imgur.com/sNy2z7l.png
This is how they should look (at least on Xbox360):
http://youtu.be/YQCUUcrLfPc?t=30m30s
Outdoors and everything else seems to be ok: http://i.imgur.com/Rv2O8sM.pnghttp://i.imgur.com/Ytoi8cC.png
I see this repeating message in the terminal: fixme:d3d:resource_check_usage
Unhandled usage flags 0x8.
Sometimes another message appears: fixme:d3d:wined3d_swapchain_present Ignoring
flags 0x80000000.
These two spam the output but nothing else appears while playing. I've run the
game with WINEDEBUG=+d3d and the resulting file is about 600M long compressed
to 23M. Maybe it will help. I launched the game and entered to the buggy room
from the screenshot above, then killed it to prevent extra 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.