summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Bug 59379 - FC_PRGNAMEBehdad Esfahbod2013-01-152-1/+3
| | | | Can be used for per-application configuration.
* Bug 50497 - RFE: Add OpenType feature tags supportAkira TAGOH2013-01-152-0/+3
| | | | Add FC_FONT_FEATURES to store the feature tags to be enabled.
* Bug 29312 - RFE: feature to indicate which characters are missing to satisfy ↵Akira TAGOH2013-01-091-0/+8
| | | | | | the language support Add fc-validate to check the language coverage in a font.
* Fix a typo in the manpages templateAkira TAGOH2013-01-091-1/+1
|
* Trying to fix distcheckBehdad Esfahbod2013-01-021-0/+8
| | | | | | Doesn't work though :(. Building docs is very fragile... At least, if docbook is present, distcheck passes now.
* Use CC_FOR_BUILD to generate source filesBehdad Esfahbod2013-01-021-5/+1
| | | | | | | | | Previously we were failing if CROSS_COMPILING and the generated headers were not present. It works just fine now. One caveat: the fix is not fully correct since config.h is being included in the files built with CC_FOR_BUILD, but config.h has config for the host system, not the build system. Should be fine though.
* Switch .gitignore to git.mkBehdad Esfahbod2013-01-021-0/+2
|
* Deprecate FcName(Un)RegisterObjectTypes / FcName(Un)RegisterConstantsBehdad Esfahbod2013-01-012-10/+4
| | | | | | | | | | | These never worked as intended. The problem is, if Fontconfig tries to read config files when these new types / constants are not registered, it errs. As a result, no defined types / constants are usable from config files. Which makes these really useless. Xft was the only user of this API and even there it's not really used. Just kill it. One inch closer to thread-safety since we can fix the object-type hash table at compile time.
* Adjust docs for recent changesBehdad Esfahbod2012-12-311-3/+9
|
* Fix build issues on clean treeAkira TAGOH2012-11-301-7/+2
|
* Bug 18726 - RFE: help write locale-specific testsAkira TAGOH2012-06-221-0/+35
| | | | Add an example matching rule for the language specific
* Fix a typo and build fail.Akira TAGOH2012-06-121-3/+3
|
* Bug 50835 - Deprecate FC_GLOBAL_ADVANCEAkira TAGOH2012-06-112-2/+2
| | | | | FC_GLOBAL_ADVANCE is deprecated. this flag is simply ignored on freetype 2.4.5 or later.
* doc: Fix distcheck error again...Akira TAGOH2012-06-111-6/+9
|
* Bug 32853 - Export API to get the default languageAkira TAGOH2012-06-081-0/+9
| | | | | Add a new API FcGetDefaultLangs() to export the string sets of the default languages.
* Bug 33644 - Fontconfig doesn't match correctly in <test>Akira TAGOH2012-05-251-0/+23
| | | | | | | | | Warn if the multiple values is set to <test>, including the case of in <alias> because the behavior isn't intuitive since so many users is asking for a help to get things working for their expectation. Use multiple <match>s or <alias>es for OR operator and multiple <test>s for AND operator.
* Correct the exampleAkira TAGOH2012-05-211-5/+5
| | | | Enclose the string with <string> in <test>
* Bug 20411 - fontconfig doesn't match FreeDesktop directories specsAkira TAGOH2012-05-181-17/+20
| | | | | | | | 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.
* Bug 19128 - Handling whitespace in aliasesAkira TAGOH2012-05-141-1/+2
| | | | | | | | Add a new attribute `ignore-blanks' to <test>. When this is set to "true", any blanks in the string will be ignored on comparison. This takes effects for compare="eq" or "not_eq" only. Also changed the behavior of the comparison on <alias> too.
* Bug 39278 - make usage of mmap optionalAkira TAGOH2012-04-251-1/+19
| | | | | | | Stop using mmap() if the cache file is stored on NFS. also added FONTCONFIG_USE_MMAP environment variable to enforce the use of or not the use of mmap(2) regardless of what the filesystem the cache files are stored on.
* Bug 27765 - FcMatch() returns style in wrong languageAkira TAGOH2012-04-241-0/+3
| | | | | | | | Add "namelang" object to obtain the localized name in the font regardless of the lang object. it's applied to "familylang", "stylelang" and "fullnamelang" alltogether. this would helps if one wants to enforce selecting them in the specific language if any. the default value for the namelang object is determined from current locale.
* Create CACHEDIR.TAG when fc-cache is run or only when the cache directory is ↵Akira TAGOH2012-04-232-1/+10
| | | | | | | created at the runtime. Also add FcCacheCreateTagFile() API to do create CACHEDIR.TAG on the cache directory.
* Bug 25151 - Move cleanCacheDirectory() from fc-cache.c intoAkira TAGOH2012-04-181-0/+9
| | | | | | the library Add FcDirCacheScan() API to clean up the cache files in the directory.
* doc: Fix a typo of the environment variable name.Akira TAGOH2012-04-161-2/+2
|
* doc: Add contains and not_contains operators and elementsAkira TAGOH2012-03-301-3/+3
|
* Get rid of the prerequisites from the sufix rulesAkira TAGOH2012-03-161-4/+8
| | | | Thanks to Adam Sampson for pointing this out.
* Fix a build issue due to the use of non-portable variablesAkira TAGOH2012-03-161-16/+16
| | | | | | | | $< isn't supported in BSD make say. $(RM) is pre-defined in GNU make though, not in BSD make say. so changed to check on configure if it's pre-defined by make, otherwise set the appropriate command to $(RM). This would be a workaround until it has the certain pre-defined value.
* Revert "Fix a build fail on some environment."Akira TAGOH2012-03-161-15/+15
| | | | | | | | This reverts commit 0fdfddf2ac93c1c0238b70a265998fd6b5ffe7af. Conflicts: doc/Makefile.am
* [doc] Update for cachedir.Akira TAGOH2012-03-121-9/+10
| | | | | <cache> element is now obsoletes and no longer used. get rid of it from the doc and add <cachedir> instead.
* [doc] Update the path for cache files and the version.Akira TAGOH2012-03-121-3/+3
|
* Get rid of $< from Makefile.amAkira TAGOH2012-03-111-8/+8
|
* Fix a build fail on some environment.Akira TAGOH2012-03-101-10/+10
|
* Fix a build issueAkira TAGOH2012-03-101-1/+0
|
* Fix distcheck errorAkira TAGOH2012-03-091-164/+170
|
* Fix parallel buildBehdad Esfahbod2011-10-051-1/+1
|
* Switch fc-cat to use FcPatternFormat()Behdad Esfahbod2011-06-201-0/+7
| | | | Added the a builtin "fccat" to FcPatternFormat().
* More doc typo fixesBehdad Esfahbod2011-03-145-7/+7
|
* Mark constant strings as constantBehdad Esfahbod2011-03-141-1/+1
| | | | | Fixes a few compiler warnings in fcxml.c and makes it clear that they should not be freed.
* Documentation fixesBrad Hards2011-03-1111-94/+94
|
* Doc nitBehdad Esfahbod2010-12-281-2/+2
|
* Allow editing charset and lang in target="scan"Behdad Esfahbod2010-12-282-0/+42
|\ | | | | | | | | | | | | | | Merge commit 'fa269cf812ee304534b0e4c44662202496008db0' Fixes: Bug 31969 - Can't modify charset in target="scan" Bug 23758 - Can't modify lang in target="scan"
| * add some documentsAkira TAGOH2010-12-092-0/+34
| |
| * add some document for range and charset.Akira TAGOH2010-12-091-0/+8
| |
* | Make most generated-files cross-compiling-safeBehdad Esfahbod2010-12-271-8/+11
|/ | | | | | By simply including a copy in the tarball. Remains fc-arch which is trickier.
* Cleanup copyright notices to replace "Keith Packard" with "the author(s)"Behdad Esfahbod2010-11-1025-52/+52
|
* Add new public API: FcCharSetDelChar()Behdad Esfahbod2010-09-211-0/+11
|
* More doc typo fixesBehdad Esfahbod2010-02-141-2/+2
|
* Fix doc typoBehdad Esfahbod2010-02-141-1/+1
|
* Clarify default confdir and cachedir better.Behdad Esfahbod2009-11-091-2/+0
| | | | Also remove --with-docdir. It can be set by setting docdir variable.
* Hardcode /etc/fonts instead of @CONFDIR@ in docs (#22911)Behdad Esfahbod2009-07-271-1/+2
| | | | | | We distribute the docs, so it makes little sense to distribute with @CONFDIR@ replaced. Until we find a better solution, I've hardcoded /etc/fonts now.