summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 1.50.3better-space-sizeMatthias Clasen2021-12-212-4/+4
|
* Use a better size for missing spaceMatthias Clasen2021-12-213-46/+11
| | | | | | | | | | Follow the Microsoft Typography recommendations from https://docs.microsoft.com/en-us/typography/develop/character-design-standards/whitespace and use half of an em for missing space. Update affected tests. Fixes: #647
* fc: Implement get_absolute_sizeMatthias Clasen2021-12-211-0/+14
| | | | No surprises here.
* Add a private api to get the font sizeMatthias Clasen2021-12-212-1/+21
| | | | | | | | Add a private vfunc to get the (absolute) size of a font. This default implementation just pulls it out of the font description, but we can do implement this cheaper without copying the font description.
* NEWS: UpdatesMatthias Clasen2021-12-191-0/+1
|
* Merge branch 'matthiasc/for-main' into 'main'Matthias Clasen2021-12-201-9/+10
|\ | | | | | | | | Cosmetics See merge request GNOME/pango!560
| * CosmeticsMatthias Clasen2021-12-191-9/+10
|/ | | | | Rename some variables, so we actually know what these matrices are.
* Merge branch 'fix-small-caps-line-height' into 'main'Matthias Clasen2021-12-195-14/+103
|\ | | | | | | | | | | | | Fix line height with emulated small caps Closes #622 See merge request GNOME/pango!543
| * Fix line height with emulated small capsfix-small-caps-line-heightMatthias Clasen2021-12-194-14/+40
| | | | | | | | | | | | | | | | When we change font scale for emulating small caps, keep the original font around in the analysis, and use it for calculating the run height. Fixes: #622
| * Add some private apiMatthias Clasen2021-12-192-0/+63
|/ | | | | | Add some api to let us store another font in a PangoAnalysis. This will be used in the following commits.
* NEWS: UpdatesMatthias Clasen2021-12-191-0/+7
|
* Merge branch 'misc-cleanups' into 'main'Matthias Clasen2021-12-1939-45/+345
|\ | | | | | | | | | | | | serializer: Fix a typo Closes #646 See merge request GNOME/pango!559
| * Add a test for the previous commitsmisc-cleanupsMatthias Clasen2021-12-182-0/+296
| | | | | | | | | | This test verifies the fixes for the situation described in #646.
| * Improve line width accountingMatthias Clasen2021-12-181-1/+1
| | | | | | | | | | | | | | We want to avoid trading chars for hyphens in the margin beyond the set width. Fixes: #646
| * layout: Fix a cornercase of line width accountingMatthias Clasen2021-12-181-8/+12
| | | | | | | | | | We don't collapse space at the very end, so we should count such spaces towards the line width.
| * serializer: Fix a typoMatthias Clasen2021-12-1836-36/+36
|/ | | | | | Oops, we were not serializing the height at all. Update all affected tests.
* Merge branch 'misc-cleanups' into 'main'Matthias Clasen2021-12-195-3/+33
|\ | | | | | | | | pango-view: Support transforms with --serialized See merge request GNOME/pango!558
| * Add some docsMatthias Clasen2021-12-181-0/+25
| | | | | | | | Add doc comments for some private API.
| * fc: CleanupMatthias Clasen2021-12-183-3/+3
| | | | | | | | | | | | Stop using fcfont->matrix. This is just a redundant copy of the matrix that is already available in the font key. Just use that.
| * pango-view: Support transforms with --serializedMatthias Clasen2021-12-181-0/+5
|/ | | | | We can just use the matrix from the deserialized layout.
* Merge branch 'more-space-tweaks' into 'main'Matthias Clasen2021-12-184-20/+50
|\ | | | | | | | | shape: More tweaks to space handling See merge request GNOME/pango!557
| * cairo: Work harder to measure spacemore-space-tweaksMatthias Clasen2021-12-173-21/+33
| | | | | | | | | | | | | | | | | | | | | | When coming up with a width for a missing space, we were just measuring the hex digits. But in subsetted fonts, such as the ones we use for ci, hex digits might well be missing. Take that into account and still provide some nonzero width for space. Update affected tests.
| * shape: More tweaks to space handlingMatthias Clasen2021-12-173-22/+40
|/ | | | | | | | | | | | | | It is a difficult dance between HarfBuzz and pango which glyphs we let hb synthesize, and which ones we need to fake ourselves. HarfBuzz knows how to create other spaces from 0x20, so if the font is lacking spaces, we want to tell HarfBuzz that we don't have that glyph *except* for 0x20 where we need to fake one, and provide HarfBuzz with a suitable width. Update affected tests.
* Merge branch 'fix-vertical-regression' into 'main'Matthias Clasen2021-12-1717-57/+331
|\ | | | | | | | | Revert "Fix advance widths with transforms" See merge request GNOME/pango!556
| * Revert "Fix advance widths with transforms"fix-vertical-regressionMatthias Clasen2021-12-1717-57/+331
| | | | | | | | | | | | | | | | | | This reverts commit ccb651dd2a876a4f4a4cb9351f05332173e709ba. This broke vertical text rendering, see https://gitlab.com/inkscape/inkscape/-/issues/2950. Update affected tests and add a vertical test.
* | Merge branch 'viewer-serialize-output' into 'main'Matthias Clasen2021-12-171-2/+17
|\ \ | |/ | | | | | | pango-view: Add --serialize-to option See merge request GNOME/pango!555
| * pango-view: Add --serialize-to optionviewer-serialize-outputMatthias Clasen2021-12-171-2/+17
|/ | | | Add an option to produce a serialized output.
* Merge branch 'doc-no-pangoot' into 'main'Matthias Clasen2021-12-171-23/+23
|\ | | | | | | | | docs: Don't build pangoot bits if not enabled See merge request GNOME/pango!554
| * docs: Don't build pangoot bits if not enableddoc-no-pangootChun-wei Fan2021-12-171-23/+23
|/ | | | | PangoOT is actually a part of PangoFT2, so don't attempt to build its docs if FontConfig is not found.
* 1.50.21.50.2Matthias Clasen2021-12-162-1/+8
|
* Merge branch 'fix-spaceless-fonts' into 'main'Matthias Clasen2021-12-167-14/+160
|\ | | | | | | | | | | | | Fix handling of space-less fonts Closes #641 See merge request GNOME/pango!552
| * Fix handling of space-less fontsfix-spaceless-fontsMatthias Clasen2021-12-167-14/+160
| | | | | | | | | | | | | | | | | | | | | | HarfBuzz knows how to synthesize spaces, we just need to tickle it in the right way. Test included. Update affected tests. Fixes: #641
* | Merge branch 'arabic-format' into 'main'Matthias Clasen2021-12-165-18/+114
|\ \ | |/ | | | | | | | | | | Fix Arabic format chars Closes #642 See merge request GNOME/pango!553
| * Add a test for 0x6ddarabic-formatMatthias Clasen2021-12-164-0/+92
| | | | | | | | This tests the fix in the previous commit.
| * Fix Arabic format charsMatthias Clasen2021-12-161-18/+22
| | | | | | | | | | | | | | We can't treat these like spaces, since they are visible and need the proper font. Fixes: #642
* | Merge branch 'missing-include' into 'main'Matthias Clasen2021-12-161-0/+1
|\ \ | |/ |/| | | | | | | | | Add a missing include Closes #640 See merge request GNOME/pango!551
| * Add a missing includemissing-includeMatthias Clasen2021-12-161-0/+1
|/ | | | | | This was breaking the build on some macOs versions. Fixes: #640
* Merge branch 'fix-x32' into 'main'Matthias Clasen2021-12-131-1/+1
|\ | | | | | | | | | | | | pango-item-private.h: fix x86-64 x32 builds Closes #637 See merge request GNOME/pango!548
| * pango-item-private.h: fix x86-64 x32 buildsAlexander Kanavin2021-12-131-1/+1
|/ | | | Fixes: #637
* Merge branch 'stdlib-h' into 'main'Matthias Clasen2021-12-131-0/+1
|\ | | | | | | | | gtkjsonparser.c: Include stdlib.h See merge request GNOME/pango!547
| * gtkjsonparser.c: Include stdlib.hChun-wei Fan2021-12-131-0/+1
|/ | | | It is needed for strtol()/strtoul().
* Merge branch 'fix-pango-view-options' into 'main'Matthias Clasen2021-12-111-3/+3
|\ | | | | | | | | Fix pango-view option handling See merge request GNOME/pango!546
| * Fix pango-view option handlingfix-pango-view-optionsMatthias Clasen2021-12-111-3/+3
|/ | | | | The --serialized option did not quite work as expected.
* Merge branch 'misc-doc-fixups' into 'main'Matthias Clasen2021-12-1125-179/+224
|\ | | | | | | | | docs: Various improvements See merge request GNOME/pango!545
| * docs: Cosmeticsmisc-doc-fixupsMatthias Clasen2021-12-1013-161/+169
| | | | | | | | | | Add more links to GLib apis and to various Unicode specs.
| * docs: Some cross-linkingMatthias Clasen2021-12-101-2/+6
| |
| * docs: CosmeticsMatthias Clasen2021-12-101-1/+1
| |
| * docs: Expand PangoTabArray docsMatthias Clasen2021-12-102-7/+11
| |
| * docs: Add a missing imageMatthias Clasen2021-12-101-0/+1
| |
| * Document new variant valuesMatthias Clasen2021-12-102-2/+5
| |