summaryrefslogtreecommitdiff
path: root/fc-query
AgeCommit message (Collapse)AuthorFilesLines
2018-03-15call setlocaleAkira TAGOH1-0/+2
2017-11-07Add the ruleset description supportAkira TAGOH1-14/+22
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.
2017-09-20[fc-match/fc-list/fc-query/fc-scan] Add --brief that is like --verbose ↵Behdad Esfahbod1-4/+17
without charset
2017-09-20[fc-query] Remove --ignore-blanks / -bBehdad Esfahbod1-15/+5
Blanks are the new black, err, dead!
2017-09-20[varfonts] Change id argument in FcFreeTypeQuery* to unsigned intBehdad Esfahbod1-3/+3
Going to use the top bit to query varfonts.
2017-09-12Add FcFreeTypeQueryAll()Behdad Esfahbod2-63/+27
Like FcFreeTypeQuery(), but adds patterns for all fonts found, including named instances of variable fonts. If id is -1, then all collection faces are queried. Returns number of fonts added. This merges the same face loop that was in fc-query. and fcdir.c. Needs documentation update.
2017-09-12[fc-query] Fix linking orderBehdad Esfahbod1-1/+1
2017-09-12Remove stray printf()Behdad Esfahbod1-1/+0
Ouch.
2017-08-01[fc-query] Support listing named instancesBehdad Esfahbod2-10/+38
2015-05-12Add missing description for usageAkira TAGOH1-4/+5
2015-05-11Observe blanks to compute correct languages in fc-query/fc-scanAkira TAGOH2-5/+26
Added --ignore-blanks option to get back the behavior. https://bugs.freedesktop.org/show_bug.cgi?id=79955
2013-04-08build-chain, replace INCLUDES directive by AM_CPPFLAGSSebastian Freundt1-1/+1
As of automake-13.1 the INCLUDES directive is no longer supported. An automake run will return with an error. This changeset simply follows automake's advice to replace INCLUDES by AM_CPPFLAGS.
2013-01-07Clean up the unused variableAkira TAGOH1-1/+0
2013-01-03Remove FcInit() calls from toolsBehdad Esfahbod1-6/+0
Library is supposed to automatically initialize itself. If it doesn't, it's a bug.
2013-01-03Don't use blanks for fc-queryBehdad Esfahbod1-3/+1
fc-query is supposed to be config-independent.
2013-01-02Switch .gitignore to git.mkBehdad Esfahbod1-0/+2
2012-10-26Use automake variable instead of cleaning files in clean-localAkira TAGOH1-4/+3
just for git.mk coming up from Behdad's threadsafe branch
2012-06-01Fix the wrong estimation for the memory usage information in fontconfigAkira TAGOH1-1/+1
2012-03-16Fix a build issue due to the use of non-portable variablesAkira TAGOH1-2/+2
$< 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.
2012-03-16Revert "Fix a build fail on some environment."Akira TAGOH1-4/+4
This reverts commit 0fdfddf2ac93c1c0238b70a265998fd6b5ffe7af. Conflicts: doc/Makefile.am
2012-03-10Fix a build fail on some environment.Akira TAGOH1-4/+4
2010-11-10Cleanup copyright notices to replace "Keith Packard" with "the author(s)"Behdad Esfahbod2-4/+4
2010-04-20Add fc-pattern cmdline toolBehdad Esfahbod1-0/+1
2009-03-13Replace 'KEITH PACKARD' with 'THE AUTHOR(S)' in license text in all filesBehdad Esfahbod2-4/+4
2009-02-15[fcformat] Add element filtering and deletionBehdad Esfahbod1-2/+5
The filtering, '%{+elt1,elt2,elt3{subexpr}}' will evaluate subexpr with a pattern only having the listed elements from the surrounding pattern. The deletion, '%{-elt1,elt2,elt3{subexpr}}' will evaluate subexpr with a the surrounding pattern sans the listed elements.
2009-02-13Cleanup all manpage.* filesBehdad Esfahbod1-1/+1
Recent doc2man generates files called manpage.log. This was breaking build.
2009-02-13Add fc-scan too that runs FcFileScan/FcDirScanBehdad Esfahbod1-2/+3
This is quite similar to fc-query, but calling FcFileScan/FcDirScan instead of FcFreeTypeQuery.
2009-02-13Oops. Fix usage output.Behdad Esfahbod1-3/+2
2009-02-13Implement FcPatternFormat and use it in cmdline tools (bug #17107)Behdad Esfahbod2-13/+48
Still need to add more features, but the API is there, and used by cmdline tools with -f or --format.
2009-02-13Handle -h and --help according to GNU Coding Standards (#17104)Behdad Esfahbod2-20/+24
Added -h instead of -?. And upon -h and --help, write usave to stdout instead of stdin, and return 0 instead of 1. -? still works like before as that's what getopt returns upon unknown arguments.
2009-02-13Get rid of $Id$ tagsBehdad Esfahbod1-1/+1
2009-02-13Add fc-query (#13019)Behdad Esfahbod3-0/+399