http://bugs.winehq.org/show_bug.cgi?id=21881
Summary: iScreensaver Designer 3.5 has encountered a problem.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: reedercolin(a)gmail.com
A window comes up saying that iScreensaver.exe encountered a serious 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=16208
Summary: Yousendit desktop tool does not work
Product: Wine
Version: 1.1.9
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mico(a)kabelfoon.nl
Created an attachment (id=17447)
--> (http://bugs.winehq.org/attachment.cgi?id=17447)
verbose logging of the application start
The yousendit desktop tool does not work.
A dialog appears with the text:
We're sorry, but we are unable to find the required YouSendIt files.
Please reinstall the application.
Terminal output is just one line:
mico@ubuntu64:~$ env WINEPREFIX="/home/mico/.wine" wine "C:\Program
Files\YouSendIt\Express\YouSendIt.exe"
fixme:jscript:String_toLowerCase
Re-installation does not solve the issue
Attached a debug log running the app.
This is a follow-on of the installation problem which is closed here:
http://bugs.winehq.org/show_bug.cgi?id=16159
--
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=25087
Summary: GPU-Z shows no informations
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: testing.tigerwolf(a)mail.com
Created an attachment (id=31809)
--> (http://bugs.winehq.org/attachment.cgi?id=31809)
GPU-Z launching back trace
GPU-Z shows any information : all fields remains empty.
OS : Ubuntu 10.10 amd-64
GPU : ATI Radeon HD
Tested version : GPU-Z v0.4.8
Wine : 1.3.6
--
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=20888
Summary: Use XDG Base Directory Specification
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: cristiklein+wine(a)gmail.com
Hello,
The XDG Base Directory Specification [1]. Aims at solving two issues:
1) User's home directory is currently filled with hidden files.
2) Application settings, cache and data files are not separated.
Wine does not currently respect this standard.
- The "*.reg" files and "dosdevices" folder should be moved to
$XDG_CONFIG_HOME/wine.
- drive_c should be moved to $XDG_DATA_HOME/wine
[1] http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
--
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=10600
Summary: ABC Amber LIT Converter has an unusable GUI
Product: Wine
Version: 0.9.49.
Platform: PC
URL: http://www.versiontracker.com/dyn/moreinfo/win/48214
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: echidnaman(a)gmail.com
Ok, this is sorta hard to explain. You really have to see it for yourself.
When you start up the program, the main window loads up. The GUI becomes
completely blank and unresponsive. If you can move the Tip of the day window to
any other virtual desktop you can see that it is unresponsive. If you click on
the main window you get a nice machine beep. In short, the UI is unusable.
Console Output:
jonathan@jonathan-desktop:~/.wine/drive_c/Program Files/ABC Amber LIT
Converter$ wine abclit.exe
err:systray:delete_icon invalid tray icon ID specified: 0
err:statusbar:StatusWindowProc unknown msg 3523 wp=0000 lp=00000000
err:toolbar:ToolbarWindowProc unknown msg 3523 wp=00000000 lp=00000000
err:toolbar:ToolbarWindowProc unknown msg 3523 wp=00000000 lp=00000000
err:toolbar:ToolbarWindowProc unknown msg 3523 wp=00000000 lp=00000000
err:updown:UpDownWindowProc unknown msg 3523 wp=0000 lp=00000000
--
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=14855
Summary: Incorrect FindWindow/GetLastError error result when
window not found
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vesselinpeev(a)hotmail.com
The following program (compiled to a Win32 binary) prints "Window not found
(expected result)" under Microsoft Windows (tested with Vista), whereas it
prints "Unexpected error, GetLastError() return value: 1407" when ran under
Wine (tested with Wine 1.1.2).
It seems that FindWindow does not set the correct error value
(ERROR_FILE_NOT_FOUND) when it doesn't find a window.
#include <windows.h>
#include <stdio.h>
int main()
{
HWND hWnd = FindWindow("SomeWindowThatDoesNotExist", NULL);
if(hWnd) {
printf("hWnd not NULL");
}
else {
DWORD dwResult = GetLastError();
if(dwResult == ERROR_FILE_NOT_FOUND) {
printf("Window not found (expected result)\n");
}
else {
printf("Unexpected error, GetLastError() return value: %lu\n", dwResult);
}
}
return 0;
}
--
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=22892
Summary: winamp [5.572] Modern skins don't update metadata
information
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jason.whipp(a)gmail.com
Affects all "modern" skins tested, existing in this and previous versions on
wine tested (1.1.34, 1.1.23 and 1.0.1).
With normal Winamp behaviour, song metadata normally displayed and updated in
the Winamp main window and in the playlist. With Modern skins, the song data
in the main window doesn't update, including the time. The play list does
update, unless shaded. Tried changing the font mapping, alpha blending and
just about every configurable item under modern skins in the preferences window
but the behaviour remains the same.
I haven't noticed anything strange in console output, but I will do a test and
post what is presented.
--
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=24874
Summary: iTunes 10 32-bit installs - freezes after a few
transactions
Product: Wine
Version: 1.3.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 7bnettles(a)gmail.com
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.10
Release: 10.10
Codename: maverick
wine --version
wine-1.3.5
I opened the iTunes installation file with Archive Manager, then installed the
various files separately. Installing each of the application dependencies first
and then run the overall to get the application working.
The problem I see now - app store doesn't work and the application will freeze
during normal use. I do get an error on load about Bonjour service not starting
but otherwise ok.
I tried to authorize computer but it failed - can see it in the debug.
Application froze when I clicked on the store.
--
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=26746
Summary: No icon for desktop short-cut
Product: Wine
Version: 1.3.17
Platform: x86
URL: http://www5l.incredimail.com/im/imsetup/201104120001/d
efault/installer/fullsetup/IncrediMailSetup.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Steps to reproduce:
1) remove ~/.wine
2) wine IncrediMailSetup.exe
3) default install
Behaviour:
Application short-cut on desktop with Wine glass icon.
Expected behaviour:
Application short-cut on desktop with application icon.
Additional info:
Application icon can be extracted from IncMail.exe by following command
wrestool -x IncMail.exe --name=1030 >& icon.ico
--
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=26739
Summary: IncrediMail: Crash at 23% of configuring mail
Product: Wine
Version: 1.3.17
Platform: x86
URL: http://www5l.incredimail.com/im/imsetup/201104120001/d
efault/installer/fullsetup/IncrediMailSetup.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=34062)
--> (http://bugs.winehq.org/attachment.cgi?id=34062)
Image showing the problem
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko wsh57 vcrun2005
3) wine IncrediMailSetup.exe
4) default installation
5) after installation IncrediMail does "Configuring IncrediMail..."
Behaviour:
Crash at 23% (See attachment)
Expected behaviour:
No crash 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.
http://bugs.winehq.org/show_bug.cgi?id=17180
Summary: Wine doesn't honor minimum window size(reported through
WM_GETMINMAXINFO)
Product: Wine
Version: 1.1.13
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diaasami(a)gmail.com
Created an attachment (id=19068)
--> (http://bugs.winehq.org/attachment.cgi?id=19068)
A sample app that sets the minimum window size(through WM_GETMINMAXINFO) to
(350,350)
It's somehow complicated to explain because WINE handles minimum window size
partially but doesn't propagate it to X, so although the window can still be
resized to smaller sizes it doesn't receive WM_SIZE when its size goes below
the minimum size.
See the attached application, it sets the minimum size to 350,350.
--
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=16991
Summary: Cobra 11 Nitro: No video and music at game startup
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: lukaschmela(a)gmail.com
Created an attachment (id=18784)
--> (http://bugs.winehq.org/attachment.cgi?id=18784)
Screenshot from the game's startup on Wine
On Windows, the game plays a short cinematic show. Then it loads menus and in
the background there are drown video shows from the game with a music from
included music manager.
Wine does nothing from the three actions I described above. The game loads
menus immediately after startup, in background there is a red cross and no
music is playing.
--
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=9906
Summary: Can't start the 4D Client
Product: Wine
Version: 0.9.46.
Platform: PC
URL: http://www.4d.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roland(a)javalia.se
Created an attachment (id=8397)
--> (http://bugs.winehq.org/attachment.cgi?id=8397)
The backtrace when trying to run 4D Client 2004
4D 2004, installs well but doesn't run the application 4D client at all. Se
backtrace.
The application is in the AppDB if there are missing instructions about how to
make it run.
--
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=13947
Summary: "Because it's fun, Fay": No focus on start, Alt-F4
doesn't work, etc
Product: Wine
Version: 1.0-rc4
Platform: PC-x86-64
URL: http://forums.tigsource.com/index.php?topic=1664.0
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: trick(a)icculus.org
This game has some issues:
http://forums.tigsource.com/index.php?topic=1664.0http://www.oxeye.se/files/stuff/BIFF.zip
* The game starts in fullscreen mode, but doesn't get focus on start. In stead
Wine resizes the desktop (also demonstrating bug #13946, still KDE 3.5.9) and
pops up the "fullscreen window" behind the currently active window. You have
to click in the wine window to enter "true" fullscreen.
* Alt-F4 doesn't work. This is the only way of quitting the game once you're
past the menu. (It works fine in native Windows.)
--
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=27584
Summary: MFC fillrect draws differently under wine
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bailey937(a)yahoo.com
Created an attachment (id=35259)
--> (http://bugs.winehq.org/attachment.cgi?id=35259)
sample program for reproducing FillRect bug
I have a program that uses CPaintDC.FillRect() to draw histogram samples.
It draws one-pixel wide vertical rectangles.
Under wine, the bottom-most pixel is not drawn.
I'm attaching a sample program. Under Windows7 (have 64bit pro), the red line
is touching the black baseline and the black line on the right is touching the
baseline also.
When I run the program under wine, both the red vertical line on the left and
the black vertical line on the right are floating one pixel above the baseline.
I tried both 32bit Ubuntu 11.04 (wine 1.2.2) on a netbook and also Fedora 15
64bit (wine 1.3.21) under Virtualbox on my Windows machine. Both have the same
problem.
The relevant code for the test case is in
CChildView::OnPaint() in ChildView.cpp
--
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=25139
Summary: Microsoft Flight Simulator X demo displays first-run
license agreement dialog under splash screen
Product: Wine
Version: 1.3.7
Platform: x86
URL: http://www.microsoft.com/games/flightsimulatorx/downlo
ads.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
When launching the Flight Simulator X demo for the first time, the game shows a
splash screen and displays a first-run end-user license agreement dialog for
the user to accept. However, the dialog appears under the splash screen, which
entirely covers the window and prevents the user from accepting the license
agreement. The window manager in use is metacity 2.30.1, and launching Flight
Simulator X in a virtual desktop or moving the license agreement dialog through
the window manager suffices as a workaround.
--
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=26171
Summary: wine fails to install BVRP classic phone tools
Product: Wine
Version: 1.3.14
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
Created an attachment (id=33350)
--> (http://bugs.winehq.org/attachment.cgi?id=33350)
backtrace
I try to install the BVRP classic phone tools (
http://www.avanquest.com/USA/software/classic-phonetools-9-27401 ) - use trial
version to cross-check - to manage a USR 56K Message modem
axel@southpole:/daten/linux/USRobotics/DEU> wine setup.exe
wine: created the configuration directory '/home/axel/.wine'
fixme:system:SetProcessDPIAware stub!
fixme:iphlpapi:NotifyAddrChange (Handle 0x90fe914, overlapped 0x90fe918): stub
wine: configuration in '/home/axel/.wine' has been updated.
fixme:storage:create_storagefile Storage share mode not implemented.
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
fixme:shell:IShellLinkA_fnGetPath (0x13198e8): WIN32_FIND_DATA is not yet
filled.
fixme:shell:IShellLinkA_fnGetPath (0x13198e8): WIN32_FIND_DATA is not yet
filled.
fixme:shell:IShellLinkA_fnGetPath (0x13184a8): WIN32_FIND_DATA is not yet
filled.
fixme:shell:IShellLinkA_fnGetPath (0x13184a8): WIN32_FIND_DATA is not yet
filled.
fixme:mixer:ALSA_MixerInit No master control found on HDA ATI HDMI, disabling
mixer
fixme:spoolsv:service_handler got service ctrl 4
-- at this point in the the installation asks for the C:\windows\Driver
Cache\I386\ files. I redirect to the installation disk, and wine scans
winsys32.cab.
Afterwards the error message 'AddPrintProcessor: No enough buffer' is issued in
a pop-up box
When then starting the application, the assistant for device configuration is
startet, and shows com1-com8
I see tons of messages:
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:winspool:OpenPrinterW PRINTER_DEFAULTS ignored => L"RAW",(nil),0x000f000c
fixme:winspool:AddPrintProcessorA
((null),(null),"WfxPrint2000.dll","WfxPrint2000"): stub
fixme:spoolsv:service_handler got service ctrl 4
fixme:rpc:handle_bind_error unexpected status value 1765
fixme:spoolsv:service_handler got service ctrl 4
fixme:shell:IShellLinkA_fnGetPath (0x13f9df0): WIN32_FIND_DATA is not yet
filled.
fixme:shell:IShellLinkA_fnGetPath (0x13f9df0): WIN32_FIND_DATA is not yet
filled.
axel@southpole:/daten/linux/USRobotics/DEU> fixme:win:AnimateWindow partial
stub
fixme:tapi:lineInitialize (0x33f83c, 0x820000, 0x83c200, (null), 0x33f880):
stub.
fixme:tapi:lineInitialize (0x33e83c, 0x820000, 0x83c200, (null), 0x33e880):
stub.
fixme:tapi:lineInitialize (0x33dff8, 0x820000, 0x83c200, (null), 0x33e03c):
stub.
fixme:tapi:lineInitialize (0x845948, 0x820000, 0x83c200, (null), 0x84598c):
stub.
fixme:setupapi:SetupDiLoadClassIcon : stub
{4d36e978-e325-11ce-bfc1-08002be10318}, (nil), 0x33d468
fixme:setupapi:SetupDiLoadClassIcon : stub
{4d36e978-e325-11ce-bfc1-08002be10318}, (nil), 0x33d468
fixme:setupapi:SetupDiLoadClassIcon : stub
{4d36e978-e325-11ce-bfc1-08002be10318}, (nil), 0x33d468
fixme:setupapi:SetupDiLoadClassIcon : stub
{4d36e978-e325-11ce-bfc1-08002be10318}, (nil), 0x33d468
fixme:comm:set_queue_size insize 16384 outsize 16384 unimplemented stub
fixme:setupapi:SetupDiLoadClassIcon : stub
{4d36e978-e325-11ce-bfc1-08002be10318}, (nil), 0x33b044
(etc)
When starting the application manually, it tries to access the modem installed
under /dev/ttyS0 as com1, which fails.
axel@southpole:~/.wine> dir /dev/ttyS0
crw-rw---- 1 root dialout 4, 64 19. Feb 17:35 /dev/ttyS0
If I install without hardware check, and select the hardware manually from the
list, an error message
c:\windows\inf\mdmgen.inf not found
If I contineu with the installation, phonetools.exe crashes - see backtrace.
Any Idea what I could do to make the programm see the modem
--
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=12458
Summary: MySQL Workbench 5 aborts with NotImplementedException
ITextDocument.Range(Int32 cp1, Int32 cp2)
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://dev.mysql.com/downloads/workbench/5.0.html
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://www.bytebot.net/blog/archives/2007/11/27/workbench-beta-adventure-on…
complained that MySQLWorkbench didn't work on Wine, so I gave it a whirl.
On an empty .wine directory, it complained that it needed .net 2.
With 'winetricks dotnet20', it complained
"The operating system is not adequate for running MySQL Workbench 5.0 OSS"
(it requires WinNT version 502, and we're at 500).
With 'winetricks dotnet20 vista', it installed. Running failed early with
Unhandled Exception: System.NotImplementedException: The method or operation is
not implemented.
at System.Windows.Forms.UnsafeNativeMethods.ITextDocument.Range(Int32 cp1,
Int32 cp2)
at System.Windows.Forms.TextBoxBase.ScrollToCaret()
at MySQL.GUI.Shell.GrtPromptForm.ScrollToBottom()
at MySQL.GUI.Shell.GrtPromptForm.PrintText(String text)
at MySQL.GUI.Shell.GrtShellForm.PrintShellOutput(String text)
With "winetricks dotnet20 riched20 vista", it worked much better;
there was a fatal error dialog without much info, but if you ignore it,
the interface comes up and seems to work.
(Though all I really tried was Help.)
So my main complaint is our riched20 doesn't support com text services.
[Oddly, if Tahoma is installed (e.g. winetricks tahoma), it crashes hard
and early with
Unhandled Exception: System.ArgumentException: Parameter is not valid.
at System.Drawing.Font.GetHeight(Graphics graphics)
at System.Drawing.Font.get_SizeInPoints()
at System.Drawing.SystemFonts.FontInPoints(Font font)
at System.Drawing.SystemFonts.get_MenuFont()
but that's another bug, maybe.]
--
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=25496
Summary: Fotowall: Crash at Test GL
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: lukasz.wojnilowicz(a)gmail.com
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) wine Fotowall 0.9 WinXP Vista 7.exe
4) press "SETUP" in right upper corner and then press "Test GL"
Behaviour:
Application crashes.
Expected behaviour:
Application shouldn't crash.
--
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=25834
Summary: Adobe Reader X cannot open in Protected Mode
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq.crackjack(a)spamgourmet.com
Adobe Reader Protected Mode does not function, this error appears when starting
AcroRd32.exe
It's a minor issue as you can continue without it.
the log file is very short, so I'm not attaching it:
fixme:process:SetProcessDEPPolicy (1): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:CreateRestrictedToken (0x90, 0x2, 3, 0xb08238, 19, 0xb08408, 3,
0xb07fc8, 0x32f04c): stub
--
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=22797
Summary: BoxedApp sample apps fail on Wine
Product: Wine
Version: 1.1.44
Platform: x86
URL: http://www.boxedapp.com/boxedappsdk/download.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
BoxedApp is an SDK used by some debugging tools (dxprof in particular)
to hook function calls and emulate filesystem operations.
(It's a bit like Thinstall, which does work with Wine, thanks to Ge's efforts.)
I tried their four sample apps.
Sample1_DLLEmbeddsamples crashing.exe crashes after you click the 'call
function' button;
evidently the LoadLibrary hooking didn't work.
Samples 2 and 3 crash faster. Sample 4 seems to run (but might not do exactly
what it should).
I'll attach a +relay,+seh log of sample 1 running.
It seems to use mpr.dll as part of its magic.
--
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=22808
Summary: Selected rows in WinRar flicker while selecting by
dragging rectangle
Product: Wine
Version: 1.1.43
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Steps to reproduce: open an archive with several files using WinRar, then try
to select some files using mouse selection rectangle (dunno how this mechanism
is named). The rows already selected flicker when mouse is moved.
--
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=17073
Summary: Star Trek Generations fails to display
Product: Wine
Version: 1.1.13
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Rincebrain(a)gmail.com
On attempting to run Star Trek: Generations in Wine, I receive the following
output, the cursor renders correctly, and an [almost] black screen (the top ~80
pixels of the screen display something non-black, in fullscreen mode - in
windowed mode, nothing is visible) (see linked screenshot):
$ wine sgens.exe
fixme:ddraw:VGA_ioport_in Unsupported index, VGA crt controller register
0x3b4/0x3d4: 0x0f
fixme:ddraw:VGA_ioport_out Unsupported index, VGA crt controller register
0x3b4/0x3d4: 0x0f (value 0x2a)
fixme:ddraw:VGA_ioport_in Unsupported index, VGA crt controller register
0x3b4/0x3d4: 0x0f
fixme:ddraw:VGA_ioport_out Unsupported index, VGA crt controller register
0x3b4/0x3d4: 0x0f (value 0xff)
fixme:d3d:IWineD3DImpl_FillGLCaps OpenGL implementation supports 32 vertex
samplers and 32 total samplers
fixme:d3d:IWineD3DImpl_FillGLCaps Expected vertex samplers + MAX_TEXTURES(=8) >
combined_samplers
fixme:win:EnumDisplayDevicesW ((null),0,0x32f3c8,0x00000000), stub!
fixme:ddraw:IDirectDrawImpl_WaitForVerticalBlank (0x13d780)->(1,(nil)): Stub
fixme:ddraw:IDirectDrawImpl_GetScanLine (0x13d780)->(0x32f980): Semi-Stub
fixme:x11drv:X11DRV_desktop_SetCurrentMode Cannot change screen BPP from 32 to
8
err:d3d:IWineD3DDeviceImpl_SetupFullscreenWindow (0x1440f0): Want to change the
window parameters of HWND 0x20034, but another style is stored for restoration
afterwards
err:d3d:IWineD3DDeviceImpl_SetupFullscreenWindow (0x1440f0): Want to change the
window parameters of HWND 0x20034, but another style is stored for restoration
afterwards
fixme:x11drv:X11DRV_desktop_SetCurrentMode Cannot change screen BPP from 32 to
16
err:d3d:IWineD3DDeviceImpl_SetupFullscreenWindow (0x1440f0): Want to change the
window parameters of HWND 0x20034, but another style is stored for restoration
afterwards
err:d3d:IWineD3DDeviceImpl_SetupFullscreenWindow (0x1440f0): Want to change the
window parameters of HWND 0x20034, but another style is stored for restoration
afterwards
err:d3d:IWineD3DDeviceImpl_SetupFullscreenWindow (0x1440f0): Want to change the
window parameters of HWND 0x20034, but another style is stored for restoration
afterwards
Tested with wine-1.1.12-777-g6d0a0fb and wine-1.1.12-829-g0b8faac.
Must be run with Windows 95/98/ME - game requires Win95 or above, and running
with Win2K or above results in a crash (which I'm filing).
--
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=26803
Summary: file open dialog: slow when selecting many files
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pa78(a)gmx.net
The bug:
The more files I select in the file open diaolg the longer it takes until the
files are actually selected and I can click the open button.
This bug is not about the load time of the program but the time the files get
selected in the file open dialog.
Hints to reproduce:
Selecting one file in the dialog window happen instantly.
Pressing shift and selecting 3 files also is very fast.
Pressing shift and selecting 10 files takes up to 1 second.
Pressing shift and selecting 30 files already takes 10 seconds.
Pressing shift and selecting 50 files already takes 40 seconds.
Pressing shift and selecting 100 files already takes 270 seconds (equals 4:30
min).
As you can see times are raising nearly exponential.
In Windows/Gnome/Kde/... it doesn't matter how many files are
selected/deselected. It takes always the same time.
Additional notes:
My cpu is a 3 year old dualcore 1.86 ghz. If you can't reproduce this times
because your machine is much faster just select more files because time is
raising nearly exponential.
This is an old bug (probably pre wine 1.0) and still (wine 1.3.17) very
annoying to me because sometimes I have to open a few hundret files. I think
this was never implemented well. Just so far that it is possible to open one or
a few 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.