summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* gravity: Add missing Multani scriptfixes-for-1-48Matthias Clasen2021-08-171-0/+1
| | | | | | | An unfortunate oversight in 709af063 omitted Multani, and threw the rest of the table off. Fixes: #597
* build: Raise required fribidi versionMatt Turner2021-08-171-1/+1
| | | | | | Pango uses the FRIBIDI_TYPE_RLI macro. It was not usable until fribidi commit 46f52d588ab5 ("Fixed bug PFRIBIDI_TYPE_PDF_LRI is undefined. Issue #69") which was first included in v1.0.6.
* 1.48.81.48.8Matthias Clasen2021-08-112-3/+7
|
* Be more careful about analysis->fontMatthias Clasen2021-08-111-2/+3
| | | | | This might be NULL, and we want to stumble on in that case. See #592.
* pangowin32-fontmap.c: Look harder for the matching fontChun-wei Fan2021-08-111-3/+19
| | | | | | | | | | | | When we look up our font from the list of fonts that we enumerated from the system, follow what the CoreText backend does, so that if the font gravity in the font description is getting in our way to find the font, look for it again without the gravity. This will enable us to find the font that really exists but was not found due to FontDescription attributes. Partially fixes #583.
* CODING_STYLE: Fence code samples, fix tab breakageFeRD (Frank Dana)2021-08-111-17/+35
|
* Specify deprecation detailsMatthias Clasen2021-08-112-2/+2
| | | | | Unversioned deprecations come out odd in gi-docgen. Add a version to avoid that.
* itemize: Fix up gravity state initializationMatthias Clasen2021-08-113-4/+47
| | | | | | | | itemize_state_init was setting gravity-related fields to their initial values too late, after update_attr_iterator has already set them to the values for the first run. Test included.
* gravity: Remove redundant codeMatthias Clasen2021-08-111-11/+7
| | | | | | Just pass PANGO_GRAVITY_AUTO on to pango_gravity_get_for_script_and_width. It has just the same fallback handling.
* CosmeticsMatthias Clasen2021-07-311-1/+1
|
* Merge branch 'fix-tests-build' into 'main'Matthias Clasen2021-07-301-0/+1
|\ | | | | | | | | tests: Fix implicit function declaration warnings with gcc See merge request GNOME/pango!381
| * tests: Fix implicit function declaration warnings with gccBiswapriyo Nath2021-07-291-0/+1
|/ | | | This includes stdlib.h for strtol, strtoll and strtod functions declaration
* Merge branch 'better-ellipsize' into 'main'Matthias Clasen2021-07-222-9/+11
|\ | | | | | | | | | | | | ellipsize: Try harder to find the right font Closes #575 See merge request GNOME/pango!380
| * Correctly handle font attributesbetter-ellipsizeMatthias Clasen2021-07-222-9/+11
|/ | | | | | | | | | pango_attr_iterator_get_attributes only returns the innermost attribute of each kind. That is correct for attributes that supersede each other, but not for font descriptions, which get merged. So, keep all font attributes in the returned list. Update affected tests.
* Merge branch 'approximated-sizes' into 'main'Matthias Clasen2021-07-213-9/+25
|\ | | | | | | | | | | | | font-desc: Use local double values to store sizes Closes #580 See merge request GNOME/pango!377
| * font-desc: Use local volatile double values to store sizesMarco Trevisan (TreviƱo)2021-07-213-9/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Under i386 multiplying double and integer values and cast it to integer may end up to compute the wrong value when only 387 FPU is used, because the temporary value will be stored in a register whose precision isn't good enough. And so, some multiplications which are expected to produce an integer, will actually return a truncated value, that will be eventually floored. An example is 1.2 * 12800 that is clearly 15360.0, but will produce 15359 when casted to int in the said i386 environment. So use a temporary double variable to ensure that we do this computation in the double scope, before casting to int. And this will avoid using the said register, even when using more aggressive optimizations (as per marking the local variable volatile). Fixes: https://gitlab.gnome.org/GNOME/pango/-/issues/580
| * Merge branch 'matthiasc/for-master' into 'master'Matthias Clasen2021-07-106-12/+64
| |\ | | | | | | | | | | | | tests: Avoid a possible invalid access See merge request GNOME/pango!376
| | * Try harder to skip tests on MacOsMatthias Clasen2021-07-102-0/+48
| | | | | | | | | | | | | | | | | | For tests where the wrong fonts break things, check that we have Cantarell, and skip them if not.
| | * tests: Fix an assertionMatthias Clasen2021-07-101-3/+4
| | | | | | | | | | | | | | | We were rounding things differently, giving us off-by-one errors on MacOs.
| | * tests: Locale handling fixesMatthias Clasen2021-07-106-9/+12
| |/ | | | | | | | | The return value of setlocale is only good until the next call. Also, consistently use en_US.UTF-8.
* | Merge branch 'thai' into 'main'Matthias Clasen2021-07-211-5/+9
|\ \ | | | | | | | | | | | | Use GMutex for the shared thai brk See merge request GNOME/pango!378
| * | Use GMutex for the thai_brkPeng Wu2021-07-211-5/+9
| | | | | | | | | | | | Use GMutex to protect the thai_brk in multithreading.
* | | Try harder to skip tests on MacOsMatthias Clasen2021-07-212-0/+48
| | | | | | | | | | | | | | | | | | For tests where the wrong fonts break things, check that we have Cantarell, and skip them if not.
* | | tests: Fix an assertionMatthias Clasen2021-07-211-3/+4
| | | | | | | | | | | | | | | We were rounding things differently, giving us off-by-one errors on MacOs.
* | | tests: Locale handling fixesMatthias Clasen2021-07-216-9/+12
|/ / | | | | | | | | The return value of setlocale is only good until the next call. Also, consistently use en_US.UTF-8.
* | Mention main in NEWSMatthias Clasen2021-07-171-0/+5
| | | | | | | | This is part of #579.
* | ci: Update branch references to mainMatthias Clasen2021-07-172-2/+2
| | | | | | | | | | | | Change ci to point at the main branch instead of master. This is part of #579
* | docs: Update branch references to mainMatthias Clasen2021-07-176-6/+6
|/ | | | | | | Change the source locations in the gi-docgen files to point to main instead of master. This is part of #579
* Merge branch 'space-itemization' into 'master'Matthias Clasen2021-07-101-15/+71
|\ | | | | | | | | itemize: Improve handling of spaces See merge request GNOME/pango!374
| * itemize: Improve handling of spacesspace-itemizationMatthias Clasen2021-07-101-15/+71
| | | | | | | | | | | | | | | | | | Put spaces into the previous or the next item, depending on which one has the 'better' font. This reduces space variations in the presence of font fallback. See: #249
* | Merge branch 'matthiasc/for-master' into 'master'Matthias Clasen2021-07-105-25/+25
|\ \ | |/ | | | | | | Add a way to show fonts in test-layout output See merge request GNOME/pango!371
| * Quiet another compiler warningMatthias Clasen2021-07-101-1/+1
| |
| * Drop an unused functionMatthias Clasen2021-07-101-6/+0
| |
| * Quiet a compiler warningMatthias Clasen2021-07-101-4/+6
| | | | | | | | | | Another case where using a GPtrArray instead of a GArray of pointers is nicer.
| * language: Silence compiler warningsMatthias Clasen2021-07-101-9/+11
| | | | | | | | | | Use a GPtrArray instead of a GArray of pointers, to avoid case-align warnings.
| * Silence compiler warningsMatthias Clasen2021-07-101-1/+2
| |
| * tests: Add a way to show fonts in test-layoutMatthias Clasen2021-07-101-1/+5
| | | | | | | | | | | | | | This is sometimes useful, even if we want to avoid it in ci. So add an environment variable, PANGO_TEST_SHOW_FONT to make it show the actual font instead of 'OMITTED'.
| * Remove an obsolete version checkMatthias Clasen2021-07-101-3/+0
|/ | | | | We require harbuzz to be at least 2.0.0 for a while now. No need to check that version at runtime.
* Merge branch 'attr-list-change-fix' into 'master'Matthias Clasen2021-07-102-18/+270
|\ | | | | | | | | | | | | Remove an erroneous early exit Closes #564 See merge request GNOME/pango!372
| * Add more testcases for pango_attr_list_changeattr-list-change-fixMatthias Clasen2021-07-091-9/+264
| | | | | | | | | | | | Add more cases to cover move of the branches in this complicated function. Among other things, this tests the fix in the previous commit.
| * Remove an erroneous early exitMatthias Clasen2021-07-091-9/+6
|/ | | | | | | | pango_attr_list_change was returning early in one case, missing to do some necessary cleanup of the list. Fixes: #564
* CosmeticsMatthias Clasen2021-07-091-3/+3
|
* Merge branch 'fix-empty-line-spacing-2' into 'master'Matthias Clasen2021-07-091-13/+17
|\ | | | | | | | | | | | | layout: make the height of an empty line match a regular line Closes #577 See merge request GNOME/pango!363
| * layout: make the height of an empty line match a regular lineArtem Rebrov2021-07-081-13/+17
| | | | | | | | | | When using line-spacing, the height of an empty line is the same as when line-spacing has zero value. Take the value from font metrics.
* | Merge branch 'matthiasc/for-master' into 'master'Matthias Clasen2021-07-091-6/+11
|\ \ | | | | | | | | | | | | docs: Small layout docs improvements See merge request GNOME/pango!370
| * | docs: Small layout docs improvementsMatthias Clasen2021-07-091-6/+11
|/ / | | | | | | | | Add some more default values, and correct the docs for pango_layout_set_spacing wrt to the default value.
* | Merge branch 'matthiasc/for-master' into 'master'Matthias Clasen2021-07-098-104/+89
|\ \ | | | | | | | | | | | | win32: Don't export private symbol See merge request GNOME/pango!369
| * | ci: Update ci imagesMatthias Clasen2021-07-093-2/+4
| | | | | | | | | | | | | | | | | | Include llvm on the image, so that we can use llvm-symbolizer, too try and get meaningful stacktraces out of asan.
| * | Improve attribute test infrastructureMatthias Clasen2021-07-093-101/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make attribute_from_string() parse enum attribute values in the same way as PangoMarkup, and use it in the attribute tests. Still to do: Do the same for flags. The flags parsing function isn't exported, so this needs our tests to be statically linked.
| * | Fix a compiler warningMatthias Clasen2021-07-091-1/+0
| | |