ChangeSet ID: 8570
CVSROOT: /home/winehq/opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/06/23 15:51:06
Modified files:
objects : text.c font.c
include : gdi.h
dlls/gdi : freetype.c
Log message:
Huw Davies <huw(a)codeweavers.com>
Don't enable client side fonts unless we have at least one non-symbol
font installed - this avoids a nasty Wingdings only scenario.
Add the ability to perform font replacements, this essentially lets
you give a second name to a font family so that familyA gets
enumerated as familyB too.
If we encounter two copies of the same font then use the one with the
larger version number.
Dmitry Timoshkov <dmitry(a)codeweavers.com>
Move GetTextCharsetInfo implementation to the font driver.
Patch: http://cvs.winehq.com/patch.py?root=/home/winehq/opt/cvs-commit&id=8570
Old revision New revision Changes Path
1.51 1.52 +0 -55 wine/objects/text.c
1.99 1.100 +30 -0 wine/objects/font.c
1.79 1.80 +1 -0 wine/include/gdi.h
1.32 1.33 +223 -64 wine/dlls/gdi/freetype.c
ChangeSet ID: 8567
CVSROOT: /home/winehq/opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/06/23 14:57:59
Modified files:
dlls/x11drv : keyboard.c
Log message:
Dmitry Timoshkov <dmitry(a)codeweavers.com>
Along with AltGr state save also all possible modifier states.
Patch: http://cvs.winehq.com/patch.py?root=/home/winehq/opt/cvs-commit&id=8567
Old revision New revision Changes Path
1.24 1.25 +2 -1 wine/dlls/x11drv/keyboard.c
ChangeSet ID: 8566
CVSROOT: /home/winehq/opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/06/23 14:57:08
Modified files:
dlls/wineps : type42.c psdrv.h ps.c escape.c download.c
Log message:
Huw Davies <huw(a)codeweavers.com>
For PostScript versions < 2.015 we need to explicitly allocate space
for the 'glyf' array.
To conserve VM, we only allow up to two fonts to be downloaded before
reclaiming their VM.
Patch: http://cvs.winehq.com/patch.py?root=/home/winehq/opt/cvs-commit&id=8566
Old revision New revision Changes Path
1.3 1.4 +89 -69 wine/dlls/wineps/type42.c
1.39 1.40 +1 -1 wine/dlls/wineps/psdrv.h
1.17 1.18 +2 -1 wine/dlls/wineps/ps.c
1.19 1.20 +1 -1 wine/dlls/wineps/escape.c
1.4 1.5 +38 -1 wine/dlls/wineps/download.c
ChangeSet ID: 8565
CVSROOT: /home/winehq/opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/06/23 14:52:55
Modified files:
dlls/winspool : info.c
Log message:
Huw Davies <huw(a)codeweavers.com>
It seems cupsGetDefault returns the system default printer and ignores
a user's override. So use cupsGetDests instead which does respect the
user's choice.
Delete all automatically generated printer keys on startup before
querying the cups server.
Patch: http://cvs.winehq.com/patch.py?root=/home/winehq/opt/cvs-commit&id=8565
Old revision New revision Changes Path
1.78 1.79 +59 -59 wine/dlls/winspool/info.c