http://bugs.winehq.org/show_bug.cgi?id=25394
Summary: MPQEdit beta: Rebar menus don't work properly
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Created an attachment (id=32314)
--> (http://bugs.winehq.org/attachment.cgi?id=32314)
Coolbar Menu source
Download: http://zezula.net/download/mpqediten32_beta.zip
- Run $ wine mpqeditor
- Open a menu
- Hover an element in the menu
The effects are complicated to explain, but at that point everything goes
crazy.
Ladislav Zezula, author of MPQEditor, has kindly agreed to share the relevant
bits of source; I have attached them in a zip:
"""
TCoolMenu::Create is the function that creates the menu, it requires
to be called when the coolbar is empty.
The WndMain.cpp is heavily cut, and it just shows how the window
messages are handled by the cool menu.
"""
No relevant log messages.
Note: I have not tried compiling & running the attached source; if someone
could build an exe and attach it it'd be great.
--
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=35254
Bug ID: 35254
Summary: Freemake Video Converter 4.1 installer complains about
running Freemake processes (builtin 'findstr' stub app
always returns "match")
Product: Wine
Version: 1.7.9
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Classification: Unclassified
Hello folks,
continuation of bug 32937
Code of extracted batch file 'CheckRunningInstance.cmd':
--- snip ---
tasklist | findstr "FreemakeAC | FreemakeVD | FreemakeMB | FreemakeVC |
FreemakeYC"
--- snip ---
Relevant part of trace log:
--- snip ---
0052:Call KERNEL32.CreateProcessW(00000000,00995cec
L"\"C:\\windows\\system32\\cmd.exe\" /C
\"\"C:\\users\\focht\\Temp\\is-PQPUK.tmp\\CheckRunningInstance.cmd\"\"",00000000,00000000,00000000,04000000,00000000,00966a5c
L"C:\\users\\focht\\Temp\\is-PQPUK.tmp",0033f9e0,0033f9d0) ret=004ac6a1
...
005c:Call KERNEL32.__wine_kernel_init() ret=7bc5a036
0052:Ret KERNEL32.CreateProcessW() retval=00000001 ret=004ac6a1
...
005c:Call KERNEL32.CreateProcessW(00329964
L"C:\\windows\\system32\\tasklist.EXE",00145f28 L"tasklist
",00000000,00000000,00000001,00000000,00000000,00000000,00329920,00329e24)
ret=7ed031b2
...
005e:Call KERNEL32.__wine_kernel_init() ret=7bc5a036
005c:Ret KERNEL32.CreateProcessW() retval=00000001 ret=7ed031b2
...
005e:Starting process L"C:\\windows\\system32\\tasklist.exe"
(entryproc=0x7edfd7b8)
005e:fixme:tasklist:wmain stub: L"tasklist"
005e:Call KERNEL32.ExitProcess(00000000) ret=7edfd846
...
005c:Ret KERNEL32.WaitForSingleObject() retval=00000000 ret=7ed03270
005c:Call KERNEL32.GetExitCodeProcess(0000004c,7edc7ce0) ret=7ed0328b
005c:Ret KERNEL32.GetExitCodeProcess() retval=00000001 ret=7ed0328b
...
005c:Call KERNEL32.CreateProcessW(00329964
L"C:\\windows\\system32\\findstr.EXE",00145f28 L"findstr \"FreemakeAC |
FreemakeVD | FreemakeMB | FreemakeVC |
FreemakeYC\"",00000000,00000000,00000001,00000000,00000000,00000000,00329920,00329e24)
ret=7ed031b2
...
0060:Call KERNEL32.__wine_kernel_init() ret=7bc5a036
005c:Ret KERNEL32.CreateProcessW() retval=00000001 ret=7ed031b2
...
005c:Call KERNEL32.WaitForSingleObject(0000004c,ffffffff) ret=7ed03270
...
0060:Starting process L"C:\\windows\\system32\\findstr.exe"
(entryproc=0x7edfd7b8)
0060:fixme:findstr:wmain stub: L"findstr" L"FreemakeAC | FreemakeVD |
FreemakeMB | FreemakeVC | FreemakeYC"
0060:Call KERNEL32.ExitProcess(00000000) ret=7edfd846
...
005c:Ret KERNEL32.WaitForSingleObject() retval=00000000 ret=7ed03270
005c:Call KERNEL32.GetExitCodeProcess(0000004c,7edc7ce0) ret=7ed0328b
005c:Ret KERNEL32.GetExitCodeProcess() retval=00000001 ret=7ed0328b
...
005c:Call KERNEL32.ExitProcess(00000000) ret=7ed07262
...
0052:Ret user32.MsgWaitForMultipleObjects() retval=00000000 ret=004af027
0052:Call KERNEL32.GetExitCodeProcess(0000007c,0033fb8c) ret=004af038
0052:Ret KERNEL32.GetExitCodeProcess() retval=00000001 ret=004af038
...
0052:Call user32.MessageBoxW(00010196,00644fec L"Setup has detected that one or
more of Freemake programs are currently running.\r\n\r\nPlease close all
instances of Freemake running programs now, then click OK to continue, or
Cancel to exit.",0065b51c L"Setup",00000021) ret=0047c446
...
--- snip ---
Wine builtin 'tasklist' and 'findstr' are stub apps that return exit code 0 -
regardless what was passed in (because they do nothing as of now).
This gets propagated through cmd.exe exit code to caller (GetExitCodeProcess).
cmd.exe -> 0
findstr.exe -> 0
tasklist.exe -> 0
The problem is that Windows 'findstr' uses inverted logic.
Match -> exit code = 0
No match -> exit code = 1
Wine 'findstr' always returns 0 hence the installer takes this a process list
match and complains.
Source:
http://source.winehq.org/git/wine.git/blob/3ce21826c87434e9aea6fad5e62bd37b…
--- snip ---
23 int wmain(int argc, WCHAR *argv[])
24 {
25 int i;
26
27 WINE_FIXME("stub:");
28 for (i = 0; i < argc; i++)
29 WINE_FIXME(" %s", wine_dbgstr_w(argv[i]));
30 WINE_FIXME("\n");
31
32 return 0;
33 }
--- snip ---
It shouldn't be too hard to implement a minimal string/pattern matching.
Another way is to change the default behaviour to "no match" (return 1).
I'm not sure if it breaks apps that currently depend on stub "match" behaviour.
$ sha1sum FreemakeVideoConverterSetup.exe
20cbd93a0041da2eeef6350f6426407df660858d FreemakeVideoConverterSetup.exe
$ du -sh FreemakeVideoConverterSetup.exe
1.3M FreemakeVideoConverterSetup.exe
$ wine --version
wine-1.7.9-209-gb231b4b
Regards
--
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=16726
Summary: aTube Catcher is showing the text with underline where
it shouldn't
Product: Wine
Version: 1.1.11
Platform: PC
URL: http://atube-catcher.dsnetwb.com/get-video-software-
windows-home/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=18396)
--> (http://bugs.winehq.org/attachment.cgi?id=18396)
Screenshot of the problem
In the upper right corner of the aTube catcher there's a text that is
underlined and it should not be like that. Check the screenshots.
--
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=36668
Bug ID: 36668
Summary: Under Wine, Installation of Hotspot Shield
Fails/Crashes
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bugs(a)piouseye.com
Created attachment 48713
--> http://bugs.winehq.org/attachment.cgi?id=48713
Report Generated By Wine @ Failure
Hotspot Shield crashes during installation. This does not SEEM to be the same
issue as in Bug 16002 or other "Possible Duplicates," so I'm passing along the
report Wine generated.
--
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=26326
Summary: Add .desktop shortcut files for winecfg and wine
uninstaller
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wooptoo(a)gmail.com
It would be nice if wine had .desktop shortcut files for "winecfg" and "wine
uninstaller". These two are the most useful applications bundled with wine.
This way users will know about them.
Ubuntu has this by default and they are placed in the wine menu.
Also, a default icon for wine would be nice (placed in /usr/share/icons or
/usr/share/pixmaps).
--
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=18926
Summary: In Winamp, the "send to..." submenu in the playlist
menu does not appear
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: olhzilla(a)gmail.com
In Winamp's playlist window, the right-click menu should contain a "send to..."
submenu that lets the user send the selected track to the format transcoder or
the ReplayGain analysis tool, but under wine the submenu does not appear. It
did appear in the previous version of either Winamp or wine (I'm not sure) but
did not work - selecting any item from the submenu simply did nothing. There
used to be a workaround for this bug posted in wine's app database, but it got
deleted.
Steps to reproduce:
1. Install Winamp, making sure that the transcoding tool and/or the ReplayGain
analysis tool are selected.
2. In the playlist window, right-click on any track.
3. The menu should contain a "send to..." submenu, but it does not.
Ubuntu 9.04, Winamp 5.552, wine 1.0.1-0ubuntu6
--
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=22634
Summary: Yahoo! Widgets will not display EULA
Product: Wine
Version: 1.1.43
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wwarsin(a)gmail.com
Created an attachment (id=27820)
--> (http://bugs.winehq.org/attachment.cgi?id=27820)
$wine YahooWidgets.exe
After the Yahoo! widget engine is install the first time it runs it asks you to
accept the EULA, which will not show... This is kind of hard to explain but its
like the yahoowidgets.exe does open, and you can mouse over the area and you
can click the "I accept" button and it will the go to open the widgetengine
(from what i breifly saw it worked fine)
--
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=36490
Bug ID: 36490
Summary: wine all versions on ubuntu 14.04 winbox.exe
aplication view problem
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: juraj(a)mikrocom.sk
Created attachment 48564
--> http://bugs.winehq.org/attachment.cgi?id=48564
problem in view, aplication winbox.exe
Hello, regarding the problem of wine while using winbox.exe version of ubuntu
14.04 and mint 17RC in any version of wine, does not fit font and cursor does
not display all the text and different font size changes, example screenshots
--
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=14738
Summary: Sacred Underworld crashes when opening a lan game
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kgbricola(a)web.de
Created an attachment (id=15232)
--> (http://bugs.winehq.org/attachment.cgi?id=15232)
Sacred Underworld crash output when opening a lan game
Sacred Underworld crashes when clicking "Multiplayer" -> "Local Network". The
game version is 2.28.
System:
- Fedora 9 x86_64 (2.6.25.11-97.fc9.x86_64)
- NVIDIA Geforce 8800GTS, proprietary driver 173.14.09
- Firewall disabled
The game runs fine in single player mode. There is a demo version available but
I think it doesn't have the multiplayer part.
--
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=32279
Bug #: 32279
Summary: Treeview control in IsoBuster keeps resetting itself
Product: Wine
Version: 1.5.18
Platform: x86-64
URL: http://www.isobuster.com/download.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Classification: Unclassified
This bug shows up with IsoBuster 3.0.
Download and run the IsoBuster installer. Run IsoBuster. Choose File->Open
Image File and load an ISO image (or I guess you could select the disc in the
DVD drive). Try to choose an image file which contains quite a few directories,
subdirectories and files.
Use the treeview on the left side to browse the directory hierarchy. If you
click on various entries, notice that after a few clicks the treeview is reset
to the all-collapsed state. That happens with both built-in and native
comctl32. There's no console output when the treeview resets.
(There's also an access violation dialog on quitting the program, but that's
probably not related.)
--
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=18562
Summary: foxtrader crash with page fault (regression)
Product: Wine
Version: 1.1.21
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xrfang(a)gmail.com
Created an attachment (id=21225)
--> (http://bugs.winehq.org/attachment.cgi?id=21225)
log messages
FoxTrader (http://wizard.stock.hexun.com/webtornado/download/SetupGold.exe)
crashes with page fault, please see log.
Note
1. This is a regression
2. The program is Chinese, and it needs MFC42.DLL.
--
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=20172
Summary: Button "Alt Gr" triggers access violation in Teach2000
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://www.teach2000.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: teach2000(a)basement.nl
OS: Ubuntu 9.04
App: Teach2000 8.42
Download the latest Teach2000 from www.teach2000.org.
Install.
Start.
Press "Alt Gr" (right Alt).
Exp.: Nothing happens.
Act.: Error: Access violation at address 00000000 in module 'teach2000.exe'.
Read of address 00000000.
--
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=31775
Bug #: 31775
Summary: Misaligned icons in icon bar
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: axel.braun(a)gmx.de
Classification: Unclassified
Created attachment 41813
--> http://bugs.winehq.org/attachment.cgi?id=41813
How the icons appear
Have a look at the Nautic Tools http://www.nautictools.de/download.html
The icons in the icon bar are completely misaligend. Is this an issue of Nautic
Tools to fix or of wine?
--
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=33624
Bug #: 33624
Summary: winhelp: Popups appear with bogus scrollbars which
disappear when you click them
Product: Wine
Version: 1.5.30
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Classification: Unclassified
Created attachment 44504
--> http://bugs.winehq.org/attachment.cgi?id=44504
ROMTECH.HLP compressed with bzip2
Some help files have links which when clicked open a popup window.
Wine winhlp32 supports that, but the popups (at least for some HLP files)
appear with scrollbars even when scrollbars are not needed, i.e. when all text
would fit in the popup. The unnecessary scrollbars can obscure much of the text
if the popup is small. If you click one of the scrollbar buttons the scrollbars
disappear.
Open the attached ROMTECH.HLP in Wine winhlp32 and click on various parts to
open popups. Pics show a popup as it initially appears, and after clicking on
one of the scrollbar buttons. (Note that you can only click the links in the
left half of the large images to open popups; see bug 14296.)
--
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=32968
Bug #: 32968
Summary: Sengoku Rance unbearable slow
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maxmusterm(a)gmail.com
Classification: Unclassified
When trying to play Sengoku Rance with the latest patches (english patched
version) everything is extremly slow.
Sengoku Rance uses the Alisesoft System4.0 Ver1.3 engine.
I installed it with a clean wine prefix,googled like hell for help and tested
it on two laptops each with the newest wine version on Arch:
1.6ghz dual core with ati hd 6320 (with the ati driver from git)
2.5 ghz dual core with geforce 9300gs (with nouveau from git)
This is an old game using directx 6.
Running the game itself from the console gives no output whatsoever.
And everything after and including the main menu runs at roughly a third of the
speed.
--
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=35057
Bug #: 35057
Summary: Corel Paint Shop Pro X trial fails to install
Product: Wine
Version: 1.7.7
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 22959
Classification: Unclassified
Created attachment 46749
--> http://bugs.winehq.org/attachment.cgi?id=46749
terminal output/backtrace
I noticed this while looking at bug (22959). There are a couple other bugs for
other versions of this program, but I'm not clear which version this is (X
isn't very clear), and the installer names are different, so filing a clean
bug. The others, for reference, are bug 27240 and bug 34377.
Installer used:
http://www.freedownloads.be/downloaddetail/1763-Corel-Paint-Shop-Pro-X
austin@aw25 ~ $ sha1sum Corel_PaintShopPro1000_EN_TBYB_TrialESD.exe
f9685288f5c9d922f51c0f39194bf71d3935bb4c
Corel_PaintShopPro1000_EN_TBYB_TrialESD.exe
austin@aw25 ~ $ du -h Corel_PaintShopPro1000_EN_TBYB_TrialESD.exe
106M Corel_PaintShopPro1000_EN_TBYB_TrialESD.exe
austin@aw25 ~ $ wine --version
wine-1.7.7-199-g608b1e1
fails pretty early, with a dialog saying it failed prematurely. There's also an
msi crash:
err:msi:ITERATE_Actions Execution halted, action L"PCU_Callit" returned 1603
...
=>0 0x7ed36636 msi_destroy_assembly_caches+0x26(package=0x148e88)
[/home/austin/wine-git/dlls/msi/../../include/fusion.h:250] in msi (0x0033fbc8)
1 0x7ed7c84f MSI_FreePackage+0x1e(arg=0x148e88)
[/home/austin/wine-git/dlls/msi/package.c:351] in msi (0x0033fc18)
2 0x7ed60ca7 msiobj_release+0x66(info=0x148e88)
[/home/austin/wine-git/dlls/msi/handle.c:259] in msi (0x0033fc58)
3 0x7ed6c371 MsiInstallProductW+0xe0(szPackagePath=<is not available>,
szCommandLine=<is not available>) [/home/austin/wine-git/dlls/msi/msi.c:252] in
msi (0x0033fca8)
4 0x7ee12e4f WinMain+0x79e(hInstance=<is not available>, hPrevInstance=<is
not available>, lpCmdLine=<is not available>, nCmdShow=<is not available>)
[/home/austin/wine-git/programs/msiexec/msiexec.c:983] in msiexec (0x0033fd88)
5 0x7ee11a64 main+0xb3(argc=<couldn't compute location>, argv=<couldn't
compute location>) [/home/austin/wine-git/dlls/winecrt0/exe_main.c:49] in
msiexec (0x0033fe18)
6 0x7ee14a10 __wine_spec_exe_entry+0x7f(peb=<couldn't compute location>)
[/home/austin/wine-git/dlls/winecrt0/exe_entry.c:36] in msiexec (0x0033fe58)
7 0x7b8601cc call_process_entry+0xb() in kernel32 (0x0033fe78)
8 0x7b8611e3 start_process+0x62(peb=<couldn't compute location>)
[/home/austin/wine-git/dlls/kernel32/process.c:1097] in kernel32 (0x0033feb8)
9 0x7bc807e0 call_thread_func_wrapper+0xb() in ntdll (0x0033fed8)
10 0x7bc8378d call_thread_func+0x7c(entry=0x7b861180, arg=0x7ffdf000,
frame=0x33ffc8) [/home/austin/wine-git/dlls/ntdll/signal_i386.c:2602] in ntdll
(0x0033ffa8)
11 0x7bc807be call_thread_entry_point+0x11() in ntdll (0x0033ffc8)
12 0x7bc5576e start_process+0x1d(kernel_start=0x7b861180)
[/home/austin/wine-git/dlls/ntdll/loader.c:2762] in ntdll (0x0033ffe8)
13 0xf75cab2d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000)
14 0xf75cabeb wine_switch_to_stack+0x2a(func=0x7bc55750, arg=0x7b861180,
stack=0x340000) [/home/austin/wine-git/libs/wine/port.c:59] in libwine.so.1
(0xffde17d8)
I'll attach logs
--
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=21449
Summary: Scrolling in Delphi 5 quickreport preview doesn't work
Product: Wine
Version: 1.1.36
Platform: x86
URL: http://home.scarlet.be/linux/compteco/pqr.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincent.hardy.be(a)gmail.com
Run test program.
It's a proprietary previewer.
--
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=30819
Bug #: 30819
Summary: File|Open and File|Save doesn't work, crash with Wine
COMCTL32.DLL, COMDLG32.DLL
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alejandronova(a)gmail.com
Classification: Unclassified
Created attachment 40360
--> http://bugs.winehq.org/attachment.cgi?id=40360
Backtrace of the crash I get while trying to open files with this editor.
APP REPORT:
http://appdb.winehq.org/objectManager.php?sClass=application&iId=14244
Basically, when I press "Utility | File | Open...", "Utility | File | Save...",
the following happens.
- Pressing the "Desktop" button leads me to an immediate crash.
- There are many issues with file associations.
* PCG files, Utility | File | Import... : They flash for a moment and then
disappear.
* .M50all, .M50prog and .M50combi files: They appear after an F5. If I try to
open them, I get a crash.
Backtrace attached.
--
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=18803
Summary: PokerStars windows disappear on alert
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: carl.gherardi(a)gmail.com
Some discussion of this issue here:
http://appdb.winehq.org/commentview.php?iAppId=2029&iVersionId=2899&iThread…
This is a long standing issue that occurs using the Compiz window manager.
Easy enough to trigger.
1. Open table and be seated
2. Change workspace so you can no longer see the table, and wait for the
application to alert you that its your turn.
3. Return to the workspace the table is supposed to be on and you will find it
has disappeared.
The application is definitely still running, and the table window is definitely
still active (you can here the alert sounds and cards being dealt)
When I came across this issue initially, it didn't occur when using metacity as
a window manager.
Using Ubuntu packages from deb http://wine.budgetdedicated.com/apt intrepid
main
--
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=29758
Bug #: 29758
Summary: Wrong font after freeing link labels
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs(a)jn-games.de
Classification: Unclassified
Created attachment 38634
--> http://bugs.winehq.org/attachment.cgi?id=38634
Minimal example, including Delphi source code
You can't remove link labels from the memory. I added a minimal example along
with its Delphi source code.
How to use the minimal example:
- Click create
- Click free
- (optional) Click create again
Actual result:
Font of the application changes to "System"
Expected result:
Font should stay like it was before
Notes:
- I did not have the chance to test this with the most recent version of Wine.
--
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=13884
Summary: No music in Blue Wish Resurrection Plus
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www004.upp.so-net.ne.jp/x_xgameroom/
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leffeman(a)gmail.com
Created an attachment (id=13974)
--> (http://bugs.winehq.org/attachment.cgi?id=13974)
Normal Wine log
Music doesn't work in BWR+ 1.11.
The music is stored as MP3 data files.
This might be the same as bug 9554.
There are quite a few DirectMusic stubs in the log, so perhaps something is not
implemented.
--
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=29912
Bug #: 29912
Summary: No parent button in file selection dialog
Product: Wine
Version: 1.4-rc1
Platform: x86-64
URL: http://www.winuae.net/files/InstallWinUAE2330.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Classification: Unclassified
In some types of file selection dialog, there is no parent button. The
equivalent dialog in Windows XP does have a parent button, which makes
navigating the directory tree much easier.
If the program opens a selection dialog positioned in a subdirectory, to
navigate to the parent you need to use the treeview on the left side to
navigate down the directory hierarchy instead.
I noticed this while testing WinUAE, but presumably any program which uses the
same type of dialog will be similar.
- Download and run the WinUAE installer. Check the box to run the program at
the end.
- When the WinUAE Properties window appears, click ROM in the treeview then
click one of the "..." buttons to show a file selection dialog. There is no
parent button in the dialog. (There is also no indication of where in the
directory tree the current view is.)
--
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=31701
Bug #: 31701
Summary: Alan Wake crashes on start without native vcrun2008
Product: Wine
Version: 1.5.12
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scott(a)open-vote.org
Classification: Unclassified
Created attachment 41667
--> http://bugs.winehq.org/attachment.cgi?id=41667
Console output
The steam version will automatically install vcrun2008, but the GoG version
will not.
Installing native vcrun2008 will work around the problem (and encounter other
problems)
--
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=35652
Bug ID: 35652
Summary: Aura Kingdom Will Not Start
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: iyeru42(a)gmail.com
Created attachment 47610
--> http://bugs.winehq.org/attachment.cgi?id=47610
Windows Process backtrace
Aura Kingdom will crash before the launcher even starts.
--
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=23329
Summary: Medal of Honor games: wrong video card detection
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felipemoraesbr(a)gmail.com
Hello, in MOHAA, MOHA and MOHPA my video card isn´t recognized as it should. I
have a NVIDIA Geforce 9500 GT video card with 512mb, but these programs insist
I have a 256mb video card.
--
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=19712
Summary: Template text instead of usual information in
VirtualBox installer
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b0ntrict0r(a)yandex.ru
Created an attachment (id=23024)
--> (http://bugs.winehq.org/attachment.cgi?id=23024)
Screenshot that illustrates the problem
Text labels are filled with a template text instead of components description,
installation path, size, etc. in VirtualBox 2.2.4 installer. Text in label (1)
substitutes with proper content after selecting component in the tree, and text
in label (3) substitutes with proper text after selecting installation path in
"Browse" dialog.
--
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=36648
Bug ID: 36648
Summary: Alt+F4 key function error
Product: Wine
Version: 1.7.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: szilipeter(a)freemail.hu
1. settings winecfg:
-- Graphics: Emulate a virtual desktop (UNCHECK)
When I run a program, for example "winecfg", and
- Select "Drives"
- Select "Add"
- press "Alt-F4"
This time : Close "Select Drive Letter" window, and focused the "Wine
configuration" windows.
When I setting 2. version:
-- Graphics: Emulate a virtual desktop (CHECK)
When I run a program, for example "winecfg", and
- Select "Drives"
- Select "Add"
- press "Alt-F4"
This time : Close the "winecfg" application. Why ?
--
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=34544
Bug #: 34544
Summary: Grand Theft Auto V - The Manual needs native dotnet40
Product: Wine
Version: 1.7.2
Platform: x86
URL: http://www.rockstargames.com/V/assets/manual/GrandThef
tAutoV-TheManual.msi
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 45989
--> http://bugs.winehq.org/attachment.cgi?id=45989
log
Needs dotnet40, but even after installing doesn't launches.
--
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=10341
Summary: Pro evolution soccer 2008
Product: Wine
Version: 0.9.48.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marco.r24(a)libero.it
Game crash when exit the game
--
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=27240
Summary: Paint Shop Photo Pro X3 Trial doesn't install
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maikwagner(a)yahoo.com
Hello,
the AppDB entry for this application is at:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=21542
There is also a link to download a trial version. I have attached my output as
a text file. Hope this makes some sense to you.
--
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=33050
Bug #: 33050
Summary: FDM (Free Download Manager) crashes with page fault
when any remote FTP directory opened
Product: Wine
Version: 1.4.1
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)jelmail.net
Classification: Unclassified
Created attachment 43689
--> http://bugs.winehq.org/attachment.cgi?id=43689
Error dump from wine
MacOSX 10.8, X11 installed.
App installs and opens correctly (Both latest 3.9.2 and earlier 3.8 tested)
Once open, connect to an FTP site in Site Explorer tab (tested 2 separate)
Login as necessary
Doubleclicking any folder in listing causes application termination.
Any help very much appreciated, as have simply found no viable replacement for
this awesome download manager/FTP/HTTP client
Thanks
Ed L
--
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=25207
Summary: SHFileOperation does not create new directory on
FO_MOVE
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: richard(a)rtrussell.co.uk
Created an attachment (id=32007)
--> (http://bugs.winehq.org/attachment.cgi?id=32007)
C program to demonstrate the problem
SHFileOperation should create the destination directory on an FO_MOVE
operation, if it does not already exist, but fails to do so. See:
http://msdn.microsoft.com/en-us/library/bb759795.aspx
"Copy and Move operations can specify destination directories that do not
exist. In those cases, the system attempts to create them and normally displays
a dialog box to ask the user if they want to create the new directory. To
suppress this dialog box and have the directories created silently, set the
FOF_NOCONFIRMMKDIR flag in fFlags".
--
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=11673
Summary: WiX cannot validate created .msi, due to lacking
MsiMergeDatabase
Product: Wine
Version: unspecified
Platform: Other
URL: http://bugs.winehq.org/show_bug.cgi?id=11414#c10
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jdahlin(a)async.com.br
Finally, using latest GIT it is possible to generate .msi using WiX, however to
be able to do so one I have to pass in the -sval parameter.
See the instructions in bug 11414, comment 10 for information on how to
reproduce.
Obviously, stubbing out MsiMergeDatabase to always succeed is not enough for
the validation to work properly.
I sent a patch to wine-patches which adds the stub, Adding the stub merely
prevents wine from crashing, but the validation does not succeed.
--
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=27122
Summary: NotaBene initial installer window has wrong title:
(null)
Product: Wine
Version: 1.3.19
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Created an attachment (id=34589)
--> (http://bugs.winehq.org/attachment.cgi?id=34589)
Screenshot in w2k
...instead of "Nota Bene Trial Version - Welcome".
Additionally, "Nota Bene Trial Version" in the text box should be in bold.
See screenshots.
--
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=35685
Bug ID: 35685
Summary: can't read DivX 10.1.1 license agreement
Product: Wine
Version: 1.7.13
Hardware: x86
URL: http://dist.divx.com/divx/DivXInstaller.exe
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Created attachment 47651
--> https://bugs.winehq.org/attachment.cgi?id=47651
tid,richedit
Similar to bug 22986, however that bug is fixed for Divx 7 in wine-1.7.13
(sometime before 1.6).
10.1.1, however, does not show its license agreement.
austin@aw25 ~ $ sha1sum DivXInstaller.exe
baeab7938aecf58ca1a9668ff72e72ffa87e7795 DivXInstaller.exe
austin@aw25 ~ $ du -h DivXInstaller.exe
976K DivXInstaller.exe
austin@aw25 ~ $ wine --version
wine-1.7.13-53-g37e0a1a
winetricks riched20 works around 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.
http://bugs.winehq.org/show_bug.cgi?id=21661
Summary: RichEdit: Wrong behaviour when formating an empty
selection
Product: Wine
Version: 1.1.37
Platform: x86
URL: http://www.teamviewer.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: caliga(a)arcor.de
In our Software TeamViewer, a Richedit control is used to display chat
messages.
The nick names are colored green or blue, the text should remain black.
This works in general...
But if one side sends several chat messages in row, the nick name is omitted
(by TeamViewer).
And then, an empty selection (where the nickname would be) is formated green or
blue.
It seems, that if this happens the second time, something is screwed up and the
color becomes the default color...
Of course TeamViewer could just NOT format the empty selection with
EM_SETCHARFORMAT, (and this will be done in an upcoming release), but still
this is a wine bug, I think.
To reproduce, start a remote support session in TeamViewer from your Linux-box
to a different TeamViewer, then click on Audio/Video/Chat and type three or
more messages.
--
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=34875
Bug #: 34875
Summary: WordFlood 2.0 Program Error Won't Launch
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gowtham.pro(a)gmail.com
Classification: Unclassified
Created attachment 46479
--> http://bugs.winehq.org/attachment.cgi?id=46479
The dump created
I am trying to run this software to run on my Linux destro (Ubuntu 12.04). It's
called WordFlood 2.0. Not a popular software but quintessential for me.
Anyways installed this software with Wine and installation went without any
problem. But when I launch the application I get an error.
I am attaching the dump here just in case you people need to take a look.
--
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=18382
Summary: SubEdit fails to start
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://matinf.pcz.pl/~subedit/download/subedit_b4072_ins
tall.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=20962)
--> (http://bugs.winehq.org/attachment.cgi?id=20962)
Fatal error
I'm using Wine 1.1.20 (compiled from source using gcc version 4.3.2 20081105
(Red Hat 4.3.2-7) ) on Fedora 10 i386.
The problem is that SubEdit fails to start and shows fatal error.
--
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=35756
Bug ID: 35756
Summary: Bugzilla robots.txt prevents google indexing
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adys.wh(a)gmail.com
https://bugs.winehq.org/robots.txt
This is annoying as bugs cant be found through google.
--
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=28674
Bug #: 28674
Summary: using OpenID login is a necessity
Product: WineHQ Bugzilla
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: A.Pirard(a)ulg.ac.be
Classification: Unclassified
>We are sorry to report that recently our login database for the
>WineHQ Bugzilla Database was compromised.
>To prevent further damage we have reset your password to what is shown
>below. We strongly suggest that if you shared your WineHQ bugs
>password on any other sites that you change that password as soon
>as possible.
How is it possible to manage passwords on 200 sites if they don't use OpenID?
Is it so hard to understand?
PLEASE USE OPENID LOGIN !!!!!!
--
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=36917
Bug ID: 36917
Summary: Synthmasters fails to draw correctly
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: bique.alexandre(a)gmail.com
Created attachment 49028
--> http://bugs.winehq.org/attachment.cgi?id=49028
Screenshot
Synthmaster is a Windows VST (synthesizer).
I use it along with vst-bridge and renoise.
https://github.com/abique/vst-bridgehttp://renoise.com/
It fails to render correctly, and I think that it is related to the following
lines:
fixme:wincodecs:PngDecoder_Block_GetCount stub
fixme:gdiplus:GdipGetLineSpacing ignoring style
fixme:gdiplus:GdipDrawPath graphics object has no HDC
fixme:gdiplus:resample_bitmap_pixel Unimplemented interpolation 7
Is it an issue coming from wine or SynthMaster?
Thanks!
--
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=33769
Bug #: 33769
Summary: Strong Bad's Cool Game for Attractive People Demo
crashes without native d3dcompiler_43
Product: Wine
Version: 1.6-rc1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
The demo
dd2f18068f16a1353a3490d95723b746cec8050f SBCG4AP_Homestar_Ruiner_setup.exe
from
http://www.strategyinformer.com/pc/strongbadscoolgameforattractivepeople/de…
tested with wine-1.6-rc1, crashes unless you do
winetricks d3dcompiler_43
I'll attach a +seh,trace+d3dcompiler log.
--
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=34004
Bug #: 34004
Summary: Broken Sword: The Angel of Death demo needs native
d3dx9_36
Product: Wine
Version: 1.6-rc4
Platform: x86
URL: http://www.fileplanet.com/167033/160000/fileinfo/Broke
n-Sword:-The-Angel-of-Death-Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
CC: andrey.goosev(a)gmail.com, wine-bugs(a)winehq.org
Classification: Unclassified
Created attachment 45184
--> http://bugs.winehq.org/attachment.cgi?id=45184
log+d3dx
Without native d3dx9_36 shows a grey screen.
43e497c98f638e3b572b81d77a089bf6a03c3327 broken_sword_4-demo.zip
--
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=33770
Bug #: 33770
Summary: Strong Bad's Cool Game for Attractive People Demo has
interesting rendering glitches on initial menu screen
without native d3dx_36 (purist)
Product: Wine
Version: 1.6-rc1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
First, go purist with 'winetricks alldlls=builtin', then
work around bug 33769 with 'winetricks d3dcompiler_43'.
The game seems to start ok, but the initial menu screen
(where Strong Bad speaks the left-hand menu items as you
mouse over them) shows ghosts of Strong Bad and his sidekick
when they move.
'winetricks d3dx9_36' works around the problem.
--
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=26673
Summary: wine start foo.url does not open the url
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, testcase
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
An application I installed provides a nice little .url file:
-----------
[InternetShortcut]
URL=http://www.winehq.org/
-----------
on windows, double clicking that opens up my default browser and gives me the
webpage. Running 'cygstart foo.url' in windows does the same (wrapper around
windows start.exe).
On wine, however, I get:
fixme:exec:SHELL_execute flags ignored: 0x00000100
Application could not be started, or no application associated with the
specified file.
ShellExecuteEx failed: Success
and I don't get a nice wine gecko window :(.
perhaps it only needs to be added to tools/wine.inf?
--
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=30984
Bug #: 30984
Summary: Some keys do not work in Trine and Skyrim
Product: Wine
Version: 1.5.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yves.embil(a)orange.fr
Classification: Unclassified
Regression SHA1: 43984f355a2905e16075a9df3d7fbe463761e853
Created attachment 40666
--> http://bugs.winehq.org/attachment.cgi?id=40666
result of the regression test
In Trine the key to select the thief and Skyrim the key to open the console
does not work,with wine-1.5.5 it works.
--
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=33943
Bug #: 33943
Summary: Battle.net client region dropdown does not appear
until you hover its options
Product: Wine
Version: 1.6-rc1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
When opening the Battle.net client (currently in closed beta), the region
dropdown is invisible until the cursor actually goes over its options.
No relevant console 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.
http://bugs.winehq.org/show_bug.cgi?id=14218
Summary: OleLoadPictureEx is not fully implemented (ole32)
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mehlers(a)adata.de
Created an attachment (id=14504)
--> (http://bugs.winehq.org/attachment.cgi?id=14504)
Wine Output for OleLoadPictureEx
The Main Window of our Software under Windows shows a Picture. If we use the
builtin-Version of ole32 the Picture is not displayed. It seems that
"OleLoadPictureEx" ist not fully implemented.
See attachment "output.txt" for more information.
adata Software GmbH
Michael Ehlers
--
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=22846
Summary: wine's internet explorer can't download firefox
Product: Wine
Version: 1.2-rc1
Platform: x86
URL: http://www.getfirefox.com
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
As everyone who's installed Windows (and isn't in the EU) knows, the main use
of Internet Explorer is to download firefox. Unfortunately, wine's IE can't
download firefox:
$ wine iexplore.exe http://www.getfirefox.com
Click download, choose windows, and...nothing. Relevant terminal output:
fixme:mshtml:nsChannel_IsNoStoreResponse (0x2a06a38)->(0x32ee7c)
fixme:mshtml:nsChannel_IsNoCacheResponse (0x2a06a38)->(0x32ee78)
fixme:mshtml:nsChannel_Cancel (0x2a06a38)->(804b0002)
fixme:mshtml:nsHttpChannelInternal_SetDocumentURI (0x2affaf8)->()
fixme:mshtml:nsChannel_SetReferrer (0x2affaf8)->(0x2bf3b38)
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented group
{000214d1-0000-0000-c000-000000000046}
fixme:urlmon:Binding_Abort (0x2b46008)
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented group
{000214d1-0000-0000-c000-000000000046}
fixme:mshtml:HttpNegotiate_GetRootSecurityId (0x2b162b0)->(0x32f108 0x32f34c 0)
fixme:wininet:InternetLockRequestFile STUB
err:mshtml:read_stream_data buffer is full
--
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=25532
Summary: iTunes under Wine doesn't find shared libraries
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: computers57(a)hotmail.com
It seems that iTunes 10.1 under Wine cannot find shared libraries. I think
this has something to do with mdnsresponder not able to talk on the required
port.
Steps to reproduce:
1. Go to preferences in iTunes running either on Mac or natively on Windows.
2. click on Sharing.
3. Enable Music Sharing.
4. Go to a wine directory which has iTunes installed.
5. Start up iTunes under Wine.
6. Wait about a minute.
7. Look under Sharing on the sidebar.
Expected result:
You should see the shared library.
Actual result:
The share doesn't show up at all.
--
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.