http://bugs.winehq.org/show_bug.cgi?id=5057
Summary: Core fonts don't install if they're found on the host
Product: Wine
Version: CVS
Platform: PC
URL: http://ovh.dl.sourceforge.net/sourceforge/abiword/abiwor
d-setup-2.0.8.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tkho(a)ucla.edu
If the MS core fonts exist on your host system (eg via the msttcorefonts deb),
the MS core fonts executables successfully run in Windows, but don't actually
place any fonts in the C:\Windows\Fonts directory.
This is a problem because less desirable fonts in that directory may take
precedence. Perhaps tt fonts on the host system should have the same precedence
as those in the windows font directory.
Background:
A fresh install of AbiWord 2.0.8 causes the menubar to be rendered in Dingbats
font, even though there is a full set of ms core fonts recognized by fontconfig.
Manually installing the core fonts (via the installer) claims to succeed, but
does not actually copy files into C:\Windows\Fonts, probably because they are
already on the host system.
The only way I could manage to successfully install the core fonts in Wine was
to remove them from the host first, after which the menus in AbiWord rendered fine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5056
------- Additional Comments From nospam(a)thenerdshow.com 2006-12-04 14:10 -------
When played under the wine desktop mode the errors are more intuitive. The
semi-stub in Main_DirectDraw_GetScanLine might be a clue.
Comments: (from MSDN)
"The returned scan line value in dwScanLine must be greater than or equal to 0
and less than N..."
Could it be trying to set LPRECT to the value returned by the getscanline
semi-stub? Anyway, more testing is needed. Will submit a trace on this when I
get time.
fixme:vxd:VXD_Open Unknown/unsupported VxD L"sysaudio.vxd". Try setting Windows
version to 'nt40' or 'win31'.
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x1006e608)->(0x20048,00000011)
fixme:ddraw:Main_DirectDraw_GetMonitorFrequency (0x1006e608)->(0x1025fc8c)
returns 60 Hz always
fixme:ddraw:Main_DirectDraw_GetScanLine (0x1006e608)->(0x1025fd50) semi-stub
err:ddraw:Main_DirectDrawSurface_Lock Invalid values in LPRECT !!!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3762
tkho(a)ucla.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tkho(a)ucla.edu
------- Additional Comments From tkho(a)ucla.edu 2006-12-04 14:00 -------
The font behavior turns out to be a problem with Abiword 2.0.8 for Windows
(http://ovh.dl.sourceforge.net/sourceforge/abiword/abiword-setup-2.0.8.exe). The
installer places the Dingbats font in windows\fonts (making it the only ttf),
and Wine chooses Dingbats instead of the other fonts (X11 fonts and TrueType
fonts outside the ~/.wine directory) installed on the system.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5056
Summary: [ddraw/dsurface/main.c] LPRECT parameters for
Main_DirectDrawSurface_Lock
Product: Wine
Version: 0.9.11.
Platform: Other
URL: http://www.winehq.com/hypermail/wine-
devel/2005/02/0363.html
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nospam(a)thenerdshow.com
"the game tries to lock a surface with width and/or height
equal to zero.the game tries to lock a surface with width and/or height
equal to zero."
I've re-produced this bug by installing "Feeding Frenzy 2" from Pop Cap Games today.
err:ddraw:Main_DirectDrawSurface_Lock Invalid values in LPRECT !!!
err:ddraw:Main_DirectDrawSurface_Lock Invalid values in LPRECT !!!
The patch:
--- dlls/ddraw/dsurface/main.c 2005-01-09 18:35:44.000000000 +0100
+++ dlls/ddraw/dsurface/main.c 2005-02-14 21:03:36.511738080 +0100
@@ -1111,8 +1111,8 @@
(prect->left < 0) ||
(prect->bottom < 0) ||
(prect->right < 0) ||
- (prect->left >= prect->right) ||
- (prect->top >= prect->bottom) ||
+ (prect->left > prect->right) ||
+ (prect->top > prect->bottom) ||
(prect->left >= This->surface_desc.dwWidth) ||
(prect->right > This->surface_desc.dwWidth) ||
(prect->top >= This->surface_desc.dwHeight) ||
reportedly works around the problem, but is not a solution. Your mission,
should you choose to accept it, is to find an actual solution, instead of this
crude workaround.
This quote, from the mailing list url (above):
"This patch won't be applied.
The things to do is to write a test case and run it under Windows.
Once the exact behaviour is determined, a proper fix can be written.
Also note that the data in LPRECT may has been corrupted at some point.
The problem is thus elsewhere.
Bye,
Christian"
Any help with writing a test case would be appreciated. Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5046
------- Additional Comments From parsonsl(a)upstate.edu 2006-12-04 13:15 -------
We have been working on some bugs regarding running 16bit applications in wine
under FreeBSD.
Bug #4541 contains a patch that fixes problems with 16bit applications in wine
up to and including version 0.9.6.
Bug #5008 is related to the more recent problems, particularly for any version
of wine from 01-26-2006 or newer. It seems that some code related to "tape.c"
needs to be resolved in order to proceed with this bug shooting.
I suspect that this bug may be a duplicate of bug #5008
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4685
tkho(a)ucla.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2054 is|0 |1
obsolete| |
------- Additional Comments From tkho(a)ucla.edu 2006-12-04 11:00 -------
Created an attachment (id=2273)
--> (http://bugs.winehq.org/attachment.cgi?id=2273&action=view)
patch to properly handle
patch to properly handle VK_LMENU input (take 3)
rejected when I tried to post to wine-patches...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4948
the3dfxdude(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2260 is|0 |1
obsolete| |
------- Additional Comments From the3dfxdude(a)gmail.com 2006-12-04 10:00 -------
(From update of attachment 2260)
obsolete
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4897
pgr(a)arcelectronicsinc.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-12-04 09:34 -------
After the folloing commit my application works.
server: Don't attach thread input to the desktop.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5055
Summary: If you Right Click delete files then the are files lost
forever!!
Product: Wine
Version: 0.9.11.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)jnmedia.net
Hi when you are using a windows app in wine and you goto the open menu or save
menu etc, if you right click on a file to rename etc and accidently click delete
or even if you click delete on purpose but then regret it, the files you delete
just get deleted and not sent to the linux trash bin. and i can't find a windows
recycle bin they are going to either.
i lost some important files due to this in photoshop.
thanks,
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.