summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Release 1.26.01.26.0Behdad Esfahbod2009-09-212-2/+8
|
* [HB] Add commentBehdad Esfahbod2009-09-211-0/+5
|
* [HB] Fix apply_lookup() loopBehdad Esfahbod2009-09-211-1/+2
| | | | | Part of Bug 595539 - Regressions in rendering certain Thai sequences with OpenType font
* [HB] Fix bug in chain_context_lookup() invocationsBehdad Esfahbod2009-09-211-2/+2
| | | | | Part of Bug 595539 - Regressions in rendering certain Thai sequences with OpenType font
* Bug 595350 - set LC_ALL=C, not LANG=CBehdad Esfahbod2009-09-163-3/+6
|
* Bug 594936 - pango_layout_set_wrapBehdad Esfahbod2009-09-111-1/+1
| | | | | Remove wrong optimization in pango_layout_set_wrap(). The assumption that if the layout was not wrapped before, it will not wrap now is simply wrong.
* Bug 594934 - pango_layout_copyBehdad Esfahbod2009-09-112-32/+22
| | | | Use memcpy() to copy value fields so we don't miss any.
* Revert "[basic-win32] Increase performance of Uniscribe code"Tor Lillqvist2009-09-101-6/+7
| | | | | | Unfortunately this change breaks complex script shaping. This reverts commit ea608c0bd7721d3019bed7ef2472289b1ea6fa53.
* Only check doc coverage if building docsBehdad Esfahbod2009-09-091-0/+2
|
* Release 1.25.61.25.6Behdad Esfahbod2009-09-082-1/+8
|
* [HB] Add TODO itemBehdad Esfahbod2009-08-301-0/+1
|
* [HB] Rename DEBUG to TRACE where appropriateBehdad Esfahbod2009-08-287-176/+176
|
* [HB] Add GSUB/GPOS tracingBehdad Esfahbod2009-08-283-8/+98
|
* [HB] Allow enabling different debug facilities individuallyBehdad Esfahbod2009-08-282-26/+34
|
* Enable silent rules by defaultBehdad Esfahbod2009-08-281-1/+1
|
* Fix stupid array growing bugBehdad Esfahbod2009-08-281-1/+4
|
* [HB] Simplify countingBehdad Esfahbod2009-08-271-4/+5
|
* Fix bug with lookup_index overflowing our static arrayBehdad Esfahbod2009-08-271-0/+2
| | | | Part of Bug 593240 - updating pango to latest git master makes things crash
* [HB] IndentBehdad Esfahbod2009-08-271-2/+2
|
* [HB] Bug 593231 - < c99 compiler dislikes ValueRecordBehdad Esfahbod2009-08-261-1/+3
|
* Release 1.25.51.25.5Behdad Esfahbod2009-08-242-1/+8
|
* Update git.mkBehdad Esfahbod2009-08-201-0/+1
|
* Bug 592484 - invalid write in HBBehdad Esfahbod2009-08-201-2/+2
| | | | Fix off-by-one.
* [HB][glib] Make glib unicode funcs staticBehdad Esfahbod2009-08-201-19/+17
|
* [HB] Fix more castsBehdad Esfahbod2009-08-191-5/+5
|
* [HB] Rename CAIRO_ in macro prefix to HB_Behdad Esfahbod2009-08-191-3/+3
| | | | Hiss!
* [HB] Remove HB_MEMORY_MODE_READONLY_NEVER_DUPLICATEBehdad Esfahbod2009-08-192-27/+25
| | | | | | | | | | Unlike the rest of the memory-mode enum, this one didn't only describe the access mode of the input memory region. Remove it. If someone wants to inhibit duplicating, they can lock the blob and throw away the key. Based on mailing list discussion with Carl Worth.
* [HB] s/writeable/writable/gBehdad Esfahbod2009-08-194-29/+29
|
* [HB] Hide lig_id and component members of hb_glyph_info_tBehdad Esfahbod2009-08-191-3/+2
|
* [HB] Fix typoBehdad Esfahbod2009-08-191-1/+1
|
* [HB] Add font funcs prototypesBehdad Esfahbod2009-08-183-17/+22
|
* Fix a few other pedantic warningsBehdad Esfahbod2009-08-184-5/+5
|
* [HB] Fix pedantic warningsBehdad Esfahbod2009-08-183-13/+13
|
* [HB] Fix more wrong method signaturesBehdad Esfahbod2009-08-181-1/+1
|
* [HB] Fix wrong method signatureBehdad Esfahbod2009-08-181-2/+2
|
* Bug 592194 - Fix missing _SC_PAGE_SIZE macroBehdad Esfahbod2009-08-182-34/+61
| | | | Autoconfiscate a simple call to mprotect() even more.
* Release 1.25.41.25.4Behdad Esfahbod2009-08-172-1/+14
|
* AM_V_GEN ChangeLog tooBehdad Esfahbod2009-08-171-2/+1
|
* Bug 592131 - Add AM_SILENT_RULESBehdad Esfahbod2009-08-174-25/+25
| | | | | And sprinkle some $(AM_V_GEN) around. Silent rules are disabled by default.
* Make pango_interface_age automaticBehdad Esfahbod2009-08-171-0/+10
| | | | | For unstable releases, we act as if each micro release has new API. For stable releases, no micro release adds new API.
* [introspection] Don't this gir files, reallyBehdad Esfahbod2009-08-171-1/+1
|
* [Makefile] Remove GIR files from EXTRA_DISTBehdad Esfahbod2009-08-171-2/+0
|
* Re-enable introspection, delete PangoXColin Walters2009-08-172-43/+28
| | | | | | | | | | | | This patch relies on the latest GObject Introspection; bump requirement to 0.6.4. First, delete the PangoX.gir since it's "incredibly deprecated" in Owen's words =) Next, clean up the PangoCairo.gir logic; we need to include the .gir for the relevant font backend (currently just FT2), because the font object gets expanded.
* [HB] Avoid int overflow in GPOSBehdad Esfahbod2009-08-172-10/+13
| | | | Bug 592036 - integer overflow bug causes misrendering of Nepali characters
* [HB] Simplify loopBehdad Esfahbod2009-08-141-17/+14
|
* [HB] Merge mark positionin code between three types of lookupsBehdad Esfahbod2009-08-141-66/+29
|
* [HB] More minor shufflingBehdad Esfahbod2009-08-142-3/+5
|
* [HB] Move code aroundBehdad Esfahbod2009-08-142-19/+21
|
* [HB] Correctly sanitize LigatureAttachBehdad Esfahbod2009-08-144-9/+19
|
* [HB] Simplify MarkBase and MarkLig tooBehdad Esfahbod2009-08-141-79/+48
|