https://bugs.winehq.org/show_bug.cgi?id=35781
Bug ID: 35781
Summary: kernel32/pipe test fails
Product: Wine
Version: 1.7.14
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Created attachment 47776
--> https://bugs.winehq.org/attachment.cgi?id=47776
WINEDEBUG=relay,seh,tid,process,sync
Looking at test.winehq.org, this fails on every linux/wine platform:
pipe.c:1853: Test failed: WaitForSingleObject returned 102
pipe.c:1855: Test failed: completion routine not called
--
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=33990
Bug #: 33990
Summary: MSVC 2013 std::mutex crashes
Product: Wine
Version: 1.6-rc4
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris(a)kode54.net
Classification: Unclassified
Created attachment 45165
--> http://bugs.winehq.org/attachment.cgi?id=45165
Source code which, when compiled with MSVC 2012 or 2013 with v*_xp SDK,
crashes.
A simple program using std::mutex, compiled with MSVC 2012 or 2013, crashes
wine on execution. I have attached the source code.
--
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=34716
Bug #: 34716
Summary: HippoAnimator3: Invalid name at installation startup
Product: Wine
Version: 1.7.4
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
Classification: Unclassified
Created attachment 46286
--> http://bugs.winehq.org/attachment.cgi?id=46286
WINEDEBUG=+relay,+seh,+tid on Wine 1.7.4
Steps to reproduce:
1) remove ~/.wine
2) wine HippoAnimator3.exe
Behaviour:
Error message with "Invalid name" text.
Expected behaviour:
No error message.
--
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=33897
Bug #: 33897
Summary: TeamView Cannot Move or Resize Remote Linux
Application Window
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rranc1st(a)hotmail.com
Classification: Unclassified
TeamViewer loses control of remote TeamViewer when you attempt to move or
resize an application window on remote Linux PC.
Same problem if Microsoft XP PC Teamviewer controls a Linux Installed
Teamviewer.
TeamViewer DOES NOT have this problem when Linux Teamviewer PC controls the
TeamViewer installed on Windows XP PC.
If someone is at the remote controlled Linux TeamViewer, you can have them
click their mouse so you get control back, otherwise your dead in the water.
Applies to UBUNTU and SLACKO Linux versions. TeamViewer DEB used on UBUNTU
came directly from TeamViewer Site.
Slackware TAR version also from TeamViewer Site.
BOTH VERSIONS ACT THE SAME.
--
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=33672
Bug #: 33672
Summary: Wine Internet Explorer unable to login to
http://cctvcamerapros.vmddns.com/
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: proent1992(a)comcast.net
Classification: Unclassified
Using Wine internet Explorer to log in to http://cctvcamerapros.vmddns.com/
will not render login. CCT Camera Pro is a company the sells security DVR's
that use Java VM to log in (must install Oracle Java) the site comes up but log
in dose not appear. To test login is guest and password is guest.
--
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=35369
Bug ID: 35369
Summary: differences between ./dlls/shlwapi/wsprintf.c and
./dlls/user32/wsprintf.c
Product: Wine
Version: 1.7.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shlwapi
Assignee: wine-bugs(a)winehq.org
Reporter: wine13.10.hackie(a)spamgourmet.com
Classification: Unclassified
I was looking for an implementation of wsprintf, then I saw the comments in
these files:
dlls/shlwapi/wsprintf.c:
* This code is duplicated in user32. If you change something here make sure
* to change it in user32 too.
dlls/user32/wsprintf.c:
* This code is duplicated in shlwapi. If you change something here make sure
* to change it in shlwapi too.
This didn't always seem to happen in the past, as you can see in the diff:
--- ./dlls/shlwapi/wsprintf.c 2014-01-03 20:00:47.000000000 +0100
+++ ./dlls/user32/wsprintf.c 2014-01-03 20:00:47.000000000 +0100
(only the most remarkable changes:)
(see the data types UINT vs INT)
-INT WINAPI wvnsprintfA( LPSTR buffer, INT maxlen, LPCSTR spec, __ms_va_list
args )
+static INT wvsnprintfA( LPSTR buffer, UINT maxlen, LPCSTR spec, __ms_va_list
args )
- CHAR number[20];
+ CHAR number[21]; /* 64bit number can be 18446744073709551616 which is 20
chars. and a \0 */
Last one might possibly be the reason for some instabilities, depends where the
function is used. It's possibly a good idea to try to use the share the same
file on both places - and to look for more similar problems...
--
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=23560
Summary: Text missing and/or background not rendered in Peril
at End House
Product: Wine
Version: 1.2-rc6
Platform: x86
URL: http://www.egames.com/game/download/agatha+christie+pe
ril+at+end+house.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
This bug applies to the game "Agatha Christie: Peril at End House". A
time-limited version can be downloaded from
http://www.egames.com/game/download/agatha+christie+peril+at+end+house.html
After installing you'll need to do "winetricks ie6" prior to running it.
Much text rendering is incorrect; see the attached screenshots. Text is either
missing or the background is not rendered (leaving the previous background
visible). There doesn't seem to be any relevant console output. I tested with
Xubuntu 9.10, Nvidia driver 256.35.
--
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=23370
Summary: OpenBOR and many other application crashed.
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: zombie(a)terralab.com
OpenBOR, an application that has worked consistantly since Wine 0.9.40, crashes
with this error:
wine: Unhandled page fault on write access to 0x0043649d at address 0x7ef8451e
(thread 0009), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7ef8451e
This is the only error I get from it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36594
Bug ID: 36594
Summary: valgrind shows uninitialized memory use in
windowscodecs/tests/metadata.c
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==24667== Conditional jump or move depends on uninitialised value(s)
==24667== at 0x4CD4D17: winetest_vok (test.h:333)
==24667== by 0x4CD4E23: winetest_ok (test.h:357)
==24667== by 0x4CBCD5A: compare_metadata (metadata.c:613)
==24667== by 0x4CBD126: test_metadata_IFD (metadata.c:694)
==24667== by 0x4CC3D9B: func_metadata (metadata.c:1784)
==24667== by 0x4CD57DA: run_test (test.h:584)
==24667== by 0x4CD5BC9: main (test.h:654)
==24667== Uninitialised value was created by a client request
==24667== at 0x7BC4C4D6: mark_block_uninitialized (heap.c:209)
==24667== by 0x7BC4C641: initialize_block (heap.c:240)
==24667== by 0x7BC50F4D: RtlAllocateHeap (heap.c:1717)
==24667== by 0x4E5A55F: LoadIfdMetadata (metadatahandler.c:1129)
==24667== by 0x4E580FE: MetadataHandler_LoadEx (metadatahandler.c:424)
==24667== by 0x4CB9EE9: load_stream (wincodecsdk.h:1817)
==24667== by 0x4CBD05B: test_metadata_IFD (metadata.c:688)
==24667== by 0x4CC3D9B: func_metadata (metadata.c:1784)
==24667== by 0x4CD57DA: run_test (test.h:584)
==24667== by 0x4CD5BC9: main (test.h:654)
==24667==
--
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=36005
Bug ID: 36005
Summary: windowscodecs/metadata tests fail with
WINEDEBUG=warn+heap
Product: Wine
Version: 1.7.16
Hardware: x86
URL: https://test.winehq.org/data/7e874aed75765f3c017673178
cfd64301b7ba3ed/linux_ae-fedora64-heap/wininet:http.ht
ml
OS: Linux
Status: NEW
Keywords: download, testcase
Severity: normal
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
rm *ok ; WINEDEBUG=warn+heap make metadata.ok
../../../tools/runtest -q -P wine -T ../../.. -M windowscodecs.dll -p
windowscodecs_test.exe.so metadata && touch metadata.ok
metadata.c:613: Test failed: 0: expected value 0x1/0 got 0x55550001/0x55555555
metadata.c:613: Test failed: 1: expected value 0xde/0 got 0xde/0x55555555
metadata.c:613: Test failed: 2: expected value 0x14d/0 got 0x14d/0x55555555
metadata.c:613: Test failed: 3: expected value 0x18/0 got 0x55550018/0x55555555
metadata.c:613: Test failed: 4: expected value 0x8005/0 got 0x8005/0x55555555
metadata.c:613: Test failed: 6: expected value 0x44/0 got 0x55555544/0x55555555
metadata.c:613: Test failed: 8: expected value 0x44/0 got 0x55555544/0x55555555
metadata.c:613: Test failed: 9: expected value 0x3344/0 got
0x55553344/0x55555555
metadata.c:613: Test failed: 11: expected value 0x11223344/0 got
0x11223344/0x55555555
metadata.c:613: Test failed: 12: expected value 0x11223344/0 got
0x11223344/0x55555555
metadata.c:613: Test failed: 23: expected value 0x44/0 got
0x55555544/0x55555555
metadata.c:613: Test failed: 24: expected value 0x3344/0 got
0x55553344/0x55555555
metadata.c:613: Test failed: 25: expected value 0x11223344/0 got
0x11223344/0x55555555
metadata.c:613: Test failed: 26: expected value 0x11223344/0 got
0x11223344/0x55555555
metadata.c:613: Test failed: 0: expected value 0x1/0 got 0x55550001/0x55555555
metadata.c:613: Test failed: 1: expected value 0xde/0 got 0xde/0x55555555
metadata.c:613: Test failed: 2: expected value 0x14d/0 got 0x14d/0x55555555
metadata.c:613: Test failed: 3: expected value 0x18/0 got 0x55550018/0x55555555
metadata.c:613: Test failed: 4: expected value 0x8005/0 got 0x8005/0x55555555
metadata.c:613: Test failed: 6: expected value 0x44/0 got 0x55555544/0x55555555
metadata.c:613: Test failed: 8: expected value 0x44/0 got 0x55555544/0x55555555
metadata.c:613: Test failed: 9: expected value 0x3344/0 got
0x55553344/0x55555555
metadata.c:613: Test failed: 11: expected value 0x11223344/0 got
0x11223344/0x55555555
metadata.c:613: Test failed: 12: expected value 0x11223344/0 got
0x11223344/0x55555555
metadata.c:613: Test failed: 23: expected value 0x44/0 got
0x55555544/0x55555555
metadata.c:613: Test failed: 24: expected value 0x3344/0 got
0x55553344/0x55555555
metadata.c:613: Test failed: 25: expected value 0x11223344/0 got
0x11223344/0x55555555
metadata.c:613: Test failed: 26: expected value 0x11223344/0 got
0x11223344/0x55555555
--
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=35429
Bug ID: 35429
Summary: Naver LINE crashes when you close a window
Product: Wine
Version: 1.7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: p91paul(a)gmail.com
Classification: Unclassified
Created attachment 47282
--> http://bugs.winehq.org/attachment.cgi?id=47282
Terminal output from LINE
Every time you close a window in Naver LINE 3.4.0.21, the program crashes,
asking you to send a crash report (I've sent it, probably developers can see
it, don't know how to link it with this bug)
After crash, windows different from the one I closed remains opened but
unresponsive, and I need to kill Line.exe process. Tray icon disappears
immediately on crash.
Terminal output attached
--
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=36090
Bug ID: 36090
Summary: Outside ground textures in WildStar Online are
corrupted
Product: Wine
Version: 1.7.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wintertanz(a)gmail.com
Created attachment 48278
--> http://bugs.winehq.org/attachment.cgi?id=48278
Corrupted ground textures in the open world
In outside areas, ground textures in WildStar are skewed all over the place,
and the edges of the landscape polygons are clearly drawn, complete with
shadows. Although it is mostly just a cosmetic issue, it makes following a path
or road nearly impossible without glancing at the minimap.
Textures on the ground inside buildings, caves, spaceships etc. are rendered
correctly.
Tested with some older wine versions (down to 1.7.1) as well. No difference.
Playing around with the graphics settings did not change anything, either.
I was unable to find any hint of Windows users experiencing the same bug, so I
am reporting it against wine.
Setup:
Arch Linux 64 Bit
Phenom II X4 955 BE
Nvidia Geforce 760 GTX (with proprietary driver, 337.12)
Wine 1.7.17 with a clean 32 Bit prefix (with only the DLL overrides required
for the game and the launcher to work).
--
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=33409
Bug #: 33409
Summary: ntdll: Unhandled exception
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eugene_knyshev(a)mail.ru
Classification: Unclassified
Created attachment 44203
--> http://bugs.winehq.org/attachment.cgi?id=44203
Backtrace
Mentor graphics ExpeditionPCB EE7.9 path 4
Application load normally include open dialog, but after any action crashed.
Bug observed also in wine 1.4
--
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=14367
Summary: revise stack-frame relay code never to touch other side
of stack pointer
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jreiser(a)BitWagon.com
Created an attachment (id=14664)
--> (http://bugs.winehq.org/attachment.cgi?id=14664)
always avoid memory on wrong side of stack pointer
The code which relays stack frames from one calling sequence to another can be
written never to touch memory that lies on the undefined side of the current
stack pointer. Even though in normal cases there may be no danger in
referencing below the stack pointer (because of precautions with alternate
signal stack, etc.), it is more robust to avoid this. Debuggers (both code and
human) and other tools may be unaware of the special precautions, or may find
it impossible to comply.
Patch is attached, and will be sent to wine-patches(a)winehq.org.
--
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=29450
Bug #: 29450
Summary: fixme:gdiplus:Gdip<...> graphics object has no HDC
Product: Wine
Version: 1.2.3
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: annacegu(a)yahoo.com.au
Classification: Unclassified
After trying to resolve the following problem, it was suggested that I open up
a ticket:
http://forum.winehq.org/viewtopic.php?p=70785
Essentially, there are GDI+ objects that are not displaying correctly, whereas
they appear correctly in windows. A forum member has been getting the following
error messages of the form below when trying to run the executable:
fixme:gdiplus:Gdip<...> graphics object has no HDC
The executable was created using Delphi 2010. It can be found through the
following link:
https://trac.macports.org/ticket/32640
where try2.exe is a demo program, and IMG...png is how it appears on 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=26167
Summary: Crash in open file dialog when dragging folder upon
file
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: adys.wh(a)gmail.com
Created an attachment (id=33342)
--> (http://bugs.winehq.org/attachment.cgi?id=33342)
Backtrace
Steps to reproduce:
* $ wine notepad
* File->Open or Ctrl+O
* Drag a folder upon a file
Attached 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.
http://bugs.winehq.org/show_bug.cgi?id=16039
Summary: configure does not support detection of (n)cursesw
Product: Wine
Version: 1.1.8
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael(a)liebenowstudios.com
Created an attachment (id=17264)
--> (http://bugs.winehq.org/attachment.cgi?id=17264)
Proposed fix for configure script - not well tested
Some systems only provide wide character versions of the curses libraries.
This is the default on LFS and a few others. The built in AC macros are
correctly detecting the curses header files but the WINE_CHECK_SONAME macro
misses the actual libs.
On my system I fixed configure.ac the behavoir as shown in the attached diff
and then ran autoconf
I don't know if this is clean or would break detection of non-wide libraries.
The error stating that curses functionality will be disabled is no longer in my
configure logs but I don't know if I actually have curses support now.
--
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=27050
Summary: Audiosurf - mouse does not work properly
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: turbolad995(a)hotmail.co.uk
If you open Steam in Wine and try playing Audiosurf, you will find the mouse
does not work or you can only click on an option when the mouse is away from
the option, rather than hovering on top of it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24103
Summary: MYOB: won't print report
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugzilla(a)lager.freeserve.co.uk
Using MYOB 6.05c PCW GB on AMD64 with debian lenny 64-bit:
mostly works as expected except that all reports are blank and the program
freezes when clicking on"print".
Attachment is record on console when starting MYOB from prompt with:
env WINEPREFIX="/home/boss/.wine" wine "c:\MYOB6\MYOB.EXE" "j:\accounts.dat"
NB: j: = /home/userid
--
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=12717
Summary: Europa Universalis III: Borders drawn corrupted
Product: Wine
Version: 0.9.59.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cja(a)gmx.net
The borders of the countries and provices are corrupt. I have attached a wine
screenshot and a windows screenshot so you can see the differences.
--
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=34310
Bug #: 34310
Summary: Exiting Backyard soccer 2004 leaves only a small
portion of screen usable
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dpobanz(a)gmail.com
Classification: Unclassified
After exiting "Backyard soccer 2004", the mouse is restricted to the upper left
hand of the screen. (Ubuntu 13.04, Unity interface) (Wine 1.7.0-114-g73aef40)
When started, the game goes full screen. In the Backyard Soccer Readme.txt file
are a couple of paragraphs that may apply:
VIDEO CARD CAPABILITY
Backyard Soccer 2004 must be played on a video card capable of 640x480 screen
resolution at a bit depth setting of 16 bits. The card and sofware drivers must
be DirectX 5.0 (or higher) compatible. ...
DISPLAY SETTINGS
The game will launch and lock your resolution to 640x480 with a bit depth of 16
bits.
--
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=30212
Bug #: 30212
Summary: Multiple apps need Scripting.Directory implementation
(Microsoft Scripting Runtime)
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
(Like bug 29344, but different class.)
The apps Polymath, Amos, FAA Safelog, Touhou Koumajou ~ Scarlet Symphony, and
various autoit scripts from bug 22199, all abort after complaining
err:ole:create_server class {ee09b103-97e0-11cf-978f-00a02463e06f} not
registered
The friendly name for that CLSID is Scripting.Dictionary.
It seems to be a popular way to do associative arrays in VB, see
http://www.windowsitpro.com/article/vbscript/the-scripting-dictionary-makes…
--
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=17403
Summary: Uru - Ages Beyond Myst + Expansion Packs: Decompressing
sounds produces faulty output
Product: Wine
Version: 1.1.15
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diafero(a)arcor.de
This is a problem with Uru - Ages Beyond Myst with the expansion packs To D'ni
and The Path of the Shell. This game saves all the sounds in ogg format, but
most of them are decompressed to one or two wav files (sometimes mono/joined
stereo, sometimes one for the left and one for the right speaker). These wav
files will then be used in game. The decompressing is done by a dedicated app
called "SoundDecompress.exe" which is called by the installer after
installation finished. This app generally works fine in wine, it decompresses
the right ogg files to the right wav files, and the wav files can be played by
aplay or kaffeine. However, the game itself is unable to use the wav files, I
hear nothing in game. If I use the files which were created by running
SoundDecompress on Windows, everything works fine, so I think the fault occurs
while running the decompress, but I wouldn't know how to check that. The files
created on Windows are bigger than the ones which were created on 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=24545
Summary: Monkey Island: Special Edition wants X3DAudio1_6.dll
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
By default, it installs directx and dotnet35 (!) even though it doesn't use it.
If you kill those two (e.g., in the Direct2Drive installer, just remove the
DirectX folder and dotnetfxsetup.exe), the installer will happily skip them
with little harm.
When you to to start the game, however, it will complain that it can't find
X3DAudio1_6.dll. I've seen a few apps with similar complaints, but the only bug
mentioning it is bug 16648, and that's got a few issues mixed together.
So, this bug is for x3daudio?_? missing in wine and breaking Monkey Island.
(workaround is winetricks xact).
--
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=26784
Summary: Icebreakers does not start
Product: Wine
Version: 1.3.17
Platform: x86
URL: http://www.gamefront.com/files/20223317/Icebreakers_De
mo.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
First it complains about not meeting the minimum vram required of 128 then it
gives a warning of it will be not be able to continue.
Direct X 9.0x <unknown>
3D Device <unknown>
128 MB VRam <present>
Shader Model 2 <unknown>
The launcher then pops up with no screen resolutions and you cannot launch the
games as it crashes with the usual program error.
Graphics card: GeForce 6600GT
fixme:wincodecs:JpegDecoder_Frame_GetResolution (0x134a04,0x33e2a4,0x33e29c):
stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33dde0,0x00000000), stub!
fixme:d3d:swapchain_init Add OpenGL context recreation support to
context_validate_onscreen_formats
No 3d caps: No such file or directory
>From the terminal of any interests.
--
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=36868
Bug ID: 36868
Summary: Builtin browser can't submit HTML <form>
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Created attachment 48964
--> http://bugs.winehq.org/attachment.cgi?id=48964
+mshtml,+tid.txt
0. wine iexplorer http://lzbtesthustoj1000.u.qiniudn.com/htmlform.html
1. Click 'Submit'
2. Nothing happens
winetricks ie7 workarounds it
I'll keep working on it
--
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=33781
Bug #: 33781
Summary: Installation of CSC Show Control software/Run Time
Error '429'
Product: Wine
Version: 1.4.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lxsparks(a)hotmail.com
Classification: Unclassified
Created attachment 44747
--> http://bugs.winehq.org/attachment.cgi?id=44747
Trace log
Installation of CSC Show Control software goes fine.
Running application results in the error:
"Run time error '429'
ActiveX Component can't create object"
I have tried running it under different windows profiles.
--
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=35463
Bug ID: 35463
Summary: shell32/tests shlfileop : would fail depending on
locale settings
Product: Wine
Version: 1.7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Classification: Unclassified
run 'make test' in dlls/shell32/tests
And I got
--
shlfileop.c:2236: Test failed: Could not find unique multibyte representation
for directory name using default codepage
--
Change $LANG to [zh_CN | zh_HK | zh_TW | ja_JP].utf8 would cause this problem.
Change $LANG to en_US.utf8 would workaround it.
If change $LANG to other encoadings, more problems would appear, like zh_CN.gbk
--
shlfileop.c:2236: Test failed: Could not find unique multibyte representation
for directory name using default codepage
shlfileop.c:2353: Test failed: The file does not exist
shlfileop.c:2355: Test failed: File is not removed, ErrorCode: 3
shlfileop.c:94: Test failed: Failure to open file
shlfileop.c:2361: Test failed: The file does not exist
shlfileop.c:2363: Test failed: File is not removed, ErrorCode: 3
shlfileop.c:2374: Test failed: SHCreateDirectoryExW returned 2
shlfileop.c:2375: Test failed: The directory is not created
shlfileop.c:2378: Test failed: Directory is not removed, ErrorCode: 3
shlfileop.c:2383: Test failed: SHCreateDirectoryExW returned 2
shlfileop.c:2384: Test failed: The directory was not created
shlfileop.c:2387: Test failed: Directory is not removed, ErrorCode: 3
--
--
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=32865
Bug #: 32865
Summary: MS Access/text/csv/excel ODBC driver error
Product: Wine
Version: 1.5.22
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: odbc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sathishkumarnadu(a)gmail.com
Classification: Unclassified
When trying to import files(excel/access/csv/txt) using ODBC I get two errors
- "Specified driver could not be loaded due system error 126". when trying to
import files with .xlsx and .accdb
- [Microsoft][ODBC Driver Manager] Data source name not found and no default
driver specified.
After following all the steps specified here:
http://wiki.winehq.org/NativeOdbc, I still get the same errors.
Please find the screenshots attached of the error messages.
As a work around I copied the following from a Windows XP machine to the wine
system32 folder.
odbccp32.dll, odbc32.dll, odbcint.dll, odbcad32.exe ,odbccr32.dll,
odbccu32.dll, odbccp32.cpl
In winecfg under "libraries" tab and added the following dll files to be used
as native.
odbccp32.dll, odbc32.dll, odbcint.dll
Exported Registry HKLM\Software\ODBC from Windows XP machine and imported in
Wine registry.
After this I was able to import .xls,.csv,.txt files but again still unable to
import .xlsx/.accdb files.
Have attached the error messages I get:
I have asked in your forums: http://forum.winehq.org/viewtopic.php?f=2&t=17755
and was told by the moderator to file a bug report.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33931
Bug #: 33931
Summary: Steam is broken when installed on a "Local hard disk"
type drive
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gediminas(a)varciai.lt
Classification: Unclassified
Created attachment 45070
--> http://bugs.winehq.org/attachment.cgi?id=45070
Part of terminal output
After installing Steam on a drive that is set to be "Local hard disk"[1], many
of its games fail to complete installation, along with other issues.
With this, many games[2] on steam start suffering from an issue nearly
identical to bug #20910
Also, this appears to be the underlying cause of bugs #32894 and #32895
How to reproduce:
1. Make a new wine prefix.
2. Add a new drive
3. Select the new drive and set its type to "Local hard disk"
4. Install Steam on the said drive
5. Install any of the listed games[2]
6. Run the game and it fails to start due to a problem nearly identical to Bug
#20910
Attaching only the part of terminal output which is present in with this bug
triggered, but doesn't appear on "working" steam. Everything else is identical.
What's interesting - setting the drive type back to "autodetect" and then
completely reinstalling steam doesn't make it work - the "new" Steam
installation has the same issues nonetheless. As if the prefix itself gets
incurably tainted. Thus, triggering this issue requires a new prefix to solve.
[1] winecfg => Drives => Show Advanced => Type => set to "Local hard disk"
[2] Games confirmed by me to get affected: Serious Sam HD: The Second
Encounter; Counter Strike: Global Offensive; Left 4 Dead 2; Though it seems all
the Source engine games are affected.
Note #1: Serious Sam HD: The Second Encounter DEMO can also be used to trigger.
Note #2: If someone would give me a hint where to start, I'd try to fix this
myself.
--
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=23795
Summary: text is chopped in AllData app
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: falserunes(a)gmail.com
Created an attachment (id=29837)
--> (http://bugs.winehq.org/attachment.cgi?id=29837)
screenshot of my problem
text displayed in interactive fields is vertically chopped, making it hard to
read however not impossible.
--
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=35283
Bug ID: 35283
Summary: wine became terrible unresponsible during IO
operation
Product: Wine
Version: 1.7.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikhail.v.gavrilov(a)gmail.com
Classification: Unclassified
$ wine --version
wine-1.7.8
wine became terrible unresponsible during IO operation
For example on video when Massive VST begin scan folder with persets FL Studio
became stuttering :(
Demonstration:
https://drive.google.com/file/d/0B0nwzlfiB4aQZVNCM0V0Zy0wV0U/edit?usp=shari…
--
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=26444
Summary: quicken v4 hangs after committing transaction in
register
Product: Wine
Version: 1.2.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rogersedgewick(a)rocketmail.com
Created an attachment (id=33665)
--> (http://bugs.winehq.org/attachment.cgi?id=33665)
winedebug output
Program appears to load normally and works fine apart from this rather fatal
glitch
note: new data is written to disk.
winedebug output attached
ubuntu 10.10
default wine cfg
directory structure copied from win xp pro install with addition of QCTL3D.DLL
from \window\system directory
--
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=30341
Bug #: 30341
Summary: Windows not properly maximized
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralfjung-e(a)gmx.de
Classification: Unclassified
Created attachment 39660
--> http://bugs.winehq.org/attachment.cgi?id=39660
A screenshot showing the problem this bug is about: You can see parts of the
panel shining though while the window should be maximized
I am using KDE 4.7 as desktop environment, and I set up the plasma panel to
stay below windows. I also configured KWin to remove the title bar from
maximized window. This way, no precious space is wasted on my 15 inch (laptop)
screen for title bar and panel which I rarely look at, and the whole space can
be sued by the application for whatever I am actually doing right now.
However, wine can not properly cope with this configuration: Maximizing a wine
window leaves a space of 15 pixel below the window where I can see other
windows behind it (see attached screenshot). Since maximizing is working fine
for non-KDE apps like Firefox. I tried regedit and a Windows application I
wrote myself, both showed the same behaviour. This leads me to the assumption
that this is not a bug in KWin or some Windows application, but in wine itself.
--
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=34790
Bug #: 34790
Summary: Window state (maximize, etc.) is not synchronized
correctly between Wine and Window Manager
Product: Wine
Version: 1.7.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: medasaro(a)comcast.net
Classification: Unclassified
When an undecorated (or skinned) window is maximized from the Linux task bar,
the unmaximize button on the window title bar does not work.
Steps to reproduce:
1) Open winecfg and deselect the 'Allow the window manager to decorate the
windows' option in the 'Graphics' tab.
2) Close winecfg.
3) Open notepad
4) Maximize the notepad window by right-clicking on its icon in the Linux task
bar and selecting 'Maximize'
5) Try to unmaximize the Notepad window with the button in its titlebar. The
window will remain maximized.
--
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=32899
Bug #: 32899
Summary: Batman: Arkham Asylum (non-steam) Demo - missing text
in launcher
Product: Wine
Version: 1.5.23
Platform: x86
URL: http://www.geforce.com/games-applications/pc-games/bat
man-arkham-asylum/downloads
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 43449
--> http://bugs.winehq.org/attachment.cgi?id=43449
+wbemprox+wmiutils
Attached log with wbemprox, wmiutils and screenshot.
--
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=28178
Summary: Language Bar drop-down menu (ctfmon.exe) is covered by
a wrong shadow
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Created an attachment (id=36102)
--> (http://bugs.winehq.org/attachment.cgi?id=36102)
Screenshot: Language Bar
1. Download instMSTSF.exe (Services Framework Redist files) from
http://www.microsoft.com/download/en/details.aspx?DisplayLang=en&id=11759 (
Thanks for Saulius K. mention this in Bug 28125 )
extract instMSTSF.exe then get a mstsf10.exe
2. set Windows version to "win2k"(or the installer will not install), install
mstsf10.exe
$ wine mstsf10.exe
3. override native msctf.dll, avoid Bug 28125
4. Download MSPY2010.exe from http://www.microsoft.com/china/pinyin/
Set back Windows version to "winxp"(or another installer will not install) ,
then install MSPY2010.exe
(notes: ctfmon.exe is shipped with MSPY2010.exe)
$ wine MSPY2010.exe
5. Start the Input Method Language Bar:
$ wine ctfmon.exe
click on the button "CH", then there will be a drop down menu. However, the
menu is covered by a wrong shadow, one can hardly change the option in the
menu.
Screenshot is 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=28806
Bug #: 28806
Summary: File/Import/All Programs causes a crash
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gigaday(a)googlemail.com
Classification: Unclassified
Created attachment 37003
--> http://bugs.winehq.org/attachment.cgi?id=37003
screenshot of crash when launched from terminal prompt
Attempting to Import a .syx file causes Wine to crash.
Two screeshots 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=31993
Bug #: 31993
Summary: Netflix on Firefox hangs with loading bar at 100%
Product: Wine
Version: 1.5.15
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Depends on: 31858
Classification: Unclassified
After working around Bug #31858 Netflix still cannot load movies. The player
now just barely loads the movie (blanks the screen) and the first second of the
movie is heard, but after that the player just hangs. It's possible that the
issue is that "streaming" data is not yet unsupported (this can be seen at
http://web.sldrm.video.msn.com/d1/sldrm.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=34333
Bug #: 34333
Summary: Hebrew glyphs are not displayed in Viber
Product: Wine
Version: 1.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sh.yaron(a)gmail.com
Classification: Unclassified
Created attachment 45700
--> http://bugs.winehq.org/attachment.cgi?id=45700
The original chat in Viber on Android
Can't send and receive Hebrew text using Viber.
--
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=29123
Bug #: 29123
Summary: iexplore: failed to login icbc onine bank
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
$ wine --version
wine-1.3.32-369-gd351e02
Hacked dlls/mshtml/persist.c to force use_gecko_script=FALSE
/* Jacek, should I file separate bug for it ? */
1. Download
http://www.icbc.com.cn/icbc/html/download/dkq/icbc_netbank_client_controls.…
2. $ winetricks -q mfc42
3. $ wine icbc_netbank_client_controls.exe
4. open icbc website with wine iexplore:
$ WINEDEBUG=+jscript wine iexplore
'https://mybank.icbc.com.cn/icbc/newenperbank/main/login.jsp?injectTranName=…'
5. type in a 17 digit username, such as 6222023601234567890
type in a password, at least 4 digit
type in the verify code
6. submit
Expect result:
submit the form to icbc website, if the username or the password is incorrect,
then there will be a error page display; if the username and the password is
correct, then login to ICBC online bank.
Actual result:
nothing happens
+jscript trace 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=26880
Summary: menubuilder fails to extract icon for SimCity 3000
Unlimited's Scenario Creator
Product: Wine
Version: 1.3.18
Platform: x86-64
OS/Version: Linux
Status: NEW
Keywords: integration
Severity: trivial
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=34272)
--> (http://bugs.winehq.org/attachment.cgi?id=34272)
Wine 1.3.18 +menubuilder
menubuilder fails to extract icon for SimCity 3000 Unlimited's Scenario Creator
trace:menubuilder:extract_icon path=[L"C:\\Program Files\\Maxis\\SimCity 3000
Unlimited\\Apps\\ScenarioCreator\\SimCity Scenario Creator.ico"] index=0
destFilename=[(null)]
warn:menubuilder:open_module_icon LoadLibraryExW (L"C:\\Program
Files\\Maxis\\SimCity 3000 Unlimited\\Apps\\ScenarioCreator\\SimCity Scenario
Creator.ico") failed, error 193
warn:menubuilder:read_ico_direntries Invalid ico file format (hr=0x00000000,
bytesRead=6)
warn:menubuilder:extract_icon writing icon failed, error 0x80004005
err:menubuilder:InvokeShellLinker failed to extract icon from L"C:\\Program
Files\\Maxis\\SimCity 3000 Unlimited\\Apps\\ScenarioCreator\\SimCity Scenario
Creator.ico"
eog has no problem reading the file.
$file SimCity\ Scenario\ Creator.ico
SimCity Scenario Creator.ico: PC bitmap, Windows 3.x format, 32 x 32 x 8
--
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=33041
Bug #: 33041
Summary: An error in Join.Me
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pozilaneminipurple(a)hotmail.com
Classification: Unclassified
Created attachment 43676
--> http://bugs.winehq.org/attachment.cgi?id=43676
Black screen
I found a bug
I downloaded the Join.me but when I share it the screen goes black with the
orange side
--
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=26301
Summary: Application Nebenkosten "easy" 4.0 fails to print
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: inetorders.achim(a)v.roznowski.net
When using the menu "Abrechnung drucken" (print invoice), the print dialog
opens ok and one has to choose to print either with or without letterhead.
Upon selecting either option, the program attempts to print by calling
Drucken.exe (translates to print.exe) and then crashes.
--
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=23720
Summary: using AWN window navigator Wine icons do not have the
ability to "right click add as launcher"
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jameslinton(a)hotmail.com
When using AWN window navigator with Linux applications to add a program
permanently (not just while running) to the awn "dock" one would open the linux
app, then once open right clicking the application icon on the dock and
selecting "add as launcher" However, when running programs under wine
selecting the programs icon on the awn dock and "right clicking" does not give
the option to "add as launcher"
--
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=35593
Bug ID: 35593
Summary: NBA 2K13: Crashes when I continue to accept offer on
Player Contract Extension
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adromil(a)yahoo.com
Classification: Unclassified
Created attachment 47535
--> http://bugs.winehq.org/attachment.cgi?id=47535
This back trace appears every time Wine crashes
Wine crashes when I'm trying to Accept the Player Contract Extension on the
Talk to the GM module. Every time I retry the same issue happen.
Please see attached file for the back trace.
--
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=34578
Bug #: 34578
Summary: ViewNX2 crash
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aldosaverio(a)gmail.com
Classification: Unclassified
Created attachment 46033
--> http://bugs.winehq.org/attachment.cgi?id=46033
crash
ViewNX2 crash
crash immediately after little work.
--
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=33220
Bug #: 33220
Summary: Cannot run PC Stitch 9
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: phantomflasher(a)gmail.com
Classification: Unclassified
Created attachment 43944
--> http://bugs.winehq.org/attachment.cgi?id=43944
backtrace from error message
PC Stitch 9 installed with no unfixable problems. When I try to run it, it
opens the 'Check for updates' screen fine. When I try to proceed to running the
actual software, it hits a program error. Backtrace is 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=33204
Bug #: 33204
Summary: KSP: Screen will black out and freeze with no error
message
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: raddyroro(a)gmail.com
Classification: Unclassified
So, I'm playing KSP, And randomly (this might have to do with overloading
because it happens more when I am pressing a button of sorts but my computer is
very powerful and could handle that) The screen will just turn black, no
response, and I have to quit out of WINE and reload the game. I am running the
game with virtual desktop on because fullscreen will clip off the bottom so I
can't see some of the controls.
I am running Ubuntu 12.10
Nvidia Geforce GT 520M 1GB ram
8GB computer ram
500GB hard drive?
wine version 1.5.25
I installed the fonts and all the winetricks which does not seem to be the
problem.
This is major due to the fact that I have to save every 30 seconds or else I
will lose everything and I also have to keep reloading the game when it freezes
up
--
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=29134
Bug #: 29134
Summary: Excel2007 Zoom with charts: Not enough system
resources to display completely
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: craigjohansen(a)gmail.com
Classification: Unclassified
Created attachment 37555
--> http://bugs.winehq.org/attachment.cgi?id=37555
Error using wine excel.exe &> log.txt
Wine Version: Wine-1.3.31
Wine Application: Excel from Microsoft Office 2007 Home and Student Edition
Operating System: Ubuntu 10.04 64bit
I installed Wine and Winetricks from Synaptic Package Manager
I had to override riched20.dll in WineConfig to get Powerpoint to work.
Steps to Reproduce Error:
cd ~/.wine/drive_c/Program Files/Microsoft Office/Office12
wine excel.exe
After excel opens I create a simple graph of two rows of numbers. I select
"Chart Tools" and pick a style to label the chart. Then I zoom out below 73%. I
get the error, "Not enough system resources to display completely". If I do not
use "Chart Tools", I can zoom out indefinitely without the error.
A screen shot of the error is at:
http://www5.picturepush.com/photo/a/7001948/img/7001948.jpg
A discussion of this error is at: http://forum.winehq.org/viewtopic.php?t=14151
User "dimesio" from that discussion was also able to reproduce the 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.