https://bugs.winehq.org/show_bug.cgi?id=47005
Bug ID: 47005
Summary: d3d[2-9] test_shademode() fails on the testbot
Product: Wine
Version: 4.6
Hardware: x86
OS: Linux
Status: NEW
Severity: trivial
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
The upper-right triangle is painted blue instead of green. I tracked this down
to a bug in Gallium affecting software renderers:
<https://bugs.freedesktop.org/show_bug.cgi?id=98846>
I'm creating this Wine bug to track that one.
--
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.
The address lfbn-orl-1-1722-199.w90-107.abo.wanadoo.fr (90.107.35.199) failed too many login attempts (5) for
the account ti3nou(a)gmail.com.
The login attempts occurred at these times:
2020-01-29 05:56:09 CST
2020-01-29 05:56:19 CST
2020-01-29 05:57:54 CST
2020-01-29 05:58:01 CST
2020-01-29 06:26:07 CST
This IP will be able to log in again using this account at
2020-01-29 06:26 CST.
The address lfbn-orl-1-1722-199.w90-107.abo.wanadoo.fr (90.107.35.199) failed too many login attempts (5) for
the account ti3nou(a)gmail.com.
The login attempts occurred at these times:
2020-01-29 05:55:25 CST
2020-01-29 05:56:09 CST
2020-01-29 05:56:19 CST
2020-01-29 05:57:54 CST
2020-01-29 05:58:01 CST
This IP will be able to log in again using this account at
2020-01-29 06:25 CST.
https://bugs.winehq.org/show_bug.cgi?id=44664
Bug ID: 44664
Summary: The Five Cores - distorted rendering
Product: Wine
Version: 3.3
Hardware: x86-64
URL: https://gamejolt.com/games/T5C/319799
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 60668
--> https://bugs.winehq.org/attachment.cgi?id=60668
+d3d_shader
Launched with T5C.exe -d3d11
--
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=48532
Bug ID: 48532
Summary: shell32: Support PCS_REMOVEDCHAR of PathCleanupSpec
Product: Wine
Version: 5.0-rc6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: katayama.hirofumi.mz(a)gmail.com
Distribution: ---
PathCleanupSpec won't work correctly against invalid characters.
https://docs.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_co…
Some invalid characters are replaced or removed.
--
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=17205
Summary: MessageBoxes doesn't have the copy(Ctrl-C) feature which
exists on Windows.
Product: Wine
Version: 1.1.14
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diaasami(a)gmail.com
Created an attachment (id=19116)
--> (http://bugs.winehq.org/attachment.cgi?id=19116)
Source of a simple app that shows a messagebox
On Windows, When pressing Ctrl-C with a standard messagebox focused, the
caption and contents are copied to the clipboard(as text), this doesn't happen
with Wine's messageboxes.
When running the attached application and pressing Ctrl-C with the messagebox
focused on Windows, the following is copied into the clipboard:
---------------------------
Caption
---------------------------
Test
---------------------------
OK
---------------------------
--
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=40892
Bug ID: 40892
Summary: Charmap.exe crashes on close after copying a character
Product: Wine
Version: 1.9.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: dexgerig(a)gmail.com
Distribution: ---
Created attachment 54982
--> https://bugs.winehq.org/attachment.cgi?id=54982
Backtrace of crash
Window's charmap application will crash if you try to close it after selecting
and copying a character from it's list.
Steps to reproduce.
1. Create clean 32-bit prefix using wine version 1.9.13
2. Obtain a copy of Window's charmap.exe and the required dll getuname.dll. (I
got mine from my Windows XP machine)
md5sum:
ac9fa2ba34225342a8897930503ae12f charmap.exe
60b9959d333c3d11255d8695d2685430 getuname.dll
3. Open charmap.exe
4. Click the select button then click the copy button.
5. Close exit out of the application.
Backtrace will be attached in this post.
Looking at the backtrace it seems to crash in the clipboard uninitialization
function "OLEClipbrd_UnInitialize". Specifically in the inlined function
"IDataObject_Release". Here is the relevant code.
void OLEClipbrd_UnInitialize(void)
{
ole_clipbrd *clipbrd = theOleClipboard;
TRACE("()\n");
if ( clipbrd )
{
static const WCHAR ole32W[] = {'o','l','e','3','2',0};
HINSTANCE hinst = GetModuleHandleW(ole32W);
if ( clipbrd->window )
{
DestroyWindow(clipbrd->window);
UnregisterClassW( clipbrd_wndclass, hinst );
}
IStream_Release(clipbrd->marshal_data);
if (clipbrd->src_data) IDataObject_Release(clipbrd->src_data);
HeapFree(GetProcessHeap(), 0, clipbrd->cached_enum);
HeapFree(GetProcessHeap(), 0, clipbrd);
theOleClipboard = NULL;
}
}
static FORCEINLINE ULONG IDataObject_Release(IDataObject* This) {
return This->lpVtbl->Release(This);
}
--
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=46984
Bug ID: 46984
Summary: InstallShield error
Product: Wine
Version: 4.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: sk9258user(a)mail.ru
Distribution: ---
Created attachment 64147
--> https://bugs.winehq.org/attachment.cgi?id=64147
errors
I use latest wine 4.5, 32 bit.
This program (InstallShield) launch on other PC with Ubuntu. But on my Ubuntu
14.04 only I have this error. What this? How to fix? Before crash with error
screen is black on 5 seconds. In dialog error "1628: Failed to complete
installation".
--
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=42344
Bug ID: 42344
Summary: Metal Gear Solid V: The Phantom Pain - Doesn't
launch/hangs
Product: Wine
Version: 2.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: spleefer90(a)gmail.com
Distribution: ---
Created attachment 57111
--> https://bugs.winehq.org/attachment.cgi?id=57111
steam MGSV launch log
Using steam version and wine-staging.
Set W7 in winecfg.
Launching the executable through the terminal just makes it kill itself after a
few seconds.
Launching through Steam makes one thread work at 100% and it just hangs there.
--
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.