http://bugs.winehq.org/show_bug.cgi?id=23944
Summary: Verizon Media Manager needs native Windows VB
scripting dlls to install
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spzakulec(a)gmail.com
Created an attachment (id=30054)
--> (http://bugs.winehq.org/attachment.cgi?id=30054)
Console output from trying to install the program with builtin dlls.
If I try to install Verizon Media Manager without having the native wsh56vb
installed from winetricks, I get stuck on the last screen before it starts
installing. That screen is right after the EULA, and has you put in a name for
share and where you would like to install it.
--
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=27708
Summary: GetThreadSelectorEntry fails
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nitsuja-(a)hotmail.com
Created an attachment (id=35459)
--> (http://bugs.winehq.org/attachment.cgi?id=35459)
binary (and source code) of the test case
When a program calls GetThreadSelectorEntry after creating a process, it fails
in Wine (returns FALSE and sets lasterror to 5), but succeeds in Windows. This
is a problem for a program I made which needs this function to work, so I've
boiled it down to a tiny test case which still fails in the same way, and is
attached. When run on Windows, this exe brings up a messagebox saying "ALL OK",
but when run on Wine, it says "ERROR: GetThreadSelectorEntry failed". Here's
the source code:
#define WIN32_LEAN_AND_MEAN
#define _WIN32_WINNT 0x0500
#include <windows.h>
void AssertSuccess(BOOL success, const char* errorMessage);
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR
lpCmdLine, int nShowCmd)
{
// it doesn't matter which exe I start, so for this example I use the
current exe path
CHAR filename[MAX_PATH];
GetModuleFileName(NULL, filename, MAX_PATH);
STARTUPINFO startupInfo = {sizeof(STARTUPINFO)};
PROCESS_INFORMATION processInfo = {};
BOOL success = CreateProcess(filename, NULL, NULL, NULL, FALSE,
CREATE_SUSPENDED | DEBUG_PROCESS,
NULL, NULL, &startupInfo, &processInfo);
AssertSuccess(success, "ERROR: CreateProcess failed.\n");
HANDLE hThread = processInfo.hThread;
CONTEXT context;
context.ContextFlags = CONTEXT_SEGMENTS;
success = GetThreadContext(hThread, &context);
AssertSuccess(success, "ERROR: GetThreadContext failed.\n");
LDT_ENTRY ldtEntry;
success = GetThreadSelectorEntry(hThread, context.SegFs, &ldtEntry);
AssertSuccess(success, "ERROR: GetThreadSelectorEntry failed.\n");
if(success)
MessageBox(NULL, "ALL OK.", "DONE", MB_ICONASTERISK);
return success ? 0 : -1;
}
void AssertSuccess(BOOL success, const char* errorMessage)
{
if(!success)
MessageBox(NULL, errorMessage, "ERROR", MB_ICONERROR);
}
--
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=20732
Summary: Icons are not rendered 100% correctly in VB6 apps
(regression)
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabmoa(a)yahoo.it
CC: thunderbird2k(a)gmail.com
Created an attachment (id=24783)
--> (http://bugs.winehq.org/attachment.cgi?id=24783)
Example application
An icon rendering problem is born between 1.1.25 and 1.1.26
In attachment there is a VB6 test project and screenshots of various
applications that suffer of this rendering problem.
(I hope is correct add Roderick Colenbrander mail to cc, otherwise sorry for
the mistake)
--
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=18234
Summary: Approach: Maximizing internalal minimized icon give
"About Wine"
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)verizon.net
Created an attachment (id=20742)
--> (http://bugs.winehq.org/attachment.cgi?id=20742)
About wine instead of a maximized window
Hi All,
In Lotus Approach, if you use the internal windows control (the low set of
caption buttons) to minimize a single database, it will appear as an icon in
the lower right of Approach's window. If you double click on the icon to
maximize the window again, you get "About Wine 1.1.20" (and no maximized
window)
Many thanks,
-T
--
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=22974
Summary: "Shell folders" settings are reset after each wine
update
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amdmi3(a)amdmi3.ru
Althrough I've disabled shell folder links (My Pictures, My Music, My Videos,
My Documents) by unchecking "Link to" checkbox for each of them in
winecfg->Desktop Integration->Shell Folders, after each wine update those
settings are reset and all folders are again linked to my home directory. That
is highly undesirable, as I'd prefer windows apps never access anything outside
.wine/drive_c.
--
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=17101
Summary: Cancelling text with Scientific Workplace leaves last
character
Product: Wine
Version: 1.1.13
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: loic.grenie(a)gmail.com
Created an attachment (id=18937)
--> (http://bugs.winehq.org/attachment.cgi?id=18937)
Screenshots
When I delete text under Scientific Workplace, the end of the line is not
treated correctly. Was is most evident is that the last character(s) is(are)
not canceled.
I attach a vertical concatenation of 3 screenshots:
the first is the state before hitting backspace: I typed "abcdefghijkl" and
added an inline image,
the second is after hitting backspace (I cancel the "g"); notice how the last
"kl" are not correctly canceled and the image is not moved to the left
and the third is how it should have looked.
No error message is displayed while hitting backspace (it complains about IME
all the time but I think it's no big deal).
I have seen this problem at least in versions 1.0.1 (under Debian testing,
Ubuntu hardy and intrepid, both 32 and 64 bits) and 1.0.13 (Debian testing 64
bits). The situation is even worse under Ubuntu intrepid (32 bits OS, Wine
v1.0.1) as text disappears as soon as it is typed (Esc redisplays it briefly).
I can live with the image (visible at the end of the line) not correctly
positioned after backspace (it seldom occurs), but the last character not
canceled is a real (visual) pain.
I can test anything you wish and I understand programming/debugging.
Thank you for any help.
SurJector
--
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=17272
Summary: Zmodeler: Icons and overall GUI blinky
Product: Wine
Version: 1.1.14
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=19272)
--> (http://bugs.winehq.org/attachment.cgi?id=19272)
Simple log of fixme's in the console
Zmodeler is not quite in full working condition (but tons better than prior to
1.1.14). When using the buttons on the Main Toolbar the icons which
occasionally disappear and overall 3D performance is rather slow. You can
mouseover the icons and they will reappear, but it isn't overly practical...
Attached is a log. I believe it has something to do with"LockWindowUpdate".
--
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=27570
Summary: Aliens Vs Predator 2 Demo is temporary confined
ingame.
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
I've tried the marine demo at the start the mouse movement is confined like bug
#6971 until you right click or over time, it works as per usual after this plus
"Automatically capture the mouse input in full-screen window" changes nothing.
Make fmv videos not accessible to speed up testing.
I haven't tested when you start the next level due to being a demo.
--
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=23887
Summary: Microstation V8.5 opening files only in read only mode
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kalathilsunil(a)yahoo.com
Microstation, one of the popular CAD application got installed in WINE but not
able to edit files
--
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=9337
Summary: direct 3d errors while running vietcong.exe
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://appdb.winehq.org/appview.php?iVersionId=8864
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: docmccoy80(a)freenet.de
When vietcong.exe is running by wine, I get always the same errors repeatedly:
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33fcb8
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33fa80
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33fd0c
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33df88
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33df68
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33df7c
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
(nil)/0x33dfa0
When I start a game in Vietcong, it is loading, but then it crashs.
If I want to select the multiplayer character, it also crashs.
I think wine has problems to emulate the direct3d eninge of Vietcong.
Unfortunately I can't give a better bug report, because I don't know much about
wine/d3d/....
Perhaps I just need a dll?!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.