summaryrefslogtreecommitdiff
path: root/utils/pango-list.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix leaks found by asanSzunti2021-01-161-0/+1
|
* pango-list: Call setlocale in main functionTing-Wei Lan2019-07-291-0/+2
| | | | | | If it isn't called, GLib will try to convert non-ASCII characters to ASCII because LC_CTYPE locale is C. Therefore, all non-ASCII characters are displayed as question marks because the conversion always fails.
* Fix up harfbuzz includesMatthias Clasen2019-07-281-1/+1
| | | | | | The correct include is without harfbuzz/. Closes: https://gitlab.gnome.org/GNOME/pango/issues/387
* pango-list: Optionally show variationsMatthias Clasen2019-07-251-0/+58
| | | | | This is not perfect; we really need harfbuzz api to get design coords of a hb_font_t.
* pango-list: Be niceMatthias Clasen2019-07-181-2/+2
| | | | No need to dump core because somebody typoed an option.
* pango-list: Add a --metrics optionMatthias Clasen2019-07-161-32/+43
| | | | | Make the output a bit more compact, and optionally print out font metrics as well.
* pango-list: Fix a compiler warningMatthias Clasen2019-07-161-0/+1
|
* pango-list: Add a --verbose optionMatthias Clasen2019-07-161-0/+23
|
* Drop g_type_init callsMatthias Clasen2019-07-041-3/+0
| | | | | These were ifdefed to an older version of GLib than we require now, so are just dead code.
* font-list: print out family detailsMatthias Clasen2018-11-191-1/+17
| | | | | Show if a family is monospace or variable, mainly to prove that the APIs work.
* [pango-list] Don't print sizesBehdad Esfahbod2018-07-161-1/+1
| | | | | They are not used in font chooser, so don't call them. My goal for pango-list was to measure font chooser performance...
* [pango-list] Minor fixupBehdad Esfahbod2018-07-081-2/+2
|
* [pango-list] Improve output formatBehdad Esfahbod2018-07-081-12/+30
| | | | | | Also write out description of each face. This is really broken for free-style style names (as we knew), and very slow, as is O(N^3.log(N)) in the number of fonts...
* [utils] Add pango-list commandline toolBehdad Esfahbod2018-07-081-0/+80
My main interest is performance of font listing API. Figured I can just make a tool out of it. Output format to be improved.