http://bugs.winehq.org/show_bug.cgi?id=35331
Bug ID: 35331
Summary: Ellipse drawing problem using GM_ADVANCED graphics
mode
Product: Wine
Version: 1.7.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: ralf.habacker(a)freenet.de
Classification: Unclassified
Painting Ellipses in GM_ADVANCED graphicsmode and using dc rotation set with
SetWorldTranform fails.
Instead of painting a rotated ellipse a still unrotated ellipse is drawn. The
dc rotation only effects the height of the ellipse.
--
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=34115
Bug #: 34115
Summary: rotated FillRect problem
Product: Wine
Version: 1.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralf.habacker(a)freenet.de
Classification: Unclassified
Created attachment 45361
--> http://bugs.winehq.org/attachment.cgi?id=45361
testcase source
A filled rectangle drawing with gdi function FillRect() is not drawn correctly
when using dc rotation set with SetWorldTransform.
--
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=27594
Summary: Indiana Jones and the emperor's tomb crashes
Product: Wine
Version: 1.3.23
Platform: x86
URL: http://www.jeuxvideo.com/telecharger/jeux-et-demos/000
05589-indiana-jones-et-le-tombeau-de-l-empereur-pc.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
CC: julliard(a)winehq.org
Indiana Jones and the tomb of emperor crash. It is a regression caused by
commit a8d8e4a3679d7b81466e1e010add25948bd11c8a
THe attached console output is in 2 parts since it is 1.8M after compressed.
--
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=38309
Bug ID: 38309
Summary: Rufus theme broken, does not see files or USB devices
(or anything), crashes upon use - Fatal Error.
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeff.mount420(a)gmail.com
Distribution: ---
Created attachment 51148
--> https://bugs.winehq.org/attachment.cgi?id=51148
WINE backtrace log
Linux Mint 17 64 Cinnamon
I tried both versions repeatedly.
WINE Version: 1:1.7.38-0ubuntu1
WINE Version: 1:1.6.2
These are fresh installs, with Rufus being my only use for WINE. Before these
installs, I tested WINE with a few other Apps and most seemed to work properly.
I then removed and purged WINE and Rufus before each install.
I tried the last three versions of Rufus. All would load, but with theme
glitches and lack of USB and directory/folder/file presence, the latter being
caused by the theme glitch or lack of connectivity. When an active button is
used to search for a file, a fatal error message comes up, then it closes.
I have attached the report.
I am only a low-intermediate Linux compiler, so I am not sure of the exact
problem, but I did notice sel=0067 (32-bit) ends at 0 (null).
I am not sure what to do with this...
Thanks
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15359
Summary: wcmd: msysgit does not work
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kirr(a)landau.phys.spbu.ru
I'm trying to use msysgit from here
http://msysgit.googlecode.com/files/Git-1.6.0.2-preview20080921.exe
it installs just fine, but git itself does not run:
Z:\home\kirr\tmp\trashme\msysgit>git
fixme:cmd:WCMD_for /F needs to handle options
Syntax error
File not found
it seems it wants that /F to be implemented.
Thanks beforehand.
--
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=16734
Summary: get_ptrace_tid defined but not used on OpenBSD
Product: Wine
Version: 1.1.12
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: trivial
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
ccache gcc -c -I. -I. -I../include -I../include -D__WINESRC__ -Wall -pipe
-fno-strict-aliasing -Wwrite-strings -Wpointer-arith -I/usr/local/include -g
-O2 -o ptrace.o ptrace.c
ptrace.c:174: warning: `get_ptrace_tid' defined but not used
There's an '#ifdef linux' on the same code a few lines earlier (in
get_ptrace_tid), which fixes compile here as well:
diff --git a/server/ptrace.c b/server/ptrace.c
index b446de9..92b7db5 100644
--- a/server/ptrace.c
+++ b/server/ptrace.c
@@ -172,7 +172,9 @@ static int get_ptrace_pid( struct thread *thread )
/* return the Unix tid to use in ptrace calls for a given thread */
static int get_ptrace_tid( struct thread *thread )
{
+#ifdef linux
if (thread->unix_tid != -1) return thread->unix_tid;
+#endif
return thread->unix_pid;
}
but I'm not sure if that's right or not. Comments welcome.
--
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=33408
Bug #: 33408
Summary: CAJViewer 7.2 needs MDAC while installing
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
0. download and type $wine 'CAJViewer 7.2.self.exe'
1. just click Next
2. Before the installation finished, the installer reportered that MDAC 2.8 is
needed, but I closed that dialog, and the installation finished successfully.
3. I don't know if it has more influnce than an annoying dialog.
winetricks mdac28 to workaround it.
By the way, this bug doesn't block bug 33404
--
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=30222
Bug #: 30222
Summary: Symantec VIP Access can not be activated - take 2
Product: Wine
Version: 1.5.0
Platform: Other
URL: http://www.symantec.com/products/trialware.jsp?pcid=pc
at_info_risk_comp&pvid=vip_1
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winhttp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
Classification: Unclassified
As a follow-up to bug #29891 , after installing Symantec VIP Access the user is
required to accept a license agreement and activate the program. The activation
is unsuccesful and therefore the program can not be used.
Please note that the 'activation' does not refer to copy protection mechanisms,
but rather to connecting to a server using HTTP and obtaining an initial unique
credential ID.
--
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=33190
Bug #: 33190
Summary: Font display problem using text and dc rotation
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralf.habacker(a)freenet.de
Classification: Unclassified
We recognized an gdi text display issue using the application Gausz
http://appdb.winehq.org/objectManager.php?sClass=application&iId=13649.
The problem appears when gdi text is drawn with font rotation *and* display
context rotation.
The problem do not appear when either font rotation or display context rotation
is zero.
The application uses CreateIndirectFont to set a fixed size font with optional
set rotation and draws the text with TextOut(). The display context rotation
has been set with SetWorldTransform().
We tried to find a test case application, but where not able to reproduce the
problem outside the application. We also tried to debug into wine's code based,
but got lost by the 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=30919
Bug #: 30919
Summary: [.net 2.0] ListBox items should not display any
newline characters
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danieleds0(a)gmail.com
Classification: Unclassified
Created attachment 40550
--> http://bugs.winehq.org/attachment.cgi?id=40550
Expected behavior vs actual behavior
In a .net application, if you add an item to a ListBox, newline characters are
shown (in windows, they're hidden). Look at the attached image to see the
differences.
This is the code used to reproduce the problem (VB.NET):
ListBox1.Items.Add("aaa" & "|" & vbNewLine & "bbb" & "|" & vbNewLine & "ccc")
I suspect this problem is not limited to .net, but maybe is at some lower
level.
--
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.