http://bugs.winehq.org/show_bug.cgi?id=17739
Summary: Cannot start IMatch again after exiting for a while
Product: Wine
Version: 1.1.6
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris(a)juengling-edv.de
Created an attachment (id=19955)
--> (http://bugs.winehq.org/attachment.cgi?id=19955)
Message - Another Copy of IMatch is currently running
When I've been running IMatch (see
http://appdb.winehq.org/objectManager.php?sClass=version&iId=15969 for more)
and then exited it by the menu command "Database -> Exit", I cannot start
IMatch again for about 100 seconds. Instead of starting it displays the
attached error message.
Running IMatch in a VirtualBox with Windows 2000 Professional in it, the start
is possible immediately after exiting.
--
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=15804
Summary: .NET 2.0 application "Culture name 'ga-ie' is not
supported."
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: slach(a)74mail.ru
Created an attachment (id=16930)
--> (http://bugs.winehq.org/attachment.cgi?id=16930)
ListCulture.cs listing all available culture lists
in ticket #10467
http://bugs.winehq.org/show_bug.cgi?id=10467#c66
i have .NET 2.0 exception for 'esperanto' CultureInfo retrieving
atfer some discussion in abbdb with Anastasius Focht
and see patch
http://www.winehq.org/pipermail/wine-cvs/2008-June/044429.html
i upgdate my wine to 1.1.5
but have same Exception with another culture name 'ga-ie' (Irish)
Unhandled Exception: System.ArgumentException: Culture name 'ga-ie' is not
supported.
at System.Globalization.CultureTableRecord.GetCultureTableRecord(String
name, Boolean useUserOverride)
see backtrace and testing .NET 2.0 application ListingCulture.cs in attachments
--
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=24843
Summary: Explorer++ doesn't show text in the right-click menu
for toolbars
Product: Wine
Version: 1.3.5
Platform: x86-64
URL: http://www.explorerplusplus.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31431)
--> (http://bugs.winehq.org/attachment.cgi?id=31431)
Screenshots with builtin and native comctl32
Right-clicking on one of the upper toolbars (other than the tab bar), such as
the drive bar, produces a menu where individual toolbars can be enabled or
disabled and the toolbars can be locked or customized. In Wine, the text that
goes with these options is missing, and the menu only shows a checkmark or
blank space for each option. They still function as expected, though.
Workaround: native comctl32 (must be version 6 to avoid a crash on startup).
--
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=24326
Summary: Everquest 2 Extended crashes in DSOUND_PrimaryOpen
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
On my PC, I booted into Windows, installed EQ2, booted into Ubuntu 10.04,
and then did
rm -rf .wine
sh winetricks gecko
sudo mkdir /media/win
sudo mount -o ro /dev/sda1 /media/win
cd ~/.wine/drive_c
mkdir ProgramData
cp -a "/media/win/ProgramData/Sony Online Entertainment" ProgramData
cd "ProgramData/Sony Online Entertainment/Installed Games/EverQuest II
Extended"
wine EverQuest2.exe
This crashed fairly quickly with
Unhandled exception: page fault on read access to 0xb515e5d0 in 32-bit code
(0xb515e5d0).
Backtrace:
=>0 0xb515e5d0
1 SetFormat+0x3a7(This=0x1fcac0, pwfx=<?>) [dlls/winealsa.drv/dsoutput.c:235]
2 SetFormat+0x3a7(This=0xb55babf9, pwfx=<?>)
[dlls/winealsa.drv/dsoutput.c:235]
3 IDsDriverImpl_CreateSoundBuffer+0x192(iface=0x1fcaa8, pwfx=0x1fca38,
dwFlags=<?>, dwCardAddress=0, pdwcbBufferSize=0x1fc91c, ppbBuffer=0x1fc914,
ppvObj=0x1fc910) [dlls/winealsa.drv/dsoutput.c:886]
4 DSOUND_PrimaryOpen+0xa8(device=0x1fc658) [dlls/dsound/primary.c:167]
5 DSOUND_PrimaryCreate+0x3a(device=0x1fc658) [dlls/dsound/primary.c:325]
6 DirectSoundDevice_Initialize+0x744(ppDevice=0x1fc624, lpcGUID=<?>)
[dlls/dsound/dsound.c:1473]
Happily, commenting out line 235 in dsoutput.c worked around the crash
and let the game play:
--- a/dlls/winealsa.drv/dsoutput.c
+++ b/dlls/winealsa.drv/dsoutput.c
@@ -232,7 +232,7 @@ static int DSDB_CreateMMAP(IDsDriverBufferImpl* pdbi)
snd_pcm_sw_params_set_start_threshold(pcm, sw_params, 0);
snd_pcm_sw_params_get_boundary(sw_params, &boundary);
snd_pcm_sw_params_set_stop_threshold(pcm, sw_params, boundary);
- snd_pcm_sw_params_set_silence_threshold(pcm, sw_params, boundary);
+ //snd_pcm_sw_params_set_silence_threshold(pcm, sw_params, boundary);
snd_pcm_sw_params_set_silence_size(pcm, sw_params, 0);
snd_pcm_sw_params_set_avail_min(pcm, sw_params, 0);
err = snd_pcm_sw_params(pcm, sw_params);
--
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=18252
Summary: Error writing file in UnReal World installer
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonni(a)lehtiranta.net
Installation of urw-3.11c.exe (available at
http://www.jmp.fi/~smaarane/urw.html) fails with "Error opening file for
writing".
Installer starts through wine. I click through info screens, destination folder
selection, start menu folder, and press install button. I get:
http://imagebin.ca/view/4JN0rxi.html . There's one line of output:
"fixme:shell:SHAutoComplete SHAutoComplete stub". Nothing is written under
~/.wine/
arethusa on #winehq confirmed this happens for him too. He also gave the
following
0019:Call KERNEL32.CreateFileA(004093b0 "C:\\Program
Files\\UnRealWorld\\urw.exe",40000000,00000001,00000000,00000002,00000000,00000000)
ret=004055ec
0019:trace:file:CreateFileW L"C:\\Program Files\\UnRealWorld\\urw.exe"
GENERIC_WRITE FILE_SHARE_READ creation 2 attributes 0x0
and a note: "it looks to me like it doesn't pass anything for
dwFlagsAndAttributes".
--
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=23565
Summary: FXCM : MOVEFILE_WRITE_THROUGH unimplemented and
WIN32_FIND_DATA is not yet filled
Product: Wine
Version: 1.2-rc4
Platform: x86
URL: http://www.fxcm.co.uk/forex-software-download.jsp
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yleny(a)laposte.net
Created an attachment (id=29448)
--> (http://bugs.winehq.org/attachment.cgi?id=29448)
FXCM FX Trading Station install log
I have downloaded the FXCM FX Trading Station (Forex client) at
http://download.fxcorporate.com/FXCM/FXTS2InstallFra.EXE
and when I launch the FXCM FX Trading Station installer,
the installer does not work.
I add install log as an attachment.
--
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=20060
Summary: PDFPrint Pro fails to install
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://www.fineprint.com/release/pdf351pro.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Noticed a user write in
http://talkback.zdnet.com/5208-12554-0.html?forumID=1&threadID=69179&messag…
that "I don't have access to some software anymore. Most notably PDF Factory
pro (in my opinion one of the best pieces of software ever written) and tax
software. So I maintain a dual boot XP for when I need to do some heavy lifting
PDF-ing, or tax filing."
So I downloaded PDFFactory Pro and tried installing it.
pdf351pro.exe, sha1sum e9baefc05c5242347291ae7ad2627904d151eb57,
is freely downloadable from the vendor. When you run it,
it complains
fixme:localspl:validate_envW unsupported Environment: L"Windows IA64"
...
001c:Call user32.MessageBoxA(00020048,0033f104 "This version of pdfFactory Pro
is for Windows NT4/2000/XP/2003/Vista.\n\nYou can download other versions of
pdfFactory Pro at www.pdffactory.com.",0033f074 "pdfFactory Pro",00010010)
ret=2800cfe7
You can unpack the installer with rar. It contains a Readme.txt
that mentions that the 32 and 64 bit installers were combined
into a single downloadable just four days ago, so maybe there are
some bugs left. It also contains setup.exe and setup-x64.exe.
Running setup.exe reproduces the problem with a shorter 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=17393
Summary: MansionPoker: Closing an open poker table makes the
application crash with a runtime error
Product: Wine
Version: 1.1.15
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emilio.moretti(a)gmail.com
Created an attachment (id=19456)
--> (http://bugs.winehq.org/attachment.cgi?id=19456)
Console output after crash
Exiting the program or closing a poker table closes the whole program with a
runtime error.
See attachment for details
--
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=30196
Bug #: 30196
Summary: Battlezone animation video's cause game not to load
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maquis196(a)yahoo.co.uk
Classification: Unclassified
In battlezone you have a few animations that are pre-rendered avi videos. They
reside in a folder called anims. Now if this folder is renamed/deleted then the
game loads fine, and you can play as normal.
This animations are only used around the main menu and pre-mission screen.
Attached is the +all log of trying to load the game with the anim folder
present.
Will attach one of the anims in next comment.
--
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=18746
Summary: Starting Everquest 2 in any resolution other than
1024x768 causes a crash
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kai(a)stg24.at
Created an attachment (id=21495)
--> (http://bugs.winehq.org/attachment.cgi?id=21495)
console output of wine with backtrace
whenever i try to change the resolution in everquest 2 to anything different
than 1024x768 wine crashes on game launch. if i run in windowed mode and try
resizing the window the game hangs or crashes too.
error message mentions a page fault on read access.
will add the output of wine with backtrace
--
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.