summaryrefslogtreecommitdiff
path: root/fonts.conf.in
Commit message (Collapse)AuthorAgeFilesLines
* Add the ruleset description supportAkira TAGOH2017-11-071-0/+5
| | | | | | | | | | | | | | | Trying to address what these configuration files really do. This change allows to see the short description that mention the purpose of the content in the config file and obtain them through API. This change also encourage one who want to make some UI for the user-specific configuration management. it is the main purpose of this change for me though. Aside from that, I've also made programs translatable. so we see more dependencies on the build time for gettext, and itstool to generate PO from xml.
* Hardcode the blanks in the libraryAkira TAGOH2015-02-271-68/+0
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=79956
* Update blanks to Unicode 7.0Behdad Esfahbod2014-06-181-0/+4
|
* Update list of blanks to Unicode 6.3.0Behdad Esfahbod2014-06-171-11/+9
| | | | | | Some were bogus, some were missing. See: https://bugs.freedesktop.org/show_bug.cgi?id=79956
* Bug 20411 - fontconfig doesn't match FreeDesktop directories specsAkira TAGOH2012-05-181-0/+4
| | | | | | | | Allows reading configuration files, fonts and cache files from the directories where the XDG Base Directory Specification defines. the old directories are still in the configuration files for the backward compatibility.
* fonts.conf: keeps same binding for alternativesAkira TAGOH2012-05-101-3/+3
| | | | | Since the binding is affected to the score, the replacement should have same binding to avoid the unexpected estimation.
* Bug 29341 - Make some fontconfig paths configurableAkira TAGOH2012-04-051-1/+1
| | | | | | | | | | | | | Add configure options to set the directory to be installed: --with-templatedir for the configuration files a.k.a. /etc/fonts/conf.avail --with-baseconfigdir for fonts.conf etc a.k.a. /etc/fonts --with-configdir for the active configuration files a.k.a. /etc/fonts/conf.d --with-xmldir for fonts.dtd etc and the default path for templatedir is changed to ${datadir}/fontconfig/conf.avail
* Add BRAILLE PATTERN BLANK to list of blank glyphs.Keith Packard2007-10-241-0/+1
| | | | Braille pattern blank is often imaged as a blank glyph.
* Move <cachedir> elements to the end of fonts.conf.Keith Packard2007-10-241-5/+5
| | | | | This allows users to select alternate directories for cache files, ahead of the 'standard' directories.
* Split much of the configuration into separate files. Renumber filesKeith Packard2006-09-091-207/+0
| | | | | | | Most of the remaining elements in fonts.conf have been moved to separate files. The numbering scheme for conf.d files has been documented in the README and the files have been renumbered. Config files have been validated against the DTD and a few minor errors fixed.
* Move some section from fonts.conf into conf.avail filesJames Cloos2006-09-041-133/+0
| | | | | URL aliases, AMT aliases, Che globaladvance fixes and Vera <8pt unhinting sections all moved into conf.avail, to load before user and local confs.
* Replace load of conf.d in fonts.conf.inJames Cloos2006-09-041-0/+5
|
* Move user and local conf file loading into conf.avail filesJames Cloos2006-09-041-11/+0
|
* Move Free family names to bottom of respective aliases. (bug 7429)Keith Packard2006-09-011-3/+3
| | | | | | | The FreeSans, FreeSerif and FreeMono fonts cover a large number of languages, but are of generally poor quality. Moving these after fonts which cover specific languages but which have higher quality glyphs should improve font selection.
* Prefer Bitstream Vera to DejaVu families.Keith Packard2006-09-011-5/+6
| | | | | | | DejaVu is a modified version of Bitstream Vera that covers significantly more languages, but does so with spotty quality, lacking hinting for many glyphs, especially for the synthesized serif oblique face. Use Bitstream Vera (where installed).
* Write caches to first directory with permission. Valid cache in FcDirCacheOpen.Keith Packard2006-08-271-1/+1
| | | | | | | | Previous policy was to attempt to update the cache in place and bail if that didn't work. Now, search for the first writable directory and place the cache file there instead. Furthermore, on startup, search directory list for valid cache files instead of bailing if the first found cache file wasn't valid.
* 2006-08-04 Keith Packard (keithp@keithp.com) reviewed by: plamPatrick Lam2006-08-041-0/+5
| | | | | Make cache directories configurable. Simplify and correct some code which deals with per-directory caches.
* Give the 'Standard Symbols L' match a strong (vs. weak) binding.Patrick Lam2006-04-151-5/+8
|
* Actually, just add URW fonts as aliases for all of the PostScript fonts.Patrick Lam2006-04-141-6/+30
| | | | (reported by Miguel Rodriguez).
* Add an alias 'Standard Symbols L' for 'Symbol'.Patrick Lam2006-04-141-1/+5
|
* Fix multiarch support (don't destroy multiarch files!)Patrick Lam2006-03-241-1/+6
| | | | | | Require pkg-config. (Thanks Behdad; better solution wanted for libxml2 detection!) reviewed by: plam
* Change the rule for artificial emboldening in fonts.conf.in. This enablesPatrick Lam2005-11-021-4/+14
| | | | | the support for artificial emboldening included in cairo. reviewed by: plam
* Add FC_EMBEDDED_BITMAP object type to tell Xft/Cairo whether to loadPatrick Lam2005-10-261-0/+4
| | | | | embedded bitmaps or not. reviewed by: plam
* Modify config file to use Greek fonts before Asian fonts with Greek glyphs.Patrick Lam2005-10-051-3/+7
| | | | reviewed by: plam & keithp
* Don't force bitmap font enable in default configuration; allows users toKeith Packard2005-04-211-23/+14
| | | | | | | | | | | | override this in ~/.fonts.conf Updated translations Destroy font configuration on exit to help valgrind Use own transcoding routines in preference to iconv which appears to have leaks in some translators. Call iconv_close after using iconv (oops). Prefer unicode encoding of Euro char as some fonts mis-encode Euro in other ones. Must fetch bitmap glyphs to get width values to check for monospace/dual-width fonts.
* Update blanks list (Closes bug 86)Keith Packard2005-01-131-21/+31
|
* Reorder utility programs to make sure fc-case is run before fc-lang asKeith Packard2004-12-291-3/+7
| | | | | fc-lang uses fcstr.c which uses fccase.h Fix broken XML
* Adopt some RedHat suggestions for standard font configuration.Keith Packard2004-12-291-20/+53
| | | | | | | Add new helper program 'fc-case' to construct case folding tables from standard Unicode CaseFolding.txt file Re-implement case insensitive functions with Unicode aware versions (including full case folding mappings)
* Configuration changes to request synthetic emboldening of fonts. The actualKeith Packard2004-12-101-0/+20
| | | | | emboldening code will live in Xft. reviewed by: Keith Packard <keithp@keithp.com>
* Just remove the FC_FONTDATE -- it has locale issues and annoys redhatKeith Packard2004-12-051-1/+1
| | | | | | | multi-arch installs. Now that all X fonts are included without prejudice, the chances of the date being at all interesting are rather limited. Bug #415. Add copyright and license
* Change default set of fonts to include all of /usr/X11R6/lib/X11/fonts (orKeith Packard2004-12-051-0/+1
| | | | | | | | | | wherever the X fonts are located). Document new <include>directory-name</include> semantics add <include ignore_missing="yes">conf.d</include> Add selectfont to ignore bitmap fonts, add comment for selectfont which accepts bitmap fonts. Allow <include> configuration elements to reference directories. Parse and load all files of the form [0-9]* in sorted order.
* Add FreeFont entries, fix whitespace in fonts.conf.in (bug 93, fromKeith Packard2003-06-171-8/+14
| | | | vvas@hal.csd.auth.gr (Vasilis Vasaitis))
* (Bug 85) add support for culmus fontsKeith Packard2003-05-311-34/+5
|
* Add Vera support to default configurationfc-2_1_94Keith Packard2003-04-161-0/+50
|
* update copyright yearsKeith Packard2003-04-041-13/+2
|
* strtod under some locales requires digits before the decimalKeith Packard2003-03-201-1/+1
|
* Disable globaladvance for batang fontsKeith Packard2003-02-271-0/+10
|
* Disable globaladvance for gulim fontsKeith Packard2003-02-271-0/+15
|
* Switch to automakeKeith Packard2003-02-241-9/+3
|
* Add prefer_outline hacks to replace bitmap fonts with equivalent outlinesKeith Packard2003-02-121-0/+28
|
* Emphasize that fonts.conf isnt the right place for local configurationKeith Packard2003-02-071-2/+6
|
* Bug #4 The last entry for the terminator should not be 0xfffa, but 0xfffb.Keith Packard2003-01-281-1/+1
|
* Change comments a bit in fonts.conf.inKeith Packard2002-10-031-0/+7
|
* Add a few more permissable blank glyphsKeith Packard2002-09-261-0/+6
|
* Add a bunch more blank glyphs, plus label existing blanks with officialKeith Packard2002-09-071-29/+37
| | | | unicode names
* Found a few more blank glyphs to addKeith Packard2002-09-071-0/+4
|
* Add more blank glyphs to default configKeith Packard2002-09-071-0/+14
|
* Various config changes plus a couple of optimizations from OwenKeith Packard2002-08-191-0/+12
|
* Fix weird first/not-first lameness in font matches, replacing with targetrc2fcpackage_rc2Keith Packard2002-08-111-2/+7
| | | | qualifiers on test elements. Update library manual page.
* Always install fonts.conf and fonts.dtd, moving any existing fonts.conf toKeith Packard2002-08-011-0/+12
| | | | | fonts.conf.bak. Add ~/.fonts to default font directories and add some useful comments to fonts.conf