http://bugs.winehq.org/show_bug.cgi?id=10463
Summary: Steam install MSI fails to finish
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tehblunderbuss(a)gmail.com
Steam's MSI installer fails to finish, with a dialog box saying so.
Terminal output attached
Regression tested to:
a97d6556a42ed3119aaf3f312a6a436a59db9fa0 is first bad commit
commit a97d6556a42ed3119aaf3f312a6a436a59db9fa0
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Nov 15 11:31:17 2007 +0100
wine.inf: Register inetcomm.dll.
:040000 040000 16f74bb7a532b8a12dcaf5d99b4ab495feb2ad25
3bacb4140a6d3c88691b28282f68181fd38e2d0d M tools
I'm fairly certain this is the one.
While regression testing, I did encounter an anomaly that showed neither the
"good" outcome, nor the failed message, so I marked that bisect as "good"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11044
Summary: Catan refuses to install
Product: Wine
Version: 0.9.52.
Platform: PC
URL: http://www.download.com/3001-7562_4-
10396066.html?spi=857b9fbd1d43b4f05aca8d8aa284f5aa
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=10047)
--> (http://bugs.winehq.org/attachment.cgi?id=10047)
+msi log
Catan bombs out on install. Terminal output is below. +msi log is attached.
AppDB says this used to install under wine 0.9.46, so I'm tagging this as a
regression. I'll start running the test...
fixme:exec:SHELL_execute flags ignored: 0x00000580
fixme:advapi:CheckTokenMembership ((nil) 0x143380 0x34ec98) stub!
fixme:advapi:LookupAccountNameW (null) L"austin" (nil) 0x34db4c (nil) 0x34db44
0x34db48 - stub
fixme:advapi:LookupAccountNameW (null) L"austin" 0x146938 0x34db4c 0x144b88
0x34db44 0x34db48 - stub
fixme:msi:msi_unimplemented_action_stub RemoveShortcuts -> 1 ignored
L"Shortcut" table values
err:msi:load_media_info Failed to extract cabinet stream
err:msi:ready_media Unable to load media info
err:msi:ACTION_InstallFiles Failed to ready media
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned
1627
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1627
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17198
Summary: World Editor: Tree Component of Unit Editor doesn't
(re)draw corretly
Product: Wine
Version: 1.1.14
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: florian(a)fkoeberle.de
Created an attachment (id=19101)
--> (http://bugs.winehq.org/attachment.cgi?id=19101)
Two Tree items are out of order in the tree component on the left side.
The Warcraft 3 World Editor has a module called Unit Editor.
This Editor displays a explorer like tree on the left side.
Sometimes it happens that it got drawn wrongly.
Forcing a redraw helps.
For example the wrongly drawn tree gets overdrawn correctly, if you move the
window out of the screen and back. Resizing the window helps too.
--
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=15188
Summary: Warcraft 3 World Editor: Panels for resize are to huge.
Product: Wine
Version: 1.1.4
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: florianskarten(a)web.de
Created an attachment (id=15938)
--> (http://bugs.winehq.org/attachment.cgi?id=15938)
Screenshot of the trigger editor.
Between two components of the different Warcraft 3 Modules is a component which
can be used to resize the former components. These splitter components are much
to huge in the Warcraft World editor. They get drawn behind the other
components but catch clicks.
The author of bug 11718 mentioned this bug as well, but as the other bug report
is mainly about another problem I filled in this bug report.
--
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=11301
Summary: documentElement.ownerDocument.createElement fails
Product: Wine
Version: 0.9.53.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq.5.tahtu(a)spamgourmet.com
I'm a Delphi 7.0 developer, trying to get my application to run unter Wine.
var
FXMLDocument: IXMLDOMDocument;
begin
FXMLDocument := CreateComObject(CLASS_DOMDocument30) as IXMLDOMDocument2;
MessageBoxW(0, '1', 'GetXML', MB_OK);
FXMLDocument.appendChild(FXMLDocument.createProcessingInstruction('xml',
'version="1.0" encoding="utf-8"'));
MessageBoxW(0, '2', 'GetXML', MB_OK);
FXMLDocument.appendChild(FXMLDocument.createElement('desktop'));
MessageBoxW(0, '3', 'GetXML', MB_OK);
FXMLDocument.createElement('Hallo');
MessageBoxW(0, '4', 'GetXML', MB_OK);
FXMLDocument.documentElement.ownerDocument.createElement('Hallo2');
MessageBoxW(0, '5', 'GetXML', MB_OK);
After running this code under Wine 9.0.53 on Ubuntu 7.10 I see popup message
boxes with "1", "2", "3" and "4" - but I never see the message "5".
--
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=14430
Summary: Ares: Internet browsing scrollbars do not work
Product: Wine
Version: 1.0.0
Platform: PC
URL: http://aresgalaxy.sourceforge.net/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amlopezalonso(a)gmail.com
The scrollbars appearing when selecting Internet browser do not work. Other
scrollbars do, though.
--
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=18185
Summary: Operation Flashpoint(Game of the Year) doesn't work
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: feldmann_markus(a)gmx.de
I installed this Game, which includes 3 CD's, by changing the CD'c:
wine eject d:
and then mount the next CD.
So the installation went right. But when i want to start,
there doesn't appear anything.
How can i get more debug Info's ?
Regards Markus
--
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=19530
Summary: installation succeeds, running fails -- "the program
USJP has encountered a serious problem and needs to
close" (PWN Polish Dictionary)
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bluedzins(a)wp.pl
I try to run PWN Polish Dictionary (v.3.0) using wine. Using virtualbox
everything fine, but using wine only installation works OK. When executing
installed program I get windows program error:
the program X has encountered a serious problem and needs to close
with wine explanation below (the same dialog).
USJP -- is the name of the exe file (PWN Polish Dictionary)
The log is here:
http://bugs.winehq.org/attachment.cgi?id=22707
--
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=18209
Summary: Bad path of "My documents"
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tsalacinski(a)gmail.com
Hello,
There's one very annoying (yet trivial) bug in WINE:
When using clean WINEPREFIX, every standard directory is mapped to good
directory in Linux (eg. "My Videos" is mapped to "~/Video"). Only "My
Documents" directory is mapped to "~" instead of "~/Documents".
--
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=20767
Summary: Wine doesn't load any program since update
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: descent1(a)gmx.net
Since I've upgraded from 1.1.32 to 1.1.33, wine doesn't start any program
(except winecfg, notepad, regedit) for the following reason:
err:wineboot:ProcessRunKeys Error running cmd L"spoolvs.exe" (2)
err:seh:raise_exception Exception frame is not in stack limits => unable to
dispatch exception.
(Only these two lines appear)
All my programs worked before (Steam, TrackMania, ...). A Downgrade doesn't
help.
I'm using openSUSE Linux 11.2 32 bit.
--
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.