~ubuntu-branches/ubuntu/precise/pango1.0/precise

« back to all changes in this revision

Viewing changes to ChangeLog

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-03-29 10:54:21 UTC
  • mfrom: (1.5.18)
  • Revision ID: package-import@ubuntu.com-20120329105421-gqjksz61nq5mv7dd
Tags: 1.30.0-0ubuntu1
* New upstream release:
  - Fix cross-compiling bug in configure.in
  - Zero-width spaces cause missing characters
  - CoreText backend: implement font fallbacks
  - CoreText backend: make more robust against broken fonts
  - CoreText backend: make shaping engine more robust
  - CoreText backend: Guard against glyph count of zero

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
commit 020aeadc1a41bea3fa95dfd7ddace50d97b9f78c
 
2
Author: Matthias Clasen <mclasen@redhat.com>
 
3
Date:   Mon Mar 26 21:28:57 2012 -0400
 
4
 
 
5
    1.30.0
 
6
 
 
7
 NEWS         |   10 ++++++++++
 
8
 configure.in |    4 ++--
 
9
 2 files changed, 12 insertions(+), 2 deletions(-)
 
10
 
 
11
commit 4ed7cd1a9e61f969bcdb616a5ba9a1290b7e43b4
 
12
Author: Kristian Rietveld <kris@lanedo.com>
 
13
Date:   Sun Mar 18 10:40:50 2012 +0100
 
14
 
 
15
    Guard for an accumulated glyph count of zero in CoreText shape engine
 
16
 
 
17
 modules/basic/basic-coretext.c |   10 +++++++++-
 
18
 1 file changed, 9 insertions(+), 1 deletion(-)
 
19
 
 
20
commit ded299c755fd472bc0eb19789a1f40ab4d61a098
 
21
Author: Behdad Esfahbod <behdad@behdad.org>
 
22
Date:   Sat Mar 17 15:27:26 2012 -0400
 
23
 
 
24
    Make relative paths work in pango.modules files
 
25
 
 
26
    Part of Bug 454017 - Make relative paths in pango.modules and pangorc
 
27
    files work relative to the file
 
28
 
 
29
    Patch from Anselm Kruis.
 
30
 
 
31
 pango/modules.c |   11 +++++++++--
 
32
 1 file changed, 9 insertions(+), 2 deletions(-)
 
33
 
 
34
commit 8206a1c0eccba741423ba67c94cb18faf6fd7daf
 
35
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
 
36
Date:   Thu Mar 15 16:43:45 2012 +0800
 
37
 
 
38
    Fix "install" paths in VS property sheets
 
39
 
 
40
 build/win32/vs10/pango.props  |    2 +-
 
41
 build/win32/vs9/pango.vsprops |    2 +-
 
42
 2 files changed, 2 insertions(+), 2 deletions(-)
 
43
 
 
44
commit 9df28e2e0a2ce5580beb317b9ff7fce6322da25a
 
45
Author: Kristian Rietveld <kris@lanedo.com>
 
46
Date:   Sun Feb 19 21:03:23 2012 +0100
 
47
 
 
48
    Make CoreText shaping engine more robust
 
49
 
 
50
    This commit makes the CoreText shaping engine much more robust against
 
51
    the output from the CoreText typesetter. Refer to the source code
 
52
    comments for exhaustive details.
 
53
 
 
54
    Furthermore, this patch fixing cursor navigation in strings with
 
55
    zero-width spaces.
 
56
 
 
57
 modules/basic/basic-coretext.c |  417
 
58
 ++++++++++++++++++++++++++++++++--------
 
59
 1 file changed, 338 insertions(+), 79 deletions(-)
 
60
 
 
61
commit 38ada127bfb53911ecd64ced26fd23ec67138b43
 
62
Author: Kristian Rietveld <kris@lanedo.com>
 
63
Date:   Sat Jan 28 10:34:52 2012 +0100
 
64
 
 
65
    Make CoreText backend more robust against broken fonts
 
66
 
 
67
    Patch written in collaboration with Michael Natterer.
 
68
 
 
69
    Some CTFontDescriptors apparently do not have a style name or font
 
70
    family name set. This patch makes the code take such corner cases into
 
71
    account. The font family problem only appears to occur on Snow Leopard
 
72
    systems, we try to fall back on the font name (postscript name),
 
73
    if that
 
74
    fails, we fall back on a default fallback.
 
75
 
 
76
    In some cases a coverage is also not set. (This seems to happen
 
77
    when we
 
78
    cannot map a broken font back to a correct font descriptor). In such
 
79
    cases we simply return an empty PangoCoverage, which will likely cause
 
80
    the engine to fallback on a different font.
 
81
 
 
82
 pango/pangocoretext-fontmap.c |   71
 
83
 ++++++++++++++++++++++++++++++++++-------
 
84
 pango/pangocoretext.c         |    4 +++
 
85
 2 files changed, 64 insertions(+), 11 deletions(-)
 
86
 
 
87
commit 37e74619215ede8a4fa7f5edabab14b517e673b2
 
88
Author: Kristian Rietveld <kris@lanedo.com>
 
89
Date:   Fri Oct 14 11:25:21 2011 +0200
 
90
 
 
91
    CoreText backend: implement font fallbacks
 
92
 
 
93
    We implement font fallbacks by making use of
 
94
    CTFontCopyDefaultCascadeList, a public, non-exposed, symbol in the
 
95
    CoreText library.  We might want to handle this differently.
 
96
 
 
97
    The code now also uses a PangoCoreTextFontsetKey and
 
98
    PangoCoreTextFontKey, similar to the font config backend. This
 
99
    has also
 
100
    helped to clean up the code in general.
 
101
 
 
102
    This patch contains two fixes by Michael Natterer:
 
103
     1. Fix a bug in pango_core_text_font_key_equal() where the return
 
104
     value
 
105
    of memcmp() was wrongly interpreted.
 
106
     2. Cache PangoCoverage in PangoCoreTextFont.
 
107
 
 
108
 pango/pangocairo-coretext.h        |    4 +-
 
109
 pango/pangocairo-coretextfont.c    |   50 +-
 
110
 pango/pangocairo-coretextfontmap.c |   72 +-
 
111
 pango/pangocoretext-fontmap.c      | 1308
 
112
 ++++++++++++++++++++++++++----------
 
113
 pango/pangocoretext-private.h      |   31 +-
 
114
 pango/pangocoretext.c              |   94 ++-
 
115
 6 files changed, 1131 insertions(+), 428 deletions(-)
 
116
 
 
117
commit 2edc014f3c244be31deab6e584db54f87d223965
 
118
Author: Behdad Esfahbod <behdad@behdad.org>
 
119
Date:   Wed Jan 25 13:05:02 2012 -0500
 
120
 
 
121
    Update git.mk.  git.mk lives in its own upstream repo now.
 
122
 
 
123
 git.mk |   21 ++++++++++-----------
 
124
 1 file changed, 10 insertions(+), 11 deletions(-)
 
125
 
 
126
commit dbf40154eb5804f4e8c582f12b30b8291c9c3532
 
127
Author: Kristian Rietveld <kris@lanedo.com>
 
128
Date:   Sat Nov 26 17:27:43 2011 +0100
 
129
 
 
130
    Bug 664125 - Zero-width spaces cause missing characters
 
131
 
 
132
    This is fixed by using the characters obtained from CoreText's
 
133
    mapping from
 
134
    glyphs back to the original string instead of blindly iterating
 
135
    over the
 
136
    original gchar string. Take notice that we have to convert these
 
137
    indices
 
138
    from the mapping back to a byte index in the original UTF8 string.
 
139
 
 
140
    Zero-width spaces are already removed from the list of CGGlyphs,
 
141
    so we were
 
142
    mismatching CGGlyphs and characters from the original string. Using
 
143
    CoreText's list of string indices instead eliminates the mismatches.
 
144
 
 
145
 modules/basic/basic-coretext.c |   80
 
146
 +++++++++++++++++++---------------------
 
147
 1 file changed, 37 insertions(+), 43 deletions(-)
 
148
 
 
149
commit 92c58b4372833db6974da73b75d457177f402bb6
 
150
Author: Dan Winship <danw@gnome.org>
 
151
Date:   Thu Jan 12 13:22:10 2012 -0500
 
152
 
 
153
    Fix cross-compiling bug in configure.in
 
154
 
 
155
    https://bugzilla.gnome.org/show_bug.cgi?id=667799
 
156
 
 
157
 configure.in |    2 +-
 
158
 1 file changed, 1 insertion(+), 1 deletion(-)
 
159
 
 
160
commit b7eeb5abdd188624ad473628f180c4126adfa298
 
161
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
 
162
Date:   Fri Dec 30 15:44:54 2011 +0800
 
163
 
 
164
    config.h.win32.in: Update a bit
 
165
 
 
166
    Make the config entries more like the standard config.h.in
 
167
 
 
168
 config.h.win32.in |    3 +++
 
169
 1 file changed, 3 insertions(+)
 
170
 
 
171
commit 8bb4db0212c1885eb983b630e7944c928f069b5a
 
172
Author: Matthias Clasen <mclasen@redhat.com>
 
173
Date:   Tue Nov 22 15:42:32 2011 -0500
 
174
 
 
175
    Switch to dist-xz
 
176
 
 
177
 configure.in |    2 +-
 
178
 1 file changed, 1 insertion(+), 1 deletion(-)
 
179
 
1
180
commit f195700f548418069520dcacb6aeed93e86ea397
2
181
Author: Matthias Clasen <mclasen@redhat.com>
3
182
Date:   Tue Nov 22 15:09:18 2011 -0500
6
185
 
7
186
 NEWS         |   16 ++++++++++++++++
8
187
 configure.in |    2 +-
9
 
 2 files changed, 17 insertions(+), 1 deletions(-)
 
188
 2 files changed, 17 insertions(+), 1 deletion(-)
10
189
 
11
190
commit 04cd4589009fcda0b975731a07ca77ef50c7c772
12
191
Author: Matthias Clasen <mclasen@redhat.com>
27
206
    Include corefont docs
28
207
 
29
208
 docs/pango-docs.sgml |    1 +
30
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
209
 1 file changed, 1 insertion(+)
31
210
 
32
211
commit 352ff18989cc5dfc95370c25b8ac76ae8649ae27
33
212
Author: Matthias Clasen <mclasen@redhat.com>
40
219
    cause link failures.
41
220
 
42
221
 docs/Makefile.am |   24 ++++--------------------
43
 
 1 files changed, 4 insertions(+), 20 deletions(-)
 
222
 1 file changed, 4 insertions(+), 20 deletions(-)
44
223
 
45
224
commit dbd05f231e271e7952b4c7fc230ede3ee6a536cb
46
225
Author: Matthias Clasen <mclasen@redhat.com>
71
250
    and do a stricter bit mask check for certainty.
72
251
 
73
252
 pango/pangocoretext-fontmap.c |   16 +++++++++++-----
74
 
 1 files changed, 11 insertions(+), 5 deletions(-)
 
253
 1 file changed, 11 insertions(+), 5 deletions(-)
75
254
 
76
255
commit c21b1bfe1278de08673c495ba398fbdee874a778
77
256
Author: Kristian Rietveld <kris@lanedo.com>
80
259
    Get _pango_get_lc_ctype from system prefs on Mac OS X
81
260
 
82
261
 pango/pango-language.c |   21 +++++++++++++++++++++
83
 
 1 files changed, 21 insertions(+), 0 deletions(-)
 
262
 1 file changed, 21 insertions(+)
84
263
 
85
264
commit 6dc1e34f5910fbfc1b62fdf83eeda67edc25bc91
86
265
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
107
286
    Bye, bye, build breakage.
108
287
 
109
288
 configure.in |    7 -------
110
 
 1 files changed, 0 insertions(+), 7 deletions(-)
 
289
 1 file changed, 7 deletions(-)
111
290
 
112
291
commit 0e091322c494b1523617ca7488ea22e58f8a2c13
113
292
Author: Matthias Clasen <mclasen@redhat.com>
130
309
 pango/pangowin32.h      |    2 ++
131
310
 pango/pangox.h          |   21 +++++++++++++++++++++
132
311
 pango/pangoxft.h        |    5 +++++
133
 
 9 files changed, 41 insertions(+), 1 deletions(-)
 
312
 9 files changed, 41 insertions(+), 1 deletion(-)
134
313
 
135
314
commit c403250103234ad09cd90e3e8a9ea838ce82d72e
136
315
Author: Matthias Clasen <mclasen@redhat.com>
141
320
    1.29.4 got released off a side-branch, but bump version here too.
142
321
 
143
322
 configure.in |    2 +-
144
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
323
 1 file changed, 1 insertion(+), 1 deletion(-)
145
324
 
146
325
commit dfd872568e3fb7dce3bc32410f8eb247899d5bc1
147
326
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
158
337
    being used.
159
338
 
160
339
 build/win32/vs9/pangoft2.vcprojin |    8 ++++----
161
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
340
 1 file changed, 4 insertions(+), 4 deletions(-)
162
341
 
163
342
commit 3adf1c4f8fcd8fdadddbdb542cac745519d8d5eb
164
343
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
171
350
    landed into master.
172
351
 
173
352
 README.win32 |    8 ++++----
174
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
353
 1 file changed, 4 insertions(+), 4 deletions(-)
175
354
 
176
355
commit c820da4fa40e02bf64d27b0467a530d990c93358
177
356
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
201
380
    for GLib 2.29.6, so use g_atomic_int_add for GLib versions 2.29.5+.
202
381
 
203
382
 pango/opentype/hb-private.h |    4 ++++
204
 
 1 files changed, 4 insertions(+), 0 deletions(-)
 
383
 1 file changed, 4 insertions(+)
205
384
 
206
385
commit 8952c88b75d8ce439397c94e1327641c128e2073
207
386
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
231
410
    -Fix some errors in some of the words used here.
232
411
 
233
412
 build/win32/vs10/README.txt |  184
234
 
 ++++++++++++++++++++++--------------------
235
 
 1 files changed, 96 insertions(+), 88 deletions(-)
 
413
 ++++++++++++++++++++++---------------------
 
414
 1 file changed, 96 insertions(+), 88 deletions(-)
236
415
 
237
416
commit e4128227861446f1068f32b1458f8d6d88fbbd02
238
417
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
244
423
    VS9 project in commit 552ffc231.
245
424
 
246
425
 build/win32/vs10/pangowin32.vcxproj |   11 ++++++++++-
247
 
 1 files changed, 10 insertions(+), 1 deletions(-)
 
426
 1 file changed, 10 insertions(+), 1 deletion(-)
248
427
 
249
428
commit 67cd2728810c8b5abdfbd71af68294a59f1e2fcf
250
429
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
256
435
 
257
436
 build/win32/vs10/pango.sln    |  110 +++++++++++++++++-----------------
258
437
 build/win32/vs10/pango_fc.sln |  130
259
 
 ++++++++++++++++++++--------------------
 
438
 ++++++++++++++++++++---------------------
260
439
 2 files changed, 120 insertions(+), 120 deletions(-)
261
440
 
262
441
commit 5e4d95ff2a619eb747ac6d937206824de198a5bc
267
446
 
268
447
 build/win32/vs10/README.txt |   88
269
448
 +++++++++++++++++++++++++++++++++++++++++++
270
 
 1 files changed, 88 insertions(+), 0 deletions(-)
 
449
 1 file changed, 88 insertions(+)
271
450
 
272
451
commit 59be42675a3bc166a8ecf0ee95207a2d7fdd4f2b
273
452
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
305
484
 build/win32/vs10/pangowin32.vcxproj              |  315
306
485
 +++++++++++++++++++++
307
486
 build/win32/vs10/pangowin32.vcxproj.filters      |   39 +++
308
 
 14 files changed, 1940 insertions(+), 0 deletions(-)
 
487
 14 files changed, 1940 insertions(+)
309
488
 
310
489
commit d1b609184e1bab1c0fd01d8457fef68fc99e7658
311
490
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
340
519
    Fix annotation syntax
341
520
 
342
521
 pango/pango-context.c |    2 +-
343
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
522
 1 file changed, 1 insertion(+), 1 deletion(-)
344
523
 
345
524
commit c6633eec387739d8dc4d0cf1541bf95258f6029d
346
525
Author: Behdad Esfahbod <behdad@behdad.org>
350
529
    Pango.Context.get_font_description()
351
530
 
352
531
 pango/pango-context.c |    4 ++--
353
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
532
 1 file changed, 2 insertions(+), 2 deletions(-)
354
533
 
355
534
commit 5ee82b1a032128d90810fa9b156ebe936796777f
356
535
Author: Behdad Esfahbod <behdad@behdad.org>
359
538
    Minor
360
539
 
361
540
 configure.in |    2 +-
362
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
541
 1 file changed, 1 insertion(+), 1 deletion(-)
363
542
 
364
543
commit f340e2f38a9fa6ee94905029848199aa36de31b3
365
544
Author: Behdad Esfahbod <behdad@behdad.org>
368
547
    Add comment
369
548
 
370
549
 modules/basic/basic-win32.c |    2 ++
371
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
550
 1 file changed, 2 insertions(+)
372
551
 
373
552
commit a7ce7a1a2ba2072e847c6592127dd184dab692a1
374
553
Author: Behdad Esfahbod <behdad@behdad.org>
377
556
    Remove dead code
378
557
 
379
558
 modules/basic/basic-win32.c |   17 -----------------
380
 
 1 files changed, 0 insertions(+), 17 deletions(-)
 
559
 1 file changed, 17 deletions(-)
381
560
 
382
561
commit a1f4357d98d072761fe085197de53e01da46f2fc
383
562
Author: Matthias Clasen <mclasen@redhat.com>
388
567
    As requested in bug 403499.
389
568
 
390
569
 docs/pango_markup.sgml |   12 +++++++++---
391
 
 1 files changed, 9 insertions(+), 3 deletions(-)
 
570
 1 file changed, 9 insertions(+), 3 deletions(-)
392
571
 
393
572
commit 3641b7abc78bc4ba85031e2ad9bb3ce99077098e
394
573
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
404
583
     in better detail.
405
584
 
406
585
 README.win32               |   77
407
 
 ++++++++++++++++++++++++-------------------
 
586
 +++++++++++++++++++++++++-------------------
408
587
 build/win32/vs9/README.txt |    5 +++
409
588
 2 files changed, 48 insertions(+), 34 deletions(-)
410
589
 
420
599
    successfully.
421
600
 
422
601
 pango/opentype/Makefile.am |    1 +
423
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
602
 1 file changed, 1 insertion(+)
424
603
 
425
604
commit c37ae57816ac22543fd9fbcf880518406cd1457d
426
605
Author: Khaled Hosny <khaledhosny@eglug.org>
445
624
    https://bugzilla.gnome.org/show_bug.cgi?id=656014
446
625
 
447
626
 pango/pango-layout.c |    4 ++--
448
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
627
 1 file changed, 2 insertions(+), 2 deletions(-)
449
628
 
450
629
commit 7ac3b46beaa57703aa46e85d7300b3d5184eb028
451
630
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
456
635
    Tell people not to compile Pango in paths with spaces in them.
457
636
 
458
637
 build/win32/vs9/README.txt |    5 ++++-
459
 
 1 files changed, 4 insertions(+), 1 deletions(-)
 
638
 1 file changed, 4 insertions(+), 1 deletion(-)
460
639
 
461
640
commit 2574242575e6a1d7184bb43c61ba3090de611971
462
641
Author: Colin Walters <walters@verbum.org>
465
644
    build: Fix srcdir != builddir
466
645
 
467
646
 pango/Makefile.am |    9 +++++----
468
 
 1 files changed, 5 insertions(+), 4 deletions(-)
 
647
 1 file changed, 5 insertions(+), 4 deletions(-)
469
648
 
470
649
commit 8de0841234c9e9b07ba5be19833ef40476102952
471
650
Author: Rico Tzschichholz <ricotz@t-online.de>
476
655
    https://bugzilla.gnome.org/show_bug.cgi?id=654689
477
656
 
478
657
 pango/Makefile.am |    6 +++---
479
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
658
 1 file changed, 3 insertions(+), 3 deletions(-)
480
659
 
481
660
commit 42c1f6c71abf625e4086f05af84f712cbc45eea4
482
661
Author: Behdad Esfahbod <behdad@behdad.org>
488
667
    https://secure.wikimedia.org/wikipedia/en/wiki/Shi_shi_shi_shi_shi
489
668
 
490
669
 pango-view/test-chinese.txt |   14 ++++++++++++++
491
 
 1 files changed, 14 insertions(+), 0 deletions(-)
 
670
 1 file changed, 14 insertions(+)
492
671
 
493
672
commit f42a399b94d123f2153ce874825aed414666d9bc
494
673
Author: Evan Nemerson <evan@coeus-group.com>
497
676
    Bug 635399 - Add C include and exported packages information to GIRs
498
677
 
499
678
 pango/Makefile.am |   11 ++++++++---
500
 
 1 files changed, 8 insertions(+), 3 deletions(-)
 
679
 1 file changed, 8 insertions(+), 3 deletions(-)
501
680
 
502
681
commit 552ffc23118960bc598d6bd83db6661fe4bbf63b
503
682
Author: Behdad Esfahbod <behdad@behdad.org>
529
708
    abstract.
530
709
 
531
710
 pango/pango-engine.c |    2 +-
532
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
711
 1 file changed, 1 insertion(+), 1 deletion(-)
533
712
 
534
713
commit cbc881d42159e9a72e6ed408695f59df1a34513e
535
714
Author: Kristian Rietveld <kris@gtk.org>
569
748
    docs: pangofc-fontmap: Fix typo in "Since" tag
570
749
 
571
750
 pango/pangofc-fontmap.c |    4 ++--
572
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
751
 1 file changed, 2 insertions(+), 2 deletions(-)
573
752
 
574
753
commit b2974d3dc741e4e9f8d9b1b3bf879ac560484502
575
754
Author: Javier Jardon <jjardon@gnome.org>
578
757
    pango-docs.sgml: Add xml index pages to avoid warnings
579
758
 
580
759
 docs/pango-docs.sgml |   55
581
 
 +++++++++++++++++++++++++++++++++----------------
582
 
 1 files changed, 37 insertions(+), 18 deletions(-)
 
760
 +++++++++++++++++++++++++++++++++-----------------
 
761
 1 file changed, 37 insertions(+), 18 deletions(-)
583
762
 
584
763
commit eeed1f21dd72e38f4b8aaecd31d17f5d015c0c63
585
764
Author: Javier Jardón <jjardon@gnome.org>
588
767
    docs: Fix typo
589
768
 
590
769
 pango/pango-layout.c |    2 +-
591
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
770
 1 file changed, 1 insertion(+), 1 deletion(-)
592
771
 
593
772
commit 1e76e41aabf02158a3669646ea4b0c039f95dc52
594
773
Author: Javier Jardón <jjardon@gnome.org>
597
776
    docs: Fix references to PangoFcFontmap -> PangoFcFontMap
598
777
 
599
778
 pango/pangofc-fontmap.c |    8 ++++----
600
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
779
 1 file changed, 4 insertions(+), 4 deletions(-)
601
780
 
602
781
commit a4338eeb5489ac9c093d01d9cda95361ff0dd84e
603
782
Author: Stefan Kost <ensonic@users.sf.net>
609
788
    docs build
610
789
    faster and makes it easier to conditionally include stuff.
611
790
 
612
 
 docs/Makefile.am     |    7 +--
 
791
 docs/Makefile.am     |    7 ++--
613
792
 docs/pango-docs.sgml |  101
614
 
 ++++++++++++++++++-------------------------------
 
793
 ++++++++++++++++++--------------------------------
615
794
 2 files changed, 40 insertions(+), 68 deletions(-)
616
795
 
617
796
commit a0296ccbdd570b66a36bf4226760aed312d020d4
642
821
 
643
822
 NEWS         |    4 ++++
644
823
 configure.in |    2 +-
645
 
 2 files changed, 5 insertions(+), 1 deletions(-)
 
824
 2 files changed, 5 insertions(+), 1 deletion(-)
646
825
 
647
826
commit f895a8644b45dce0cce5d2005e53e4de67ec0041
648
827
Author: Javier Jardón <jjardon@gnome.org>
653
832
    This reverts commit 6d1c98aed05ad10111c896708aca86436fc2328a.
654
833
 
655
834
 docs/check.docs |    8 +++++---
656
 
 1 files changed, 5 insertions(+), 3 deletions(-)
 
835
 1 file changed, 5 insertions(+), 3 deletions(-)
657
836
 
658
837
commit 6d1c98aed05ad10111c896708aca86436fc2328a
659
838
Author: Javier Jardón <jjardon@gnome.org>
662
841
    asd
663
842
 
664
843
 docs/check.docs |    8 +++-----
665
 
 1 files changed, 3 insertions(+), 5 deletions(-)
 
844
 1 file changed, 3 insertions(+), 5 deletions(-)
666
845
 
667
846
commit 8cf8ef31973b80901be403b490a88b144b67863c
668
847
Author: Javier Jardón <jjardon@gnome.org>
671
850
    Bump version to 2.29.1
672
851
 
673
852
 configure.in |    2 +-
674
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
853
 1 file changed, 1 insertion(+), 1 deletion(-)
675
854
 
676
855
commit 4156c5a892731f5b047ede9c0e05e06fc9ed3f48
677
856
Author: Behdad Esfahbod <behdad@behdad.org>
680
859
    Update NEWS
681
860
 
682
861
 NEWS |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
683
 
 1 files changed, 56 insertions(+), 0 deletions(-)
 
862
 1 file changed, 56 insertions(+)
684
863
 
685
864
commit 2f3adfb762a0af6414f1c93627c2bd26ee90e7f8
686
865
Author: Colin Walters <walters@verbum.org>
707
886
    that we excluded but allows us to distcheck on linux.
708
887
 
709
888
 docs/Makefile.am |   20 +++++++++++++++++++-
710
 
 1 files changed, 19 insertions(+), 1 deletions(-)
 
889
 1 file changed, 19 insertions(+), 1 deletion(-)
711
890
 
712
891
commit b895d225346084dd9bd167c39ae1f3e2c2526252
713
892
Author: Behdad Esfahbod <behdad@behdad.org>
718
897
    This reverts commit 00d2842d8a5ded059fc058d05b2cffcf16186710.
719
898
 
720
899
 pango/pango-layout.c |    3 ++-
721
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
900
 1 file changed, 2 insertions(+), 1 deletion(-)
722
901
 
723
902
commit d415fb6aaffcfacdebcf94b05de5e055f3c9e70a
724
903
Author: Matthias Clasen <mclasen@redhat.com>
732
911
    https://bugzilla.gnome.org/show_bug.cgi?id=652616
733
912
 
734
913
 pango/pango-layout.c |    2 --
735
 
 1 files changed, 0 insertions(+), 2 deletions(-)
 
914
 1 file changed, 2 deletions(-)
736
915
 
737
916
commit 00d2842d8a5ded059fc058d05b2cffcf16186710
738
917
Author: Benjamin Otte <otte@redhat.com>
749
928
    https://bugzilla.gnome.org/show_bug.cgi?id=649783
750
929
 
751
930
 pango/pango-layout.c |    3 +--
752
 
 1 files changed, 1 insertions(+), 2 deletions(-)
 
931
 1 file changed, 1 insertion(+), 2 deletions(-)
753
932
 
754
933
commit 8e0fa0d1ab97c256829dab28a5c371689584bcd3
755
934
Author: Behdad Esfahbod <behdad@behdad.org>
758
937
    Bug 652227 - Unconditional use of stdint.h
759
938
 
760
939
 pango/opentype/hb-common.h |    6 +++++-
761
 
 1 files changed, 5 insertions(+), 1 deletions(-)
 
940
 1 file changed, 5 insertions(+), 1 deletion(-)
762
941
 
763
942
commit 4c7807daee7189f481d7c18b56b06d7b7dba7884
764
943
Author: Ryan Lortie <desrt@desrt.ca>
802
981
    Fix make check
803
982
 
804
983
 pango/pangox.def |    1 +
805
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
984
 1 file changed, 1 insertion(+)
806
985
 
807
986
commit 77f8691aee23357feea015d4c3d008a2335ee5f0
808
987
Author: Matej Knopp <matej.knopp@gmail.com>
813
992
    Fix CoreText backend to not use the casefold string as family name.
814
993
 
815
994
 pango/pangocoretext-fontmap.c |   12 +++++-------
816
 
 1 files changed, 5 insertions(+), 7 deletions(-)
 
995
 1 file changed, 5 insertions(+), 7 deletions(-)
817
996
 
818
997
commit d69e2462d6fa52114662c1e4122d081f14675541
819
998
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
824
1003
    accidently removed that during my last changes...doh.
825
1004
 
826
1005
 build/win32/vs9/Makefile.am |    3 ++-
827
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
1006
 1 file changed, 2 insertions(+), 1 deletion(-)
828
1007
 
829
1008
commit 104055ffcb95be030052340a26183609471afeaf
830
1009
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
835
1014
    There were some typoes in the autotools macros used-fix them up.
836
1015
 
837
1016
 config.h.win32.in |    4 ++--
838
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1017
 1 file changed, 2 insertions(+), 2 deletions(-)
839
1018
 
840
1019
commit a2541fc641826b8442fee48f9b42cdbd002045db
841
1020
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
846
1025
    Make pathnames Windows-like... missed them just now. doh.
847
1026
 
848
1027
 build/win32/vs9/README.txt |    8 ++++----
849
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
1028
 1 file changed, 4 insertions(+), 4 deletions(-)
850
1029
 
851
1030
commit 26e8f0e5f0744fc56829a40aadf1c5eedc98bd3f
852
1031
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
858
1037
    clearer.
859
1038
 
860
1039
 build/win32/vs9/README.txt |   57
861
 
 ++++++++++++++++++++++++++++++++++++++++++-
862
 
 1 files changed, 55 insertions(+), 2 deletions(-)
 
1040
 ++++++++++++++++++++++++++++++++++++++++++--
 
1041
 1 file changed, 55 insertions(+), 2 deletions(-)
863
1042
 
864
1043
commit 5abf6bd16b4ee121f86db6d7f676957b382b96db
865
1044
Author: Behdad Esfahbod <behdad@behdad.org>
868
1047
    Part of Bug 377539 - Make Pango thread-safe
869
1048
 
870
1049
 pango/pango-utils.c |    2 +-
871
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1050
 1 file changed, 1 insertion(+), 1 deletion(-)
872
1051
 
873
1052
commit 0e3aac21285509566fac9c9974e1ab194a88a126
874
1053
Author: Behdad Esfahbod <behdad@behdad.org>
877
1056
    [docs] Update templates
878
1057
 
879
1058
 docs/tmpl/layout.sgml |   19 +++++++++++++++++++
880
 
 1 files changed, 19 insertions(+), 0 deletions(-)
 
1059
 1 file changed, 19 insertions(+)
881
1060
 
882
1061
commit cdf228e0d70baef19022d35c1a7540ea0f71890d
883
1062
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
891
1070
    Fix that here.
892
1071
 
893
1072
 pango/pango.def |    2 +-
894
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1073
 1 file changed, 1 insertion(+), 1 deletion(-)
895
1074
 
896
1075
commit ce24c762004000d588441ed530dc681688ff728f
897
1076
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
904
1083
    suggested in README.win32
905
1084
 
906
1085
 build/win32/vs9/pango.vsprops |    6 ++++++
907
 
 1 files changed, 6 insertions(+), 0 deletions(-)
 
1086
 1 file changed, 6 insertions(+)
908
1087
 
909
1088
commit 43096d64a9766fd56f974de26de7d9a4930ba222
910
1089
Author: Behdad Esfahbod <behdad@behdad.org>
925
1104
    Turns out the index for 1.28 additions was mislabeled, too.
926
1105
 
927
1106
 docs/pango-docs.sgml |    5 ++++-
928
 
 1 files changed, 4 insertions(+), 1 deletions(-)
 
1107
 1 file changed, 4 insertions(+), 1 deletion(-)
929
1108
 
930
1109
commit ff16b948572c1bdc301d27af41b34566d28c6610
931
1110
Author: Matthias Clasen <mclasen@redhat.com>
942
1121
 pango/pango-layout.c    |   20 ++++++++++++++++++++
943
1122
 pango/pango-layout.h    |    2 ++
944
1123
 pango/pango.def         |    1 +
945
 
 4 files changed, 24 insertions(+), 0 deletions(-)
 
1124
 4 files changed, 24 insertions(+)
946
1125
 
947
1126
commit 4587e5d2231b717dd116253a49badc1ba3aa5db5
948
1127
Author: Matthias Clasen <mclasen@redhat.com>
959
1138
 pango/pango-layout.c    |   35 +++++++++++++++++++++++++++++++++++
960
1139
 pango/pango-layout.h    |    3 +++
961
1140
 pango/pango.def         |    1 +
962
 
 4 files changed, 40 insertions(+), 0 deletions(-)
 
1141
 4 files changed, 40 insertions(+)
963
1142
 
964
1143
commit c43c4884bf4b405f58a0c966384ee751f82ee69c
965
1144
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
988
1167
 build/win32/vs9/install.vcproj      |   67 ++++++++-
989
1168
 build/win32/vs9/pango.sln           |   20 +--
990
1169
 build/win32/vs9/pango.vcprojin      |  200 ++++++++++++++++++-------
991
 
 build/win32/vs9/pango.vsprops       |   11 ++-
 
1170
 build/win32/vs9/pango.vsprops       |   11 +-
992
1171
 build/win32/vs9/pango_fc.sln        |   82 ++++++++++
993
1172
 build/win32/vs9/pangocairo.vcprojin |  157 +++++++++++++++++++-
994
1173
 build/win32/vs9/pangoft2.vcprojin   |  280
995
1174
 +++++++----------------------------
996
 
 build/win32/vs9/pangowin32.vcproj   |  146 +++++++++++++++++--
 
1175
 build/win32/vs9/pangowin32.vcproj   |  146 ++++++++++++++++--
997
1176
 build/win32/vs9/stdint.h            |   36 +++++
998
1177
 12 files changed, 683 insertions(+), 358 deletions(-)
999
1178
 
1009
1188
    -Allow option to not use FontConfig
1010
1189
 
1011
1190
 config.h.win32.in |   10 ++++++++--
1012
 
 1 files changed, 8 insertions(+), 2 deletions(-)
 
1191
 1 file changed, 8 insertions(+), 2 deletions(-)
1013
1192
 
1014
1193
commit ae9013c6a598eb589449bac0fedda58a624f9240
1015
1194
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
1022
1201
    the main Pango/PangoWin32/PangoFT2 DLL(s)
1023
1202
 
1024
1203
 build/win32/vs9/pango.vsprops |    9 ++++++---
1025
 
 1 files changed, 6 insertions(+), 3 deletions(-)
 
1204
 1 file changed, 6 insertions(+), 3 deletions(-)
1026
1205
 
1027
1206
commit 3b0ec344f0c8af11192decb3ab3c7795f83416c1
1028
1207
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
1057
1236
    the board.
1058
1237
 
1059
1238
 build/win32/vs9/pangoft2.vcprojin |    9 ++++++---
1060
 
 1 files changed, 6 insertions(+), 3 deletions(-)
 
1239
 1 file changed, 6 insertions(+), 3 deletions(-)
1061
1240
 
1062
1241
commit 094e17cc0666206b336976f63ac8e4239f58a66c
1063
1242
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
1069
1248
    files.
1070
1249
 
1071
1250
 build/win32/vs9/pangowin32.vcproj |    4 ++++
1072
 
 1 files changed, 4 insertions(+), 0 deletions(-)
 
1251
 1 file changed, 4 insertions(+)
1073
1252
 
1074
1253
commit 632dbd4a7c30805cb42f632933806e6218d65ed0
1075
1254
Author: Behdad Esfahbod <behdad@behdad.org>
1078
1257
    Fix doc templates
1079
1258
 
1080
1259
 docs/pango-sections.txt |   42 ++++++++++++++++++++++++++++++++++++++++++
1081
 
 1 files changed, 42 insertions(+), 0 deletions(-)
 
1260
 1 file changed, 42 insertions(+)
1082
1261
 
1083
1262
commit 6e9478e1d552c3c71ff72f707cd1dee8f60e902a
1084
1263
Author: Behdad Esfahbod <behdad@behdad.org>
1089
1268
    That part of code is to be removed thanks to HarfBuzz move though.
1090
1269
 
1091
1270
 pango/pango-ot-info.c |    2 +-
1092
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1271
 1 file changed, 1 insertion(+), 1 deletion(-)
1093
1272
 
1094
1273
commit beecf8f88188391132d30b940c2a312ecaebba3a
1095
1274
Author: Behdad Esfahbod <behdad@behdad.org>
1118
1297
 
1119
1298
 pango/pangocoretext-fontmap.c |   96
1120
1299
 +++++++++++++++++++----------------------
1121
 
 1 files changed, 44 insertions(+), 52 deletions(-)
 
1300
 1 file changed, 44 insertions(+), 52 deletions(-)
1122
1301
 
1123
1302
commit 0cc03a0a8e91627267236ff94cc424203c39b03a
1124
1303
Author: John Ralls <jralls@ceridwen.us>
1130
1309
 
1131
1310
 pango/pangocoretext-fontmap.c |   93
1132
1311
 ++++++++++++++++++++++-------------------
1133
 
 1 files changed, 50 insertions(+), 43 deletions(-)
 
1312
 1 file changed, 50 insertions(+), 43 deletions(-)
1134
1313
 
1135
1314
commit 726ae04375c47fb314d70ea952f811bb223f998a
1136
1315
Author: Javier Jardón <jjardon@gnome.org>
1151
1330
 
1152
1331
 pango/pangocoretext-fontmap.c |   37
1153
1332
 ++-----------------------------------
1154
 
 1 files changed, 2 insertions(+), 35 deletions(-)
 
1333
 1 file changed, 2 insertions(+), 35 deletions(-)
1155
1334
 
1156
1335
commit 02f80c9acdec53f58fef0e12f41363c3c4ea1efe
1157
1336
Author: Javier Jardón <jjardon@gnome.org>
1160
1339
    pango/pangoatsui-fontmap.c: Use G_DEFINE_TYPE
1161
1340
 
1162
1341
 pango/pangoatsui-fontmap.c |   39 +++------------------------------------
1163
 
 1 files changed, 3 insertions(+), 36 deletions(-)
 
1342
 1 file changed, 3 insertions(+), 36 deletions(-)
1164
1343
 
1165
1344
commit e250030b45c7744e23fcd5c78aa916f1b4f4aee1
1166
1345
Author: Javier Jardón <jjardon@gnome.org>
1170
1349
    G_DEFINE_ABSTRACT_TYPE
1171
1350
 
1172
1351
 pango/pango-renderer.c |    6 +-----
1173
 
 1 files changed, 1 insertions(+), 5 deletions(-)
 
1352
 1 file changed, 1 insertion(+), 5 deletions(-)
1174
1353
 
1175
1354
commit c8aed76aefe5b2dc81420cf9498df831ff2a0d65
1176
1355
Author: Javier Jardón <jjardon@gnome.org>
1179
1358
    ngo/pango-ot-ruleset.c:  Use G_DEFINE_TYPE
1180
1359
 
1181
1360
 pango/pango-ot-ruleset.c |   39 ++++-----------------------------------
1182
 
 1 files changed, 4 insertions(+), 35 deletions(-)
 
1361
 1 file changed, 4 insertions(+), 35 deletions(-)
1183
1362
 
1184
1363
commit 57ebe449bf7a14397548905ad006b093b28bb876
1185
1364
Author: Javier Jardón <jjardon@gnome.org>
1188
1367
    pango/pango-ot-info.c: Use G_DEFINE_TYPE
1189
1368
 
1190
1369
 pango/pango-ot-info.c |   37 ++++++-------------------------------
1191
 
 1 files changed, 6 insertions(+), 31 deletions(-)
 
1370
 1 file changed, 6 insertions(+), 31 deletions(-)
1192
1371
 
1193
1372
commit cdf841adb0bddcd790a2230d04749a680d827015
1194
1373
Author: Javier Jardón <jjardon@gnome.org>
1197
1376
    pango/pangox.c: Use G_DEFINE_TYPE
1198
1377
 
1199
1378
 pango/pangox.c |   37 +++----------------------------------
1200
 
 1 files changed, 3 insertions(+), 34 deletions(-)
 
1379
 1 file changed, 3 insertions(+), 34 deletions(-)
1201
1380
 
1202
1381
commit f2653e1d45b79613395fbf71452d40a493431a5c
1203
1382
Author: Javier Jardón <jjardon@gnome.org>
1207
1386
 
1208
1387
 pango/pango-impl-utils.h |   46
1209
1388
 ----------------------------------------------
1210
 
 1 files changed, 0 insertions(+), 46 deletions(-)
 
1389
 1 file changed, 46 deletions(-)
1211
1390
 
1212
1391
commit b428d5ef171375b7aa1101aaef56ef7a2ceb544e
1213
1392
Author: Javier Jardón <jjardon@gnome.org>
1216
1395
    pango/pangofc-fontmap.c: Use G_DEFINE_TYPE instead custom macro
1217
1396
 
1218
1397
 pango/pangofc-fontmap.c |   37 +++++++++++++------------------------
1219
 
 1 files changed, 13 insertions(+), 24 deletions(-)
 
1398
 1 file changed, 13 insertions(+), 24 deletions(-)
1220
1399
 
1221
1400
commit 446aeb6991c1dd4e6f688ac8fbface1dc67faa41
1222
1401
Author: Javier Jardón <jjardon@gnome.org>
1225
1404
    pango/pango-fontset.c: Use G_DEFINE_TYPE instead custom macro
1226
1405
 
1227
1406
 pango/pango-fontset.c |   21 ++++++++++-----------
1228
 
 1 files changed, 10 insertions(+), 11 deletions(-)
 
1407
 1 file changed, 10 insertions(+), 11 deletions(-)
1229
1408
 
1230
1409
commit ea702f4c4feac29e6366a04c02953c425bb5f288
1231
1410
Author: Javier Jardón <jjardon@gnome.org>
1235
1414
 
1236
1415
 pango/pango-engine.c |   49
1237
1416
 ++++++++++++++++++++++++++++++++++++-------------
1238
 
 1 files changed, 36 insertions(+), 13 deletions(-)
 
1417
 1 file changed, 36 insertions(+), 13 deletions(-)
1239
1418
 
1240
1419
commit a8fe5748d8a921a18c203e0c3e5cb7d15ef01dd8
1241
1420
Author: Javier Jardón <jjardon@gnome.org>
1246
1425
    https://bugzilla.gnome.org/show_bug.cgi?id=578018
1247
1426
 
1248
1427
 pango/modules.c |   16 ++++++++--------
1249
 
 1 files changed, 8 insertions(+), 8 deletions(-)
 
1428
 1 file changed, 8 insertions(+), 8 deletions(-)
1250
1429
 
1251
1430
commit cf183c9ed22d0f906deb584a9ea4959881d9795f
1252
1431
Author: Javier Jardón <jjardon@gnome.org>
1255
1434
    Use G_DEFINE_INTERFACE in PangoCairoFontMap
1256
1435
 
1257
1436
 pango/pangocairo-fontmap.c |   32 +++++---------------------------
1258
 
 1 files changed, 5 insertions(+), 27 deletions(-)
 
1437
 1 file changed, 5 insertions(+), 27 deletions(-)
1259
1438
 
1260
1439
commit 9a2a18ddd107370adbe4194e19cda136c1e507f4
1261
1440
Author: Javier Jardón <jjardon@gnome.org>
1264
1443
    Use G_DEFINE_INTERFACE in PangoCairoFont
1265
1444
 
1266
1445
 pango/pangocairo-font.c |   34 ++++++----------------------------
1267
 
 1 files changed, 6 insertions(+), 28 deletions(-)
 
1446
 1 file changed, 6 insertions(+), 28 deletions(-)
1268
1447
 
1269
1448
commit f646ce13531b046a7c2530df2253e6b61362f0fb
1270
1449
Author: Alberto Ruiz <aruiz@gnome.org>
1273
1452
    Removing introspection warnings from pangoxft-fontmap
1274
1453
 
1275
1454
 pango/pangoxft-fontmap.c |    4 ++--
1276
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1455
 1 file changed, 2 insertions(+), 2 deletions(-)
1277
1456
 
1278
1457
commit 6fc80c1c95000161fd00052927df081aa879fdaf
1279
1458
Author: Alberto Ruiz <aruiz@gnome.org>
1282
1461
    Removing introspection warnings from pangocairo-fontmap
1283
1462
 
1284
1463
 pango/pangocairo-fontmap.c |   18 +++++++++---------
1285
 
 1 files changed, 9 insertions(+), 9 deletions(-)
 
1464
 1 file changed, 9 insertions(+), 9 deletions(-)
1286
1465
 
1287
1466
commit 7e30d468e12d2447244d8c67dd01c215f7f7f2e4
1288
1467
Author: Alberto Ruiz <aruiz@gnome.org>
1291
1470
    Removing introspection warnings from pangocairo-context
1292
1471
 
1293
1472
 pango/pangocairo-context.c |    6 +++---
1294
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1473
 1 file changed, 3 insertions(+), 3 deletions(-)
1295
1474
 
1296
1475
commit adab8c169c04eea795d009f8097eb00235db386b
1297
1476
Author: Alberto Ruiz <aruiz@gnome.org>
1301
1480
    in pango_glyph_item_apply_attr
1302
1481
 
1303
1482
 pango/pango-glyph-item.c |    6 +++---
1304
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1483
 1 file changed, 3 insertions(+), 3 deletions(-)
1305
1484
 
1306
1485
commit 1a10aafb9acf4044ac6c9913837ce4a1c53c6e98
1307
1486
Author: Alberto Ruiz <aruiz@gnome.org>
1311
1490
    in pango_split_file_list
1312
1491
 
1313
1492
 pango/pango-utils.c |    3 ++-
1314
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
1493
 1 file changed, 2 insertions(+), 1 deletion(-)
1315
1494
 
1316
1495
commit a502c5eff4d679ea5d623b698e3d6bcf5db023e9
1317
1496
Author: Alberto Ruiz <aruiz@gnome.org>
1332
1511
    for the return value in pango_itemize_with_base_dir
1333
1512
 
1334
1513
 pango/pango-context.c |   12 ++++++++----
1335
 
 1 files changed, 8 insertions(+), 4 deletions(-)
 
1514
 1 file changed, 8 insertions(+), 4 deletions(-)
1336
1515
 
1337
1516
commit c2009f6e323d15e6fb4268b1f45a5cb29ec908b3
1338
1517
Author: Alberto Ruiz <aruiz@gnome.org>
1342
1521
    for the return value in pango_itemize
1343
1522
 
1344
1523
 pango/pango-context.c |    2 +-
1345
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1524
 1 file changed, 1 insertion(+), 1 deletion(-)
1346
1525
 
1347
1526
commit f02381600e245c9c5721d6b4d5e98e3f067282d5
1348
1527
Author: Alberto Ruiz <aruiz@gnome.org>
1352
1531
    pango_layout_index_to_line_x
1353
1532
 
1354
1533
 pango/pango-layout.c |    8 ++++----
1355
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
1534
 1 file changed, 4 insertions(+), 4 deletions(-)
1356
1535
 
1357
1536
commit 4c34b796e0977b7b95e1e86c76e365671b1a6e9d
1358
1537
Author: Alberto Ruiz <aruiz@gnome.org>
1362
1541
    in pango_attr_list_filter
1363
1542
 
1364
1543
 pango/pango-attributes.c |    6 +++---
1365
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1544
 1 file changed, 3 insertions(+), 3 deletions(-)
1366
1545
 
1367
1546
commit 133b534182bfbc9ff69fde54ce31d72af0308080
1368
1547
Author: Alberto Ruiz <aruiz@gnome.org>
1372
1551
    value in pango_attr_list_filter
1373
1552
 
1374
1553
 pango/pango-attributes.c |    4 ++--
1375
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1554
 1 file changed, 2 insertions(+), 2 deletions(-)
1376
1555
 
1377
1556
commit 02fb7adc8ab51a04c5671c81d3fe2dcf4ed5258d
1378
1557
Author: Alberto Ruiz <aruiz@gnome.org>
1382
1561
    in pango_layout_iter_get_run_readonly
1383
1562
 
1384
1563
 pango/pango-layout.c |    2 +-
1385
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1564
 1 file changed, 1 insertion(+), 1 deletion(-)
1386
1565
 
1387
1566
commit 5f55ce69f8611fe53670f1001d5b8ecae94b2bd3
1388
1567
Author: Alberto Ruiz <aruiz@gnome.org>
1392
1571
    in pango_layout_iter_get_layout
1393
1572
 
1394
1573
 pango/pango-layout.c |    2 +-
1395
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1574
 1 file changed, 1 insertion(+), 1 deletion(-)
1396
1575
 
1397
1576
commit c2d5d982840c08af3bf5cb0e2181919854e3a8f7
1398
1577
Author: Alberto Ruiz <aruiz@gnome.org>
1402
1581
    in pango_font_get_font_map
1403
1582
 
1404
1583
 pango/fonts.c |    3 ++-
1405
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
1584
 1 file changed, 2 insertions(+), 1 deletion(-)
1406
1585
 
1407
1586
commit d129f5db7ab71e986e2c8dd8e08a8899ebda8ae2
1408
1587
Author: Alberto Ruiz <aruiz@gnome.org>
1412
1591
    in pango_fontset_get_font
1413
1592
 
1414
1593
 pango/pango-fontset.c |    4 ++--
1415
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1594
 1 file changed, 2 insertions(+), 2 deletions(-)
1416
1595
 
1417
1596
commit 77fd2d97d3cb62ff4e2cebe19ad60e215a04fe13
1418
1597
Author: Alberto Ruiz <aruiz@gnome.org>
1422
1601
    value in pango_fontset_foreach
1423
1602
 
1424
1603
 pango/pango-fontset.c |    4 ++--
1425
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1604
 1 file changed, 2 insertions(+), 2 deletions(-)
1426
1605
 
1427
1606
commit 776789e30d1227186c4efd7e38f1517c4daaab65
1428
1607
Author: Alberto Ruiz <aruiz@gnome.org>
1432
1611
    in pango_font_map_create_context
1433
1612
 
1434
1613
 pango/pango-fontmap.c |    4 ++--
1435
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1614
 1 file changed, 2 insertions(+), 2 deletions(-)
1436
1615
 
1437
1616
commit d709d1bd56a9233aba5e53f3718b158ff695b3e8
1438
1617
Author: Alberto Ruiz <aruiz@gnome.org>
1442
1621
    in pango_font_map_load_fontset
1443
1622
 
1444
1623
 pango/pango-fontmap.c |    3 ++-
1445
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
1624
 1 file changed, 2 insertions(+), 1 deletion(-)
1446
1625
 
1447
1626
commit 2ebd68ee8773fc5bd866b30068432bd81151b269
1448
1627
Author: Alberto Ruiz <aruiz@gnome.org>
1451
1630
    Fixed typos in the PangoContext gtk-doc
1452
1631
 
1453
1632
 pango/pango-context.c |    6 +++---
1454
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1633
 1 file changed, 3 insertions(+), 3 deletions(-)
1455
1634
 
1456
1635
commit 22822d7700e87dbe8a8125072775e40bd8b53f99
1457
1636
Author: Alberto Ruiz <aruiz@gnome.org>
1461
1640
    in pango_font_map_load_font
1462
1641
 
1463
1642
 pango/pango-fontmap.c |    3 ++-
1464
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
1643
 1 file changed, 2 insertions(+), 1 deletion(-)
1465
1644
 
1466
1645
commit 1b4d351d114996e357912b5c1bfc979cfb39b294
1467
1646
Author: Alberto Ruiz <aruiz@gnome.org>
1471
1650
    in pango_context_get_font_map
1472
1651
 
1473
1652
 pango/pango-context.c |    9 +++++----
1474
 
 1 files changed, 5 insertions(+), 4 deletions(-)
 
1653
 1 file changed, 5 insertions(+), 4 deletions(-)
1475
1654
 
1476
1655
commit 52a495cef9d35c02d54ca010e24f1e8f44384193
1477
1656
Author: Alberto Ruiz <aruiz@gnome.org>
1481
1660
    in pango_context_load_font
1482
1661
 
1483
1662
 pango/pango-context.c |    3 ++-
1484
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
1663
 1 file changed, 2 insertions(+), 1 deletion(-)
1485
1664
 
1486
1665
commit 19e6c35b5c78efd6b22ec04af4a8624d3c0068e0
1487
1666
Author: Alberto Ruiz <aruiz@gnome.org>
1491
1670
    in pango_context_load_fontset
1492
1671
 
1493
1672
 pango/pango-context.c |    3 ++-
1494
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
1673
 1 file changed, 2 insertions(+), 1 deletion(-)
1495
1674
 
1496
1675
commit 4acacd27dd882c8aec4a7f49cc487724e69e2e14
1497
1676
Author: Alberto Ruiz <aruiz@gnome.org>
1501
1680
    in pango_layout_copy
1502
1681
 
1503
1682
 pango/pango-layout.c |    6 +++---
1504
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1683
 1 file changed, 3 insertions(+), 3 deletions(-)
1505
1684
 
1506
1685
commit b803f39784f2feb178ad64979a01aa03d0a2ab3d
1507
1686
Author: Alberto Ruiz <aruiz@gnome.org>
1511
1690
    in pango_renderer_get_layout
1512
1691
 
1513
1692
 pango/pango-renderer.c |    2 +-
1514
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1693
 1 file changed, 1 insertion(+), 1 deletion(-)
1515
1694
 
1516
1695
commit db3ac6083dcd3fe6c9f31c70d314f8a572545057
1517
1696
Author: Alberto Ruiz <aruiz@gnome.org>
1520
1699
    Fixing array introspection annotation for pango_attr_iterator_get_font
1521
1700
 
1522
1701
 pango/pango-attributes.c |    2 +-
1523
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1702
 1 file changed, 1 insertion(+), 1 deletion(-)
1524
1703
 
1525
1704
commit 5d0ee19f32e062240d2084bf037d0a9e31bce6df
1526
1705
Author: Alberto Ruiz <aruiz@gnome.org>
1530
1709
    pango_layout_line_get_x_ranges
1531
1710
 
1532
1711
 pango/pango-layout.c |    2 +-
1533
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1712
 1 file changed, 1 insertion(+), 1 deletion(-)
1534
1713
 
1535
1714
commit e8a88f1270431a74292a401ff195de1f72575932
1536
1715
Author: Alberto Ruiz <aruiz@gnome.org>
1539
1718
    Adding allow-none introspection metadata to pango_language_from_string
1540
1719
 
1541
1720
 pango/pango-language.c |    2 +-
1542
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1721
 1 file changed, 1 insertion(+), 1 deletion(-)
1543
1722
 
1544
1723
commit 9ba9b52e188c3ee903fbbb59d50132bbc9019b3a
1545
1724
Author: Alberto Ruiz <aruiz@gnome.org>
1548
1727
    Adding allow-none introspection metadata to pango_itemize
1549
1728
 
1550
1729
 pango/pango-context.c |    7 +++----
1551
 
 1 files changed, 3 insertions(+), 4 deletions(-)
 
1730
 1 file changed, 3 insertions(+), 4 deletions(-)
1552
1731
 
1553
1732
commit 025fe509acd3033e8fe4ffd1bea4584b286c527f
1554
1733
Author: Alberto Ruiz <aruiz@gnome.org>
1558
1737
    pango_itemize_with_base_dir
1559
1738
 
1560
1739
 pango/pango-context.c |    4 ++--
1561
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1740
 1 file changed, 2 insertions(+), 2 deletions(-)
1562
1741
 
1563
1742
commit 5ad1c470011e732913d26dcd63be4adcdcbf33a9
1564
1743
Author: Alberto Ruiz <aruiz@gnome.org>
1567
1746
    Adding (out) introspection metadata to pango_read_line
1568
1747
 
1569
1748
 pango/pango-utils.c |    2 +-
1570
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1749
 1 file changed, 1 insertion(+), 1 deletion(-)
1571
1750
 
1572
1751
commit 2f52540631fe1d6868901f00e6de0018e021bdd9
1573
1752
Author: Alberto Ruiz <aruiz@gnome.org>
1576
1755
    Adding (inout) introspection metadata to pango_skip_space
1577
1756
 
1578
1757
 pango/pango-utils.c |    2 +-
1579
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1758
 1 file changed, 1 insertion(+), 1 deletion(-)
1580
1759
 
1581
1760
commit 8058e20ba19b728daa4c5b777676d99fe194366c
1582
1761
Author: Alberto Ruiz <aruiz@gnome.org>
1585
1764
    Adding (inout)/(out) introspection metadata to pango_scan_word
1586
1765
 
1587
1766
 pango/pango-utils.c |    6 +++---
1588
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1767
 1 file changed, 3 insertions(+), 3 deletions(-)
1589
1768
 
1590
1769
commit 17972485e6036d0e9f36f06d6e0c8b4d3060180c
1591
1770
Author: Alberto Ruiz <aruiz@gnome.org>
1594
1773
    Adding (inout)/(out) introspection metadata to pango_scan_string
1595
1774
 
1596
1775
 pango/pango-utils.c |    4 ++--
1597
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1776
 1 file changed, 2 insertions(+), 2 deletions(-)
1598
1777
 
1599
1778
commit 7a1057f6e1763533773d4ef41ff67cbb0ced1f52
1600
1779
Author: Alberto Ruiz <aruiz@gnome.org>
1603
1782
    Adding (inout) introspection metadata to pango_scan_int
1604
1783
 
1605
1784
 pango/pango-utils.c |    4 ++--
1606
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1785
 1 file changed, 2 insertions(+), 2 deletions(-)
1607
1786
 
1608
1787
commit 918dd91598bba4916f98d9866e6715232e0db322
1609
1788
Author: Alberto Ruiz <aruiz@gnome.org>
1612
1791
    adding (out) introspection metadata to pango_parse_enum
1613
1792
 
1614
1793
 pango/pango-utils.c |    4 ++--
1615
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1794
 1 file changed, 2 insertions(+), 2 deletions(-)
1616
1795
 
1617
1796
commit 50d7ad6f2073742c7b0423f578171b380b8196f5
1618
1797
Author: Alberto Ruiz <aruiz@gnome.org>
1621
1800
    adding allow-none introspection metadata to pango_parse_enum
1622
1801
 
1623
1802
 pango/pango-utils.c |    6 +++---
1624
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1803
 1 file changed, 3 insertions(+), 3 deletions(-)
1625
1804
 
1626
1805
commit d1c260d3d48ffa32aebe16e987fea187e635c370
1627
1806
Author: Alberto Ruiz <aruiz@gnome.org>
1630
1809
    Add out and array metadata annotations to pango_lookup_aliases
1631
1810
 
1632
1811
 pango/pango-utils.c |    4 ++--
1633
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1812
 1 file changed, 2 insertions(+), 2 deletions(-)
1634
1813
 
1635
1814
commit fe789d8e8d062e6f495e54bef585a74958bd671e
1636
1815
Author: Alberto Ruiz <aruiz@gnome.org>
1639
1818
    adding (inout) introspection metadata to pango_quantize_line_geometry
1640
1819
 
1641
1820
 pango/pango-utils.c |    4 ++--
1642
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1821
 1 file changed, 2 insertions(+), 2 deletions(-)
1643
1822
 
1644
1823
commit 2bcf1b9dbba5be761ddaa4db984ae74087c230f0
1645
1824
Author: Alberto Ruiz <aruiz@gnome.org>
1648
1827
    adding allow-none introspection metadata to pango_extents_to_pixels
1649
1828
 
1650
1829
 pango/pango-utils.c |    4 ++--
1651
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1830
 1 file changed, 2 insertions(+), 2 deletions(-)
1652
1831
 
1653
1832
commit 22dde4fcb56755435fd44890a40afee6d3e5ceba
1654
1833
Author: Alberto Ruiz <aruiz@gnome.org>
1658
1837
    pango_attr_shape_new_with_data
1659
1838
 
1660
1839
 pango/pango-attributes.c |   10 +++++-----
1661
 
 1 files changed, 5 insertions(+), 5 deletions(-)
 
1840
 1 file changed, 5 insertions(+), 5 deletions(-)
1662
1841
 
1663
1842
commit c07ff4f3755f7d00f44f94b5731d1abe47f35cb6
1664
1843
Author: Alberto Ruiz <aruiz@gnome.org>
1667
1846
    adding (out) introspection metadata to pango_tab_array_get_tabs
1668
1847
 
1669
1848
 pango/pango-tabs.c |    6 ++++--
1670
 
 1 files changed, 4 insertions(+), 2 deletions(-)
 
1849
 1 file changed, 4 insertions(+), 2 deletions(-)
1671
1850
 
1672
1851
commit 02fec2d8be12c44d16a569c70952b84ff8a98ce4
1673
1852
Author: Alberto Ruiz <aruiz@gnome.org>
1676
1855
    adding allow-none introspection metadata to pango_tab_array_get_tabs
1677
1856
 
1678
1857
 pango/pango-tabs.c |    4 ++--
1679
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1858
 1 file changed, 2 insertions(+), 2 deletions(-)
1680
1859
 
1681
1860
commit 4ee2ce45c44f97e7e1232021447fd2fb710c8a75
1682
1861
Author: Alberto Ruiz <aruiz@gnome.org>
1685
1864
    adding (out) introspection metadata to pango_tab_array_get_tab
1686
1865
 
1687
1866
 pango/pango-tabs.c |    4 ++--
1688
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1867
 1 file changed, 2 insertions(+), 2 deletions(-)
1689
1868
 
1690
1869
commit cbd5942b82b6b7336accf3fc053366b67a002390
1691
1870
Author: Alberto Ruiz <aruiz@gnome.org>
1694
1873
    adding allow-none introspection metadata to pango_tab_array_get_tab
1695
1874
 
1696
1875
 pango/pango-tabs.c |    4 ++--
1697
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1876
 1 file changed, 2 insertions(+), 2 deletions(-)
1698
1877
 
1699
1878
commit 1050fa307ebdd54f08eb3cf7dee56a769b09941e
1700
1879
Author: Alberto Ruiz <aruiz@gnome.org>
1703
1882
    adding (out) introspection metadata to pango_script_iter_get_range
1704
1883
 
1705
1884
 pango/pango-script.c |    6 +++---
1706
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1885
 1 file changed, 3 insertions(+), 3 deletions(-)
1707
1886
 
1708
1887
commit c73479690963e11fa7f4d4a87475cb02c78ca0c1
1709
1888
Author: Alberto Ruiz <aruiz@gnome.org>
1713
1892
    pango_script_iter_get_range
1714
1893
 
1715
1894
 pango/pango-script.c |    6 +++---
1716
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
1895
 1 file changed, 3 insertions(+), 3 deletions(-)
1717
1896
 
1718
1897
commit b96debcfa2c7a8cd8fae3e4cc9aa1d460ec7f33e
1719
1898
Author: Alberto Ruiz <aruiz@gnome.org>
1722
1901
    adding allow-none introspection metadata to pango_renderer_set_matrix
1723
1902
 
1724
1903
 pango/pango-renderer.c |    2 +-
1725
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1904
 1 file changed, 1 insertion(+), 1 deletion(-)
1726
1905
 
1727
1906
commit 139b37c44c297e009ece5a8efa040f36125e8acb
1728
1907
Author: Alberto Ruiz <aruiz@gnome.org>
1731
1910
    adding allow-none introspection metadata to pango_renderer_set_color
1732
1911
 
1733
1912
 pango/pango-renderer.c |    2 +-
1734
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1913
 1 file changed, 1 insertion(+), 1 deletion(-)
1735
1914
 
1736
1915
commit 9ec9fe8dee8425612c49193150d35ecb9e3300c1
1737
1916
Author: Alberto Ruiz <aruiz@gnome.org>
1741
1920
    pango_renderer_draw_glyph_item
1742
1921
 
1743
1922
 pango/pango-renderer.c |    2 +-
1744
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1923
 1 file changed, 1 insertion(+), 1 deletion(-)
1745
1924
 
1746
1925
commit f811e4de18034dd8c6ef2bbd6895aa3e4d3deb3c
1747
1926
Author: Alberto Ruiz <aruiz@gnome.org>
1751
1930
    pango_matrix_get_font_scale_factor
1752
1931
 
1753
1932
 pango/pango-matrix.c |    2 +-
1754
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1933
 1 file changed, 1 insertion(+), 1 deletion(-)
1755
1934
 
1756
1935
commit 877447d21c495622ac84de2ac85364b3f4df7891
1757
1936
Author: Alberto Ruiz <aruiz@gnome.org>
1761
1940
    pango_matrix_transform_distance
1762
1941
 
1763
1942
 pango/pango-matrix.c |    4 ++--
1764
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1943
 1 file changed, 2 insertions(+), 2 deletions(-)
1765
1944
 
1766
1945
commit 0c3a5f2acf7c2fd74de7652d277b7851e216e3ec
1767
1946
Author: Alberto Ruiz <aruiz@gnome.org>
1770
1949
    adding (inout) introspection metadata to pango_matrix_transform_point
1771
1950
 
1772
1951
 pango/pango-matrix.c |    4 ++--
1773
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
1952
 1 file changed, 2 insertions(+), 2 deletions(-)
1774
1953
 
1775
1954
commit 3132f0f62ff0485d33047e5390ada5feee5b7e8f
1776
1955
Author: Alberto Ruiz <aruiz@gnome.org>
1780
1959
    pango_matrix_transform_rectangle
1781
1960
 
1782
1961
 pango/pango-matrix.c |    2 +-
1783
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1962
 1 file changed, 1 insertion(+), 1 deletion(-)
1784
1963
 
1785
1964
commit b84e0bae01ff08b26a614f3c91b6e6d276ae95ed
1786
1965
Author: Alberto Ruiz <aruiz@gnome.org>
1790
1969
    pango_matrix_transform_rectangle
1791
1970
 
1792
1971
 pango/pango-matrix.c |    2 +-
1793
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1972
 1 file changed, 1 insertion(+), 1 deletion(-)
1794
1973
 
1795
1974
commit 64fa9090b202a1d27b0baf96e75763239ef21dde
1796
1975
Author: Alberto Ruiz <aruiz@gnome.org>
1800
1979
    pango_matrix_transform_pixel_rectangle
1801
1980
 
1802
1981
 pango/pango-matrix.c |    2 +-
1803
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1982
 1 file changed, 1 insertion(+), 1 deletion(-)
1804
1983
 
1805
1984
commit 646a51dfad73beee3ddb578f305d064cdf056b98
1806
1985
Author: Alberto Ruiz <aruiz@gnome.org>
1810
1989
    pango_matrix_transform_pixel_rectangle
1811
1990
 
1812
1991
 pango/pango-matrix.c |    2 +-
1813
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
1992
 1 file changed, 1 insertion(+), 1 deletion(-)
1814
1993
 
1815
1994
commit a04ac359f79d0d460bf164801ac9ef39bae276dc
1816
1995
Author: Alberto Ruiz <aruiz@gnome.org>
1820
1999
    pango_layout_get_pixel_extents
1821
2000
 
1822
2001
 pango/pango-layout.c |    8 ++++----
1823
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
2002
 1 file changed, 4 insertions(+), 4 deletions(-)
1824
2003
 
1825
2004
commit a92ee9af8c9801edc484a680b2d2247f83c4a36f
1826
2005
Author: Alberto Ruiz <aruiz@gnome.org>
1830
2009
    pango_layout_line_get_extents
1831
2010
 
1832
2011
 pango/pango-layout.c |    8 ++++----
1833
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
2012
 1 file changed, 4 insertions(+), 4 deletions(-)
1834
2013
 
1835
2014
commit 136cdd90a78dc82ce66c519fba9e64fb3ada6a33
1836
2015
Author: Alberto Ruiz <aruiz@gnome.org>
1840
2019
    pango_layout_iter_get_run_textents
1841
2020
 
1842
2021
 pango/pango-layout.c |    4 ++--
1843
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2022
 1 file changed, 2 insertions(+), 2 deletions(-)
1844
2023
 
1845
2024
commit 3c6029984d59c0c4ac4d393617fc7fa7e33e2216
1846
2025
Author: Alberto Ruiz <aruiz@gnome.org>
1850
2029
    pango_layout_iter_get_run_extents
1851
2030
 
1852
2031
 pango/pango-layout.c |    4 ++--
1853
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2032
 1 file changed, 2 insertions(+), 2 deletions(-)
1854
2033
 
1855
2034
commit 863bf48c6a3d621a33f7d4d82def6f5a6bcc24b0
1856
2035
Author: Alberto Ruiz <aruiz@gnome.org>
1859
2038
    adding (out) introspection metadata to pango_layout_get_line_extents
1860
2039
 
1861
2040
 pango/pango-layout.c |    4 ++--
1862
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2041
 1 file changed, 2 insertions(+), 2 deletions(-)
1863
2042
 
1864
2043
commit 519739bd0fefbb1e81c56a62992422952e6292e2
1865
2044
Author: Alberto Ruiz <aruiz@gnome.org>
1869
2048
    pango_layout_get_line_extents
1870
2049
 
1871
2050
 pango/pango-layout.c |    4 ++--
1872
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2051
 1 file changed, 2 insertions(+), 2 deletions(-)
1873
2052
 
1874
2053
commit ece5e47c80bdaab44b5b709d4486059abefd1191
1875
2054
Author: Alberto Ruiz <aruiz@gnome.org>
1878
2057
    adding (out) introspection metadata to pango_layout_get_layout_extents
1879
2058
 
1880
2059
 pango/pango-layout.c |    4 ++--
1881
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2060
 1 file changed, 2 insertions(+), 2 deletions(-)
1882
2061
 
1883
2062
commit 05c192dfcde8783d6921e1abb2f39f2fba52db6d
1884
2063
Author: Alberto Ruiz <aruiz@gnome.org>
1888
2067
    pango_layout_get_layout_extents
1889
2068
 
1890
2069
 pango/pango-layout.c |    6 ++++--
1891
 
 1 files changed, 4 insertions(+), 2 deletions(-)
 
2070
 1 file changed, 4 insertions(+), 2 deletions(-)
1892
2071
 
1893
2072
commit 6ed0fec2a65ea767c717998f8b89038275e721f0
1894
2073
Author: Alberto Ruiz <aruiz@gnome.org>
1898
2077
    instropection annotation
1899
2078
 
1900
2079
 pango/pango-layout.c |    4 ++--
1901
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2080
 1 file changed, 2 insertions(+), 2 deletions(-)
1902
2081
 
1903
2082
commit de232401243a09abde2639aac34d4e4ff2f8e1e7
1904
2083
Author: Alberto Ruiz <aruiz@gnome.org>
1908
2087
    pango_layout_get_cluster_extents
1909
2088
 
1910
2089
 pango/pango-layout.c |    4 ++--
1911
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2090
 1 file changed, 2 insertions(+), 2 deletions(-)
1912
2091
 
1913
2092
commit 44a4b7b352ef9a559584c85df1692a882edf9673
1914
2093
Author: Alberto Ruiz <aruiz@gnome.org>
1918
2097
    pango_layout_get_cluster_extents
1919
2098
 
1920
2099
 pango/pango-layout.c |    4 ++--
1921
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2100
 1 file changed, 2 insertions(+), 2 deletions(-)
1922
2101
 
1923
2102
commit cd00b2fefad50a6a2fe24b8539a4341632ae5217
1924
2103
Author: Alberto Ruiz <aruiz@gnome.org>
1927
2106
    adding allow-none introspection metadata to pango_layout_set_tabs
1928
2107
 
1929
2108
 pango/pango-layout.c |    2 +-
1930
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2109
 1 file changed, 1 insertion(+), 1 deletion(-)
1931
2110
 
1932
2111
commit ee5963ce9cf98bc5ab795d19d0f432d613c86708
1933
2112
Author: Alberto Ruiz <aruiz@gnome.org>
1937
2116
    pango_layout_set_markup_with_accel. Correct some documentation typos.
1938
2117
 
1939
2118
 pango/pango-layout.c |    7 ++++---
1940
 
 1 files changed, 4 insertions(+), 3 deletions(-)
 
2119
 1 file changed, 4 insertions(+), 3 deletions(-)
1941
2120
 
1942
2121
commit 74661a3c1b6e01f504816cf8fd065dccffd40b66
1943
2122
Author: Alberto Ruiz <aruiz@gnome.org>
1947
2126
    pango_layout_set_font_description
1948
2127
 
1949
2128
 pango/pango-layout.c |    2 +-
1950
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2129
 1 file changed, 1 insertion(+), 1 deletion(-)
1951
2130
 
1952
2131
commit d3e0539d3063badd1f2fcf9f564280cff2350a0a
1953
2132
Author: Alberto Ruiz <aruiz@gnome.org>
1957
2136
    pango_layout_set_attributes
1958
2137
 
1959
2138
 pango/pango-layout.c |    2 +-
1960
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2139
 1 file changed, 1 insertion(+), 1 deletion(-)
1961
2140
 
1962
2141
commit 112227f7a2aa851417cd475f7a27f76d77fb2d51
1963
2142
Author: Alberto Ruiz <aruiz@gnome.org>
1966
2145
    adding allow-none introspection metadata to pango_layout_get_size
1967
2146
 
1968
2147
 pango/pango-layout.c |    4 ++--
1969
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2148
 1 file changed, 2 insertions(+), 2 deletions(-)
1970
2149
 
1971
2150
commit 31257eceac3dbe9bc267775dc35b187b99f7ac7d
1972
2151
Author: Alberto Ruiz <aruiz@gnome.org>
1976
2155
    pango_layout_get_pixel_size
1977
2156
 
1978
2157
 pango/pango-layout.c |    4 ++--
1979
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2158
 1 file changed, 2 insertions(+), 2 deletions(-)
1980
2159
 
1981
2160
commit 357249f89307a9cafbcfb105f3796c52e322329b
1982
2161
Author: Alberto Ruiz <aruiz@gnome.org>
1986
2165
    pango_layout_get_pixel_extents
1987
2166
 
1988
2167
 pango/pango-layout.c |   11 ++++++-----
1989
 
 1 files changed, 6 insertions(+), 5 deletions(-)
 
2168
 1 file changed, 6 insertions(+), 5 deletions(-)
1990
2169
 
1991
2170
commit 33a261862474aa9077f939fab428078883e99844
1992
2171
Author: Alberto Ruiz <aruiz@gnome.org>
1995
2174
    adding allow-none introspection metadata to pango_layout_get_extents
1996
2175
 
1997
2176
 pango/pango-layout.c |   11 ++++++-----
1998
 
 1 files changed, 6 insertions(+), 5 deletions(-)
 
2177
 1 file changed, 6 insertions(+), 5 deletions(-)
1999
2178
 
2000
2179
commit 6767b4b0a39d2faeb57829edaf87472ebce9983b
2001
2180
Author: Alberto Ruiz <aruiz@gnome.org>
2005
2184
    pango_layout_get_cursor_pos
2006
2185
 
2007
2186
 pango/pango-layout.c |    4 ++--
2008
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2187
 1 file changed, 2 insertions(+), 2 deletions(-)
2009
2188
 
2010
2189
commit 3ff035bde4665f5aa9ef12ebe516270b40c1f1d9
2011
2190
Author: Alberto Ruiz <aruiz@gnome.org>
2015
2194
    pango_language_get_scripts parameters
2016
2195
 
2017
2196
 pango/pango-language.c |    2 +-
2018
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2197
 1 file changed, 1 insertion(+), 1 deletion(-)
2019
2198
 
2020
2199
commit 031dd86aac9764e1762ca3028d3a4f5ad0fa47e3
2021
2200
Author: Alberto Ruiz <aruiz@gnome.org>
2025
2204
    pango_glypth_string_extents
2026
2205
 
2027
2206
 pango/glyphstring.c |    4 ++--
2028
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2207
 1 file changed, 2 insertions(+), 2 deletions(-)
2029
2208
 
2030
2209
commit aa08f45bfea5c5c91652fc98ac056579caabf369
2031
2210
Author: Alberto Ruiz <aruiz@gnome.org>
2035
2214
    parameters
2036
2215
 
2037
2216
 pango/pango-language.c |    5 +++--
2038
 
 1 files changed, 3 insertions(+), 2 deletions(-)
 
2217
 1 file changed, 3 insertions(+), 2 deletions(-)
2039
2218
 
2040
2219
commit 030cb9e8d0e7615ab67d829a58b92d7a5d70466b
2041
2220
Author: Alberto Ruiz <aruiz@gnome.org>
2045
2224
    parameters
2046
2225
 
2047
2226
 pango/glyphstring.c |    8 ++++----
2048
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
2227
 1 file changed, 4 insertions(+), 4 deletions(-)
2049
2228
 
2050
2229
commit ff493f9733fb4e3d700b8c880335ca273d22273a
2051
2230
Author: Alberto Ruiz <aruiz@gnome.org>
2055
2234
    pango_font_description_merge parameters
2056
2235
 
2057
2236
 pango/fonts.c |    2 +-
2058
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2237
 1 file changed, 1 insertion(+), 1 deletion(-)
2059
2238
 
2060
2239
commit 44fbe23a64625b6e1e7521135f14a61a60ecb8f6
2061
2240
Author: Alberto Ruiz <aruiz@gnome.org>
2065
2244
    pango_font_description_better_match parameters
2066
2245
 
2067
2246
 pango/fonts.c |    2 +-
2068
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2247
 1 file changed, 1 insertion(+), 1 deletion(-)
2069
2248
 
2070
2249
commit ea31f7f4ca5ce352726e63518d7496a6caaed7c4
2071
2250
Author: Alberto Ruiz <aruiz@gnome.org>
2075
2254
    parameters
2076
2255
 
2077
2256
 pango/fonts.c |    5 ++---
2078
 
 1 files changed, 2 insertions(+), 3 deletions(-)
 
2257
 1 file changed, 2 insertions(+), 3 deletions(-)
2079
2258
 
2080
2259
commit cec9683199595651136e3fb0e4753e0b55215ab8
2081
2260
Author: Alberto Ruiz <aruiz@gnome.org>
2084
2263
    fixing metadata typo in pango_font_get_glypth_extents
2085
2264
 
2086
2265
 pango/fonts.c |    2 +-
2087
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2266
 1 file changed, 1 insertion(+), 1 deletion(-)
2088
2267
 
2089
2268
commit e3afea7d120f2f2957185840d94aab70da3e2063
2090
2269
Author: Alberto Ruiz <aruiz@gnome.org>
2094
2273
    pango_font_get_glypth_extents
2095
2274
 
2096
2275
 pango/fonts.c |    4 ++--
2097
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2276
 1 file changed, 2 insertions(+), 2 deletions(-)
2098
2277
 
2099
2278
commit 81474cb91d2c5b2d8226d54e1f87f49828195c01
2100
2279
Author: Alberto Ruiz <aruiz@gnome.org>
2104
2283
    pango_font_get_glypth_extents parameters
2105
2284
 
2106
2285
 pango/fonts.c |    8 ++++----
2107
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
2286
 1 file changed, 4 insertions(+), 4 deletions(-)
2108
2287
 
2109
2288
commit 7502b164c84dc385e637305cdda3f8caeb87e23a
2110
2289
Author: Alberto Ruiz <aruiz@gnome.org>
2114
2293
    pango_font_descriptions_free
2115
2294
 
2116
2295
 pango/fonts.c |    3 ++-
2117
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
2296
 1 file changed, 2 insertions(+), 1 deletion(-)
2118
2297
 
2119
2298
commit 79e5e6d9fe52797da4bea582177772d9b8b992ce
2120
2299
Author: Alberto Ruiz <aruiz@gnome.org>
2124
2303
    pango_font_descriptions_free
2125
2304
 
2126
2305
 pango/fonts.c |    2 +-
2127
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2306
 1 file changed, 1 insertion(+), 1 deletion(-)
2128
2307
 
2129
2308
commit b17a51d9d5b64215622ab33d12813037326dd3a6
2130
2309
Author: Alberto Ruiz <aruiz@gnome.org>
2133
2312
    adding allow-none to pango_font_descriptions_free parameters
2134
2313
 
2135
2314
 pango/fonts.c |    2 +-
2136
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2315
 1 file changed, 1 insertion(+), 1 deletion(-)
2137
2316
 
2138
2317
commit 54f16645d14ec475ac070e969e883051d2f53add
2139
2318
Author: Alberto Ruiz <aruiz@gnome.org>
2142
2321
    adding allow-none to pango_context_set_matrix parameters
2143
2322
 
2144
2323
 pango/pango-context.c |    4 ++--
2145
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2324
 1 file changed, 2 insertions(+), 2 deletions(-)
2146
2325
 
2147
2326
commit 9bea909f3eaff4ea3cd5d3065a9860ab0081db11
2148
2327
Author: Alberto Ruiz <aruiz@gnome.org>
2151
2330
    adding allow-none to pango_context_get_metrics parameters
2152
2331
 
2153
2332
 pango/pango-context.c |   14 +++++++-------
2154
 
 1 files changed, 7 insertions(+), 7 deletions(-)
 
2333
 1 file changed, 7 insertions(+), 7 deletions(-)
2155
2334
 
2156
2335
commit d45ce5856f0e7be9402c425bcd967bacf9ffe060
2157
2336
Author: Alberto Ruiz <aruiz@gnome.org>
2160
2339
    adding allow-none to pango_attr_iterator_get_font parameters
2161
2340
 
2162
2341
 pango/pango-attributes.c |    4 ++--
2163
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2342
 1 file changed, 2 insertions(+), 2 deletions(-)
2164
2343
 
2165
2344
commit deda590f67fb2d62ea3bc090d35319774dfc69b7
2166
2345
Author: Alberto Ruiz <aruiz@gnome.org>
2170
2349
    as requested by walters in #647827
2171
2350
 
2172
2351
 pango/fonts.c |    2 +-
2173
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2352
 1 file changed, 1 insertion(+), 1 deletion(-)
2174
2353
 
2175
2354
commit b8fbe2ce364cc1f8cdaea125e97537b85e97daab
2176
2355
Author: Alberto Ruiz <aruiz@gnome.org>
2190
2369
    Fix introspection for list families
2191
2370
 
2192
2371
 pango/pango-context.c |    4 ++--
2193
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2372
 1 file changed, 2 insertions(+), 2 deletions(-)
2194
2373
 
2195
2374
commit ad401ec2d5f7662b89804e5c269945fc26c0f232
2196
2375
Author: Kristian Rietveld <kris@gtk.org>
2201
2380
    Patch by Jerome Lambourg
2202
2381
 
2203
2382
 configure.in |    2 +-
2204
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2383
 1 file changed, 1 insertion(+), 1 deletion(-)
2205
2384
 
2206
2385
commit cf1d6fdaaec524b5892200bdc7c2a4560e853719
2207
2386
Author: Kristian Rietveld <kris@gtk.org>
2210
2389
    Build fix after rebase
2211
2390
 
2212
2391
 pango/pangocairo-coretextfont.c |   10 +++++-----
2213
 
 1 files changed, 5 insertions(+), 5 deletions(-)
 
2392
 1 file changed, 5 insertions(+), 5 deletions(-)
2214
2393
 
2215
2394
commit b8e8e9b8f5b377377037478506b789ee4c2f9b34
2216
2395
Author: Kristian Rietveld <kris@gtk.org>
2219
2398
    Add module-defs-coretext.c to MODULE_DEF_FILES
2220
2399
 
2221
2400
 pango/Makefile.am |    3 ++-
2222
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
2401
 1 file changed, 2 insertions(+), 1 deletion(-)
2223
2402
 
2224
2403
commit 5e658c9e8942468666b72eed97adca595796817c
2225
2404
Author: Kristian Rietveld <kris@gtk.org>
2228
2407
    Really get _pango_cairo_core_text_font_new right
2229
2408
 
2230
2409
 pango/pangocairo-coretextfont.c |    4 ++--
2231
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2410
 1 file changed, 2 insertions(+), 2 deletions(-)
2232
2411
 
2233
2412
commit ef900792d05308405f7ae98f28b007cdeea63499
2234
2413
Author: Kristian Rietveld <kris@gtk.org>
2237
2416
    Get _pango_cairo_core_text_font_new right
2238
2417
 
2239
2418
 pango/pangocairo-coretextfont.c |   27 +++++++++++----------------
2240
 
 1 files changed, 11 insertions(+), 16 deletions(-)
 
2419
 1 file changed, 11 insertions(+), 16 deletions(-)
2241
2420
 
2242
2421
commit a98b025b603fc1605c48f0fcebcdcefe5c99d6dc
2243
2422
Author: Kristian Rietveld <kris@gtk.org>
2246
2425
    Properly propagate font size in pango_core_text_font_map_load_font
2247
2426
 
2248
2427
 pango/pangocoretext-fontmap.c |    8 +++++++-
2249
 
 1 files changed, 7 insertions(+), 1 deletions(-)
 
2428
 1 file changed, 7 insertions(+), 1 deletion(-)
2250
2429
 
2251
2430
commit 32fea7e2821f28c470048f5951d8de1b787104a5
2252
2431
Author: Kristian Rietveld <kris@gtk.org>
2255
2434
    Shape engine should return array in LTR order when expected
2256
2435
 
2257
2436
 modules/basic/basic-coretext.c |   35 ++++++++++++++++++++++++++---------
2258
 
 1 files changed, 26 insertions(+), 9 deletions(-)
 
2437
 1 file changed, 26 insertions(+), 9 deletions(-)
2259
2438
 
2260
2439
commit 6854053a1603a6dfe8421376d3455255800ce735
2261
2440
Author: Kristian Rietveld <kris@gtk.org>
2264
2443
    Remove pointless FIXME
2265
2444
 
2266
2445
 pango/pangocoretext.c |    1 -
2267
 
 1 files changed, 0 insertions(+), 1 deletions(-)
 
2446
 1 file changed, 1 deletion(-)
2268
2447
 
2269
2448
commit b5efdc928f392c2ec47c206af3cbeddb986553a0
2270
2449
Author: Kristian Rietveld <kris@gtk.org>
2276
2455
    family does not have an italic or oblique variant, then add synthetic
2277
2456
    italic variants that are handled by Pango.
2278
2457
 
2279
 
 pango/pangocairo-coretextfont.c |   14 ++++++-
 
2458
 pango/pangocairo-coretextfont.c |   14 ++++++--
2280
2459
 pango/pangocoretext-fontmap.c   |   71
2281
2460
 ++++++++++++++++++++++++++++++++++++++-
2282
2461
 pango/pangocoretext-private.h   |    1 +
2290
2469
 
2291
2470
 pango/pangocoretext-fontmap.c |  113
2292
2471
 ++++++++++++++++++++++-------------------
2293
 
 1 files changed, 61 insertions(+), 52 deletions(-)
 
2472
 1 file changed, 61 insertions(+), 52 deletions(-)
2294
2473
 
2295
2474
commit 87882adf1ccacfb49e8c119b1fcb6d13a0e4731f
2296
2475
Author: Kristian Rietveld <kris@gtk.org>
2312
2491
 modules/basic/basic-coretext.c     |  232 +++++++++
2313
2492
 pango/Makefile.am                  |   21 +
2314
2493
 pango/modules.h                    |    1 +
2315
 
 pango/pangocairo-coretext.h        |   55 ++
 
2494
 pango/pangocairo-coretext.h        |   55 +++
2316
2495
 pango/pangocairo-coretextfont.c    |  279 +++++++++++
2317
2496
 pango/pangocairo-coretextfont.h    |   37 ++
2318
2497
 pango/pangocairo-coretextfontmap.c |  107 ++++
2334
2513
    Fix the previous fix!
2335
2514
 
2336
2515
 modules/hangul/hangul-fc.c |    5 +++--
2337
 
 1 files changed, 3 insertions(+), 2 deletions(-)
 
2516
 1 file changed, 3 insertions(+), 2 deletions(-)
2338
2517
 
2339
2518
commit 6b1910adacb133e229acde532a5a43d588d12faa
2340
2519
Author: Behdad Esfahbod <behdad@behdad.org>
2344
2523
    errors
2345
2524
 
2346
2525
 modules/hangul/hangul-fc.c |    2 +-
2347
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2526
 1 file changed, 1 insertion(+), 1 deletion(-)
2348
2527
 
2349
2528
commit 6b522430ad65fe047b077f9cc3990a97e8869e23
2350
2529
Author: Behdad Esfahbod <behdad@behdad.org>
2357
2536
    by Karl Tomlinson <karlt+@karlt.net>
2358
2537
 
2359
2538
 pango/opentype/hb-buffer-private.h |    1 +
2360
 
 pango/opentype/hb-buffer.c         |   70
 
2539
 pango/opentype/hb-buffer.c         |   66
2361
2540
 +++++++++++++++++++++---------------
2362
2541
 pango/opentype/hb-buffer.h         |    2 +-
2363
 
 3 files changed, 43 insertions(+), 30 deletions(-)
 
2542
 3 files changed, 41 insertions(+), 28 deletions(-)
2364
2543
 
2365
2544
commit ec69005aa8d865bc04e5a80258ee7a78bc0468ba
2366
2545
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2371
2550
    https://bugzilla.gnome.org/show_bug.cgi?id=644724
2372
2551
 
2373
2552
 docs/Makefile.am |    2 ++
2374
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
2553
 1 file changed, 2 insertions(+)
2375
2554
 
2376
2555
commit 729352cf1c328615b05e7368a5888a23f7382c4e
2377
2556
Author: John (J5) Palmieri <johnp@redhat.com>
2382
2561
    https://bugzilla.gnome.org/show_bug.cgi?id=642593
2383
2562
 
2384
2563
 pango/pango-layout.c |   80
2385
 
 ++++++++++++++++++++++++++-----------------------
2386
 
 1 files changed, 42 insertions(+), 38 deletions(-)
 
2564
 ++++++++++++++++++++++++++------------------------
 
2565
 1 file changed, 42 insertions(+), 38 deletions(-)
2387
2566
 
2388
2567
commit 4e6248d76f55c6184f28afe614d7d76b6fa3d455
2389
2568
Author: Behdad Esfahbod <behdad@behdad.org>
2392
2571
    Bug 639882 - Heap corruption in font parsing with FreeType2 backend
2393
2572
 
2394
2573
 pango/pangoft2-render.c |   16 ++++++++++++++--
2395
 
 1 files changed, 14 insertions(+), 2 deletions(-)
 
2574
 1 file changed, 14 insertions(+), 2 deletions(-)
2396
2575
 
2397
2576
commit 12de1ecf9ab9c925e7021288b10175af74007e94
2398
2577
Author: Laszlo Pandy <lpandy@src.gnome.org>
2401
2580
    [GI] Add (allow-none) annotations to pango_parse_markup().
2402
2581
 
2403
2582
 pango/pango-markup.c |    6 +++---
2404
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
2583
 1 file changed, 3 insertions(+), 3 deletions(-)
2405
2584
 
2406
2585
commit a7a0db3caa56c9924d823017a23dbc0e71f3ba60
2407
2586
Author: Laszlo Pandy <lpandy@src.gnome.org>
2410
2589
    [GI] Annotate out arguments of pango_parse_markup().
2411
2590
 
2412
2591
 pango/pango-markup.c |    6 +++---
2413
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
2592
 1 file changed, 3 insertions(+), 3 deletions(-)
2414
2593
 
2415
2594
commit 34448ab65f41dfb0c098a3e0d112b084ef84f8d8
2416
2595
Author: Behdad Esfahbod <behdad@behdad.org>
2420
2599
    cairo scale
2421
2600
 
2422
2601
 pango/pangocairo-font.c |    2 ++
2423
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
2602
 1 file changed, 2 insertions(+)
2424
2603
 
2425
2604
commit 4da05d60a8c9e7f22329c58264e0ca6c683dbf0c
2426
2605
Author: Paolo Borelli <pborelli@gnome.org>
2429
2608
    Annotate pango_layout_get_context().
2430
2609
 
2431
2610
 pango/pango-layout.c |    6 +++---
2432
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
2611
 1 file changed, 3 insertions(+), 3 deletions(-)
2433
2612
 
2434
2613
commit d4a36df5f2e1a1487d7e9f7e966c16bb167a5b96
2435
2614
Author: Behdad Esfahbod <behdad@behdad.org>
2438
2617
    [git.mk] Support Mallard docs
2439
2618
 
2440
2619
 git.mk |    8 ++++++--
2441
 
 1 files changed, 6 insertions(+), 2 deletions(-)
 
2620
 1 file changed, 6 insertions(+), 2 deletions(-)
2442
2621
 
2443
2622
commit 588847fe4b5ed905f3a035825567e08a3b4d516d
2444
2623
Author: Sven Herzberg <herzi@gnome-de.org>
2450
2629
      gnome-autogen.sh would have done
2451
2630
 
2452
2631
 autogen.sh |    2 +-
2453
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2632
 1 file changed, 1 insertion(+), 1 deletion(-)
2454
2633
 
2455
2634
commit 807c776bf36667c697c0c9bd76d37160e9c1d8cc
2456
2635
Author: Christian Persch <chpe@gnome.org>
2482
2661
    Fixed https://bugzilla.gnome.org/show_bug.cgi?id=633208
2483
2662
 
2484
2663
 autogen.sh |   38 +++++++++++++++++++++-----------------
2485
 
 1 files changed, 21 insertions(+), 17 deletions(-)
 
2664
 1 file changed, 21 insertions(+), 17 deletions(-)
2486
2665
 
2487
2666
commit bcad3f2dfe3542d5d91e3172f883ca3d7943228e
2488
2667
Author: Colin Walters <walters@verbum.org>
2522
2701
    configure.in: Add missing ;
2523
2702
 
2524
2703
 configure.in |    2 +-
2525
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2704
 1 file changed, 1 insertion(+), 1 deletion(-)
2526
2705
 
2527
2706
commit 1f32ac0356cfc5c961570d7291d70603d85efa8b
2528
2707
Author: Behdad Esfahbod <behdad@behdad.org>
2555
2734
    which are all removed on mostlyclean by gsettings.m4.
2556
2735
 
2557
2736
 git.mk |   11 ++++++++++-
2558
 
 1 files changed, 10 insertions(+), 1 deletions(-)
 
2737
 1 file changed, 10 insertions(+), 1 deletion(-)
2559
2738
 
2560
2739
commit ce7af5623349df44c4787a44296645db405c5e0c
2561
2740
Author: Behdad Esfahbod <behdad@behdad.org>
2590
2769
 docs/tmpl/win32-fonts.sgml        |    9 +++++++++
2591
2770
 docs/tmpl/x-fonts.sgml            |    3 +++
2592
2771
 docs/tmpl/xft-fonts.sgml          |    3 +++
2593
 
 27 files changed, 104 insertions(+), 0 deletions(-)
 
2772
 27 files changed, 104 insertions(+)
2594
2773
 
2595
2774
commit 837f1bae095f90c662fdc51fd39a0eeb2bb8f850
2596
2775
Author: Behdad Esfahbod <behdad@behdad.org>
2603
2782
    dependent libraries from the .la file...
2604
2783
 
2605
2784
 docs/Makefile.am |    8 +++++---
2606
 
 1 files changed, 5 insertions(+), 3 deletions(-)
 
2785
 1 file changed, 5 insertions(+), 3 deletions(-)
2607
2786
 
2608
2787
commit 47ba8cfcb857d62f15f4df58d5d5c7bd5088a107
2609
2788
Author: Behdad Esfahbod <behdad@behdad.org>
2614
2793
    Cleanup LINE_IS_VALID() usage.
2615
2794
 
2616
2795
 pango/pango-layout.c |    9 +--------
2617
 
 1 files changed, 1 insertions(+), 8 deletions(-)
 
2796
 1 file changed, 1 insertion(+), 8 deletions(-)
2618
2797
 
2619
2798
commit 152e0aab5bb29d691e5e69e2f375b3b42e15e48e
2620
2799
Author: Behdad Esfahbod <behdad@behdad.org>
2626
2805
 
2627
2806
 pango/opentype/hb-open-type-private.hh      |    2 +-
2628
2807
 pango/opentype/hb-ot-layout-gpos-private.hh |    1 +
2629
 
 2 files changed, 2 insertions(+), 1 deletions(-)
 
2808
 2 files changed, 2 insertions(+), 1 deletion(-)
2630
2809
 
2631
2810
commit 254f42980e272f0560b28d466c2b65a1748b1132
2632
2811
Author: Behdad Esfahbod <behdad@behdad.org>
2635
2814
    Bug 629632 - configure bug
2636
2815
 
2637
2816
 configure.in |    2 +-
2638
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2817
 1 file changed, 1 insertion(+), 1 deletion(-)
2639
2818
 
2640
2819
commit 4f5c9708455308eb2fb692817db6ef103505da72
2641
2820
Author: Tor Lillqvist <tml@iki.fi>
2664
2843
    https://bugzilla.gnome.org/show_bug.cgi?id=627973
2665
2844
 
2666
2845
 pango/Makefile.am |   10 +++++-----
2667
 
 1 files changed, 5 insertions(+), 5 deletions(-)
 
2846
 1 file changed, 5 insertions(+), 5 deletions(-)
2668
2847
 
2669
2848
commit 7030230ac42811e44fb47d9af0149e425abacc79
2670
2849
Author: Behdad Esfahbod <behdad@behdad.org>
2673
2852
    Bug 627978 - explicitly link with the math lib (-lm) for use of 'cos'
2674
2853
 
2675
2854
 examples/Makefile.am |    1 +
2676
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
2855
 1 file changed, 1 insertion(+)
2677
2856
 
2678
2857
commit b13aea4f55a6db5518866af72cd079a5c002a8f1
2679
2858
Author: Behdad Esfahbod <behdad@behdad.org>
2682
2861
    Bug 627902 - explicitely link dump-boundaries to GLib
2683
2862
 
2684
2863
 tests/Makefile.am |   19 +++++++++++--------
2685
 
 1 files changed, 11 insertions(+), 8 deletions(-)
 
2864
 1 file changed, 11 insertions(+), 8 deletions(-)
2686
2865
 
2687
2866
commit 2baffa4c47b64c4b6a0603eaeb951a6be6ba5b5e
2688
2867
Author: Behdad Esfahbod <behdad@behdad.org>
2691
2870
    Fix include
2692
2871
 
2693
2872
 pango/pango-engine-private.h |    2 +-
2694
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2873
 1 file changed, 1 insertion(+), 1 deletion(-)
2695
2874
 
2696
2875
commit d3f2af76130687f72653c1866fb8af91b6500250
2697
2876
Author: Robert Ancell <robert.ancell@canonical.com>
2713
2892
 
2714
2893
 pango/pangofc-font.c |   48
2715
2894
 +++++++++++++++++++++++++++++++++++++++++++++---
2716
 
 1 files changed, 45 insertions(+), 3 deletions(-)
 
2895
 1 file changed, 45 insertions(+), 3 deletions(-)
2717
2896
 
2718
2897
commit 9b43da625483b68aa8702d217523bf9d8a8100d6
2719
2898
Author: Behdad Esfahbod <behdad@behdad.org>
2751
2930
    https://bugzilla.gnome.org/show_bug.cgi?id=554524
2752
2931
 
2753
2932
 pango/pango-utils.c |   26 +++++++++++++++++---------
2754
 
 1 files changed, 17 insertions(+), 9 deletions(-)
 
2933
 1 file changed, 17 insertions(+), 9 deletions(-)
2755
2934
 
2756
2935
commit 3743d1c82066ecd4f8d6d6fba993b15fcc8d9773
2757
2936
Author: Tor Lillqvist <tml@iki.fi>
2762
2941
    As such libpangowin32 is deprecated, I guess...
2763
2942
 
2764
2943
 pango/pangowin32.def |    2 +-
2765
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2944
 1 file changed, 1 insertion(+), 1 deletion(-)
2766
2945
 
2767
2946
commit 3882c7dcaa00c0489c4bfdd582b3fefe5e3741b9
2768
2947
Author: Tor Lillqvist <tml@iki.fi>
2776
2955
    Patch by by David E. Hollingsworth and Fredrik Corneliusson, from bug
2777
2956
 
2778
2957
 modules/basic/basic-win32.c |   50
2779
 
 ++++++++++++++++++++++++++++++++----------
2780
 
 pango/pangowin32-private.h  |    7 ++---
2781
 
 pango/pangowin32.c          |   29 +++++++++---------------
 
2958
 ++++++++++++++++++++++++++++++++-----------
 
2959
 pango/pangowin32-private.h  |    7 +++---
 
2960
 pango/pangowin32.c          |   29 ++++++++++---------------
2782
2961
 pango/pangowin32.def        |    1 +
2783
2962
 4 files changed, 53 insertions(+), 34 deletions(-)
2784
2963
 
2789
2968
    Bump version to 1.29
2790
2969
 
2791
2970
 configure.in |    4 ++--
2792
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
2971
 1 file changed, 2 insertions(+), 2 deletions(-)
2793
2972
 
2794
2973
commit cf1022c02c89d50a64743b1cf8d989817e4e1fd1
2795
2974
Author: Behdad Esfahbod <behdad@behdad.org>
2812
2991
    Bug 621612 - VPATH build fix
2813
2992
 
2814
2993
 pango-view/Makefile.am |    2 +-
2815
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
2994
 1 file changed, 1 insertion(+), 1 deletion(-)
2816
2995
 
2817
2996
commit a30783a14c4dc69adc43922474e79721fec54829
2818
2997
Author: Matthias Clasen <mclasen@redhat.com>
2824
3003
    http://build.gnome.org/builders/pango-RHEL5/builds/310/steps/pango%20check/logs/stdio
2825
3004
 
2826
3005
 pango/pangoft2.def |    2 +-
2827
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3006
 1 file changed, 1 insertion(+), 1 deletion(-)
2828
3007
 
2829
3008
commit 8be1be82dbea3e81596366d1fa65d9b79d73850c
2830
3009
Author: Behdad Esfahbod <behdad@behdad.org>
2833
3012
    Cypriot is RTL
2834
3013
 
2835
3014
 pango/pango-gravity.c |    2 +-
2836
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3015
 1 file changed, 1 insertion(+), 1 deletion(-)
2837
3016
 
2838
3017
commit 495932623fb3390dd4249e08a3fd8593ebceaef4
2839
3018
Author: Behdad Esfahbod <behdad@behdad.org>
2844
3023
    Bug 605870 - Incorrect shaping for Syriac
2845
3024
 
2846
3025
 pango/pango-ot-info.c |    4 ++--
2847
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
3026
 1 file changed, 2 insertions(+), 2 deletions(-)
2848
3027
 
2849
3028
commit 1caf2947f0941e2354dd4f43d56934e1ec706b6e
2850
3029
Author: Behdad Esfahbod <behdad@behdad.org>
2866
3045
    [cairo] Refactor common code in create_metrics_for_context()
2867
3046
 
2868
3047
 pango/pangocairo-atsuifont.c |   31 +++++--------------------
2869
 
 pango/pangocairo-fcfont.c    |    8 +++---
 
3048
 pango/pangocairo-fcfont.c    |    8 +++----
2870
3049
 pango/pangocairo-font.c      |   48
2871
3050
 ++++++++++++++++++++++++++++++++++++++-
2872
 
 pango/pangocairo-private.h   |    4 +-
 
3051
 pango/pangocairo-private.h   |    4 ++--
2873
3052
 pango/pangocairo-win32font.c |   31 +++++--------------------
2874
3053
 pango/pangofc-font.c         |   51
2875
 
 ++---------------------------------------
2876
 
 pango/pangofc-private.h      |    4 +-
 
3054
 +++---------------------------------------
 
3055
 pango/pangofc-private.h      |    4 ++--
2877
3056
 7 files changed, 70 insertions(+), 107 deletions(-)
2878
3057
 
2879
3058
commit fd31122c5a153c3a21ae015cdd1c72aef79671d0
2883
3062
    [HB] Minor
2884
3063
 
2885
3064
 pango/opentype/hb-ot-layout-gpos-private.hh |    2 +-
2886
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3065
 1 file changed, 1 insertion(+), 1 deletion(-)
2887
3066
 
2888
3067
commit 140cfe4b4a40f95a379c1b78881b1edf12f72145
2889
3068
Author: Behdad Esfahbod <behdad@behdad.org>
2892
3071
    [HB] Improve comments
2893
3072
 
2894
3073
 pango/opentype/hb-open-type-private.hh |   22 ++++++++++++++--------
2895
 
 1 files changed, 14 insertions(+), 8 deletions(-)
 
3074
 1 file changed, 14 insertions(+), 8 deletions(-)
2896
3075
 
2897
3076
commit 4eca6bc0c98b573cc28005413e40790af8b10930
2898
3077
Author: Behdad Esfahbod <behdad@behdad.org>
2901
3080
    [HB] Remove stale TODO item
2902
3081
 
2903
3082
 pango/opentype/hb-open-type-private.hh |    1 -
2904
 
 1 files changed, 0 insertions(+), 1 deletions(-)
 
3083
 1 file changed, 1 deletion(-)
2905
3084
 
2906
3085
commit 9091e0f4d59b4f6dec4b0992f86ddcc141c0b919
2907
3086
Author: Behdad Esfahbod <behdad@behdad.org>
2910
3089
    [HB] Use a function template instead of struct template for Null
2911
3090
 
2912
3091
 pango/opentype/hb-open-type-private.hh |   24 ++++++++++--------------
2913
 
 1 files changed, 10 insertions(+), 14 deletions(-)
 
3092
 1 file changed, 10 insertions(+), 14 deletions(-)
2914
3093
 
2915
3094
commit 39620ce42fa212d4e76f49ac257d2b2cf6da20fa
2916
3095
Author: Behdad Esfahbod <behdad@behdad.org>
2940
3119
    [HB] Fix Class operator return type
2941
3120
 
2942
3121
 pango/opentype/hb-ot-layout-common-private.hh |    2 +-
2943
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3122
 1 file changed, 1 insertion(+), 1 deletion(-)
2944
3123
 
2945
3124
commit 851f873072b26b32c514c459ba2ca141dd1b79e0
2946
3125
Author: Behdad Esfahbod <behdad@behdad.org>
2949
3128
    [HB] Add couple consts to operators
2950
3129
 
2951
3130
 pango/opentype/hb-open-type-private.hh |    6 +++---
2952
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
3131
 1 file changed, 3 insertions(+), 3 deletions(-)
2953
3132
 
2954
3133
commit fc23518fc6fb391a0e7dc872c6a2e89a09cad018
2955
3134
Author: Behdad Esfahbod <behdad@behdad.org>
2970
3149
 
2971
3150
 pango/opentype/hb-ot-layout-gpos-private.hh |  147
2972
3151
 +++++++++++++++++++++------
2973
 
 1 files changed, 116 insertions(+), 31 deletions(-)
 
3152
 1 file changed, 116 insertions(+), 31 deletions(-)
2974
3153
 
2975
3154
commit 0d0cbf451613c301ae358cc4dbe54fb63ae5fc9e
2976
3155
Author: Behdad Esfahbod <behdad@behdad.org>
3012
3191
 
3013
3192
 pango-view/viewer-render.c |   41
3014
3193
 ++++++++++++++++++++++++++++++++++-------
3015
 
 1 files changed, 34 insertions(+), 7 deletions(-)
 
3194
 1 file changed, 34 insertions(+), 7 deletions(-)
3016
3195
 
3017
3196
commit 91d8773a88938aaa0a78de9bc6f768baf7021bc8
3018
3197
Author: Tor Lillqvist <tml@iki.fi>
3024
3203
    problem with make dist.
3025
3204
 
3026
3205
 pango/Makefile.am |    3 +++
3027
 
 1 files changed, 3 insertions(+), 0 deletions(-)
 
3206
 1 file changed, 3 insertions(+)
3028
3207
 
3029
3208
commit 5f32f21772954f40d337a1e60299be47fc8be572
3030
3209
Author: Behdad Esfahbod <behdad@behdad.org>
3033
3212
    [HB] Fix leak when duplicating blob
3034
3213
 
3035
3214
 pango/opentype/hb-blob.c |    6 ++++--
3036
 
 1 files changed, 4 insertions(+), 2 deletions(-)
 
3215
 1 file changed, 4 insertions(+), 2 deletions(-)
3037
3216
 
3038
3217
commit f4201009d192300442e76d25a83c0dab8022d0d6
3039
3218
Author: Kristian Rietveld <kris@gtk.org>
3054
3233
 
3055
3234
 pango/pangoatsui-fontmap.c   |    8 ++++++-
3056
3235
 pango/pangocairo-atsuifont.c |   47
3057
 
 ++++++++++++++++++++---------------------
 
3236
 +++++++++++++++++++++---------------------
3058
3237
 2 files changed, 30 insertions(+), 25 deletions(-)
3059
3238
 
3060
3239
commit 7e2abeb19c4b0760d60ec8b388c9f98075700004
3066
3245
    It has to be possible to run "make dist" also in an unpacked tarball.
3067
3246
 
3068
3247
 build/win32/vs9/Makefile.am |    3 +++
3069
 
 1 files changed, 3 insertions(+), 0 deletions(-)
 
3248
 1 file changed, 3 insertions(+)
3070
3249
 
3071
3250
commit 9cac172f82dd492d068590434199989021be236e
3072
3251
Author: Behdad Esfahbod <behdad@behdad.org>
3101
3280
 
3102
3281
 pango/opentype/hb-open-file-private.hh          |    4 ++-
3103
3282
 pango/opentype/hb-open-type-private.hh          |   11 ++++---
3104
 
 pango/opentype/hb-ot-layout-common-private.hh   |   10 +++++-
 
3283
 pango/opentype/hb-ot-layout-common-private.hh   |   10 ++++--
3105
3284
 pango/opentype/hb-ot-layout-gpos-private.hh     |   37
3106
3285
 +++++++++++++----------
3107
 
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   15 +++++----
 
3286
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   15 ++++-----
3108
3287
 5 files changed, 46 insertions(+), 31 deletions(-)
3109
3288
 
3110
3289
commit 7ee9ab4b2519131a9753499175ec43871232c84d
3114
3293
    [HB] Cosmetic
3115
3294
 
3116
3295
 pango/opentype/hb-ot-layout-common-private.hh |    6 +++---
3117
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
3296
 1 file changed, 3 insertions(+), 3 deletions(-)
3118
3297
 
3119
3298
commit d9e254f3220337577b22f229839e036f344ce048
3120
3299
Author: Tor Lillqvist <tml@iki.fi>
3170
3349
 build/win32/Makefile.am |    1 +
3171
3350
 config.h.win32.in       |  151
3172
3351
 +++++++++++++++++++++++++++++++++++++++++++++++
3173
 
 pango/pangocairo.rc.in  |   30 +++++++++
3174
 
 4 files changed, 183 insertions(+), 0 deletions(-)
 
3352
 pango/pangocairo.rc.in  |   30 ++++++++++
 
3353
 4 files changed, 183 insertions(+)
3175
3354
 
3176
3355
commit b68d520e9ff526be4301f6db09c0faa077cd864a
3177
3356
Author: Tor Lillqvist <tml@iki.fi>
3207
3386
    what the configure script provides.
3208
3387
 
3209
3388
 Makefile.am                         |    4 +-
3210
 
 README.win32                        |   28 +----
 
3389
 README.win32                        |   28 ++----
3211
3390
 build/win32/vs9/Makefile.am         |    8 ++
3212
3391
 build/win32/vs9/README.txt          |   35 +++++++
3213
3392
 build/win32/vs9/install.vcproj      |   78 +++++++++++++++
3222
3401
 +++++++++++++++++++++++++++++++
3223
3402
 build/win32/vs9/stdint.h            |   36 +++++++
3224
3403
 build/win32/vs9/unistd.h            |    1 +
3225
 
 configure.in                        |    9 ++-
 
3404
 configure.in                        |    9 +-
3226
3405
 modules/arabic/arabic-fc.c          |    4 +
3227
3406
 modules/arabic/arabic-lang.c        |    4 +
3228
3407
 modules/basic/basic-fc.c            |    5 +
3235
3414
 modules/syriac/syriac-fc.c          |    4 +
3236
3415
 modules/thai/thai-fc.c              |    5 +
3237
3416
 modules/tibetan/tibetan-fc.c        |    4 +
3238
 
 pango/Makefile.am                   |   55 +++++++++-
 
3417
 pango/Makefile.am                   |   55 +++++++++--
3239
3418
 pango/mini-fribidi/Makefile.am      |   10 ++
3240
3419
 pango/module-defs-fc.c.win32        |   40 +++-----
3241
 
 pango/module-defs-lang.c.win32      |   11 ++
 
3420
 pango/module-defs-lang.c.win32      |   11 +++
3242
3421
 pango/module-defs-win32.c.win32     |   26 +----
3243
3422
 pango/module-defs.h.win32           |   74 ++++++++++++++
3244
3423
 pango/opentype/Makefile.am          |   10 ++
3251
3430
    [git.mk] Fix bug with parallel make and subdirs
3252
3431
 
3253
3432
 git.mk |    7 +++++--
3254
 
 1 files changed, 5 insertions(+), 2 deletions(-)
 
3433
 1 file changed, 5 insertions(+), 2 deletions(-)
3255
3434
 
3256
3435
commit 238d7a23d619f842953ee41f9592bbf8c6c409c7
3257
3436
Author: Behdad Esfahbod <behdad@behdad.org>
3263
3442
    Random character class changes...  It's all Chinese to me.
3264
3443
 
3265
3444
 modules/indic/indic-ot-class-tables.c |   12 ++++++------
3266
 
 1 files changed, 6 insertions(+), 6 deletions(-)
 
3445
 1 file changed, 6 insertions(+), 6 deletions(-)
3267
3446
 
3268
3447
commit 45c5cb6acd497e159e68835cba78061793eaad98
3269
3448
Author: Behdad Esfahbod <behdad@behdad.org>
3273
3452
 
3274
3453
 modules/indic/indic-lang.c |   73
3275
3454
 ++++++++++++++++++++++++++++++++++++++++++++
3276
 
 1 files changed, 73 insertions(+), 0 deletions(-)
 
3455
 1 file changed, 73 insertions(+)
3277
3456
 
3278
3457
commit 8818723646aeb013dd39fca1c6e1162c7636b67f
3279
3458
Author: Behdad Esfahbod <behdad@behdad.org>
3286
3465
    != NULL.
3287
3466
 
3288
3467
 pango/pango-ot-info.c |    8 +-------
3289
 
 1 files changed, 1 insertions(+), 7 deletions(-)
 
3468
 1 file changed, 1 insertion(+), 7 deletions(-)
3290
3469
 
3291
3470
commit 952847a6e2d53b33cea39d13255fd0f7c8075942
3292
3471
Author: Behdad Esfahbod <behdad@behdad.org>
3297
3476
    Bug 604128 - Applications crash when displaying Hebrew characters
3298
3477
 
3299
3478
 pango/opentype/hb-blob.c |   14 +++++++-------
3300
 
 1 files changed, 7 insertions(+), 7 deletions(-)
 
3479
 1 file changed, 7 insertions(+), 7 deletions(-)
3301
3480
 
3302
3481
commit 8c3bffeccbd0074e04adf894199393580de88e95
3303
3482
Author: Tor Lillqvist <tml@iki.fi>
3311
3490
    simple workaround.
3312
3491
 
3313
3492
 pango/pango-ot-info.c |    8 +++++++-
3314
 
 1 files changed, 7 insertions(+), 1 deletions(-)
 
3493
 1 file changed, 7 insertions(+), 1 deletion(-)
3315
3494
 
3316
3495
commit 77f99dd9e17c5051b2b2dcfe6e7746f924e9f71b
3317
3496
Author: Kristian Rietveld <kris@gtk.org>
3324
3503
    was expected.
3325
3504
 
3326
3505
 modules/basic/basic-atsui.c |   15 +++++++++------
3327
 
 1 files changed, 9 insertions(+), 6 deletions(-)
 
3506
 1 file changed, 9 insertions(+), 6 deletions(-)
3328
3507
 
3329
3508
commit 2c858fe6b36801e731fe764c1085a2cbcbc04037
3330
3509
Author: Behdad Esfahbod <behdad@behdad.org>
3337
3516
 docs/pango-docs.sgml       |    3 +++
3338
3517
 docs/pango-sections.txt    |    1 +
3339
3518
 docs/tmpl/atsui-fonts.sgml |    9 +++++++++
3340
 
 3 files changed, 13 insertions(+), 0 deletions(-)
 
3519
 3 files changed, 13 insertions(+)
3341
3520
 
3342
3521
commit 728bec3cb2525b35b16cea772428a70350aba3fb
3343
3522
Author: Behdad Esfahbod <behdad@behdad.org>
3358
3537
    Bug 593240 - (pangoosx) Crash / infinite loop with Mac OS X
3359
3538
 
3360
3539
 pango/opentype/hb-open-type-private.hh |    2 +-
3361
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3540
 1 file changed, 1 insertion(+), 1 deletion(-)
3362
3541
 
3363
3542
commit aae6aab95ce876f52c266bddb2b200344f8020bb
3364
3543
Author: Behdad Esfahbod <behdad@behdad.org>
3367
3546
    Enable introspection for dist again
3368
3547
 
3369
3548
 Makefile.am |    2 +-
3370
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3549
 1 file changed, 1 insertion(+), 1 deletion(-)
3371
3550
 
3372
3551
commit b6a2d2b3fc0ad9e3506b0b530346d3c044488419
3373
3552
Author: Behdad Esfahbod <behdad@behdad.org>
3378
3557
    Disable some __attribute__s with gcc 3.
3379
3558
 
3380
3559
 pango/opentype/hb-private.h |    2 +-
3381
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3560
 1 file changed, 1 insertion(+), 1 deletion(-)
3382
3561
 
3383
3562
commit c7460fc1b71a491a1b33c19ba0d4cd3b8353c7cb
3384
3563
Author: Behdad Esfahbod <behdad@behdad.org>
3389
3568
 pango/opentype/hb-ot-layout.cc |    1 -
3390
3569
 pango/opentype/hb-ot-layout.h  |    1 -
3391
3570
 pango/pango-ot-info.c          |    3 +--
3392
 
 3 files changed, 1 insertions(+), 4 deletions(-)
 
3571
 3 files changed, 1 insertion(+), 4 deletions(-)
3393
3572
 
3394
3573
commit 797d46714d27f147277fdd5346648d838c68fb8c
3395
3574
Author: Behdad Esfahbod <behdad@behdad.org>
3398
3577
    [HB/GDEF] Fix bug in building synthetic GDEF table
3399
3578
 
3400
3579
 pango/opentype/hb-ot-layout.cc |    4 +++-
3401
 
 1 files changed, 3 insertions(+), 1 deletions(-)
 
3580
 1 file changed, 3 insertions(+), 1 deletion(-)
3402
3581
 
3403
3582
commit 558b96314f1184c5f031545ee238549ac3dd3868
3404
3583
Author: Behdad Esfahbod <behdad@behdad.org>
3419
3598
    [configure] Remove stale code
3420
3599
 
3421
3600
 configure.in |    3 ---
3422
 
 1 files changed, 0 insertions(+), 3 deletions(-)
 
3601
 1 file changed, 3 deletions(-)
3423
3602
 
3424
3603
commit 2b3154b4b7cd9ad1cd532f095c10bedfccfae190
3425
3604
Author: Behdad Esfahbod <behdad@behdad.org>
3428
3607
    Bug 582697 - Add pango-view --pixels option
3429
3608
 
3430
3609
 pango-view/viewer-render.c |    8 +++++++-
3431
 
 1 files changed, 7 insertions(+), 1 deletions(-)
 
3610
 1 file changed, 7 insertions(+), 1 deletion(-)
3432
3611
 
3433
3612
commit 0f0b9f963db52024f348359ce61c66bff6ce0531
3434
3613
Author: Johan Dahlin <johan@gnome.org>
3439
3618
    Since it breaks when using a system install of gobject-introspection
3440
3619
 
3441
3620
 pango/Makefile.am |    4 ++--
3442
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
3621
 1 file changed, 2 insertions(+), 2 deletions(-)
3443
3622
 
3444
3623
commit 5389aa2daacc6d41e1a2adeed24ca49f30d371ec
3445
3624
Author: Behdad Esfahbod <behdad@behdad.org>
3448
3627
    Simplify cluster analysis
3449
3628
 
3450
3629
 pango/pango-layout.c |    5 ++---
3451
 
 1 files changed, 2 insertions(+), 3 deletions(-)
 
3630
 1 file changed, 2 insertions(+), 3 deletions(-)
3452
3631
 
3453
3632
commit d52aa9ec30e74b593eee80082bf8f27bea08246f
3454
3633
Author: Behdad Esfahbod <behdad@behdad.org>
3461
3640
    essentially free these days, so do it always.
3462
3641
 
3463
3642
 pango/pango-layout.c |   10 ++--------
3464
 
 1 files changed, 2 insertions(+), 8 deletions(-)
 
3643
 1 file changed, 2 insertions(+), 8 deletions(-)
3465
3644
 
3466
3645
commit 2cd9c4b416cbe55dd68106003f360e861a6722be
3467
3646
Author: Behdad Esfahbod <behdad@behdad.org>
3480
3659
    Problem originally reported on gtk-list on 2009-12-22 by Ben Pfaff.
3481
3660
 
3482
3661
 pango/pango-layout.c |   10 ++++++++++
3483
 
 1 files changed, 10 insertions(+), 0 deletions(-)
 
3662
 1 file changed, 10 insertions(+)
3484
3663
 
3485
3664
commit dded011854cf721ca80587e3f7587d2af31a859d
3486
3665
Author: Behdad Esfahbod <behdad@behdad.org>
3489
3668
    Cosmetic
3490
3669
 
3491
3670
 pango/pango-layout.c |    3 +--
3492
 
 1 files changed, 1 insertions(+), 2 deletions(-)
 
3671
 1 file changed, 1 insertion(+), 2 deletions(-)
3493
3672
 
3494
3673
commit 0dbcc691b8e14879a72d275d188848064d8c7e40
3495
3674
Author: Behdad Esfahbod <behdad@behdad.org>
3498
3677
    [modules] Don't warn multiple times
3499
3678
 
3500
3679
 pango/modules.c |   44 ++++++++++++++++++++++++++++++++------------
3501
 
 1 files changed, 32 insertions(+), 12 deletions(-)
 
3680
 1 file changed, 32 insertions(+), 12 deletions(-)
3502
3681
 
3503
3682
commit ce6ee34f226b5f7582ea944fe8123bb0a04269d0
3504
3683
Author: Kristian Rietveld <kris@gtk.org>
3507
3686
    Don't use devel version numbers in Since tags
3508
3687
 
3509
3688
 pango/pangoatsui.c |    2 +-
3510
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3689
 1 file changed, 1 insertion(+), 1 deletion(-)
3511
3690
 
3512
3691
commit 0f06d7758bc37a4942342d2c17a88944cbc88adb
3513
3692
Author: Kristian Rietveld <kris@gtk.org>
3556
3735
    Fix FT_Face finalizer call
3557
3736
 
3558
3737
 pango/pango-ot-info.c |    2 +-
3559
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3738
 1 file changed, 1 insertion(+), 1 deletion(-)
3560
3739
 
3561
3740
commit fd15a3a04c69af0f5c04cde8c659269d0b139c28
3562
3741
Author: Johan Dahlin <johan@gnome.org>
3585
3764
    https://bugzilla.gnome.org/show_bug.cgi?id=604770
3586
3765
 
3587
3766
 pango/Makefile.am |  145
3588
 
 +++++++++++++++++++++-------------------------------
3589
 
 1 files changed, 59 insertions(+), 86 deletions(-)
 
3767
 ++++++++++++++++++++++-------------------------------
 
3768
 1 file changed, 59 insertions(+), 86 deletions(-)
3590
3769
 
3591
3770
commit aad6150aa47601dcc1c3aa7766dec828197b5919
3592
3771
Author: Johan Dahlin <johan@gnome.org>
3597
3776
    https://bugzilla.gnome.org/show_bug.cgi?id=604770
3598
3777
 
3599
3778
 Makefile.am |    2 +-
3600
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3779
 1 file changed, 1 insertion(+), 1 deletion(-)
3601
3780
 
3602
3781
commit ee573c4e722c8ef7aff41c6cc98eaeab1ac57aec
3603
3782
Author: Behdad Esfahbod <behdad@behdad.org>
3607
3786
 
3608
3787
 NEWS         |    9 +++++++++
3609
3788
 configure.in |    2 +-
3610
 
 2 files changed, 10 insertions(+), 1 deletions(-)
 
3789
 2 files changed, 10 insertions(+), 1 deletion(-)
3611
3790
 
3612
3791
commit 3230261dd6f856b77688cad7c40b7b83b63c17ed
3613
3792
Author: Behdad Esfahbod <behdad@behdad.org>
3616
3795
    Simplify make rules
3617
3796
 
3618
3797
 pango/Makefile.am |    6 ++----
3619
 
 1 files changed, 2 insertions(+), 4 deletions(-)
 
3798
 1 file changed, 2 insertions(+), 4 deletions(-)
3620
3799
 
3621
3800
commit 20889f065700ef005b1016729e9c26e078ef9e8a
3622
3801
Author: Kristian Rietveld <kris@gtk.org>
3631
3810
    also broke support for Tiger and earlier -- we will fix that soonish.
3632
3811
 
3633
3812
 pango/pangocairo-atsuifont.c |    2 +-
3634
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3813
 1 file changed, 1 insertion(+), 1 deletion(-)
3635
3814
 
3636
3815
commit 1a6d89b217fb259f91f8661351336cec651c55e3
3637
3816
Author: Behdad Esfahbod <behdad@behdad.org>
3640
3819
    Bug 602823 - void function cannot return value
3641
3820
 
3642
3821
 pango/glyphstring.c |    2 +-
3643
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3822
 1 file changed, 1 insertion(+), 1 deletion(-)
3644
3823
 
3645
3824
commit b685d25141ba069d2494b17fada2ecedd6dd0df5
3646
3825
Author: Behdad Esfahbod <behdad@behdad.org>
3655
3834
    Cherry-picked from harfbuzz-ng repo.
3656
3835
 
3657
3836
 pango/opentype/hb-ot-layout-gsub-private.hh |    4 ++--
3658
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
3837
 1 file changed, 2 insertions(+), 2 deletions(-)
3659
3838
 
3660
3839
commit 40bade07f999a0535e0cbc8c2afe45d44e92a663
3661
3840
Author: Behdad Esfahbod <behdad@behdad.org>
3684
3863
 pango/opentype/hb-ot-layout-gpos-private.hh     |   76
3685
3864
 +++++++++--------------
3686
3865
 pango/opentype/hb-ot-layout-gsub-private.hh     |   44 +++++--------
3687
 
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   47 +++++++--------
 
3866
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   47 +++++++-------
3688
3867
 pango/opentype/hb-private.h                     |    5 ++
3689
3868
 8 files changed, 122 insertions(+), 137 deletions(-)
3690
3869
 
3723
3902
 
3724
3903
 NEWS         |   12 ++++++++++++
3725
3904
 configure.in |    2 +-
3726
 
 2 files changed, 13 insertions(+), 1 deletions(-)
 
3905
 2 files changed, 13 insertions(+), 1 deletion(-)
3727
3906
 
3728
3907
commit df2d2ecbedfcc9fd470313c08f3d7edad148a0d1
3729
3908
Author: Behdad Esfahbod <behdad@behdad.org>
3732
3911
    Fix pangocairo-fc fontsize weirdness
3733
3912
 
3734
3913
 pango/pangocairo-fcfont.c |    5 ++---
3735
 
 1 files changed, 2 insertions(+), 3 deletions(-)
 
3914
 1 file changed, 2 insertions(+), 3 deletions(-)
3736
3915
 
3737
3916
commit d9abcaf566e9cd7f702c98958f99f90fd53b4c0b
3738
3917
Author: Behdad Esfahbod <behdad@behdad.org>
3744
3923
    be redone for 1.28 (harfbuzz-ng) anyway.
3745
3924
 
3746
3925
 pango/pango-ot-buffer.c |   56
3747
 
 +++++++++++++++++++++++++++++++++++++++++-----
 
3926
 ++++++++++++++++++++++++++++++++++++++++++-----
3748
3927
 pango/pangofc-font.c    |   19 ++++++++++++++++
3749
 
 pango/pangofc-private.h |   44 ++++++++++++++++++++++++++++++++++++
 
3928
 pango/pangofc-private.h |   44 +++++++++++++++++++++++++++++++++++++
3750
3929
 3 files changed, 113 insertions(+), 6 deletions(-)
3751
3930
 
3752
3931
commit 4ccabeffc20f899163bf610356871afb197e9bf8
3778
3957
    Fix typo in previous commit
3779
3958
 
3780
3959
 pango-view/Makefile.am |    2 +-
3781
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
3960
 1 file changed, 1 insertion(+), 1 deletion(-)
3782
3961
 
3783
3962
commit 28e179b4f24e11f2af3b739c6c5c3bd560d2de74
3784
3963
Author: Behdad Esfahbod <behdad@behdad.org>
3789
3968
    Second try.
3790
3969
 
3791
3970
 pango-view/Makefile.am |   28 +++++++++++++---------------
3792
 
 1 files changed, 13 insertions(+), 15 deletions(-)
 
3971
 1 file changed, 13 insertions(+), 15 deletions(-)
3793
3972
 
3794
3973
commit 16c3f1d491a04eb8b12f209f97904c7862fbb9db
3795
3974
Author: Behdad Esfahbod <behdad@behdad.org>
3800
3979
    Try to fix parallel build..
3801
3980
 
3802
3981
 pango-view/Makefile.am |   25 ++++++++++++++++---------
3803
 
 1 files changed, 16 insertions(+), 9 deletions(-)
 
3982
 1 file changed, 16 insertions(+), 9 deletions(-)
3804
3983
 
3805
3984
commit 5f3d21b78679694f76e788e9308062380a0d0c8e
3806
3985
Author: Behdad Esfahbod <behdad@behdad.org>
3821
4000
    Fix leak with non-mmapped fonts
3822
4001
 
3823
4002
 pango/pango-ot-info.c |    2 +-
3824
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4003
 1 file changed, 1 insertion(+), 1 deletion(-)
3825
4004
 
3826
4005
commit bfbe9aea599bc98ffd4640268a66c90d6fa21736
3827
4006
Author: Behdad Esfahbod <behdad@behdad.org>
3830
4009
    [HB] Add glyph_metrics typedef
3831
4010
 
3832
4011
 pango/opentype/hb-font.h |    9 +++++++++
3833
 
 1 files changed, 9 insertions(+), 0 deletions(-)
 
4012
 1 file changed, 9 insertions(+)
3834
4013
 
3835
4014
commit cdb7383be41b4ace0e6d9f3a05ac3983e8d4eaf0
3836
4015
Author: Behdad Esfahbod <behdad@behdad.org>
3841
4020
    Pointed out by Keith Stribley on HarfBuzz list.
3842
4021
 
3843
4022
 pango/opentype/hb-font.h |    1 +
3844
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
4023
 1 file changed, 1 insertion(+)
3845
4024
 
3846
4025
commit 44164ee60f5ef2fc4f7a03846b60d72eb67ecb0e
3847
4026
Author: Behdad Esfahbod <behdad@behdad.org>
3853
4032
 
3854
4033
 pango/opentype/hb-ot-layout-common-private.hh |    1 +
3855
4034
 pango/opentype/hb-ot-layout.cc                |    2 +-
3856
 
 2 files changed, 2 insertions(+), 1 deletions(-)
 
4035
 2 files changed, 2 insertions(+), 1 deletion(-)
3857
4036
 
3858
4037
commit 078b2d5b20c4c9e8b3f0a11d1d40e5510ef94cf6
3859
4038
Author: Behdad Esfahbod <behdad@behdad.org>
3865
4044
    Add classification for new characters.  Patch from Parag AN.
3866
4045
 
3867
4046
 modules/indic/indic-ot-class-tables.c |    8 ++++----
3868
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
4047
 1 file changed, 4 insertions(+), 4 deletions(-)
3869
4048
 
3870
4049
commit 1038b7959944dd25d7c2a76a3c769eb26b5fd6a2
3871
4050
Author: Behdad Esfahbod <behdad@behdad.org>
3888
4067
    Reported by mpsuzuki on gtk-i18n-list on 2009-10-16.
3889
4068
 
3890
4069
 configure.in |    6 ++----
3891
 
 1 files changed, 2 insertions(+), 4 deletions(-)
 
4070
 1 file changed, 2 insertions(+), 4 deletions(-)
3892
4071
 
3893
4072
commit 8598817414ab8bde6c218c6255faf378597394ea
3894
4073
Author: Behdad Esfahbod <behdad@behdad.org>
3897
4076
    Update from vte
3898
4077
 
3899
4078
 git.mk |    3 ++-
3900
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
4079
 1 file changed, 2 insertions(+), 1 deletion(-)
3901
4080
 
3902
4081
commit 6cf73f0034b6db8f10a5cdc096c7a5d1ac53af94
3903
4082
Author: Behdad Esfahbod <behdad@behdad.org>
3906
4085
    Typo
3907
4086
 
3908
4087
 pango/pangocairo-font.c |    2 +-
3909
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4088
 1 file changed, 1 insertion(+), 1 deletion(-)
3910
4089
 
3911
4090
commit 8299e480df42f0c1c6481a87c83a6497e76856f0
3912
4091
Author: Behdad Esfahbod <behdad@behdad.org>
3915
4094
    Bug 596837 - Typo in pango_cairo_show_layout documentation
3916
4095
 
3917
4096
 pango/pangocairo-render.c |    2 +-
3918
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4097
 1 file changed, 1 insertion(+), 1 deletion(-)
3919
4098
 
3920
4099
commit 18b4ad750528cf5018dc7aa53ba37d1a8af44e1f
3921
4100
Author: Behdad Esfahbod <behdad@behdad.org>
3934
4113
    [HB] Add comment
3935
4114
 
3936
4115
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |    5 +++++
3937
 
 1 files changed, 5 insertions(+), 0 deletions(-)
 
4116
 1 file changed, 5 insertions(+)
3938
4117
 
3939
4118
commit d50615c838ef7b448021dacbe4daa49aa26ea388
3940
4119
Author: Behdad Esfahbod <behdad@behdad.org>
3947
4126
    OpenType font
3948
4127
 
3949
4128
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |    3 ++-
3950
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
4129
 1 file changed, 2 insertions(+), 1 deletion(-)
3951
4130
 
3952
4131
commit 73f94ec879476f52adac105570f4cebe5bd02c0c
3953
4132
Author: Behdad Esfahbod <behdad@behdad.org>
3960
4139
    OpenType font
3961
4140
 
3962
4141
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |    4 ++--
3963
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
4142
 1 file changed, 2 insertions(+), 2 deletions(-)
3964
4143
 
3965
4144
commit 730bed768e8eb4ed14d21bd390403d8bfed71742
3966
4145
Author: Behdad Esfahbod <behdad@behdad.org>
3985
4164
    simply wrong.
3986
4165
 
3987
4166
 pango/pango-layout.c |    2 +-
3988
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4167
 1 file changed, 1 insertion(+), 1 deletion(-)
3989
4168
 
3990
4169
commit ce01a496c7dad90c672e673c0e7ba8c5de350137
3991
4170
Author: Behdad Esfahbod <behdad@behdad.org>
4010
4189
    This reverts commit ea608c0bd7721d3019bed7ef2472289b1ea6fa53.
4011
4190
 
4012
4191
 modules/basic/basic-win32.c |   13 +++++++------
4013
 
 1 files changed, 7 insertions(+), 6 deletions(-)
 
4192
 1 file changed, 7 insertions(+), 6 deletions(-)
4014
4193
 
4015
4194
commit 7f821fb6f714095c431f2195eb42ea2d288f84af
4016
4195
Author: Behdad Esfahbod <behdad@behdad.org>
4019
4198
    Only check doc coverage if building docs
4020
4199
 
4021
4200
 docs/Makefile.am |    2 ++
4022
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
4201
 1 file changed, 2 insertions(+)
4023
4202
 
4024
4203
commit 03e20e37a11971de6717c88d392362ec9e858880
4025
4204
Author: Behdad Esfahbod <behdad@behdad.org>
4029
4208
 
4030
4209
 NEWS         |    7 +++++++
4031
4210
 configure.in |    2 +-
4032
 
 2 files changed, 8 insertions(+), 1 deletions(-)
 
4211
 2 files changed, 8 insertions(+), 1 deletion(-)
4033
4212
 
4034
4213
commit 29f4c73be091fa950269d5923923482905bcd14b
4035
4214
Author: Behdad Esfahbod <behdad@behdad.org>
4038
4217
    [HB] Add TODO item
4039
4218
 
4040
4219
 pango/opentype/TODO |    1 +
4041
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
4220
 1 file changed, 1 insertion(+)
4042
4221
 
4043
4222
commit e10a17f28cbb8c6c4bd707b79af7e7d2b1370c16
4044
4223
Author: Behdad Esfahbod <behdad@behdad.org>
4049
4228
 pango/opentype/hb-open-file-private.hh          |    8 +-
4050
4229
 pango/opentype/hb-open-type-private.hh          |   50 ++++++------
4051
4230
 pango/opentype/hb-ot-layout-common-private.hh   |   32 ++++----
4052
 
 pango/opentype/hb-ot-layout-gdef-private.hh     |   20 +++---
 
4231
 pango/opentype/hb-ot-layout-gdef-private.hh     |   20 ++---
4053
4232
 pango/opentype/hb-ot-layout-gpos-private.hh     |   92
4054
 
 +++++++++++-----------
 
4233
 +++++++++++------------
4055
4234
 pango/opentype/hb-ot-layout-gsub-private.hh     |   72 +++++++++---------
4056
4235
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   78
4057
 
 ++++++++++----------
 
4236
 +++++++++----------
4058
4237
 7 files changed, 176 insertions(+), 176 deletions(-)
4059
4238
 
4060
4239
commit a6fbd0752ada8f1ae64b77b09b84202c969a3b9b
4063
4242
 
4064
4243
    [HB] Add GSUB/GPOS tracing
4065
4244
 
4066
 
 pango/opentype/hb-ot-layout-gpos-private.hh     |   29 ++++++++++++-
4067
 
 pango/opentype/hb-ot-layout-gsub-private.hh     |   28 ++++++++++++-
 
4245
 pango/opentype/hb-ot-layout-gpos-private.hh     |   29 ++++++++++++--
 
4246
 pango/opentype/hb-ot-layout-gsub-private.hh     |   28 +++++++++++--
4068
4247
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   49
4069
4248
 ++++++++++++++++++++++-
4070
4249
 3 files changed, 98 insertions(+), 8 deletions(-)
4088
4267
    Enable silent rules by default
4089
4268
 
4090
4269
 configure.in |    2 +-
4091
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4270
 1 file changed, 1 insertion(+), 1 deletion(-)
4092
4271
 
4093
4272
commit 735e2efc3369d4ad28a1ab73352232e39f768e27
4094
4273
Author: Behdad Esfahbod <behdad@behdad.org>
4097
4276
    Fix stupid array growing bug
4098
4277
 
4099
4278
 pango/opentype/hb-ot-layout.cc |    5 ++++-
4100
 
 1 files changed, 4 insertions(+), 1 deletions(-)
 
4279
 1 file changed, 4 insertions(+), 1 deletion(-)
4101
4280
 
4102
4281
commit d82431ec05b92cef903d02d47d8069a9427e96b9
4103
4282
Author: Behdad Esfahbod <behdad@behdad.org>
4106
4285
    [HB] Simplify counting
4107
4286
 
4108
4287
 pango/opentype/hb-ot-layout.cc |    9 +++++----
4109
 
 1 files changed, 5 insertions(+), 4 deletions(-)
 
4288
 1 file changed, 5 insertions(+), 4 deletions(-)
4110
4289
 
4111
4290
commit 98428c0680625be6737d89bca6104ff95cd7037b
4112
4291
Author: Behdad Esfahbod <behdad@behdad.org>
4118
4297
    things crash
4119
4298
 
4120
4299
 pango/pango-ot-info.c |    2 ++
4121
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
4300
 1 file changed, 2 insertions(+)
4122
4301
 
4123
4302
commit ca180e1f0e2a453bd9ae16791b6bba1328cfffeb
4124
4303
Author: Behdad Esfahbod <behdad@behdad.org>
4127
4306
    [HB] Indent
4128
4307
 
4129
4308
 pango/opentype/hb-blob.c |    4 ++--
4130
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
4309
 1 file changed, 2 insertions(+), 2 deletions(-)
4131
4310
 
4132
4311
commit b16c2664af5be02dfa987f3e8449dcb04d108c00
4133
4312
Author: Behdad Esfahbod <behdad@behdad.org>
4136
4315
    [HB] Bug 593231 - < c99 compiler dislikes ValueRecord
4137
4316
 
4138
4317
 pango/opentype/hb-ot-layout-gpos-private.hh |    4 +++-
4139
 
 1 files changed, 3 insertions(+), 1 deletions(-)
 
4318
 1 file changed, 3 insertions(+), 1 deletion(-)
4140
4319
 
4141
4320
commit 364548d8014ba4e29b486a5d430f23415f27742e
4142
4321
Author: Behdad Esfahbod <behdad@behdad.org>
4146
4325
 
4147
4326
 NEWS         |    7 +++++++
4148
4327
 configure.in |    2 +-
4149
 
 2 files changed, 8 insertions(+), 1 deletions(-)
 
4328
 2 files changed, 8 insertions(+), 1 deletion(-)
4150
4329
 
4151
4330
commit 3831dec6ed827fb7854743413b1936ab65b578b3
4152
4331
Author: Behdad Esfahbod <behdad@behdad.org>
4155
4334
    Update git.mk
4156
4335
 
4157
4336
 git.mk |    1 +
4158
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
4337
 1 file changed, 1 insertion(+)
4159
4338
 
4160
4339
commit 4c68b4bf575e6d02c658507374c9fb3cb0f958c6
4161
4340
Author: Behdad Esfahbod <behdad@behdad.org>
4166
4345
    Fix off-by-one.
4167
4346
 
4168
4347
 pango/opentype/hb-ot-layout.cc |    4 ++--
4169
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
4348
 1 file changed, 2 insertions(+), 2 deletions(-)
4170
4349
 
4171
4350
commit 48d7faba771a738504e0c431c29458cac305275f
4172
4351
Author: Behdad Esfahbod <behdad@behdad.org>
4175
4354
    [HB][glib] Make glib unicode funcs static
4176
4355
 
4177
4356
 pango/opentype/hb-glib.c |   36 +++++++++++++++++-------------------
4178
 
 1 files changed, 17 insertions(+), 19 deletions(-)
 
4357
 1 file changed, 17 insertions(+), 19 deletions(-)
4179
4358
 
4180
4359
commit c18e50d95f6283031e9fe365d914bdcc85f339cc
4181
4360
Author: Behdad Esfahbod <behdad@behdad.org>
4184
4363
    [HB] Fix more casts
4185
4364
 
4186
4365
 pango/opentype/hb-open-type-private.hh |   10 +++++-----
4187
 
 1 files changed, 5 insertions(+), 5 deletions(-)
 
4366
 1 file changed, 5 insertions(+), 5 deletions(-)
4188
4367
 
4189
4368
commit 6f73b497a2f4d22611a136ef360b68a78547074f
4190
4369
Author: Behdad Esfahbod <behdad@behdad.org>
4195
4374
    Hiss!
4196
4375
 
4197
4376
 pango/opentype/hb-private.h |    6 +++---
4198
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
4377
 1 file changed, 3 insertions(+), 3 deletions(-)
4199
4378
 
4200
4379
commit 392f1f1ddb24c0e7d1d64ee8d36c739ac6482b81
4201
4380
Author: Behdad Esfahbod <behdad@behdad.org>
4212
4391
    Based on mailing list discussion with Carl Worth.
4213
4392
 
4214
4393
 pango/opentype/hb-blob.c |   51
4215
 
 ++++++++++++++++++++++-----------------------
 
4394
 +++++++++++++++++++++++-----------------------
4216
4395
 pango/opentype/hb-blob.h |    1 -
4217
4396
 2 files changed, 25 insertions(+), 27 deletions(-)
4218
4397
 
4224
4403
 
4225
4404
 pango/opentype/hb-blob.c               |   38
4226
4405
 ++++++++++++++++----------------
4227
 
 pango/opentype/hb-blob.h               |   10 ++++----
4228
 
 pango/opentype/hb-open-type-private.hh |    6 ++--
4229
 
 pango/pango-ot-info.c                  |    4 +-
 
4406
 pango/opentype/hb-blob.h               |   10 ++++-----
 
4407
 pango/opentype/hb-open-type-private.hh |    6 ++---
 
4408
 pango/pango-ot-info.c                  |    4 ++--
4230
4409
 4 files changed, 29 insertions(+), 29 deletions(-)
4231
4410
 
4232
4411
commit 2bd2cd6ed88671df1d7db1ede9a8c02208cb8f48
4236
4415
    [HB] Hide lig_id and component members of hb_glyph_info_t
4237
4416
 
4238
4417
 pango/opentype/hb-buffer.h |    5 ++---
4239
 
 1 files changed, 2 insertions(+), 3 deletions(-)
 
4418
 1 file changed, 2 insertions(+), 3 deletions(-)
4240
4419
 
4241
4420
commit 34810eedcd0fe0c5347a69e511a16b27ef0499d6
4242
4421
Author: Behdad Esfahbod <behdad@behdad.org>
4245
4424
    [HB] Fix typo
4246
4425
 
4247
4426
 pango/opentype/hb-font.h |    2 +-
4248
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4427
 1 file changed, 1 insertion(+), 1 deletion(-)
4249
4428
 
4250
4429
commit 0a8034ea52c1297e330e75ce5cccb3a6bf602fff
4251
4430
Author: Behdad Esfahbod <behdad@behdad.org>
4288
4467
    [HB] Fix more wrong method signatures
4289
4468
 
4290
4469
 pango/opentype/hb-ot-layout-common-private.hh |    2 +-
4291
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4470
 1 file changed, 1 insertion(+), 1 deletion(-)
4292
4471
 
4293
4472
commit 602c83982359f98916967dc88da6b5731fc06798
4294
4473
Author: Behdad Esfahbod <behdad@behdad.org>
4297
4476
    [HB] Fix wrong method signature
4298
4477
 
4299
4478
 pango/opentype/hb-ot-layout-common-private.hh |    4 ++--
4300
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
4479
 1 file changed, 2 insertions(+), 2 deletions(-)
4301
4480
 
4302
4481
commit 8f6e589aaab62f384c6c8dbc4d0087147bc22237
4303
4482
Author: Behdad Esfahbod <behdad@behdad.org>
4309
4488
 
4310
4489
 configure.in             |    1 +
4311
4490
 pango/opentype/hb-blob.c |   94
4312
 
 +++++++++++++++++++++++++++++----------------
 
4491
 +++++++++++++++++++++++++++++-----------------
4313
4492
 2 files changed, 61 insertions(+), 34 deletions(-)
4314
4493
 
4315
4494
commit a90b692a43bc94a7d204ff36422e3b0b3c5ba27d
4320
4499
 
4321
4500
 NEWS         |   13 +++++++++++++
4322
4501
 configure.in |    2 +-
4323
 
 2 files changed, 14 insertions(+), 1 deletions(-)
 
4502
 2 files changed, 14 insertions(+), 1 deletion(-)
4324
4503
 
4325
4504
commit cad422da3d653dae3f55eb9fc93d09b8a9530c9d
4326
4505
Author: Behdad Esfahbod <behdad@behdad.org>
4329
4508
    AM_V_GEN ChangeLog too
4330
4509
 
4331
4510
 Makefile.am |    3 +--
4332
 
 1 files changed, 1 insertions(+), 2 deletions(-)
 
4511
 1 file changed, 1 insertion(+), 2 deletions(-)
4333
4512
 
4334
4513
commit d4f8da3f4855db24484a8924d883df362561b7ce
4335
4514
Author: Behdad Esfahbod <behdad@behdad.org>
4357
4536
    For stable releases, no micro release adds new API.
4358
4537
 
4359
4538
 configure.in |   10 ++++++++++
4360
 
 1 files changed, 10 insertions(+), 0 deletions(-)
 
4539
 1 file changed, 10 insertions(+)
4361
4540
 
4362
4541
commit 5f256c2fd14b2cd18978a3963c8b49a2b68966f5
4363
4542
Author: Behdad Esfahbod <behdad@behdad.org>
4366
4545
    [introspection] Don't this gir files, really
4367
4546
 
4368
4547
 pango/Makefile.am |    2 +-
4369
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4548
 1 file changed, 1 insertion(+), 1 deletion(-)
4370
4549
 
4371
4550
commit 59fbdf8efd88d72c587dc55a22b6eabd7184284b
4372
4551
Author: Behdad Esfahbod <behdad@behdad.org>
4375
4554
    [Makefile] Remove GIR files from EXTRA_DIST
4376
4555
 
4377
4556
 pango/Makefile.am |    2 --
4378
 
 1 files changed, 0 insertions(+), 2 deletions(-)
 
4557
 1 file changed, 2 deletions(-)
4379
4558
 
4380
4559
commit 078300ef69ab0855a7cc39503880cbc8b2e23494
4381
4560
Author: Colin Walters <walters@verbum.org>
4395
4574
 
4396
4575
 configure.in      |    2 +-
4397
4576
 pango/Makefile.am |   69
4398
 
 ++++++++++++++++++++--------------------------------
 
4577
 +++++++++++++++++++++--------------------------------
4399
4578
 2 files changed, 28 insertions(+), 43 deletions(-)
4400
4579
 
4401
4580
commit f1d8d01c81b10a8c5ed47fef7a3fba10aa66140c
4418
4597
    [HB] Simplify loop
4419
4598
 
4420
4599
 pango/opentype/hb-ot-layout-gpos-private.hh |   31
4421
 
 ++++++++++++--------------
4422
 
 1 files changed, 14 insertions(+), 17 deletions(-)
 
4600
 ++++++++++++---------------
 
4601
 1 file changed, 14 insertions(+), 17 deletions(-)
4423
4602
 
4424
4603
commit 400a17544e80d46ef9d7aaca4d1c33a6e11f5f97
4425
4604
Author: Behdad Esfahbod <behdad@behdad.org>
4428
4607
    [HB] Merge mark positionin code between three types of lookups
4429
4608
 
4430
4609
 pango/opentype/hb-ot-layout-gpos-private.hh |   95
4431
 
 ++++++++------------------
4432
 
 1 files changed, 29 insertions(+), 66 deletions(-)
 
4610
 ++++++++-------------------
 
4611
 1 file changed, 29 insertions(+), 66 deletions(-)
4433
4612
 
4434
4613
commit ae76417677db1d7a8daf454bf043269479b7910d
4435
4614
Author: Behdad Esfahbod <behdad@behdad.org>
4472
4651
 
4473
4652
 pango/opentype/hb-ot-layout-gpos-private.hh |  127
4474
4653
 ++++++++++-----------------
4475
 
 1 files changed, 48 insertions(+), 79 deletions(-)
 
4654
 1 file changed, 48 insertions(+), 79 deletions(-)
4476
4655
 
4477
4656
commit 279a5bd1bbd085493a1ce882274481a80a443e46
4478
4657
Author: Behdad Esfahbod <behdad@behdad.org>
4481
4660
    [HB] Simplify MarkMark
4482
4661
 
4483
4662
 pango/opentype/hb-ot-layout-gpos-private.hh |   29
4484
 
 ++++++++++++++------------
4485
 
 1 files changed, 16 insertions(+), 13 deletions(-)
 
4663
 +++++++++++++++------------
 
4664
 1 file changed, 16 insertions(+), 13 deletions(-)
4486
4665
 
4487
4666
commit 10bc378f81fb2fd21fd7ef5f8d6242ad18b88132
4488
4667
Author: Behdad Esfahbod <behdad@behdad.org>
4502
4681
    [HB] Debug output for SANITIZE_MEM()
4503
4682
 
4504
4683
 pango/opentype/hb-open-type-private.hh |   34
4505
 
 +++++++++++++++++++++----------
4506
 
 1 files changed, 23 insertions(+), 11 deletions(-)
 
4684
 +++++++++++++++++++++-----------
 
4685
 1 file changed, 23 insertions(+), 11 deletions(-)
4507
4686
 
4508
4687
commit 397196a3758a4f0e645df876937ccc88d529b865
4509
4688
Author: Behdad Esfahbod <behdad@behdad.org>
4512
4691
    [HB] Use inline function for SANITIZE_MEM()
4513
4692
 
4514
4693
 pango/opentype/hb-open-type-private.hh |   33
4515
 
 +++++++++++++++++++------------
4516
 
 1 files changed, 20 insertions(+), 13 deletions(-)
 
4694
 +++++++++++++++++++-------------
 
4695
 1 file changed, 20 insertions(+), 13 deletions(-)
4517
4696
 
4518
4697
commit 6e5affe549e571c4bfa46be48963001bcc1b3d74
4519
4698
Author: Behdad Esfahbod <behdad@behdad.org>
4522
4701
    [HB] Use SANITIZE_THIS() when applicable
4523
4702
 
4524
4703
 pango/opentype/hb-open-type-private.hh |    6 +++---
4525
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
4704
 1 file changed, 3 insertions(+), 3 deletions(-)
4526
4705
 
4527
4706
commit 578e321d3b5a08b86e6f1576f09973a94924e448
4528
4707
Author: Behdad Esfahbod <behdad@behdad.org>
4532
4711
 
4533
4712
 pango/opentype/TODO                         |    1 +
4534
4713
 pango/opentype/hb-ot-layout-gpos-private.hh |    2 +-
4535
 
 2 files changed, 2 insertions(+), 1 deletions(-)
 
4714
 2 files changed, 2 insertions(+), 1 deletion(-)
4536
4715
 
4537
4716
commit d683b37b8817aef334281aada550bf8974fde1a8
4538
4717
Author: Behdad Esfahbod <behdad@behdad.org>
4540
4719
 
4541
4720
    [HB] Add empty hb_shape() API
4542
4721
 
4543
 
 pango/opentype/Makefile.am |    2 +
 
4722
 pango/opentype/Makefile.am |    2 ++
4544
4723
 pango/opentype/hb-shape.c  |   40 +++++++++++++++++++++++++++++++++
4545
4724
 pango/opentype/hb-shape.h  |   53
4546
4725
 ++++++++++++++++++++++++++++++++++++++++++++
4547
 
 3 files changed, 95 insertions(+), 0 deletions(-)
 
4726
 3 files changed, 95 insertions(+)
4548
4727
 
4549
4728
commit f4868084a55e3abd0b45ee2fb7b477e038a81d1a
4550
4729
Author: Behdad Esfahbod <behdad@behdad.org>
4555
4734
    Fix the second instance.
4556
4735
 
4557
4736
 pango/opentype/hb-buffer.h |    2 +-
4558
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4737
 1 file changed, 1 insertion(+), 1 deletion(-)
4559
4738
 
4560
4739
commit ea608c0bd7721d3019bed7ef2472289b1ea6fa53
4561
4740
Author: David E. Hollingsworth <deh@curl.com>
4578
4757
    from 20s to .3s.
4579
4758
 
4580
4759
 modules/basic/basic-win32.c |   13 ++++++-------
4581
 
 1 files changed, 6 insertions(+), 7 deletions(-)
 
4760
 1 file changed, 6 insertions(+), 7 deletions(-)
4582
4761
 
4583
4762
commit b4f10583ea84d02ed0278fc2cb2846aaf075864d
4584
4763
Author: Behdad Esfahbod <behdad@behdad.org>
4603
4782
    http://bugzilla.gnome.org/show_bug.cgi?id=591511
4604
4783
 
4605
4784
 pango/opentype/hb-buffer-private.h |   14 +++++++-------
4606
 
 1 files changed, 7 insertions(+), 7 deletions(-)
 
4785
 1 file changed, 7 insertions(+), 7 deletions(-)
4607
4786
 
4608
4787
commit c4f35720bc1310c37b41af134dace628ff35a221
4609
4788
Author: Behdad Esfahbod <behdad@behdad.org>
4638
4817
 
4639
4818
 configure.in             |    3 ++-
4640
4819
 pango/opentype/hb-blob.c |    8 ++++++++
4641
 
 2 files changed, 10 insertions(+), 1 deletions(-)
 
4820
 2 files changed, 10 insertions(+), 1 deletion(-)
4642
4821
 
4643
4822
commit 2059465b5d9440126d99a78aae7f785d89572194
4644
4823
Author: Behdad Esfahbod <behdad@behdad.org>
4647
4826
    [HB] Add comment
4648
4827
 
4649
4828
 pango/opentype/hb-buffer-private.h |    2 +-
4650
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4829
 1 file changed, 1 insertion(+), 1 deletion(-)
4651
4830
 
4652
4831
commit 7b1b94b255d616759672b03b2cf4b88aa013271a
4653
4832
Author: Behdad Esfahbod <behdad@behdad.org>
4656
4835
    New public API: pango_glyph_item_get_logical_widths()
4657
4836
 
4658
4837
 docs/pango-sections.txt  |    1 +
4659
 
 docs/tmpl/glyphs.sgml    |   10 +++++++
4660
 
 pango/glyphstring.c      |   39 +++--------------------------
 
4838
 docs/tmpl/glyphs.sgml    |   10 ++++++++
 
4839
 pango/glyphstring.c      |   39 ++++--------------------------
4661
4840
 pango/pango-glyph-item.c |   60
4662
4841
 ++++++++++++++++++++++++++++++++++++++++++++++
4663
 
 pango/pango-glyph-item.h |    3 ++
4664
 
 pango/pango-layout.c     |    5 +--
 
4842
 pango/pango-glyph-item.h |    3 +++
 
4843
 pango/pango-layout.c     |    5 ++--
4665
4844
 pango/pango.def          |    1 +
4666
4845
 7 files changed, 81 insertions(+), 38 deletions(-)
4667
4846
 
4684
4863
    Since the glyph widths can be adjusted directly.
4685
4864
 
4686
4865
 pango/pango-glyph.h |    2 +-
4687
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4866
 1 file changed, 1 insertion(+), 1 deletion(-)
4688
4867
 
4689
4868
commit 075e9925cc9d4675e5a6be65e599e4ee97f2d018
4690
4869
Author: Behdad Esfahbod <behdad@behdad.org>
4696
4875
    In the mean time, IranNastaliq was hitting the 100 limit.
4697
4876
 
4698
4877
 pango/pango-ot-info.c |    4 ++--
4699
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
4878
 1 file changed, 2 insertions(+), 2 deletions(-)
4700
4879
 
4701
4880
commit 68b88d292b4be0bffe321c3da84891c4a7b3ba6f
4702
4881
Author: Behdad Esfahbod <behdad@behdad.org>
4705
4884
    [layout] clear state->log_widths after freeing
4706
4885
 
4707
4886
 pango/pango-layout.c |    2 ++
4708
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
4887
 1 file changed, 2 insertions(+)
4709
4888
 
4710
4889
commit 1e53d4d5904445c740a374ea8492935f95bf1654
4711
4890
Author: Behdad Esfahbod <behdad@behdad.org>
4714
4893
    [HB] Always clear positions if dirty, before returning to user
4715
4894
 
4716
4895
 pango/opentype/hb-buffer.c |    4 ++--
4717
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
4896
 1 file changed, 2 insertions(+), 2 deletions(-)
4718
4897
 
4719
4898
commit 141dfa186403bb22e1e3875fdc263d402b2abb1d
4720
4899
Author: Behdad Esfahbod <behdad@behdad.org>
4728
4907
 
4729
4908
 pango/opentype/hb-buffer-private.h |    1 +
4730
4909
 pango/opentype/hb-buffer.c         |   12 ++++++++++++
4731
 
 2 files changed, 13 insertions(+), 0 deletions(-)
 
4910
 2 files changed, 13 insertions(+)
4732
4911
 
4733
4912
commit 996eab4e5f35432692fc76939a2f586a1298c1da
4734
4913
Author: Behdad Esfahbod <behdad@behdad.org>
4737
4916
    [HB] Fixed signedness warnings
4738
4917
 
4739
4918
 pango/opentype/hb-open-type-private.hh |    4 ++--
4740
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
4919
 1 file changed, 2 insertions(+), 2 deletions(-)
4741
4920
 
4742
4921
commit 4d5bd658c7b78392d24ad4cc82d800b6d0fc8434
4743
4922
Author: Behdad Esfahbod <behdad@behdad.org>
4746
4925
    [HB] Ouch.  Fix compilation.
4747
4926
 
4748
4927
 pango/opentype/hb-ot-layout-gpos-private.hh |    2 +-
4749
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4928
 1 file changed, 1 insertion(+), 1 deletion(-)
4750
4929
 
4751
4930
commit ebdcfbeb5aeb3e827326844f2f942570e503e26a
4752
4931
Author: Behdad Esfahbod <behdad@behdad.org>
4770
4949
    Initialize count variables.
4771
4950
 
4772
4951
 pango/pango-ot-info.c |    6 +++---
4773
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
4952
 1 file changed, 3 insertions(+), 3 deletions(-)
4774
4953
 
4775
4954
commit c556ca970a90850b6c6a96033bb862e1ceb00866
4776
4955
Author: Behdad Esfahbod <behdad@behdad.org>
4779
4958
    [doc] Update doc templates
4780
4959
 
4781
4960
 docs/tmpl/atsui-fonts.sgml |    9 +++++++++
4782
 
 1 files changed, 9 insertions(+), 0 deletions(-)
 
4961
 1 file changed, 9 insertions(+)
4783
4962
 
4784
4963
commit c99c7784e5c65e9c67721ec7335bce57cbd59fe3
4785
4964
Author: Behdad Esfahbod <behdad@behdad.org>
4800
4979
    Bug 562100 – docs check fails
4801
4980
 
4802
4981
 docs/pango-sections.txt |    2 +-
4803
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
4982
 1 file changed, 1 insertion(+), 1 deletion(-)
4804
4983
 
4805
4984
commit 954319c6eb2eb3dc74a3e271ee5ae6f1ce12ee32
4806
4985
Author: Behdad Esfahbod <behdad@behdad.org>
4809
4988
    Bug 591409 – crash in firefox.  Handle non-mmapped FT_Face
4810
4989
 
4811
4990
 pango/pango-ot-info.c |   50
4812
 
 +++++++++++++++++++++++++++++++++++++++---------
4813
 
 1 files changed, 40 insertions(+), 10 deletions(-)
 
4991
 +++++++++++++++++++++++++++++++++++++++----------
 
4992
 1 file changed, 40 insertions(+), 10 deletions(-)
4814
4993
 
4815
4994
commit 620858ee966c7999b206dd3a883542a1057a8d41
4816
4995
Author: Behdad Esfahbod <behdad@behdad.org>
4830
5009
    [HB] Add missing initializer
4831
5010
 
4832
5011
 pango/opentype/hb-font.cc |    4 +++-
4833
 
 1 files changed, 3 insertions(+), 1 deletions(-)
 
5012
 1 file changed, 3 insertions(+), 1 deletion(-)
4834
5013
 
4835
5014
commit 106c0db2c0d88d956a3e2184259c19948d9ea4b5
4836
5015
Author: Behdad Esfahbod <behdad@behdad.org>
4858
5037
 +++++++++++++++++++++++++++++++++++
4859
5038
 pango/opentype/hb-glib.h            |   41 +++++++++++++++++++++++++
4860
5039
 pango/opentype/hb-unicode-private.h |    2 +-
4861
 
 pango/opentype/hb-unicode.c         |   10 +++---
 
5040
 pango/opentype/hb-unicode.c         |   10 +++----
4862
5041
 pango/opentype/hb-unicode.h         |    6 ++--
4863
5042
 6 files changed, 109 insertions(+), 10 deletions(-)
4864
5043
 
4891
5070
    [HB] Initialize unicode funcs to nil getters
4892
5071
 
4893
5072
 pango/opentype/hb-unicode.c |   29 +++++++++++++++++++----------
4894
 
 1 files changed, 19 insertions(+), 10 deletions(-)
 
5073
 1 file changed, 19 insertions(+), 10 deletions(-)
4895
5074
 
4896
5075
commit f2fab897d32061d9a0329384cd4b0fd71748ea97
4897
5076
Author: Behdad Esfahbod <behdad@behdad.org>
4902
5081
 pango/opentype/hb-object-private.h  |    2 +-
4903
5082
 pango/opentype/hb-unicode-private.h |   12 +++----
4904
5083
 pango/opentype/hb-unicode.c         |   67
4905
 
 ++++++++++++++++++++++++++++++----
 
5084
 ++++++++++++++++++++++++++++++-----
4906
5085
 pango/opentype/hb-unicode.h         |    3 --
4907
5086
 4 files changed, 65 insertions(+), 19 deletions(-)
4908
5087
 
4914
5093
 
4915
5094
 pango/opentype/hb-buffer.c |  110
4916
5095
 ++++++++++++++++++++++++++++++++++++++++++++
4917
 
 pango/opentype/hb-buffer.h |   12 ++--
 
5096
 pango/opentype/hb-buffer.h |   12 ++---
4918
5097
 2 files changed, 116 insertions(+), 6 deletions(-)
4919
5098
 
4920
5099
commit 640709e6008ffcd9dc969aec71fcd717acbb8797
4924
5103
    [HB] Add buffer UTF-X API
4925
5104
 
4926
5105
 pango/opentype/hb-buffer.h |   21 +++++++++++++++++++++
4927
 
 1 files changed, 21 insertions(+), 0 deletions(-)
 
5106
 1 file changed, 21 insertions(+)
4928
5107
 
4929
5108
commit dfa2cfce0dac5ba1d9f87aea5ff3ab3ed36be6ce
4930
5109
Author: Behdad Esfahbod <behdad@behdad.org>
4955
5134
 pango/opentype/Makefile.am          |    3 +
4956
5135
 pango/opentype/hb-font-private.h    |   29 +----
4957
5136
 pango/opentype/hb-font.cc           |  163 +++++++-------------------
4958
 
 pango/opentype/hb-font.h            |  140 ++++++++---------------
 
5137
 pango/opentype/hb-font.h            |  140 ++++++++--------------
4959
5138
 pango/opentype/hb-unicode-private.h |   54 +++++++++
4960
5139
 pango/opentype/hb-unicode.c         |   89 ++++++++++++++
4961
5140
 pango/opentype/hb-unicode.h         |  220
4987
5166
    Add CXX check to configure
4988
5167
 
4989
5168
 configure.in |   11 +----------
4990
 
 1 files changed, 1 insertions(+), 10 deletions(-)
 
5169
 1 file changed, 1 insertion(+), 10 deletions(-)
4991
5170
 
4992
5171
commit b2ff4fa41d33af6c3f784d26667d5aa2ad81ebd3
4993
5172
Author: Behdad Esfahbod <behdad@behdad.org>
4998
5177
    Just add couple of options to it (still assuming gcc)
4999
5178
 
5000
5179
 pango/opentype/Makefile.am |    3 ++-
5001
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
5180
 1 file changed, 2 insertions(+), 1 deletion(-)
5002
5181
 
5003
5182
commit e6e9681411d07bbbca4c2c00052896aab3459fef
5004
5183
Author: Behdad Esfahbod <behdad@behdad.org>
5019
5198
    Oops!
5020
5199
 
5021
5200
 pango/pangoft2.def |    3 ---
5022
 
 1 files changed, 0 insertions(+), 3 deletions(-)
 
5201
 1 file changed, 3 deletions(-)
5023
5202
 
5024
5203
commit 7eea3552420ab23562c44777fceba91f5da5d883
5025
5204
Author: Behdad Esfahbod <behdad@behdad.org>
5032
5211
    and hence breaks "distcheck".  Need to look into it again.
5033
5212
 
5034
5213
 pango/Makefile.am |   31 ++++++++++++++++---------------
5035
 
 1 files changed, 16 insertions(+), 15 deletions(-)
 
5214
 1 file changed, 16 insertions(+), 15 deletions(-)
5036
5215
 
5037
5216
commit f5a10f5ce603cdd7dc70513c09975ca0535089b2
5038
5217
Author: Behdad Esfahbod <behdad@behdad.org>
5041
5220
    [HB] Indent
5042
5221
 
5043
5222
 pango/opentype/hb-ot-layout.h |    8 ++++----
5044
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
5223
 1 file changed, 4 insertions(+), 4 deletions(-)
5045
5224
 
5046
5225
commit 7736059a852b4951ae2a14f02bb552262dd179fd
5047
5226
Author: Behdad Esfahbod <behdad@behdad.org>
5050
5229
    [HB] Remove unused code
5051
5230
 
5052
5231
 pango/opentype/hb-ot-layout-gdef-private.hh |   10 ----------
5053
 
 1 files changed, 0 insertions(+), 10 deletions(-)
 
5232
 1 file changed, 10 deletions(-)
5054
5233
 
5055
5234
commit 845e7a7a35bd65af32a188b6cf89adb611ac35bc
5056
5235
Author: Behdad Esfahbod <behdad@behdad.org>
5058
5237
 
5059
5238
    [HB] Add a NEXT() macro
5060
5239
 
5061
 
 pango/opentype/hb-open-type-private.hh          |    2 +
5062
 
 pango/opentype/hb-ot-layout-common-private.hh   |    4 +-
5063
 
 pango/opentype/hb-ot-layout-gsub-private.hh     |    8 +++---
 
5240
 pango/opentype/hb-open-type-private.hh          |    2 ++
 
5241
 pango/opentype/hb-ot-layout-common-private.hh   |    4 ++--
 
5242
 pango/opentype/hb-ot-layout-gsub-private.hh     |    8 ++++----
5064
5243
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   24
5065
 
 +++++++++++-----------
 
5244
 +++++++++++------------
5066
5245
 4 files changed, 20 insertions(+), 18 deletions(-)
5067
5246
 
5068
5247
commit 4cd222b23494b2dd3511169be90f382922c5f210
5072
5251
    [HB] Remove done TODO item
5073
5252
 
5074
5253
 pango/opentype/TODO |    1 -
5075
 
 1 files changed, 0 insertions(+), 1 deletions(-)
 
5254
 1 file changed, 1 deletion(-)
5076
5255
 
5077
5256
commit 88bfabba705331762f369364bbb38becf56d83ed
5078
5257
Author: Behdad Esfahbod <behdad@behdad.org>
5081
5260
    [HB] Print mark sets in main.cc
5082
5261
 
5083
5262
 pango/opentype/main.cc |    2 ++
5084
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
5263
 1 file changed, 2 insertions(+)
5085
5264
 
5086
5265
commit 0956094754c054a9cafc7ead4bac24ca2c77439a
5087
5266
Author: Behdad Esfahbod <behdad@behdad.org>
5095
5274
 
5096
5275
 pango/opentype/hb-ot-layout.cc |   16 ----------------
5097
5276
 pango/opentype/hb-ot-layout.h  |    6 ------
5098
 
 2 files changed, 0 insertions(+), 22 deletions(-)
 
5277
 2 files changed, 22 deletions(-)
5099
5278
 
5100
5279
commit 3616d0b02412d86aa8d2370e67002c2ef5b31da3
5101
5280
Author: Behdad Esfahbod <behdad@behdad.org>
5104
5283
    [HB] Rename hb_ot_layout_feature_mask_t to hb_mask_t
5105
5284
 
5106
5285
 pango/opentype/TODO                         |    1 -
5107
 
 pango/opentype/hb-buffer-private.h          |    4 +-
5108
 
 pango/opentype/hb-buffer.c                  |   12 ++++----
5109
 
 pango/opentype/hb-buffer.h                  |    4 +-
 
5286
 pango/opentype/hb-buffer-private.h          |    4 ++--
 
5287
 pango/opentype/hb-buffer.c                  |   12 +++++-----
 
5288
 pango/opentype/hb-buffer.h                  |    4 ++--
5110
5289
 pango/opentype/hb-common.h                  |    1 +
5111
 
 pango/opentype/hb-ot-layout-gpos-private.hh |   12 ++++----
5112
 
 pango/opentype/hb-ot-layout-gsub-private.hh |   14 +++++-----
 
5290
 pango/opentype/hb-ot-layout-gpos-private.hh |   12 +++++-----
 
5291
 pango/opentype/hb-ot-layout-gsub-private.hh |   14 +++++------
5113
5292
 pango/opentype/hb-ot-layout.cc              |   18 +++++++-------
5114
5293
 pango/opentype/hb-ot-layout.h               |   34
5115
 
 +++++++-------------------
5116
 
 pango/pango-ot-info.c                       |    4 +-
 
5294
 +++++++--------------------
 
5295
 pango/pango-ot-info.c                       |    4 ++--
5117
5296
 10 files changed, 44 insertions(+), 60 deletions(-)
5118
5297
 
5119
5298
commit 005058069f1638e207859c2898129fd1375458d7
5123
5302
    [HB] Fix bug introduced recently
5124
5303
 
5125
5304
 pango/opentype/hb-open-type-private.hh |    4 ++--
5126
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
5305
 1 file changed, 2 insertions(+), 2 deletions(-)
5127
5306
 
5128
5307
commit c899bfddd1aaa0f0b4242910080f80a9889cb27c
5129
5308
Author: Behdad Esfahbod <behdad@behdad.org>
5133
5312
 
5134
5313
 pango/opentype/TODO                             |    2 -
5135
5314
 pango/opentype/hb-open-file-private.hh          |   41 ++++++-
5136
 
 pango/opentype/hb-open-type-private.hh          |  104 +----------------
 
5315
 pango/opentype/hb-open-type-private.hh          |  104 +---------------
5137
5316
 pango/opentype/hb-ot-layout-common-private.hh   |  103 ++++++++++++----
5138
 
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   35 +++++-
 
5317
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   35 ++++--
5139
5318
 pango/opentype/hb-ot-layout.cc                  |  146
5140
5319
 ++++++++---------------
5141
5320
 pango/opentype/hb-ot-layout.h                   |  101 +++++++---------
5142
 
 pango/pango-ot-info.c                           |   96 ++++++----------
 
5321
 pango/pango-ot-info.c                           |   96 ++++++---------
5143
5322
 8 files changed, 274 insertions(+), 354 deletions(-)
5144
5323
 
5145
5324
commit ca89182f510d3627526b3f5e7379ce5a89440354
5159
5338
    [HB] Remove unused var
5160
5339
 
5161
5340
 pango/opentype/hb-ot-layout-private.h |    2 --
5162
 
 1 files changed, 0 insertions(+), 2 deletions(-)
 
5341
 1 file changed, 2 deletions(-)
5163
5342
 
5164
5343
commit a5e0c175ef3b63b3db53ff861f8847ffe9cea03d
5165
5344
Author: Behdad Esfahbod <behdad@behdad.org>
5168
5347
    [HB] Remove another stale XXX
5169
5348
 
5170
5349
 pango/opentype/hb-ot-layout.cc |    2 --
5171
 
 1 files changed, 0 insertions(+), 2 deletions(-)
 
5350
 1 file changed, 2 deletions(-)
5172
5351
 
5173
5352
commit 2b067b28aee93c2275644b0a1dc3b04ad751bda6
5174
5353
Author: Behdad Esfahbod <behdad@behdad.org>
5177
5356
    [HB] Rebrand XXX as TODO
5178
5357
 
5179
5358
 pango/opentype/hb-open-file-private.hh |    4 ++--
5180
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
5359
 1 file changed, 2 insertions(+), 2 deletions(-)
5181
5360
 
5182
5361
commit bdf7aec5550061d8924673dbebda0221eec45dfd
5183
5362
Author: Behdad Esfahbod <behdad@behdad.org>
5186
5365
    [HB] Remove stale XXX
5187
5366
 
5188
5367
 pango/opentype/hb-blob.c |    2 --
5189
 
 1 files changed, 0 insertions(+), 2 deletions(-)
 
5368
 1 file changed, 2 deletions(-)
5190
5369
 
5191
5370
commit 374f30c9d62a0559d71bbd610b10249d049e7778
5192
5371
Author: Behdad Esfahbod <behdad@behdad.org>
5227
5406
 
5228
5407
    [HB] Use glib again
5229
5408
 
5230
 
 pango/opentype/Makefile.am         |    5 ++-
5231
 
 pango/opentype/hb-blob.c           |    4 +-
5232
 
 pango/opentype/hb-object-private.h |   19 ++++----------
 
5409
 pango/opentype/Makefile.am         |    5 ++--
 
5410
 pango/opentype/hb-blob.c           |    4 ++--
 
5411
 pango/opentype/hb-object-private.h |   19 +++++----------
5233
5412
 pango/opentype/hb-private.h        |   45
5234
 
 ++++++++++++++++++++---------------
 
5413
 +++++++++++++++++++++---------------
5235
5414
 4 files changed, 37 insertions(+), 36 deletions(-)
5236
5415
 
5237
5416
commit d29e8fcd57cd62627c4fdbbaf4cbcf2e58c5df89
5241
5420
    [OT] Remove SFNT special-casing.  HB knows how to do that
5242
5421
 
5243
5422
 pango/pango-ot-info.c |   30 +++++++++++++-----------------
5244
 
 1 files changed, 13 insertions(+), 17 deletions(-)
 
5423
 1 file changed, 13 insertions(+), 17 deletions(-)
5245
5424
 
5246
5425
commit 6ab6f0042aa081007af8a1ae7e8871c8a6f13ab2
5247
5426
Author: Behdad Esfahbod <behdad@behdad.org>
5250
5429
    [OT] Fix crash with non-SFNT fonts
5251
5430
 
5252
5431
 pango/pango-ot-info.c |    2 +-
5253
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
5432
 1 file changed, 1 insertion(+), 1 deletion(-)
5254
5433
 
5255
5434
commit 7a1539df497997a4d97b9d27cfb082454e4ab694
5256
5435
Author: Behdad Esfahbod <behdad@behdad.org>
5259
5438
    [OT] Make sure we own face generic data before using it
5260
5439
 
5261
5440
 pango/pango-ot-info.c |    5 ++++-
5262
 
 1 files changed, 4 insertions(+), 1 deletions(-)
 
5441
 1 file changed, 4 insertions(+), 1 deletion(-)
5263
5442
 
5264
5443
commit 20588ed32aadba157bb2fcf1c8b2447890854234
5265
5444
Author: Behdad Esfahbod <behdad@behdad.org>
5268
5447
    [HB] Improve debug output
5269
5448
 
5270
5449
 pango/opentype/hb-open-type-private.hh |    7 ++++---
5271
 
 1 files changed, 4 insertions(+), 3 deletions(-)
 
5450
 1 file changed, 4 insertions(+), 3 deletions(-)
5272
5451
 
5273
5452
commit 6caa02aee9d614077c9ae4b5dfe8fec0058f7356
5274
5453
Author: Behdad Esfahbod <behdad@behdad.org>
5277
5456
    [HB] Minor
5278
5457
 
5279
5458
 pango/opentype/hb-private.h |    2 +-
5280
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
5459
 1 file changed, 1 insertion(+), 1 deletion(-)
5281
5460
 
5282
5461
commit 1761cd11cb12b033df73ae265900733c0d8f4231
5283
5462
Author: Behdad Esfahbod <behdad@behdad.org>
5286
5465
    [HB] Add a few TODO items
5287
5466
 
5288
5467
 pango/opentype/TODO |    8 +++++---
5289
 
 1 files changed, 5 insertions(+), 3 deletions(-)
 
5468
 1 file changed, 5 insertions(+), 3 deletions(-)
5290
5469
 
5291
5470
commit 895a98508dc408bd232dadb33bb5ac313b96ffbb
5292
5471
Author: Behdad Esfahbod <behdad@behdad.org>
5295
5474
    [HB] Improve debug output
5296
5475
 
5297
5476
 pango/opentype/hb-open-type-private.hh |    8 ++++++++
5298
 
 1 files changed, 8 insertions(+), 0 deletions(-)
 
5477
 1 file changed, 8 insertions(+)
5299
5478
 
5300
5479
commit 1aab84b8b2ed0f35fcf5265e6b8432d8ecc07162
5301
5480
Author: Behdad Esfahbod <behdad@behdad.org>
5304
5483
    [HB] Fix blob unlock
5305
5484
 
5306
5485
 pango/opentype/hb-blob.c |    2 +-
5307
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
5486
 1 file changed, 1 insertion(+), 1 deletion(-)
5308
5487
 
5309
5488
commit 77bde84243e5e03ffaf6940678ca920e00eea253
5310
5489
Author: Behdad Esfahbod <behdad@behdad.org>
5313
5492
    [HB] Improve debug output and fix mprotect bug
5314
5493
 
5315
5494
 pango/opentype/hb-blob.c               |   57
5316
 
 +++++++++++++++++++++++++++----
 
5495
 +++++++++++++++++++++++++++-----
5317
5496
 pango/opentype/hb-open-type-private.hh |   30 ++++++++---------
5318
5497
 pango/opentype/hb-private.h            |    3 +-
5319
5498
 3 files changed, 65 insertions(+), 25 deletions(-)
5325
5504
    [HB] Minor
5326
5505
 
5327
5506
 pango/opentype/hb-private.h |    3 +++
5328
 
 1 files changed, 3 insertions(+), 0 deletions(-)
 
5507
 1 file changed, 3 insertions(+)
5329
5508
 
5330
5509
commit c96b2a6a3b2b2bb106163254b034a8fdcc3081e5
5331
5510
Author: Behdad Esfahbod <behdad@behdad.org>
5344
5523
    [HB] turn debugging off
5345
5524
 
5346
5525
 pango/opentype/hb-private.h |    2 +-
5347
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
5526
 1 file changed, 1 insertion(+), 1 deletion(-)
5348
5527
 
5349
5528
commit f250cc489b961d77e5104c16d030ed495c1c4b46
5350
5529
Author: Behdad Esfahbod <behdad@behdad.org>
5354
5533
 
5355
5534
 docs/tmpl/atsui-fonts.sgml |    9 ---------
5356
5535
 docs/tmpl/opentype.sgml    |    2 +-
5357
 
 2 files changed, 1 insertions(+), 10 deletions(-)
 
5536
 2 files changed, 1 insertion(+), 10 deletions(-)
5358
5537
 
5359
5538
commit 85c2e96bee9c19cec66f2b7fefabcab1bb1fe57f
5360
5539
Author: Behdad Esfahbod <behdad@behdad.org>
5363
5542
    [HB] Fix another sanitize() bug;  hopefully it's the last one
5364
5543
 
5365
5544
 pango/opentype/hb-ot-layout-common-private.hh |    2 +-
5366
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
5545
 1 file changed, 1 insertion(+), 1 deletion(-)
5367
5546
 
5368
5547
commit 2e28925934eac99d59ba3a9257071e0e735d0819
5369
5548
Author: Behdad Esfahbod <behdad@behdad.org>
5382
5561
    [HB] More debugging output
5383
5562
 
5384
5563
 pango/opentype/hb-open-type-private.hh |   45
5385
 
 ++++++++++++++++++++++++++++---
5386
 
 1 files changed, 40 insertions(+), 5 deletions(-)
 
5564
 ++++++++++++++++++++++++++++----
 
5565
 1 file changed, 40 insertions(+), 5 deletions(-)
5387
5566
 
5388
5567
commit a990ba0d2b8599ee3eab8bea6ac96aec99b1ee1d
5389
5568
Author: Behdad Esfahbod <behdad@behdad.org>
5392
5571
    [HB] Fix fatal Sanitizer bug
5393
5572
 
5394
5573
 pango/opentype/hb-open-type-private.hh |    2 +-
5395
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
5574
 1 file changed, 1 insertion(+), 1 deletion(-)
5396
5575
 
5397
5576
commit 7762880223a110e41cb1f1c256564f6809747fb8
5398
5577
Author: Behdad Esfahbod <behdad@behdad.org>
5401
5580
    [HB] Add missing sanitize
5402
5581
 
5403
5582
 pango/opentype/hb-open-file-private.hh |    1 +
5404
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
5583
 1 file changed, 1 insertion(+)
5405
5584
 
5406
5585
commit b4c1057497e2498a3391b2536aa1fbc7efe9723a
5407
5586
Author: Behdad Esfahbod <behdad@behdad.org>
5409
5588
 
5410
5589
    [HB] Add sanitize debugging facilities
5411
5590
 
5412
 
 pango/opentype/hb-open-file-private.hh          |    4 ++
 
5591
 pango/opentype/hb-open-file-private.hh          |    4 +++
5413
5592
 pango/opentype/hb-open-type-private.hh          |   43
5414
5593
 ++++++++++++++++++++---
5415
5594
 pango/opentype/hb-ot-layout-common-private.hh   |   17 +++++++++
5416
 
 pango/opentype/hb-ot-layout-gdef-private.hh     |   10 +++++
 
5595
 pango/opentype/hb-ot-layout-gdef-private.hh     |   10 ++++++
5417
5596
 pango/opentype/hb-ot-layout-gpos-private.hh     |   28 +++++++++++++++
5418
 
 pango/opentype/hb-ot-layout-gsub-private.hh     |   18 +++++++++
5419
 
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   16 ++++++++
 
5597
 pango/opentype/hb-ot-layout-gsub-private.hh     |   18 ++++++++++
 
5598
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   16 +++++++++
5420
5599
 pango/opentype/hb-private.h                     |    6 +++-
5421
5600
 8 files changed, 136 insertions(+), 6 deletions(-)
5422
5601
 
5442
5621
    [HB] Save edit even if not writeable
5443
5622
 
5444
5623
 pango/opentype/hb-open-types-private.hh |    6 ++----
5445
 
 1 files changed, 2 insertions(+), 4 deletions(-)
 
5624
 1 file changed, 2 insertions(+), 4 deletions(-)
5446
5625
 
5447
5626
commit c63d3b1b1fbe7a796f2722b467830ce726b78619
5448
5627
Author: Behdad Esfahbod <behdad@behdad.org>
5473
5652
 
5474
5653
 pango/opentype/hb-ot-layout-gpos-private.hh |    1 +
5475
5654
 pango/opentype/hb-ot-layout-gsub-private.hh |    1 +
5476
 
 2 files changed, 2 insertions(+), 0 deletions(-)
 
5655
 2 files changed, 2 insertions(+)
5477
5656
 
5478
5657
commit 23663fe3b506d0f9b44168dcf0b0a80d102b0877
5479
5658
Author: Behdad Esfahbod <behdad@behdad.org>
5493
5672
    [HB] Fix leak
5494
5673
 
5495
5674
 pango/opentype/hb-ot-layout.cc |    2 ++
5496
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
5675
 1 file changed, 2 insertions(+)
5497
5676
 
5498
5677
commit c04edb57948948bc2fcb24060bf12bdb6dfcebb9
5499
5678
Author: Behdad Esfahbod <behdad@behdad.org>
5503
5682
 
5504
5683
 pango/opentype/hb-open-types-private.hh |   58
5505
5684
 ++++++++++++++++++++++++++++---
5506
 
 1 files changed, 53 insertions(+), 5 deletions(-)
 
5685
 1 file changed, 53 insertions(+), 5 deletions(-)
5507
5686
 
5508
5687
commit 64563fcff29aeac442f152c4643328730184763a
5509
5688
Author: Behdad Esfahbod <behdad@behdad.org>
5512
5691
    [HB] Add XXX
5513
5692
 
5514
5693
 pango/opentype/hb-open-file-private.hh |    3 +++
5515
 
 1 files changed, 3 insertions(+), 0 deletions(-)
 
5694
 1 file changed, 3 insertions(+)
5516
5695
 
5517
5696
commit 02c12b3802bfe4163d1b19a6a3a1daaf947f192d
5518
5697
Author: Behdad Esfahbod <behdad@behdad.org>
5534
5713
 
5535
5714
 pango/opentype/hb-open-types-private.hh |  127
5536
5715
 ++++++++++++++++---------------
5537
 
 1 files changed, 65 insertions(+), 62 deletions(-)
 
5716
 1 file changed, 65 insertions(+), 62 deletions(-)
5538
5717
 
5539
5718
commit d327d7fed4068f0fd69673cbc73b22d57476baa2
5540
5719
Merge: 6a4933a 091be0f
5551
5730
 
5552
5731
 pango/opentype/hb-open-types-private.hh |   29
5553
5732
 ++++++++++++++++++++++++++++-
5554
 
 1 files changed, 28 insertions(+), 1 deletions(-)
 
5733
 1 file changed, 28 insertions(+), 1 deletion(-)
5555
5734
 
5556
5735
commit f92f7d301c7219cc1478759e2a5729cfba821529
5557
5736
Author: Behdad Esfahbod <behdad@behdad.org>
5605
5784
    [HB] Remove stale TODO
5606
5785
 
5607
5786
 pango/opentype/hb-ot-layout.cc |    2 --
5608
 
 1 files changed, 0 insertions(+), 2 deletions(-)
 
5787
 1 file changed, 2 deletions(-)
5609
5788
 
5610
5789
commit 7a0a97bc1b8ee09004140fdec8529d52f5702c18
5611
5790
Author: Behdad Esfahbod <behdad@behdad.org>
5614
5793
    [HB] Hookup NEUTER()
5615
5794
 
5616
5795
 pango/opentype/hb-open-types-private.hh |    6 +++---
5617
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
5796
 1 file changed, 3 insertions(+), 3 deletions(-)
5618
5797
 
5619
5798
commit b2eb172416f9ad32a60bb33a26df6bf40ae69453
5620
5799
Author: Behdad Esfahbod <behdad@behdad.org>
5638
5817
 
5639
5818
    [HB] GPOS sanitize()
5640
5819
 
5641
 
 pango/opentype/hb-open-types-private.hh     |   22 +++-
 
5820
 pango/opentype/hb-open-types-private.hh     |   22 ++-
5642
5821
 pango/opentype/hb-ot-layout-gpos-private.hh |  195
5643
5822
 ++++++++++++++++++++++++++-
5644
5823
 pango/opentype/hb-ot-layout-gsub-private.hh |    2 -
5662
5841
    [HB] More casts
5663
5842
 
5664
5843
 pango/opentype/hb-ot-layout-gsub-private.hh |    2 +-
5665
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
5844
 1 file changed, 1 insertion(+), 1 deletion(-)
5666
5845
 
5667
5846
commit 7d0dc6328b60b9a1244dca21d1bc2ffe7411f5d3
5668
5847
Author: Behdad Esfahbod <behdad@behdad.org>
5671
5850
    [HB] Fix couple of bugs
5672
5851
 
5673
5852
 pango/opentype/hb-open-types-private.hh |    6 +++---
5674
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
5853
 1 file changed, 3 insertions(+), 3 deletions(-)
5675
5854
 
5676
5855
commit 7c897c7a2452ec740ac434561d2334c72c1ffdd8
5677
5856
Author: Behdad Esfahbod <behdad@behdad.org>
5679
5858
 
5680
5859
    [HB] More cast cleanup
5681
5860
 
5682
 
 pango/opentype/hb-open-types-private.hh         |   23 +++++---
5683
 
 pango/opentype/hb-ot-layout-common-private.hh   |    7 +--
 
5861
 pango/opentype/hb-open-types-private.hh         |   23 ++++----
 
5862
 pango/opentype/hb-ot-layout-common-private.hh   |    7 ++-
5684
5863
 pango/opentype/hb-ot-layout-gsub-private.hh     |   27 ++++------
5685
5864
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   64
5686
 
 ++++++++--------------
 
5865
 ++++++++---------------
5687
5866
 4 files changed, 50 insertions(+), 71 deletions(-)
5688
5867
 
5689
5868
commit 5e8a31e45cd4b837e1c5e2fa5fb6e78dda1d1df8
5692
5871
 
5693
5872
    [Hb] Use reinterpret casts instead of direct casts to char *
5694
5873
 
5695
 
 pango/opentype/hb-open-file-private.hh          |    4 +-
5696
 
 pango/opentype/hb-open-types-private.hh         |   19 +++++++---
5697
 
 pango/opentype/hb-ot-layout-common-private.hh   |    8 ++--
5698
 
 pango/opentype/hb-ot-layout-gpos-private.hh     |   12 +++---
5699
 
 pango/opentype/hb-ot-layout-gsub-private.hh     |   20 +++++-----
 
5874
 pango/opentype/hb-open-file-private.hh          |    4 +--
 
5875
 pango/opentype/hb-open-types-private.hh         |   19 ++++++----
 
5876
 pango/opentype/hb-ot-layout-common-private.hh   |    8 ++---
 
5877
 pango/opentype/hb-ot-layout-gpos-private.hh     |   12 +++----
 
5878
 pango/opentype/hb-ot-layout-gsub-private.hh     |   20 +++++------
5700
5879
 pango/opentype/hb-ot-layout-gsubgpos-private.hh |   44
5701
 
 +++++++++++-----------
 
5880
 +++++++++++------------
5702
5881
 6 files changed, 57 insertions(+), 50 deletions(-)
5703
5882
 
5704
5883
commit c8c04266568d23e2efa12b7c073562ac7b5b0b2f
5709
5888
 
5710
5889
 pango/opentype/hb-open-types-private.hh |  167
5711
5890
 ++++++++++---------------------
5712
 
 1 files changed, 55 insertions(+), 112 deletions(-)
 
5891
 1 file changed, 55 insertions(+), 112 deletions(-)
5713
5892
 
5714
5893
commit a501ac401398cc85d2c9695bb2fc41dc4f7efb39
5715
5894
Author: Behdad Esfahbod <behdad@behdad.org>
5729
5908
    [HB] Finish GSUB sanitize()
5730
5909
 
5731
5910
 pango/opentype/hb-ot-layout-gsub-private.hh |   21 ++++++++++++++++++++-
5732
 
 1 files changed, 20 insertions(+), 1 deletions(-)
 
5911
 1 file changed, 20 insertions(+), 1 deletion(-)
5733
5912
 
5734
5913
commit 8c48985195d3b1cafb7852f2d70b9d82a01d1d78
5735
5914
Author: Behdad Esfahbod <behdad@behdad.org>
5738
5917
    [HB] Add comment
5739
5918
 
5740
5919
 pango/opentype/hb-ot-layout-common-private.hh |    6 ++++--
5741
 
 1 files changed, 4 insertions(+), 2 deletions(-)
 
5920
 1 file changed, 4 insertions(+), 2 deletions(-)
5742
5921
 
5743
5922
commit 15e1f268f52a61ebdcdcf0d3c7cd643f897cdcde
5744
5923
Author: Behdad Esfahbod <behdad@behdad.org>
5747
5926
    [HB] Optimize sanitize()
5748
5927
 
5749
5928
 pango/opentype/hb-open-types-private.hh |    7 ++++++-
5750
 
 1 files changed, 6 insertions(+), 1 deletions(-)
 
5929
 1 file changed, 6 insertions(+), 1 deletion(-)
5751
5930
 
5752
5931
commit f786c9d501099f3c989fb6e34469381f4be8681f
5753
5932
Author: Behdad Esfahbod <behdad@behdad.org>
5796
5975
 
5797
5976
    [HB] Make it all work again
5798
5977
 
5799
 
 pango/opentype/hb-font.cc             |   23 ++++++++------
 
5978
 pango/opentype/hb-font.cc             |   23 ++++++++-------
5800
5979
 pango/opentype/hb-ot-layout-private.h |    9 ++++--
5801
5980
 pango/opentype/hb-ot-layout.cc        |   51
5802
5981
 ++++++++++++++++-----------------
5812
5991
 pango/opentype/hb-font-private.h                |    4 +
5813
5992
 pango/opentype/hb-font.cc                       |   74 ++++++--
5814
5993
 pango/opentype/hb-font.h                        |    3 +
5815
 
 pango/opentype/hb-object-private.h              |   36 +++--
 
5994
 pango/opentype/hb-object-private.h              |   36 ++--
5816
5995
 pango/opentype/hb-ot-layout-gdef-private.hh     |    2 +
5817
5996
 pango/opentype/hb-ot-layout-gpos-private.hh     |   14 +-
5818
5997
 pango/opentype/hb-ot-layout-gsub-private.hh     |   32 ++--
5829
6008
    [HB] Simplify sub-blob support
5830
6009
 
5831
6010
 pango/opentype/hb-blob.c |  172
5832
 
 +++++++++++++++++----------------------------
5833
 
 pango/opentype/hb-blob.h |   14 +++--
 
6011
 ++++++++++++++++++----------------------------
 
6012
 pango/opentype/hb-blob.h |   14 ++--
5834
6013
 2 files changed, 74 insertions(+), 112 deletions(-)
5835
6014
 
5836
6015
commit ab5a714897efa61da57d8a7fc060b57a6ff4991c
5910
6089
 pango/opentype/hb-common.h                     |    1 +
5911
6090
 pango/opentype/hb-font.c                       |    9 +
5912
6091
 pango/opentype/hb-font.h                       |    3 +
5913
 
 pango/opentype/hb-ot-layout-gdef-private.h     |   32 ++--
 
6092
 pango/opentype/hb-ot-layout-gdef-private.h     |   32 +--
5914
6093
 pango/opentype/hb-ot-layout-gpos-private.h     |  106 ++++----
5915
6094
 pango/opentype/hb-ot-layout-gsub-private.h     |   50 ++--
5916
6095
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   12 +-
5917
6096
 pango/opentype/hb-ot-layout-private.h          |   36 ++-
5918
6097
 pango/opentype/hb-ot-layout.cc                 |  342
5919
6098
 +++++++++++++-----------
5920
 
 pango/opentype/hb-ot-layout.h                  |  207 +++++++--------
 
6099
 pango/opentype/hb-ot-layout.h                  |  207 +++++++-------
5921
6100
 pango/pango-ot-buffer.c                        |    6 +-
5922
6101
 pango/pango-ot-info.c                          |  110 ++++----
5923
6102
 pango/pango-ot-private.h                       |    6 +-
5932
6111
 pango/opentype/Makefile.am |    2 ++
5933
6112
 pango/opentype/hb-ot.h     |   34 ++++++++++++++++++++++++++++++++++
5934
6113
 pango/opentype/hb.h        |   35 +++++++++++++++++++++++++++++++++++
5935
 
 3 files changed, 71 insertions(+), 0 deletions(-)
 
6114
 3 files changed, 71 insertions(+)
5936
6115
 
5937
6116
commit fac416667fed565d3d61b25b6736e39b266e22f0
5938
6117
Author: Behdad Esfahbod <behdad@behdad.org>
5963
6142
    [HB] Cleanup TODO
5964
6143
 
5965
6144
 pango/opentype/TODO |   10 +---------
5966
 
 1 files changed, 1 insertions(+), 9 deletions(-)
 
6145
 1 file changed, 1 insertion(+), 9 deletions(-)
5967
6146
 
5968
6147
commit 55b6ef4545bda8f12ae4c82aba3a61e8e7c47868
5969
6148
Author: Behdad Esfahbod <behdad@behdad.org>
5972
6151
    [HB] Cleanup public buffer structs
5973
6152
 
5974
6153
 pango/opentype/hb-buffer-private.h         |   46
5975
 
 +++++++++++++++++++++----
 
6154
 +++++++++++++++++++++-----
5976
6155
 pango/opentype/hb-buffer.c                 |   49
5977
 
 ++++++++++++++-------------
 
6156
 ++++++++++++++--------------
5978
6157
 pango/opentype/hb-buffer.h                 |   35 ++++++++++----------
5979
 
 pango/opentype/hb-ot-layout-gpos-private.h |    8 ++--
5980
 
 pango/opentype/hb-ot-layout-private.h      |    5 ++-
 
6158
 pango/opentype/hb-ot-layout-gpos-private.h |    8 ++---
 
6159
 pango/opentype/hb-ot-layout-private.h      |    5 +--
5981
6160
 pango/opentype/hb-ot-layout.cc             |   20 ++++++------
5982
6161
 6 files changed, 97 insertions(+), 66 deletions(-)
5983
6162
 
6001
6180
 
6002
6181
 pango/opentype/hb-buffer-private.h |   24 +++++++++++--
6003
6182
 pango/opentype/hb-buffer.c         |   65
6004
 
 +++++++++++++++++++++++++++--------
 
6183
 +++++++++++++++++++++++++++---------
6005
6184
 pango/opentype/hb-buffer.h         |   53 ++++++++++++++++++-----------
6006
 
 pango/pango-ot-buffer.c            |   33 +++++++++++-------
 
6185
 pango/pango-ot-buffer.c            |   33 ++++++++++--------
6007
6186
 pango/pango-ot-info.c              |   10 +++---
6008
6187
 5 files changed, 129 insertions(+), 56 deletions(-)
6009
6188
 
6029
6208
 pango/opentype/hb-font.c           |   24 ++++++++++++++++++++++++
6030
6209
 pango/opentype/hb-font.h           |   12 ++++++++++++
6031
6210
 pango/opentype/hb-object-private.h |    7 +++++++
6032
 
 5 files changed, 52 insertions(+), 0 deletions(-)
 
6211
 5 files changed, 52 insertions(+)
6033
6212
 
6034
6213
commit fe17dd9e5df9a7f0b118b42efc6bc0978842216b
6035
6214
Author: Behdad Esfahbod <behdad@behdad.org>
6038
6217
    [Makefile] Fix MOSTLYCLEANFILES
6039
6218
 
6040
6219
 pango/Makefile.am |    4 ++--
6041
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
6220
 1 file changed, 2 insertions(+), 2 deletions(-)
6042
6221
 
6043
6222
commit 0ae1b78e7694204cb973c633d665d1f3e3d20dc4
6044
6223
Author: Behdad Esfahbod <behdad@behdad.org>
6060
6239
 
6061
6240
 pango/opentype/hb-ot-layout-open-private.h |    4 +-
6062
6241
 pango/opentype/hb-private.h                |   88
6063
 
 +++++++++++++++++++++------
 
6242
 +++++++++++++++++++++-------
6064
6243
 2 files changed, 70 insertions(+), 22 deletions(-)
6065
6244
 
6066
6245
commit 308259613a34f54151c20d616cd5c940d69de980
6118
6297
    [HB] Fix for dfont's with multiple faces
6119
6298
 
6120
6299
 pango/opentype/hb-ot-layout-open-private.h |    6 ++++--
6121
 
 1 files changed, 4 insertions(+), 2 deletions(-)
 
6300
 1 file changed, 4 insertions(+), 2 deletions(-)
6122
6301
 
6123
6302
commit 86f7ff9415d71de495f6257edad2ba991692e042
6124
6303
Author: Behdad Esfahbod <behdad@behdad.org>
6136
6315
 
6137
6316
    [HB] Remove hinting setting and use ppem==0 to mean "no hinting"
6138
6317
 
6139
 
 pango/opentype/hb-blob.h                   |    3 --
 
6318
 pango/opentype/hb-blob.h                   |    3 ---
6140
6319
 pango/opentype/hb-common.h                 |    9 +++++++
6141
6320
 pango/opentype/hb-ot-layout-gpos-private.h |   36
6142
 
 ++++++++++++++++++---------
6143
 
 pango/opentype/hb-ot-layout-private.h      |    2 -
6144
 
 pango/opentype/hb-ot-layout.cc             |    7 -----
6145
 
 pango/opentype/hb-ot-layout.h              |    4 ---
6146
 
 pango/pango-ot-info.c                      |   12 +++++----
 
6321
 ++++++++++++++++++----------
 
6322
 pango/opentype/hb-ot-layout-private.h      |    2 --
 
6323
 pango/opentype/hb-ot-layout.cc             |    7 ------
 
6324
 pango/opentype/hb-ot-layout.h              |    4 ----
 
6325
 pango/pango-ot-info.c                      |   12 ++++++----
6147
6326
 7 files changed, 40 insertions(+), 33 deletions(-)
6148
6327
 
6149
6328
commit 112f0d741a24237e83922f8eee735b7f1ae74019
6158
6337
 pango/opentype/hb-blob.h             |   74 ++++++++++++++
6159
6338
 pango/opentype/hb-private.h          |    2 +
6160
6339
 pango/opentype/hb-refcount-private.h |   54 ++++++++++
6161
 
 5 files changed, 315 insertions(+), 1 deletions(-)
 
6340
 5 files changed, 315 insertions(+), 1 deletion(-)
6162
6341
 
6163
6342
commit 7444dad9ea3dde39b5276fef4f844237d1e661b1
6164
6343
Author: Behdad Esfahbod <behdad@behdad.org>
6184
6363
 
6185
6364
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   56
6186
6365
 ++++++++++++------------
6187
 
 1 files changed, 28 insertions(+), 28 deletions(-)
 
6366
 1 file changed, 28 insertions(+), 28 deletions(-)
6188
6367
 
6189
6368
commit 11c229d522b9bda910805d571eb29a564b81e926
6190
6369
Author: Behdad Esfahbod <behdad@behdad.org>
6193
6372
    [HB] Adapt to new buffer API
6194
6373
 
6195
6374
 pango/pango-ot-buffer.c |    4 ++--
6196
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
6375
 1 file changed, 2 insertions(+), 2 deletions(-)
6197
6376
 
6198
6377
commit 603479e35c849285078238275510c0c89170ff9d
6199
6378
Author: Behdad Esfahbod <behdad@behdad.org>
6202
6381
    [HB] Fix buffer enlargement.  Ouch
6203
6382
 
6204
6383
 pango/opentype/hb-buffer.c |    2 +-
6205
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
6384
 1 file changed, 1 insertion(+), 1 deletion(-)
6206
6385
 
6207
6386
commit 59f8868cf32691cce37060b30c3d16503a003df7
6208
6387
Author: Behdad Esfahbod <behdad@behdad.org>
6213
6392
 pango/opentype/hb-buffer.c     |   75
6214
6393
 +++++++++++++++++++++-------------------
6215
6394
 pango/opentype/hb-buffer.h     |    6 +++-
6216
 
 pango/opentype/hb-ot-layout.cc |   31 ++++++++++++++++
 
6395
 pango/opentype/hb-ot-layout.cc |   31 +++++++++++++++++
6217
6396
 pango/opentype/hb-ot-layout.h  |   15 ++++++++
6218
6397
 pango/opentype/hb-private.h    |    2 +-
6219
6398
 5 files changed, 91 insertions(+), 38 deletions(-)
6225
6404
    Bug 590042 – pango-view.1 manpage should not be gzipped
6226
6405
 
6227
6406
 pango-view/Makefile.am |    6 ------
6228
 
 1 files changed, 0 insertions(+), 6 deletions(-)
 
6407
 1 file changed, 6 deletions(-)
6229
6408
 
6230
6409
commit 01783de926a09dd8a3b11699bc8b1a6b6dce0556
6231
6410
Author: Behdad Esfahbod <behdad@behdad.org>
6254
6433
 pango/opentype/hb-buffer.c                     |    9 --
6255
6434
 pango/opentype/hb-buffer.h                     |   14 ---
6256
6435
 pango/opentype/hb-common.h                     |    3 -
6257
 
 pango/opentype/hb-ot-layout-gdef-private.h     |   32 ++++----
 
6436
 pango/opentype/hb-ot-layout-gdef-private.h     |   32 +++----
6258
6437
 pango/opentype/hb-ot-layout-gpos-private.h     |  108
6259
6438
 ++++++++++++------------
6260
6439
 pango/opentype/hb-ot-layout-gsub-private.h     |   46 +++++-----
6261
 
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   68 ++++++++--------
6262
 
 pango/opentype/hb-ot-layout-private.h          |   28 +++----
 
6440
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   68 +++++++--------
 
6441
 pango/opentype/hb-ot-layout-private.h          |   28 +++---
6263
6442
 pango/opentype/hb-ot-layout.cc                 |   30 +++++++
6264
 
 pango/opentype/hb-ot-layout.h                  |    5 +
 
6443
 pango/opentype/hb-ot-layout.h                  |    5 ++
6265
6444
 pango/opentype/hb-private.h                    |   16 ----
6266
6445
 12 files changed, 174 insertions(+), 187 deletions(-)
6267
6446
 
6279
6458
    [docs] Add index of symbols new in 1.24 and 1.26
6280
6459
 
6281
6460
 docs/pango-docs.sgml |    6 ++++++
6282
 
 1 files changed, 6 insertions(+), 0 deletions(-)
 
6461
 1 file changed, 6 insertions(+)
6283
6462
 
6284
6463
commit ac2ce962e9c257657eeceaf08d6aeeddd6faaa83
6285
6464
Author: Behdad Esfahbod <behdad@behdad.org>
6296
6475
        pango_gravity_get_for_script_and_width()
6297
6476
 
6298
6477
 docs/pango-sections.txt |    1 +
6299
 
 docs/tmpl/vertical.sgml |   12 +++++++++
6300
 
 pango/pango-context.c   |   13 ++++------
 
6478
 docs/tmpl/vertical.sgml |   12 ++++++++++
 
6479
 pango/pango-context.c   |   13 ++++-------
6301
6480
 pango/pango-gravity.c   |   58
6302
6481
 ++++++++++++++++++++++++++++++++++++++++++-----
6303
6482
 pango/pango-gravity.h   |    5 ++++
6311
6490
    Remove DOS newline
6312
6491
 
6313
6492
 pango/pangox.def |    2 +-
6314
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
6493
 1 file changed, 1 insertion(+), 1 deletion(-)
6315
6494
 
6316
6495
commit a9a416de60ce42fea78e8283253d07a018bf2778
6317
6496
Author: Behdad Esfahbod <behdad@behdad.org>
6354
6533
    use the built-in aliases code.
6355
6534
 
6356
6535
 pango/pango-utils.c |    4 ++--
6357
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
6536
 1 file changed, 2 insertions(+), 2 deletions(-)
6358
6537
 
6359
6538
commit 8e348718e57d3f4ed04c9fdcb16a0019a6e13675
6360
6539
Author: Behdad Esfahbod <behdad@behdad.org>
6363
6542
    Bump version to 1.25.0
6364
6543
 
6365
6544
 configure.in |    6 +++---
6366
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
6545
 1 file changed, 3 insertions(+), 3 deletions(-)
6367
6546
 
6368
6547
commit 47ab634106a27b49085d26150999380e18bd3946
6369
6548
Merge: 1eadda9 a7d12be
6389
6568
    Bug 589133 – Firefox 3.5 complains about invalid weak references
6390
6569
 
6391
6570
 pango/pangofc-font.c |   13 +++++++++++--
6392
 
 1 files changed, 11 insertions(+), 2 deletions(-)
 
6571
 1 file changed, 11 insertions(+), 2 deletions(-)
6393
6572
 
6394
6573
commit fe07285144de9146822bce5667aadcf1bc0d4111
6395
6574
Author: Behdad Esfahbod <behdad@behdad.org>
6399
6578
 
6400
6579
 pango/pangofc-font.c    |    3 ---
6401
6580
 pango/pangofc-fontmap.c |    5 -----
6402
 
 2 files changed, 0 insertions(+), 8 deletions(-)
 
6581
 2 files changed, 8 deletions(-)
6403
6582
 
6404
6583
commit 1eadda908f0f9262dcb4c301f487b5a190dc0e54
6405
6584
Author: Behdad Esfahbod <behdad@behdad.org>
6408
6587
    Bug 589133 – Firefox 3.5 complains about invalid weak references
6409
6588
 
6410
6589
 pango/pangofc-font.c |   13 +++++++++++--
6411
 
 1 files changed, 11 insertions(+), 2 deletions(-)
 
6590
 1 file changed, 11 insertions(+), 2 deletions(-)
6412
6591
 
6413
6592
commit 5a75ce1414f43a36a5e510cc5cfac085671bfdca
6414
6593
Author: Behdad Esfahbod <behdad@behdad.org>
6418
6597
 
6419
6598
 pango/pangofc-font.c    |    3 ---
6420
6599
 pango/pangofc-fontmap.c |    5 -----
6421
 
 2 files changed, 0 insertions(+), 8 deletions(-)
 
6600
 2 files changed, 8 deletions(-)
6422
6601
 
6423
6602
commit 853f3ddd12ea2fbf3bed551ebfd542536e7f42e0
6424
6603
Author: Colin Walters <walters@verbum.org>
6432
6611
    This allows us to re-enable the introspection build.
6433
6612
 
6434
6613
 pango/Makefile.am |   31 +++++++++++++++----------------
6435
 
 1 files changed, 15 insertions(+), 16 deletions(-)
 
6614
 1 file changed, 15 insertions(+), 16 deletions(-)
6436
6615
 
6437
6616
commit efd34a719271d3c386d5fd4d852619829355fc88
6438
6617
Author: Behdad Esfahbod <behdad@behdad.org>
6441
6620
    Fix typo
6442
6621
 
6443
6622
 pango/pango-layout.c |    2 +-
6444
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
6623
 1 file changed, 1 insertion(+), 1 deletion(-)
6445
6624
 
6446
6625
commit 67052645e6afcd7f72ef852c99ee88897d2022da
6447
6626
Author: Behdad Esfahbod <behdad@behdad.org>
6488
6667
    Followup patch from Morten.
6489
6668
 
6490
6669
 pango/pangofc-font.c |    6 +++++-
6491
 
 1 files changed, 5 insertions(+), 1 deletions(-)
 
6670
 1 file changed, 5 insertions(+), 1 deletion(-)
6492
6671
 
6493
6672
commit f868f085dd22f74ea43426d21b13165ebcd091b4
6494
6673
Author: Behdad Esfahbod <behdad@behdad.org>
6499
6678
    Avoid modifying hashtable while walking it.
6500
6679
 
6501
6680
 pango/pangofc-fontmap.c |   14 +++++++++-----
6502
 
 1 files changed, 9 insertions(+), 5 deletions(-)
 
6681
 1 file changed, 9 insertions(+), 5 deletions(-)
6503
6682
 
6504
6683
commit fd5f93fc6bdf5d8985826c3caa56e2081279cf0e
6505
6684
Author: Behdad Esfahbod <behdad@behdad.org>
6523
6702
    Remove duplicate entry for pango-ot.h.
6524
6703
 
6525
6704
 pango/Makefile.am |    2 +-
6526
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
6705
 1 file changed, 1 insertion(+), 1 deletion(-)
6527
6706
 
6528
6707
commit 0fd3bb3036fb2621c5a0f80e3a9d495b84b30449
6529
6708
Author: Behdad Esfahbod <behdad@behdad.org>
6534
6713
    Fix pango-view manual installation.
6535
6714
 
6536
6715
 pango-view/Makefile.am |    2 +-
6537
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
6716
 1 file changed, 1 insertion(+), 1 deletion(-)
6538
6717
 
6539
6718
commit c939f6aff405ca7b10b1f1538f46148bff719fcb
6540
6719
Author: Behdad Esfahbod <behdad@behdad.org>
6546
6725
 pango/opentype/hb-buffer.c                     |    9 ++
6547
6726
 pango/opentype/hb-buffer.h                     |   14 +++
6548
6727
 pango/opentype/hb-common.h                     |    3 +
6549
 
 pango/opentype/hb-ot-layout-gdef-private.h     |   32 ++++----
 
6728
 pango/opentype/hb-ot-layout-gdef-private.h     |   32 +++----
6550
6729
 pango/opentype/hb-ot-layout-gpos-private.h     |  108
6551
6730
 ++++++++++++------------
6552
6731
 pango/opentype/hb-ot-layout-gsub-private.h     |   46 +++++-----
6553
 
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   68 ++++++++--------
6554
 
 pango/opentype/hb-ot-layout-private.h          |   28 ++++---
 
6732
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   68 +++++++--------
 
6733
 pango/opentype/hb-ot-layout-private.h          |   28 +++---
6555
6734
 pango/opentype/hb-ot-layout.cc                 |   30 -------
6556
 
 pango/opentype/hb-ot-layout.h                  |    5 -
 
6735
 pango/opentype/hb-ot-layout.h                  |    5 --
6557
6736
 pango/opentype/hb-private.h                    |   16 ++++
6558
6737
 12 files changed, 187 insertions(+), 174 deletions(-)
6559
6738
 
6566
6745
    Fix pango-view manual installation.
6567
6746
 
6568
6747
 pango-view/Makefile.am |    2 +-
6569
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
6748
 1 file changed, 1 insertion(+), 1 deletion(-)
6570
6749
 
6571
6750
commit 6209a6230cce6c9b1af3c699f0f18335e820e1ea
6572
6751
Author: Behdad Esfahbod <behdad@behdad.org>
6577
6756
    Remove Alef Maksura from sample text.
6578
6757
 
6579
6758
 pango/pango-language-sample-table.h |    2 +-
6580
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
6759
 1 file changed, 1 insertion(+), 1 deletion(-)
6581
6760
 
6582
6761
commit f0e5e54917286dd18471d76ed099bccf0eb85053
6583
6762
Author: Behdad Esfahbod <behdad@behdad.org>
6592
6771
    over all the fonts used by the sample str.
6593
6772
 
6594
6773
 pango/pango-context.c |   29 ++++++++++-------------------
6595
 
 1 files changed, 10 insertions(+), 19 deletions(-)
 
6774
 1 file changed, 10 insertions(+), 19 deletions(-)
6596
6775
 
6597
6776
commit eae0fecefc4e294f0c182a7063348a817c111dce
6598
6777
Author: Behdad Esfahbod <behdad@behdad.org>
6601
6780
    [GPOS] Advance buffer cursor in SinglePos lookups.  Ouch!
6602
6781
 
6603
6782
 pango/opentype/hb-ot-layout-gpos-private.h |    4 ++++
6604
 
 1 files changed, 4 insertions(+), 0 deletions(-)
 
6783
 1 file changed, 4 insertions(+)
6605
6784
 
6606
6785
commit 9fdfc9a06874820f94196c4802c96bc32d71ddc2
6607
6786
Author: Behdad Esfahbod <behdad@behdad.org>
6614
6793
 
6615
6794
 pango/opentype/hb-buffer.c |  156
6616
6795
 +++++++++++++++++++-------------------------
6617
 
 pango/opentype/hb-buffer.h |    9 +--
 
6796
 pango/opentype/hb-buffer.h |    9 ++-
6618
6797
 2 files changed, 72 insertions(+), 93 deletions(-)
6619
6798
 
6620
6799
commit 3dbd37431ebcf8b24a5891a04e66a2f964178c1e
6624
6803
    [GPOS] Fix property checking
6625
6804
 
6626
6805
 pango/opentype/hb-ot-layout-gpos-private.h |    6 +++---
6627
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
6806
 1 file changed, 3 insertions(+), 3 deletions(-)
6628
6807
 
6629
6808
commit 810f4214af6438076da5014888d60d4bfe77ebd6
6630
6809
Author: Behdad Esfahbod <behdad@behdad.org>
6633
6812
    [GPOS] Add vertical TODO
6634
6813
 
6635
6814
 pango/opentype/hb-ot-layout-gpos-private.h |    2 ++
6636
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
6815
 1 file changed, 2 insertions(+)
6637
6816
 
6638
6817
commit 157af6ba32a32c941cd5be9b0b0034bf8b7327cb
6639
6818
Author: Behdad Esfahbod <behdad@behdad.org>
6642
6821
    [HB] Remove useless include
6643
6822
 
6644
6823
 pango/opentype/hb-ot-layout-private.h |    3 ---
6645
 
 1 files changed, 0 insertions(+), 3 deletions(-)
 
6824
 1 file changed, 3 deletions(-)
6646
6825
 
6647
6826
commit 4921800a3ff9edc8b564cd49ae6e976767a16a0f
6648
6827
Author: Behdad Esfahbod <behdad@behdad.org>
6651
6830
    [GPOS] Remove unused variables
6652
6831
 
6653
6832
 pango/opentype/hb-ot-layout-gpos-private.h |    3 +--
6654
 
 1 files changed, 1 insertions(+), 2 deletions(-)
 
6833
 1 file changed, 1 insertion(+), 2 deletions(-)
6655
6834
 
6656
6835
commit 07c0e3b1d239ab041e243b0543640c9001e04931
6657
6836
Author: Behdad Esfahbod <behdad@behdad.org>
6660
6839
    Fall back to TT kerning if no GPOS
6661
6840
 
6662
6841
 pango/pango-ot-info.c |    4 ++--
6663
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
6842
 1 file changed, 2 insertions(+), 2 deletions(-)
6664
6843
 
6665
6844
commit 6f9bd9a0e876bc49d25fb8e892b17adfa5b12b8c
6666
6845
Author: Behdad Esfahbod <behdad@behdad.org>
6680
6859
    [GPOS] Fix PairPos signedness
6681
6860
 
6682
6861
 pango/opentype/hb-ot-layout-gpos-private.h |   11 ++++-------
6683
 
 1 files changed, 4 insertions(+), 7 deletions(-)
 
6862
 1 file changed, 4 insertions(+), 7 deletions(-)
6684
6863
 
6685
6864
commit 74d8c52f6ac1787efb8d87b72f47c6933abaf4ae
6686
6865
Author: Behdad Esfahbod <behdad@behdad.org>
6689
6868
    [GPOS] Fix mark matching
6690
6869
 
6691
6870
 pango/opentype/hb-ot-layout-gpos-private.h |   44
6692
 
 ++++++++++++---------------
6693
 
 1 files changed, 20 insertions(+), 24 deletions(-)
 
6871
 +++++++++++++---------------
 
6872
 1 file changed, 20 insertions(+), 24 deletions(-)
6694
6873
 
6695
6874
commit fe789092d83e6d4da43126640af0150b6bb2555c
6696
6875
Author: Behdad Esfahbod <behdad@behdad.org>
6700
6879
 
6701
6880
 pango/opentype/TODO                            |    1 -
6702
6881
 pango/opentype/hb-ot-layout-gpos-private.h     |   13 +----
6703
 
 pango/opentype/hb-ot-layout-gsub-private.h     |   38 ++++++--------
6704
 
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   14 +++---
6705
 
 pango/opentype/hb-ot-layout-private.h          |    6 ++
 
6882
 pango/opentype/hb-ot-layout-gsub-private.h     |   38 ++++++-------
 
6883
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   14 ++---
 
6884
 pango/opentype/hb-ot-layout-private.h          |    6 +++
6706
6885
 pango/opentype/hb-ot-layout.cc                 |   69
6707
 
 +++++++++++++++--------
 
6886
 +++++++++++++++---------
6708
6887
 6 files changed, 76 insertions(+), 65 deletions(-)
6709
6888
 
6710
6889
commit 746860bb7b54c16898264b248eb93a56e8af333b
6714
6893
    [GDEF] Support MarkFilteringSets
6715
6894
 
6716
6895
 pango/opentype/hb-ot-layout.cc |   59
6717
 
 ++++++++++++++-------------------------
6718
 
 1 files changed, 21 insertions(+), 38 deletions(-)
 
6896
 ++++++++++++++--------------------------
 
6897
 1 file changed, 21 insertions(+), 38 deletions(-)
6719
6898
 
6720
6899
commit 95c3fffa8a2b102a3d5f88f3940e7f93e2368fec
6721
6900
Author: Behdad Esfahbod <behdad@behdad.org>
6737
6916
 pango/opentype/hb-ot-layout-gdef-private.h |   55
6738
6917
 ++++++++++++++++++++++++----
6739
6918
 pango/opentype/hb-ot-layout-gpos-private.h |    1 +
6740
 
 pango/opentype/hb-ot-layout.cc             |    6 ++--
 
6919
 pango/opentype/hb-ot-layout.cc             |    6 +--
6741
6920
 3 files changed, 51 insertions(+), 11 deletions(-)
6742
6921
 
6743
6922
commit d877d91e5c0617a82620a6a47406cd196e16e5d6
6748
6927
 
6749
6928
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   24
6750
6929
 ++++++++++++------------
6751
 
 1 files changed, 12 insertions(+), 12 deletions(-)
 
6930
 1 file changed, 12 insertions(+), 12 deletions(-)
6752
6931
 
6753
6932
commit 3b1a840d2726772fb3a6ec0daedaf698fce29c52
6754
6933
Author: Behdad Esfahbod <behdad@behdad.org>
6758
6937
 
6759
6938
 pango/opentype/hb-ot-layout-common-private.h |   24
6760
6939
 +++++++++++++++++++-----
6761
 
 1 files changed, 19 insertions(+), 5 deletions(-)
 
6940
 1 file changed, 19 insertions(+), 5 deletions(-)
6762
6941
 
6763
6942
commit fb8da04aac1fe1b11b8a617342f1532e12c595db
6764
6943
Author: Behdad Esfahbod <behdad@behdad.org>
6768
6947
 
6769
6948
 pango/opentype/hb-ot-layout-gdef-private.h |   57
6770
6949
 ++++++++++++++++++++++------
6771
 
 pango/opentype/hb-ot-layout.cc             |   17 ++++++--
 
6950
 pango/opentype/hb-ot-layout.cc             |   17 +++++++--
6772
6951
 pango/opentype/hb-ot-layout.h              |    8 +++-
6773
6952
 pango/opentype/main.cc                     |    9 +----
6774
6953
 4 files changed, 66 insertions(+), 25 deletions(-)
6782
6961
 pango/opentype/Makefile.am                 |    2 +-
6783
6962
 pango/opentype/hb-ot-layout-gdef-private.h |   35
6784
6963
 ++++++++++++++++++++--------
6785
 
 pango/opentype/hb-ot-layout-gpos-private.h |   28 +++++----------------
6786
 
 pango/opentype/hb-ot-layout-gsub-private.h |   28 +++++----------------
6787
 
 pango/opentype/hb-ot-layout-open-private.h |   12 ++-------
 
6964
 pango/opentype/hb-ot-layout-gpos-private.h |   28 ++++++----------------
 
6965
 pango/opentype/hb-ot-layout-gsub-private.h |   28 ++++++----------------
 
6966
 pango/opentype/hb-ot-layout-open-private.h |   12 +++-------
6788
6967
 pango/opentype/hb-ot-layout.cc             |    9 +++++++
6789
 
 pango/opentype/hb-ot-layout.h              |    6 ++++
6790
 
 pango/opentype/main.cc                     |    8 +++---
 
6968
 pango/opentype/hb-ot-layout.h              |    6 +++++
 
6969
 pango/opentype/main.cc                     |    8 +++----
6791
6970
 8 files changed, 62 insertions(+), 66 deletions(-)
6792
6971
 
6793
6972
commit 298dadbd395a594176ed4cda4b9cf7004b724b66
6797
6976
    [HB] Remove more macros
6798
6977
 
6799
6978
 pango/opentype/hb-ot-layout-gdef-private.h |   18 +++++++++---------
6800
 
 1 files changed, 9 insertions(+), 9 deletions(-)
 
6979
 1 file changed, 9 insertions(+), 9 deletions(-)
6801
6980
 
6802
6981
commit 7b3f038ada310ac1f113d898a637df188177f8bb
6803
6982
Author: Behdad Esfahbod <behdad@behdad.org>
6809
6988
 pango/opentype/hb-buffer.c                     |  138
6810
6989
 ++++++++++++------------
6811
6990
 pango/opentype/hb-buffer.h                     |   22 ++--
6812
 
 pango/opentype/hb-ot-layout-gpos-private.h     |   29 +++---
 
6991
 pango/opentype/hb-ot-layout-gpos-private.h     |   29 ++---
6813
6992
 pango/opentype/hb-ot-layout-gsub-private.h     |   10 +-
6814
6993
 pango/opentype/hb-ot-layout-gsubgpos-private.h |    8 +-
6815
6994
 pango/opentype/hb-ot-layout-private.h          |   13 +--
6816
 
 pango/opentype/hb-ot-layout.cc                 |   16 ++--
 
6995
 pango/opentype/hb-ot-layout.cc                 |   16 +--
6817
6996
 pango/opentype/hb-private.h                    |   29 -----
6818
6997
 pango/pango-ot-buffer.c                        |   18 ++--
6819
6998
 pango/pango-ot-info.c                          |    3 +-
6897
7076
 
6898
7077
 pango/opentype/hb-ot-layout-open-private.h |   46
6899
7078
 +++++++++++-----------------
6900
 
 1 files changed, 18 insertions(+), 28 deletions(-)
 
7079
 1 file changed, 18 insertions(+), 28 deletions(-)
6901
7080
 
6902
7081
commit c53ed30cddcf3ed56ffb2756f2d8650ad012ff44
6903
7082
Author: Behdad Esfahbod <behdad@behdad.org>
6907
7086
 
6908
7087
 pango/opentype/hb-ot-layout-open-private.h |   31
6909
7088
 +++++++++-------------------
6910
 
 1 files changed, 10 insertions(+), 21 deletions(-)
 
7089
 1 file changed, 10 insertions(+), 21 deletions(-)
6911
7090
 
6912
7091
commit d63d5c6cfc6e1584ca426e469e3a35c46aa4605f
6913
7092
Author: Behdad Esfahbod <behdad@behdad.org>
6950
7129
    [HB] Remove stale makefile.msc too
6951
7130
 
6952
7131
 pango/opentype/makefile.msc |   19 -------------------
6953
 
 1 files changed, 0 insertions(+), 19 deletions(-)
 
7132
 1 file changed, 19 deletions(-)
6954
7133
 
6955
7134
commit a7a715480db66148b1f487528887508a7991dcd0
6956
7135
Author: Behdad Esfahbod <behdad@behdad.org>
6983
7162
 pango/opentype/harfbuzz-stream.c         |  257 --
6984
7163
 pango/opentype/harfbuzz.c                |   31 -
6985
7164
 pango/opentype/harfbuzz.h                |   35 -
6986
 
 22 files changed, 0 insertions(+), 16691 deletions(-)
 
7165
 22 files changed, 16691 deletions(-)
6987
7166
 
6988
7167
commit 4b90aa823cf91c586d0fd8a5d6154f46516a87ce
6989
7168
Author: Behdad Esfahbod <behdad@behdad.org>
6992
7171
    [HB] Remove stale TODO mark
6993
7172
 
6994
7173
 pango/opentype/hb-ot-layout-open-private.h |    1 -
6995
 
 1 files changed, 0 insertions(+), 1 deletions(-)
 
7174
 1 file changed, 1 deletion(-)
6996
7175
 
6997
7176
commit d11f8e6d41213d38b2b3ea2ec4843e2b6f34697b
6998
7177
Author: Behdad Esfahbod <behdad@behdad.org>
7001
7180
    [HB] Add FixedVersion cast to int
7002
7181
 
7003
7182
 pango/opentype/hb-ot-layout-open-private.h |    2 ++
7004
 
 1 files changed, 2 insertions(+), 0 deletions(-)
 
7183
 1 file changed, 2 insertions(+)
7005
7184
 
7006
7185
commit 8ff827848f63ac61446735c8516a452177c16336
7007
7186
Author: Behdad Esfahbod <behdad@behdad.org>
7010
7189
    [HB] Simplify tag
7011
7190
 
7012
7191
 pango/opentype/hb-ot-layout-open-private.h |   10 +++++-----
7013
 
 1 files changed, 5 insertions(+), 5 deletions(-)
 
7192
 1 file changed, 5 insertions(+), 5 deletions(-)
7014
7193
 
7015
7194
commit f89367b83225a5c0a2804ec122d66290a8feb8d5
7016
7195
Author: Behdad Esfahbod <behdad@behdad.org>
7021
7200
 pango/opentype/hb-ot-layout-gdef-private.h     |    2 +-
7022
7201
 pango/opentype/hb-ot-layout-gsubgpos-private.h |    2 +-
7023
7202
 pango/opentype/hb-ot-layout-open-private.h     |   54
7024
 
 ++---------------------
 
7203
 +++---------------------
7025
7204
 3 files changed, 7 insertions(+), 51 deletions(-)
7026
7205
 
7027
7206
commit 8259e8735babe30eaf3c017e022368bf796b411e
7064
7243
    [HB] Add TODO items
7065
7244
 
7066
7245
 pango/opentype/TODO |    6 ++++++
7067
 
 1 files changed, 6 insertions(+), 0 deletions(-)
 
7246
 1 file changed, 6 insertions(+)
7068
7247
 
7069
7248
commit d2b11bb9bf3cfa3e1cdcf79a473626ec4ed51846
7070
7249
Author: Behdad Esfahbod <behdad@behdad.org>
7074
7253
 
7075
7254
 pango/opentype/hb-ot-layout-gdef-private.h |   36
7076
7255
 ++++++++++++++--------------
7077
 
 1 files changed, 18 insertions(+), 18 deletions(-)
 
7256
 1 file changed, 18 insertions(+), 18 deletions(-)
7078
7257
 
7079
7258
commit 191cfb73b04955d9af757d47dc85b1ae0ab6c6c5
7080
7259
Author: Behdad Esfahbod <behdad@behdad.org>
7086
7265
 
7087
7266
 pango/opentype/hb-ot-layout-gpos-private.h |  128
7088
7267
 ++++++++++++++++++++--------
7089
 
 1 files changed, 92 insertions(+), 36 deletions(-)
 
7268
 1 file changed, 92 insertions(+), 36 deletions(-)
7090
7269
 
7091
7270
commit 31f627d786003824d189c786db532600d8701114
7092
7271
Author: Behdad Esfahbod <behdad@behdad.org>
7095
7274
    [HB] Remove apply_subtables() again
7096
7275
 
7097
7276
 pango/opentype/hb-ot-layout-gpos-private.h |   31
7098
 
 +++++++++-----------------
 
7277
 ++++++++++----------------
7099
7278
 pango/opentype/hb-ot-layout-gsub-private.h |   33
7100
 
 ++++++++++-----------------
 
7279
 ++++++++++------------------
7101
7280
 2 files changed, 23 insertions(+), 41 deletions(-)
7102
7281
 
7103
7282
commit fb963a1a1e8f7c337af6b7fee4718c3f65bc8c51
7106
7285
 
7107
7286
    [HB] Share Extension lookup code between GSUB and GPOS
7108
7287
 
7109
 
 pango/opentype/hb-ot-layout-gpos-private.h     |   64 +++---------------
 
7288
 pango/opentype/hb-ot-layout-gpos-private.h     |   64 ++++--------------
7110
7289
 pango/opentype/hb-ot-layout-gsub-private.h     |   83
7111
7290
 ++++--------------------
7112
7291
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   52 +++++++++++++++
7121
7300
    The "bug" was in the font.
7122
7301
 
7123
7302
 pango/opentype/hb-ot-layout-gpos-private.h |    1 -
7124
 
 1 files changed, 0 insertions(+), 1 deletions(-)
 
7303
 1 file changed, 1 deletion(-)
7125
7304
 
7126
7305
commit 541e8ad0c666f895649fbe1df2393ef0f04f2655
7127
7306
Author: Behdad Esfahbod <behdad@behdad.org>
7132
7311
 pango/opentype/hb-common.h  |   53 +++++++++++++++++
7133
7312
 pango/opentype/hb-private.h |  132
7134
7313
 +++++++++++++++++++++++++++++++++++++++++++
7135
 
 2 files changed, 185 insertions(+), 0 deletions(-)
 
7314
 2 files changed, 185 insertions(+)
7136
7315
 
7137
7316
commit 6e1a2662b3f9d5514c99a82f70e037749d95dc3c
7138
7317
Author: Behdad Esfahbod <behdad@behdad.org>
7155
7334
 
7156
7335
 pango/opentype/TODO                        |    1 +
7157
7336
 pango/opentype/hb-ot-layout-gpos-private.h |   62
7158
 
 +++++++++++++++++++++++++--
 
7337
 +++++++++++++++++++++++++---
7159
7338
 2 files changed, 58 insertions(+), 5 deletions(-)
7160
7339
 
7161
7340
commit 180781efd0691964cc5b823c6b9274f208fd083c
7165
7344
    [GPOS] Implement MarkArray interface
7166
7345
 
7167
7346
 pango/opentype/hb-ot-layout-gpos-private.h |    5 +++--
7168
 
 1 files changed, 3 insertions(+), 2 deletions(-)
 
7347
 1 file changed, 3 insertions(+), 2 deletions(-)
7169
7348
 
7170
7349
commit 164137a18e4b10c240c8d63bf676872cfdc934c3
7171
7350
Author: Behdad Esfahbod <behdad@behdad.org>
7174
7353
    [GPOS] Implement Device support in AnchorFormat3
7175
7354
 
7176
7355
 pango/opentype/hb-ot-layout-gpos-private.h |   11 ++++++++---
7177
 
 1 files changed, 8 insertions(+), 3 deletions(-)
 
7356
 1 file changed, 8 insertions(+), 3 deletions(-)
7178
7357
 
7179
7358
commit 361cdf36b00a7e4632de45a8ad9697d3cb1b8670
7180
7359
Author: Behdad Esfahbod <behdad@behdad.org>
7184
7363
 
7185
7364
 pango/opentype/hb-ot-layout-gpos-private.h |   75
7186
7365
 +++++++++++++---------------
7187
 
 1 files changed, 34 insertions(+), 41 deletions(-)
 
7366
 1 file changed, 34 insertions(+), 41 deletions(-)
7188
7367
 
7189
7368
commit 93e5da2de8070410b5e8978dfa3a261e6d7f00a4
7190
7369
Author: Behdad Esfahbod <behdad@behdad.org>
7194
7373
 
7195
7374
 pango/opentype/TODO                        |    1 +
7196
7375
 pango/opentype/hb-ot-layout-gpos-private.h |   38
7197
 
 ++++++++++++---------------
 
7376
 +++++++++++++---------------
7198
7377
 2 files changed, 18 insertions(+), 21 deletions(-)
7199
7378
 
7200
7379
commit 25494c523822e837716bc1000b1d94ff06ca476f
7205
7384
 
7206
7385
 pango/opentype/hb-ot-layout-gpos-private.h |    1 +
7207
7386
 pango/opentype/hb-ot-layout-gsub-private.h |    1 +
7208
 
 2 files changed, 2 insertions(+), 0 deletions(-)
 
7387
 2 files changed, 2 insertions(+)
7209
7388
 
7210
7389
commit 6fb8dab583378de48a39b1b25459e24b0162e5d4
7211
7390
Author: Behdad Esfahbod <behdad@behdad.org>
7214
7393
    [HB] Add TODO item
7215
7394
 
7216
7395
 pango/opentype/TODO |    1 +
7217
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
7396
 1 file changed, 1 insertion(+)
7218
7397
 
7219
7398
commit 5687dd7511fbf8503dcb6d7c215455e1f999cf03
7220
7399
Author: Behdad Esfahbod <behdad@behdad.org>
7224
7403
 
7225
7404
 pango/opentype/hb-buffer-private.h         |   88
7226
7405
 ++++++++++++++--------------
7227
 
 pango/opentype/hb-buffer.c                 |   47 +++++++--------
7228
 
 pango/opentype/hb-ot-layout-gpos-private.h |   11 +--
 
7406
 pango/opentype/hb-buffer.c                 |   47 ++++++++-------
 
7407
 pango/opentype/hb-ot-layout-gpos-private.h |   11 ++--
7229
7408
 pango/opentype/hb-ot-layout-gsub-private.h |   12 ++--
7230
 
 pango/opentype/hb-ot-layout.cc             |   16 +++---
 
7409
 pango/opentype/hb-ot-layout.cc             |   16 ++---
7231
7410
 5 files changed, 85 insertions(+), 89 deletions(-)
7232
7411
 
7233
7412
commit c141180297254ef341e3e557c26b51eb7e964706
7259
7438
 
7260
7439
 pango/opentype/Makefile.am            |   76 +++++-----------
7261
7440
 pango/opentype/harfbuzz-buffer.c      |  154
7262
 
 +++++++++++++-------------------
7263
 
 pango/opentype/harfbuzz-buffer.h      |   80 +++++++++---------
 
7441
 ++++++++++++++-------------------
 
7442
 pango/opentype/harfbuzz-buffer.h      |   80 ++++++++---------
7264
7443
 pango/opentype/hb-ot-layout-private.h |    6 +-
7265
 
 pango/opentype/hb-ot-layout.cc        |   17 ++---
 
7444
 pango/opentype/hb-ot-layout.cc        |   17 ++--
7266
7445
 pango/opentype/hb-ot-layout.h         |    1 +
7267
 
 pango/pango-ot-buffer.c               |   14 ++--
7268
 
 pango/pango-ot-info.c                 |   14 ++--
7269
 
 pango/pango-ot-private.h              |   10 +-
 
7446
 pango/pango-ot-buffer.c               |   14 +--
 
7447
 pango/pango-ot-info.c                 |   14 +--
 
7448
 pango/pango-ot-private.h              |   10 +--
7270
7449
 9 files changed, 156 insertions(+), 216 deletions(-)
7271
7450
 
7272
7451
commit 15a0220c336113a2df8de91ec0513b1bdde35a89
7291
7470
 pango/opentype/Makefile.am                 |    2 +-
7292
7471
 pango/opentype/hb-ot-layout-gpos-private.h |   37
7293
7472
 +++++++++++++++-------------
7294
 
 pango/opentype/hb-ot-layout.cc             |    7 +++++
 
7473
 pango/opentype/hb-ot-layout.cc             |    7 ++++++
7295
7474
 pango/opentype/hb-ot-layout.h              |    5 ++++
7296
 
 pango/pango-ot-info.c                      |    2 +
 
7475
 pango/pango-ot-info.c                      |    2 ++
7297
7476
 5 files changed, 35 insertions(+), 18 deletions(-)
7298
7477
 
7299
7478
commit b77c4990efcd6f6ef77dc6e956bb3f1df9bf6bff
7304
7483
 
7305
7484
 pango/pango-ot-info.c |   51
7306
7485
 ++++++++++++++++++++++++-------------------------
7307
 
 1 files changed, 25 insertions(+), 26 deletions(-)
 
7486
 1 file changed, 25 insertions(+), 26 deletions(-)
7308
7487
 
7309
7488
commit 25db8f6de85f6f8ee11adbf423edb22e6259c543
7310
7489
Author: Behdad Esfahbod <behdad@behdad.org>
7314
7493
 
7315
7494
 pango/opentype/hb-ot-layout-gpos-private.h |   66
7316
7495
 ++++++++++++++--------------
7317
 
 pango/opentype/hb-ot-layout-gsub-private.h |   44 +++++++++---------
 
7496
 pango/opentype/hb-ot-layout-gsub-private.h |   44 +++++++++----------
7318
7497
 2 files changed, 55 insertions(+), 55 deletions(-)
7319
7498
 
7320
7499
commit e97278164b1939d4b76128ff8bf520ca02b1debb
7324
7503
    [GDEF] Simplify Device access
7325
7504
 
7326
7505
 pango/opentype/hb-ot-layout-gdef-private.h |   12 +++---------
7327
 
 1 files changed, 3 insertions(+), 9 deletions(-)
 
7506
 1 file changed, 3 insertions(+), 9 deletions(-)
7328
7507
 
7329
7508
commit 0b092ed02b6cda94c1a4df87c25f88142f967f4f
7330
7509
Author: Behdad Esfahbod <behdad@behdad.org>
7334
7513
 
7335
7514
 pango/opentype/hb-ot-layout-common-private.h   |  170
7336
7515
 ++++++++++++------------
7337
 
 pango/opentype/hb-ot-layout-gdef-private.h     |   65 +++++----
 
7516
 pango/opentype/hb-ot-layout-gdef-private.h     |   65 ++++-----
7338
7517
 pango/opentype/hb-ot-layout-gsubgpos-private.h |  150
7339
7518
 ++++++++++++---------
7340
7519
 pango/opentype/hb-ot-layout-open-private.h     |  159
7349
7528
    [HB] Remove unused methods
7350
7529
 
7351
7530
 pango/opentype/hb-ot-layout-common-private.h |    6 ------
7352
 
 1 files changed, 0 insertions(+), 6 deletions(-)
 
7531
 1 file changed, 6 deletions(-)
7353
7532
 
7354
7533
commit 066d6ab77a5a95187f5865dd409c8b1ee0b79f7b
7355
7534
Author: Behdad Esfahbod <behdad@behdad.org>
7381
7560
    [GSUB] PairPosFormat2
7382
7561
 
7383
7562
 pango/opentype/hb-ot-layout-gpos-private.h |   43
7384
 
 ++++++++++++++++++++++++---
7385
 
 1 files changed, 38 insertions(+), 5 deletions(-)
 
7563
 ++++++++++++++++++++++++----
 
7564
 1 file changed, 38 insertions(+), 5 deletions(-)
7386
7565
 
7387
7566
commit 10ddad5aa5c15d589b3dd9330d75562abc21c03a
7388
7567
Author: Behdad Esfahbod <behdad@behdad.org>
7392
7571
 
7393
7572
 pango/opentype/hb-ot-layout-gpos-private.h |   91
7394
7573
 ++++++++++++++++++++++------
7395
 
 1 files changed, 73 insertions(+), 18 deletions(-)
 
7574
 1 file changed, 73 insertions(+), 18 deletions(-)
7396
7575
 
7397
7576
commit 9c25dfbd235bd155ad62f3a8d03e27af9a17b810
7398
7577
Author: Behdad Esfahbod <behdad@behdad.org>
7402
7581
 
7403
7582
 pango/opentype/harfbuzz-buffer-private.h     |    1 +
7404
7583
 pango/opentype/harfbuzz-buffer.c             |    3 -
7405
 
 pango/opentype/hb-ot-layout-common-private.h |   35 +++++---
7406
 
 pango/opentype/hb-ot-layout-gpos-private.h   |  125
 
7584
 pango/opentype/hb-ot-layout-common-private.h |   35 ++++---
 
7585
 pango/opentype/hb-ot-layout-gpos-private.h   |  127
7407
7586
 +++++++++++++++++++-------
7408
 
 4 files changed, 115 insertions(+), 49 deletions(-)
 
7587
 4 files changed, 116 insertions(+), 50 deletions(-)
7409
7588
 
7410
7589
commit 51d81548dd52fbb6c90775eb3bc83289c0329ddf
7411
7590
Author: Behdad Esfahbod <behdad@behdad.org>
7424
7603
 
7425
7604
    [HB] More reference cast simplification
7426
7605
 
7427
 
 pango/opentype/hb-ot-layout-gsub-private.h     |    8 +++---
 
7606
 pango/opentype/hb-ot-layout-gsub-private.h     |    8 +++----
7428
7607
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   28
7429
7608
 ++++++++++++------------
7430
7609
 pango/opentype/hb-ot-layout-open-private.h     |    2 +-
7437
7616
    [HB] Rename LOOKUP_ARGS to APPLY_ARGS
7438
7617
 
7439
7618
 pango/opentype/hb-ot-layout-gpos-private.h     |   88
7440
 
 ++++++++++++------------
 
7619
 +++++++++++------------
7441
7620
 pango/opentype/hb-ot-layout-gsub-private.h     |   84
7442
7621
 +++++++++++-----------
7443
7622
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   90
7474
7653
 
7475
7654
    Switch Pango to new, defunt, GPOS
7476
7655
 
7477
 
 pango/opentype/hb-ot-layout-gpos-private.h |   22 ++++--
 
7656
 pango/opentype/hb-ot-layout-gpos-private.h |   22 +++++--
7478
7657
 pango/opentype/hb-ot-layout.cc             |   13 ++++
7479
7658
 pango/opentype/hb-ot-layout.h              |    5 ++
7480
7659
 pango/pango-ot-info.c                      |   97
7481
7660
 ++++++++++++++++++----------
7482
7661
 pango/pango-ot-private.h                   |    5 +-
7483
 
 pango/pango-ot-ruleset.c                   |   32 +--------
 
7662
 pango/pango-ot-ruleset.c                   |   32 ++-------
7484
7663
 6 files changed, 102 insertions(+), 72 deletions(-)
7485
7664
 
7486
7665
commit 68f88f1ca8e7057c8830c1c60a369e588745ebdc
7504
7683
    [GSUB] Minor
7505
7684
 
7506
7685
 pango/opentype/hb-ot-layout-gsub-private.h |   16 ++++++----------
7507
 
 1 files changed, 6 insertions(+), 10 deletions(-)
 
7686
 1 file changed, 6 insertions(+), 10 deletions(-)
7508
7687
 
7509
7688
commit 014a7567c6152b73218fe21a54e34ddc6ef1447d
7510
7689
Author: Behdad Esfahbod <behdad@behdad.org>
7513
7692
    [HB] Minor
7514
7693
 
7515
7694
 pango/opentype/hb-ot-layout-gsub-private.h |   22 +++++++++++-----------
7516
 
 1 files changed, 11 insertions(+), 11 deletions(-)
 
7695
 1 file changed, 11 insertions(+), 11 deletions(-)
7517
7696
 
7518
7697
commit cda2b36b75bd7be71d830bee78b2ab5845e90831
7519
7698
Author: Behdad Esfahbod <behdad@behdad.org>
7522
7701
    [GSUB] Protect against mismatching Extension subtable types
7523
7702
 
7524
7703
 pango/opentype/hb-ot-layout-gsub-private.h |    9 ++++++---
7525
 
 1 files changed, 6 insertions(+), 3 deletions(-)
 
7704
 1 file changed, 6 insertions(+), 3 deletions(-)
7526
7705
 
7527
7706
commit bba893b810b14c4e6bfc8cfded697fbe28282d35
7528
7707
Author: Behdad Esfahbod <behdad@behdad.org>
7534
7713
 
7535
7714
 pango/opentype/hb-ot-layout-gsub-private.h     |   55
7536
7715
 ++++++++++++++++++------
7537
 
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   43 ++++++-------------
 
7716
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   43 ++++++------------
7538
7717
 2 files changed, 54 insertions(+), 44 deletions(-)
7539
7718
 
7540
7719
commit 1927fb2efcecf445aadc3e2be51290f250554576
7556
7735
    [GSUB] Oops, fix Extension check
7557
7736
 
7558
7737
 pango/opentype/hb-ot-layout-gsub-private.h |    3 +--
7559
 
 1 files changed, 1 insertions(+), 2 deletions(-)
 
7738
 1 file changed, 1 insertion(+), 2 deletions(-)
7560
7739
 
7561
7740
commit 29f0ff90f687a82a630ca0212bbbac1aa3412f59
7562
7741
Author: Behdad Esfahbod <behdad@behdad.org>
7597
7776
    [HB] Minor cleanup
7598
7777
 
7599
7778
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   10 ++++------
7600
 
 1 files changed, 4 insertions(+), 6 deletions(-)
 
7779
 1 file changed, 4 insertions(+), 6 deletions(-)
7601
7780
 
7602
7781
commit 55fdb2a9d8b9520d62bc1168709188baaf42790c
7603
7782
Author: Behdad Esfahbod <behdad@behdad.org>
7606
7785
    [HB] Correctly skip glyphs when applying (Chain)Context lookups
7607
7786
 
7608
7787
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   14 +++++++++++---
7609
 
 1 files changed, 11 insertions(+), 3 deletions(-)
 
7788
 1 file changed, 11 insertions(+), 3 deletions(-)
7610
7789
 
7611
7790
commit 16fb96b68b109d7f06db80e0174dba3f5e643964
7612
7791
Author: Behdad Esfahbod <behdad@behdad.org>
7628
7807
    IranNastaliq renders perfectly again!
7629
7808
 
7630
7809
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   63
7631
 
 +++++++++++++++++------
7632
 
 1 files changed, 46 insertions(+), 17 deletions(-)
 
7810
 +++++++++++++++++-------
 
7811
 1 file changed, 46 insertions(+), 17 deletions(-)
7633
7812
 
7634
7813
commit b20970dc224472076c18e5a28ab40e38fc7ea605
7635
7814
Author: Behdad Esfahbod <behdad@behdad.org>
7638
7817
    [HB] Implement backtrack matching
7639
7818
 
7640
7819
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   61
7641
 
 +++++++++++++++++------
7642
 
 1 files changed, 45 insertions(+), 16 deletions(-)
 
7820
 +++++++++++++++++-------
 
7821
 1 file changed, 45 insertions(+), 16 deletions(-)
7643
7822
 
7644
7823
commit e1b4d68c0d4a6cf656288ba5d88419ce4b914228
7645
7824
Author: Behdad Esfahbod <behdad@behdad.org>
7649
7828
 
7650
7829
 pango/opentype/hb-ot-layout-gsubgpos-private.h |  107
7651
7830
 ++++++++++++++----------
7652
 
 1 files changed, 61 insertions(+), 46 deletions(-)
 
7831
 1 file changed, 61 insertions(+), 46 deletions(-)
7653
7832
 
7654
7833
commit 21be5dfef4033ecd5e7c0f69fc2ca0038e2a8ea1
7655
7834
Author: Behdad Esfahbod <behdad@behdad.org>
7659
7838
 
7660
7839
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   92
7661
7840
 ++++++++++++++++--------
7662
 
 1 files changed, 63 insertions(+), 29 deletions(-)
 
7841
 1 file changed, 63 insertions(+), 29 deletions(-)
7663
7842
 
7664
7843
commit d9acee5295e6dde5f672c9ce0456520543f5df66
7665
7844
Author: Behdad Esfahbod <behdad@behdad.org>
7668
7847
    [HB] A step closer to working ChainContext
7669
7848
 
7670
7849
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   36
7671
 
 +++++++++++++++++------
7672
 
 1 files changed, 26 insertions(+), 10 deletions(-)
 
7850
 +++++++++++++++++-------
 
7851
 1 file changed, 26 insertions(+), 10 deletions(-)
7673
7852
 
7674
7853
commit ac227e24dd98e77da9d548d81ac9efa3afa4d816
7675
7854
Author: Behdad Esfahbod <behdad@behdad.org>
7689
7868
    [HB] More template goodness
7690
7869
 
7691
7870
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   37
7692
 
 +++++++++--------------
7693
 
 1 files changed, 15 insertions(+), 22 deletions(-)
 
7871
 ++++++++++--------------
 
7872
 1 file changed, 15 insertions(+), 22 deletions(-)
7694
7873
 
7695
7874
commit f445e05b822699356536d138a0d5f02bdc8372ac
7696
7875
Author: Behdad Esfahbod <behdad@behdad.org>
7699
7878
    [HB] More churning towards ChainContext lookups
7700
7879
 
7701
7880
 pango/opentype/hb-ot-layout-common-private.h   |    6 +-
7702
 
 pango/opentype/hb-ot-layout-gsub-private.h     |   15 ++-
 
7881
 pango/opentype/hb-ot-layout-gsub-private.h     |   15 +-
7703
7882
 pango/opentype/hb-ot-layout-gsubgpos-private.h |  174
7704
7883
 +++++++++++++++---------
7705
7884
 3 files changed, 125 insertions(+), 70 deletions(-)
7712
7891
 
7713
7892
 pango/opentype/hb-ot-layout-gsubgpos-private.h |  220
7714
7893
 +++++++++++-------------
7715
 
 1 files changed, 99 insertions(+), 121 deletions(-)
 
7894
 1 file changed, 99 insertions(+), 121 deletions(-)
7716
7895
 
7717
7896
commit d32b9ea104a606a92ad5a27999da7bce2090d675
7718
7897
Author: Behdad Esfahbod <behdad@behdad.org>
7721
7900
    [HB] Add check to avoid infinite recursion
7722
7901
 
7723
7902
 pango/opentype/hb-ot-layout-gsub-private.h |   12 ++++++++----
7724
 
 1 files changed, 8 insertions(+), 4 deletions(-)
 
7903
 1 file changed, 8 insertions(+), 4 deletions(-)
7725
7904
 
7726
7905
commit 55fe0e4ea68c70815558a29d09fb139316cecc4d
7727
7906
Author: Behdad Esfahbod <behdad@behdad.org>
7730
7909
    [HB] Cosmetic
7731
7910
 
7732
7911
 pango/opentype/hb-ot-layout-gsub-private.h |    4 ++--
7733
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
7912
 1 file changed, 2 insertions(+), 2 deletions(-)
7734
7913
 
7735
7914
commit eea8dd6ee176dc275c23f84e5d42366f9bba8acf
7736
7915
Author: Behdad Esfahbod <behdad@behdad.org>
7740
7919
 
7741
7920
 pango/opentype/hb-ot-layout-gsub-private.h     |  269
7742
7921
 +++++-------------------
7743
 
 pango/opentype/hb-ot-layout-gsubgpos-private.h |  214
7744
 
 +++++++++++++++++++-
 
7922
 pango/opentype/hb-ot-layout-gsubgpos-private.h |  214 ++++++++++++++++++-
7745
7923
 2 files changed, 268 insertions(+), 215 deletions(-)
7746
7924
 
7747
7925
commit 0c11bc365caaef22a125a1f315e5233df3f665cb
7751
7929
    [HB] Remove stale TODO
7752
7930
 
7753
7931
 pango/opentype/hb-ot-layout-private.h |    2 --
7754
 
 1 files changed, 0 insertions(+), 2 deletions(-)
 
7932
 1 file changed, 2 deletions(-)
7755
7933
 
7756
7934
commit fe01531dc12be28aaef610a0cd94c21dc476e9a6
7757
7935
Author: Behdad Esfahbod <behdad@behdad.org>
7786
7964
 
7787
7965
    [HB] Cleanup format unions
7788
7966
 
7789
 
 pango/opentype/hb-ot-layout-gdef-private.h     |   18 +++---
 
7967
 pango/opentype/hb-ot-layout-gdef-private.h     |   18 ++---
7790
7968
 pango/opentype/hb-ot-layout-gsub-private.h     |   87
7791
 
 ++++++++++++-----------
7792
 
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   16 ++--
 
7969
 ++++++++++++------------
 
7970
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   16 ++---
7793
7971
 pango/opentype/hb-ot-layout-open-private.h     |   41 ++++-------
7794
7972
 4 files changed, 77 insertions(+), 85 deletions(-)
7795
7973
 
7800
7978
    [HB] Use four bytes for Null Tag, not 5
7801
7979
 
7802
7980
 pango/opentype/hb-ot-layout-open-private.h |    4 +++-
7803
 
 1 files changed, 3 insertions(+), 1 deletions(-)
 
7981
 1 file changed, 3 insertions(+), 1 deletion(-)
7804
7982
 
7805
7983
commit aec04a301f2e181626f7a3067d69e003ba915b32
7806
7984
Author: Behdad Esfahbod <behdad@behdad.org>
7822
8000
    This slightly grows code size.
7823
8001
 
7824
8002
 pango/opentype/hb-ot-layout-gsub-private.h     |  100
7825
 
 ++++++++++++-----------
 
8003
 ++++++++++++------------
7826
8004
 pango/opentype/hb-ot-layout-gsubgpos-private.h |    7 +-
7827
8005
 2 files changed, 56 insertions(+), 51 deletions(-)
7828
8006
 
7833
8011
    [GSUB] Further optimize the main switch
7834
8012
 
7835
8013
 pango/opentype/hb-ot-layout-gsub-private.h |   31
7836
 
 +++++++++++++++------------
7837
 
 1 files changed, 17 insertions(+), 14 deletions(-)
 
8014
 +++++++++++++++-------------
 
8015
 1 file changed, 17 insertions(+), 14 deletions(-)
7838
8016
 
7839
8017
commit 5bdc1ff677d37af311e887ef2717daa8fae008ce
7840
8018
Author: Behdad Esfahbod <behdad@behdad.org>
7843
8021
    [HB] Unify first glyph property checking
7844
8022
 
7845
8023
 pango/opentype/hb-ot-layout-gsub-private.h     |   81
7846
 
 ++++++++++-------------
 
8024
 ++++++++++--------------
7847
8025
 pango/opentype/hb-ot-layout-gsubgpos-private.h |   12 ----
7848
8026
 2 files changed, 35 insertions(+), 58 deletions(-)
7849
8027
 
7855
8033
 
7856
8034
 pango/opentype/hb-ot-layout-gdef-private.h     |    2 -
7857
8035
 pango/opentype/hb-ot-layout-gsub-private.h     |  331
7858
 
 +----------------------
 
8036
 +---------------------
7859
8037
 pango/opentype/hb-ot-layout-gsubgpos-private.h |  347
7860
8038
 ++++++++++++++++++++++++
7861
8039
 3 files changed, 352 insertions(+), 328 deletions(-)
7867
8045
    [GSUB] Unify ContextSubst matching
7868
8046
 
7869
8047
 pango/opentype/hb-ot-layout-gsub-private.h |  378
7870
 
 +++++++++++----------------
7871
 
 1 files changed, 154 insertions(+), 224 deletions(-)
 
8048
 ++++++++++++----------------
 
8049
 1 file changed, 154 insertions(+), 224 deletions(-)
7872
8050
 
7873
8051
commit 264a07cd621fce810914c43bb43885519b819aab
7874
8052
Author: Behdad Esfahbod <behdad@behdad.org>
7878
8056
 
7879
8057
 pango/opentype/hb-ot-layout-gsub-private.h |  122
7880
8058
 ++++++++++++++--------------
7881
 
 1 files changed, 61 insertions(+), 61 deletions(-)
 
8059
 1 file changed, 61 insertions(+), 61 deletions(-)
7882
8060
 
7883
8061
commit 92c65d29132105784b18b60ba938a3ec86dfcb76
7884
8062
Author: Behdad Esfahbod <behdad@behdad.org>
7886
8064
 
7887
8065
    [HB] Simplify buffer
7888
8066
 
7889
 
 pango/opentype/harfbuzz-buffer-private.h   |   14 ++++------
 
8067
 pango/opentype/harfbuzz-buffer-private.h   |   14 +++++------
7890
8068
 pango/opentype/harfbuzz-buffer.c           |   35
7891
 
 ++++++++++++---------------
7892
 
 pango/opentype/harfbuzz-gsub.c             |    6 ++--
7893
 
 pango/opentype/hb-ot-layout-gsub-private.h |   12 ++++----
 
8069
 +++++++++++++---------------
 
8070
 pango/opentype/harfbuzz-gsub.c             |    6 ++---
 
8071
 pango/opentype/hb-ot-layout-gsub-private.h |   12 +++++-----
7894
8072
 4 files changed, 31 insertions(+), 36 deletions(-)
7895
8073
 
7896
8074
commit f1e6c0487f5c1bc72061f49a0faa3b134736b06a
7901
8079
 
7902
8080
 pango/opentype/TODO              |    1 +
7903
8081
 pango/opentype/harfbuzz-buffer.c |    2 +-
7904
 
 2 files changed, 2 insertions(+), 1 deletions(-)
 
8082
 2 files changed, 2 insertions(+), 1 deletion(-)
7905
8083
 
7906
8084
commit a44105aa2196e782c730dc102aaf77e2c4247ed5
7907
8085
Author: Behdad Esfahbod <behdad@behdad.org>
7946
8124
 
7947
8125
 pango/opentype/hb-ot-layout-gdef-private.h |   62 +++++-----------------
7948
8126
 pango/opentype/hb-ot-layout-open-private.h |   77
7949
 
 ++++++++++++++++++++-------
 
8127
 ++++++++++++++++++++--------
7950
8128
 2 files changed, 71 insertions(+), 68 deletions(-)
7951
8129
 
7952
8130
commit 2cb82da2cf865cdc05e23745ea07bff773eedc0b
7958
8136
 pango/opentype/hb-ot-layout-gdef-private.h |    1 +
7959
8137
 pango/opentype/hb-ot-layout-gsub-private.h |   55
7960
8138
 +++++++++++-----------------
7961
 
 pango/opentype/hb-ot-layout-open-private.h |   10 +-----
 
8139
 pango/opentype/hb-ot-layout-open-private.h |   10 +----
7962
8140
 3 files changed, 23 insertions(+), 43 deletions(-)
7963
8141
 
7964
8142
commit fe6de1703567ddd2e3f5bf8f604d6f8961938340
7991
8169
    [HB] Automate int-type size assertion
7992
8170
 
7993
8171
 pango/opentype/hb-ot-layout-open-private.h |   13 +++----------
7994
 
 1 files changed, 3 insertions(+), 10 deletions(-)
 
8172
 1 file changed, 3 insertions(+), 10 deletions(-)
7995
8173
 
7996
8174
commit d34fc6f5b7efc8d04a9dec527856a370b939dfc2
7997
8175
Author: Behdad Esfahbod <behdad@behdad.org>
8001
8179
 
8002
8180
    Also use a common pool for all nul-content ones.
8003
8181
 
8004
 
 pango/opentype/hb-ot-layout-gdef-private.h |   12 +-
 
8182
 pango/opentype/hb-ot-layout-gdef-private.h |   12 +--
8005
8183
 pango/opentype/hb-ot-layout-gsub-private.h |   28 +++---
8006
8184
 pango/opentype/hb-ot-layout-open-private.h |  142
8007
8185
 ++++++++++++++++------------
8015
8193
    [HB] Remove obsolete comment
8016
8194
 
8017
8195
 pango/opentype/hb-ot-layout-gdef-private.h |    1 -
8018
 
 1 files changed, 0 insertions(+), 1 deletions(-)
 
8196
 1 file changed, 1 deletion(-)
8019
8197
 
8020
8198
commit b05941e12b2891d9064c4a7717a155d8b622aa6c
8021
8199
Author: Behdad Esfahbod <behdad@behdad.org>
8024
8202
    [GSUB] Start ChainContextSubst
8025
8203
 
8026
8204
 pango/opentype/hb-ot-layout-gsub-private.h |   50
8027
 
 +++++++++++++++++++++------
8028
 
 1 files changed, 39 insertions(+), 11 deletions(-)
 
8205
 ++++++++++++++++++++++------
 
8206
 1 file changed, 39 insertions(+), 11 deletions(-)
8029
8207
 
8030
8208
commit 241fbceffc58deff47323280915dfd67a6d23329
8031
8209
Author: Behdad Esfahbod <behdad@behdad.org>
8035
8213
 
8036
8214
 pango/opentype/hb-ot-layout-gsub-private.h |   62
8037
8215
 +++++++++++++++++++++++++++-
8038
 
 1 files changed, 61 insertions(+), 1 deletions(-)
 
8216
 1 file changed, 61 insertions(+), 1 deletion(-)
8039
8217
 
8040
8218
commit e9622c8c8c1dd88f63e1ba01df5295fc59eafde8
8041
8219
Author: Behdad Esfahbod <behdad@behdad.org>
8044
8222
    [GSUB] Implement ContextSubstFormat2
8045
8223
 
8046
8224
 pango/opentype/hb-ot-layout-gsub-private.h |  105
8047
 
 +++++++++++++++++++++++++--
8048
 
 1 files changed, 97 insertions(+), 8 deletions(-)
 
8225
 +++++++++++++++++++++++++---
 
8226
 1 file changed, 97 insertions(+), 8 deletions(-)
8049
8227
 
8050
8228
commit 75778ef4af51ce974fc9af25063f7bb239563b5a
8051
8229
Author: Behdad Esfahbod <behdad@behdad.org>
8064
8242
    [GSUB] Finish ContextSubstFormat1
8065
8243
 
8066
8244
 pango/opentype/hb-ot-layout-gsub-private.h |   77
8067
 
 +++++++++++++++++++++------
 
8245
 ++++++++++++++++++++++------
8068
8246
 pango/opentype/hb-ot-layout-private.h      |   14 +++++
8069
8247
 pango/opentype/hb-ot-layout.cc             |   13 -----
8070
8248
 3 files changed, 74 insertions(+), 30 deletions(-)
8076
8254
    [HB] Fix typo
8077
8255
 
8078
8256
 pango/opentype/hb-ot-layout-open-private.h |    2 +-
8079
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
8257
 1 file changed, 1 insertion(+), 1 deletion(-)
8080
8258
 
8081
8259
commit 35f3896cfc703b6b06fad76778f357a0c9fdde38
8082
8260
Author: Behdad Esfahbod <behdad@behdad.org>
8085
8263
    [HB] Add TODO item
8086
8264
 
8087
8265
 pango/opentype/TODO |    1 +
8088
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
8266
 1 file changed, 1 insertion(+)
8089
8267
 
8090
8268
commit 9042dae8a1a4f4727a49b220f13487d50bc2e6fb
8091
8269
Author: Behdad Esfahbod <behdad@behdad.org>
8096
8274
 pango/opentype/hb-ot-layout-gdef-private.h |    2 --
8097
8275
 pango/opentype/hb-ot-layout-gsub-private.h |    3 ---
8098
8276
 pango/opentype/hb-ot-layout-open-private.h |   18 +-----------------
8099
 
 3 files changed, 1 insertions(+), 22 deletions(-)
 
8277
 3 files changed, 1 insertion(+), 22 deletions(-)
8100
8278
 
8101
8279
commit 384c824418c8510d77f47ea10adeaa234612500b
8102
8280
Author: Behdad Esfahbod <behdad@behdad.org>
8107
8285
 pango/opentype/hb-ot-layout-gdef-private.h |    9 ----
8108
8286
 pango/opentype/hb-ot-layout-gsub-private.h |   63
8109
8287
 ----------------------------
8110
 
 pango/opentype/hb-ot-layout-open-private.h |   42 +-----------------
 
8288
 pango/opentype/hb-ot-layout-open-private.h |   42 ++-----------------
8111
8289
 3 files changed, 3 insertions(+), 111 deletions(-)
8112
8290
 
8113
8291
commit 9ca1c677b6f9e4329bbf9efc826621845b12b879
8118
8296
 
8119
8297
 pango/opentype/hb-ot-layout-gsub-private.h |   52
8120
8298
 ++++++++++++++++++++++++----
8121
 
 1 files changed, 45 insertions(+), 7 deletions(-)
 
8299
 1 file changed, 45 insertions(+), 7 deletions(-)
8122
8300
 
8123
8301
commit dc7f2949972981ad3253df73c9562c1ac2032ef9
8124
8302
Author: Behdad Esfahbod <behdad@behdad.org>
8128
8306
 
8129
8307
 pango/opentype/hb-ot-layout-gsub-private.h |  170
8130
8308
 ++++++++++++++--------------
8131
 
 1 files changed, 86 insertions(+), 84 deletions(-)
 
8309
 1 file changed, 86 insertions(+), 84 deletions(-)
8132
8310
 
8133
8311
commit 21d6ce8759a582bfdf475e0f7f149338909b7c04
8134
8312
Author: Behdad Esfahbod <behdad@behdad.org>
8137
8315
    [HarfBuzz] Start a TODO file
8138
8316
 
8139
8317
 pango/opentype/TODO |    1 +
8140
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
8318
 1 file changed, 1 insertion(+)
8141
8319
 
8142
8320
commit 24eb2f6e5bbde72b27f33a816d22cced57b9bbc2
8143
8321
Author: Behdad Esfahbod <behdad@behdad.org>
8146
8324
    [GSUB] minor
8147
8325
 
8148
8326
 pango/opentype/hb-ot-layout-open-private.h |    6 ++++--
8149
 
 1 files changed, 4 insertions(+), 2 deletions(-)
 
8327
 1 file changed, 4 insertions(+), 2 deletions(-)
8150
8328
 
8151
8329
commit 5e2e37cbbb7612f595b9c8af72fe4709b2386857
8152
8330
Author: Behdad Esfahbod <behdad@behdad.org>
8156
8334
 
8157
8335
 pango/opentype/hb-ot-layout-gsub-private.h |  137
8158
8336
 ++++++++++++++++++++++------
8159
 
 1 files changed, 108 insertions(+), 29 deletions(-)
 
8337
 1 file changed, 108 insertions(+), 29 deletions(-)
8160
8338
 
8161
8339
commit e3d3752ed67492358212ecff6f2e3ea71537b4b8
8162
8340
Author: Behdad Esfahbod <behdad@behdad.org>
8165
8343
    [GSUB] Minor refactoring
8166
8344
 
8167
8345
 pango/opentype/hb-ot-layout-gsub-private.h |   42
8168
 
 +++++++++++++++------------
8169
 
 1 files changed, 23 insertions(+), 19 deletions(-)
 
8346
 +++++++++++++++-------------
 
8347
 1 file changed, 23 insertions(+), 19 deletions(-)
8170
8348
 
8171
8349
commit 8afbf62147bca4db12e78426ea9c41b5e801c7ed
8172
8350
Author: Behdad Esfahbod <behdad@behdad.org>
8185
8363
 
8186
8364
    [GSUB] Hook new GSUB up in Pango
8187
8365
 
8188
 
 pango/opentype/hb-ot-layout-gsub-private.h |   15 ++++--
 
8366
 pango/opentype/hb-ot-layout-gsub-private.h |   15 ++++---
8189
8367
 pango/pango-ot-info.c                      |   65
8190
8368
 ++++++++++++++++------------
8191
8369
 pango/pango-ot-private.h                   |   14 +++++-
8192
 
 pango/pango-ot-ruleset.c                   |   37 +--------------
 
8370
 pango/pango-ot-ruleset.c                   |   37 ++--------------
8193
8371
 4 files changed, 62 insertions(+), 69 deletions(-)
8194
8372
 
8195
8373
commit 644d9208ce6f916d702d41f35c3bd3f87552fa7b
8210
8388
    [GSUB] Implement Alternate subtables
8211
8389
 
8212
8390
 pango/opentype/hb-ot-layout-gsub-private.h |  104
8213
 
 +++++++++++++++++++++++++--
 
8391
 +++++++++++++++++++++++++---
8214
8392
 pango/opentype/hb-ot-layout-open-private.h |    2 +-
8215
8393
 2 files changed, 97 insertions(+), 9 deletions(-)
8216
8394
 
8222
8400
 
8223
8401
 pango/opentype/hb-ot-layout-gsub-private.h |  169
8224
8402
 ++++++++++++++++++----------
8225
 
 1 files changed, 108 insertions(+), 61 deletions(-)
 
8403
 1 file changed, 108 insertions(+), 61 deletions(-)
8226
8404
 
8227
8405
commit 3be923835e89c9697d7c0ab24013a353fbafa9ab
8228
8406
Author: Behdad Esfahbod <behdad@behdad.org>
8231
8409
    [GSUB] Fix reverse lookup loop like we did in the old code before
8232
8410
 
8233
8411
 pango/opentype/hb-ot-layout-gsub-private.h |    2 +-
8234
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
8412
 1 file changed, 1 insertion(+), 1 deletion(-)
8235
8413
 
8236
8414
commit 25f2af64013f6d88289d526315d2d0c91b77e3a1
8237
8415
Author: Behdad Esfahbod <behdad@behdad.org>
8244
8422
 pango/opentype/harfbuzz.c                  |    1 -
8245
8423
 pango/opentype/hb-ot-layout-gdef-private.h |    4 +-
8246
8424
 pango/opentype/hb-ot-layout-gsub-private.h |  383
8247
 
 ++++++++++++++++++++-------
 
8425
 ++++++++++++++++++++--------
8248
8426
 pango/opentype/hb-ot-layout-open-private.h |   31 ++-
8249
8427
 pango/opentype/hb-ot-layout-private.h      |    6 +-
8250
8428
 pango/opentype/hb-ot-layout.cc             |   94 +++++--
8257
8435
 
8258
8436
    Implement the first substitute()
8259
8437
 
8260
 
 pango/opentype/harfbuzz-buffer-private.h   |    8 +-
 
8438
 pango/opentype/harfbuzz-buffer-private.h   |    8 +--
8261
8439
 pango/opentype/harfbuzz-buffer.c           |    4 +-
8262
8440
 pango/opentype/harfbuzz-buffer.h           |    2 +-
8263
8441
 pango/opentype/harfbuzz-gdef-private.h     |    4 +-
8264
8442
 pango/opentype/harfbuzz-gdef.c             |    6 +-
8265
8443
 pango/opentype/harfbuzz-gdef.h             |    2 +-
8266
 
 pango/opentype/harfbuzz-gpos.c             |    8 +-
 
8444
 pango/opentype/harfbuzz-gpos.c             |    8 +--
8267
8445
 pango/opentype/harfbuzz-gpos.h             |    2 +-
8268
8446
 pango/opentype/harfbuzz-gsub.h             |    2 +-
8269
8447
 pango/opentype/hb-ot-layout-gsub-private.h |   88
8270
8448
 +++++++++++++++++++++++++---
8271
8449
 pango/opentype/hb-ot-layout-open-private.h |    2 +-
8272
 
 pango/opentype/hb-ot-layout-private.h      |   23 ++++---
8273
 
 pango/opentype/hb-ot-layout.cc             |   54 ++++++++++++-----
 
8450
 pango/opentype/hb-ot-layout-private.h      |   23 ++++----
 
8451
 pango/opentype/hb-ot-layout.cc             |   54 +++++++++++------
8274
8452
 pango/opentype/hb-ot-layout.h              |    2 +-
8275
8453
 14 files changed, 151 insertions(+), 56 deletions(-)
8276
8454
 
8285
8463
 pango/opentype/harfbuzz-global.h           |    3 +
8286
8464
 pango/opentype/harfbuzz-gpos.c             |  121 ++--
8287
8465
 pango/opentype/harfbuzz-gpos.h             |    6 +-
8288
 
 pango/opentype/harfbuzz-gsub.c             |  145 ++---
 
8466
 pango/opentype/harfbuzz-gsub.c             |  145 ++--
8289
8467
 pango/opentype/harfbuzz-gsub.h             |    4 +-
8290
8468
 pango/opentype/harfbuzz-impl.h             |   11 +-
8291
8469
 pango/opentype/harfbuzz-open.c             |    9 -
8299
8477
 pango/opentype/hb-ot-layout.h              |  229 +++++++
8300
8478
 pango/opentype/main.cc                     |  174 +++++
8301
8479
 pango/pango-ot-buffer.c                    |   12 +-
8302
 
 pango/pango-ot-info.c                      |  397 +++---------
 
8480
 pango/pango-ot-info.c                      |  397 +++--------
8303
8481
 pango/pango-ot-private.h                   |    4 +-
8304
8482
 20 files changed, 3127 insertions(+), 494 deletions(-)
8305
8483
 
8320
8498
    [git.mk] Better deal with non-automake directories
8321
8499
 
8322
8500
 git.mk |    2 +-
8323
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
8501
 1 file changed, 1 insertion(+), 1 deletion(-)
8324
8502
 
8325
8503
commit 2dbd066cbab8b9bfcf967e9147415db4f5627ab5
8326
8504
Author: Behdad Esfahbod <behdad@behdad.org>
8329
8507
    [git.mk] Update
8330
8508
 
8331
8509
 git.mk |  157
8332
 
 ++++++++++++++++++++++++++++++++-------------------------------
8333
 
 1 files changed, 80 insertions(+), 77 deletions(-)
 
8510
 +++++++++++++++++++++++++++++++++-------------------------------
 
8511
 1 file changed, 80 insertions(+), 77 deletions(-)
8334
8512
 
8335
8513
commit 967e4eb92e3b7ce2bd92f18a84ecdc3f8bb39ed3
8336
8514
Author: Behdad Esfahbod <behdad@behdad.org>
8339
8517
    [git.mk] Fix DEST_SUBDIR recursion
8340
8518
 
8341
8519
 git.mk |   15 ++++++++-------
8342
 
 1 files changed, 8 insertions(+), 7 deletions(-)
 
8520
 1 file changed, 8 insertions(+), 7 deletions(-)
8343
8521
 
8344
8522
commit f7c76896afc0f34db01a039933ee64ddc23bc3ab
8345
8523
Author: Behdad Esfahbod <behdad@behdad.org>
8348
8526
    [git.mk] Recurse in DIST_SUBDIRS too
8349
8527
 
8350
8528
 git.mk |    2 +-
8351
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
8529
 1 file changed, 1 insertion(+), 1 deletion(-)
8352
8530
 
8353
8531
commit 2c9979d6a01b5fb4951f1413ad8468ed10415c64
8354
8532
Author: Behdad Esfahbod <behdad@behdad.org>
8359
8537
    Be pedantic about broken cluster setup, avoid div-by-zero.
8360
8538
 
8361
8539
 pango/glyphstring.c |    6 ++++++
8362
 
 1 files changed, 6 insertions(+), 0 deletions(-)
 
8540
 1 file changed, 6 insertions(+)
8363
8541
 
8364
8542
commit 150573e610c0b14c34aba6fe17b1a6e36d282767
8365
8543
Author: Behdad Esfahbod <behdad@behdad.org>
8368
8546
    [doap] Add mailto:
8369
8547
 
8370
8548
 pango.doap |    4 ++--
8371
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
8549
 1 file changed, 2 insertions(+), 2 deletions(-)
8372
8550
 
8373
8551
commit c91e757da1835900b73dcde3128ea4f5a5290c59
8374
8552
Author: Behdad Esfahbod <behdad@behdad.org>
8380
8558
    [doc] Remove misleading sentence about points and Pango units
8381
8559
 
8382
8560
 pango/fonts.c |    8 ++++----
8383
 
 1 files changed, 4 insertions(+), 4 deletions(-)
 
8561
 1 file changed, 4 insertions(+), 4 deletions(-)
8384
8562
 
8385
8563
commit ff7dc9ae5d9b1cc340c6859bd5f3aa3054b19bea
8386
8564
Author: Behdad Esfahbod <behdad@behdad.org>
8389
8567
    [git.mk] Also ignore other vim buffer files
8390
8568
 
8391
8569
 git.mk |    2 +-
8392
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
8570
 1 file changed, 1 insertion(+), 1 deletion(-)
8393
8571
 
8394
8572
commit 131f9b20f0d8748baf7e9bf27166c91ec8bad88f
8395
8573
Author: Behdad Esfahbod <behdad@behdad.org>
8398
8576
    Fix maintainer-clean
8399
8577
 
8400
8578
 git.mk |    4 ++--
8401
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
8579
 1 file changed, 2 insertions(+), 2 deletions(-)
8402
8580
 
8403
8581
commit abb1367e9942509a0e5e30df5451a5cfe07a415e
8404
8582
Author: Behdad Esfahbod <behdad@behdad.org>
8409
8587
    Apparently "stat" was aliased by me locally.
8410
8588
 
8411
8589
 git.mk |    4 ++--
8412
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
8590
 1 file changed, 2 insertions(+), 2 deletions(-)
8413
8591
 
8414
8592
commit 37baf42b1b74884156162c317a6604951e4f2d19
8415
8593
Author: Behdad Esfahbod <behdad@behdad.org>
8420
8598
    Fix build on Cygwin.
8421
8599
 
8422
8600
 pango-view/Makefile.am |    2 +-
8423
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
8601
 1 file changed, 1 insertion(+), 1 deletion(-)
8424
8602
 
8425
8603
commit 049634718ff06752eb2722449a358a8248bcdea9
8426
8604
Author: Behdad Esfahbod <behdad@behdad.org>
8429
8607
    [DOAP] Add category
8430
8608
 
8431
8609
 pango.doap |    1 +
8432
 
 1 files changed, 1 insertions(+), 0 deletions(-)
 
8610
 1 file changed, 1 insertion(+)
8433
8611
 
8434
8612
commit 4ad7bc1ece28204a528561fa383ffc4664c5c578
8435
8613
Author: Behdad Esfahbod <behdad@behdad.org>
8438
8616
    [git.mk] Support out-of-tree builds
8439
8617
 
8440
8618
 git.mk |   14 +++++++++-----
8441
 
 1 files changed, 9 insertions(+), 5 deletions(-)
 
8619
 1 file changed, 9 insertions(+), 5 deletions(-)
8442
8620
 
8443
8621
commit d0830820f84eb28a27502306b6acbf0f2b57fc7d
8444
8622
Author: Behdad Esfahbod <behdad@behdad.org>
8447
8625
    [git.mk] Remove copyright claim
8448
8626
 
8449
8627
 git.mk |    2 +-
8450
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
8628
 1 file changed, 1 insertion(+), 1 deletion(-)
8451
8629
 
8452
8630
commit f88ab902430d3c01a83b980bf723058507c08d1f
8453
8631
Author: Behdad Esfahbod <behdad@behdad.org>
8456
8634
    [Makefile.am] Minor cleanup
8457
8635
 
8458
8636
 Makefile.am |    5 ++++-
8459
 
 1 files changed, 4 insertions(+), 1 deletions(-)
 
8637
 1 file changed, 4 insertions(+), 1 deletion(-)
8460
8638
 
8461
8639
commit 0564202a417e3d8eb6aad2c93c6d5e716f967549
8462
8640
Author: Behdad Esfahbod <behdad@behdad.org>
8476
8654
 
8477
8655
 git.mk |  107
8478
8656
 ++++++++++++++++++++++++++++++++++++++++++++++++++++------------
8479
 
 1 files changed, 87 insertions(+), 20 deletions(-)
 
8657
 1 file changed, 87 insertions(+), 20 deletions(-)
8480
8658
 
8481
8659
commit 133839d1d7ae77cfc80638a3a29187794f87dddf
8482
8660
Author: Behdad Esfahbod <behdad@behdad.org>
8495
8673
    [docs] Fix Makefile.am to not delete .gitignore on dist
8496
8674
 
8497
8675
 docs/Makefile.am |    5 ++++-
8498
 
 1 files changed, 4 insertions(+), 1 deletions(-)
 
8676
 1 file changed, 4 insertions(+), 1 deletion(-)
8499
8677
 
8500
8678
commit 137f858f17f680e2487bf4614a33c411c69469c7
8501
8679
Author: Behdad Esfahbod <behdad@behdad.org>
8504
8682
    [doc] Update templates
8505
8683
 
8506
8684
 docs/tmpl/pangofc-font.sgml |    5 +++++
8507
 
 1 files changed, 5 insertions(+), 0 deletions(-)
 
8685
 1 file changed, 5 insertions(+)
8508
8686
 
8509
8687
commit 1140637cc765e449d381ae2d3a2ef6e3c9a98334
8510
8688
Author: Behdad Esfahbod <behdad@behdad.org>
8531
8709
 pango/opentype/Makefile.am     |    2 ++
8532
8710
 tests/Makefile.am              |    2 ++
8533
8711
 tools/Makefile.am              |    2 ++
8534
 
 19 files changed, 38 insertions(+), 0 deletions(-)
 
8712
 19 files changed, 38 insertions(+)
8535
8713
 
8536
8714
commit 5016f4caab5ecaa3c6faf46746c19801a72e9f08
8537
8715
Author: Behdad Esfahbod <behdad@behdad.org>
8541
8719
 
8542
8720
 git.mk |   72
8543
8721
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
8544
 
 1 files changed, 72 insertions(+), 0 deletions(-)
 
8722
 1 file changed, 72 insertions(+)
8545
8723
 
8546
8724
commit b712138ad9d1f0eebb5f1ecc48d89ead7abf4a9f
8547
8725
Author: Behdad Esfahbod <behdad@behdad.org>
8551
8729
 
8552
8730
 Makefile.am |    3 ++-
8553
8731
 pango.doap  |   33 +++++++++++++++++++++++++++++++++
8554
 
 2 files changed, 35 insertions(+), 1 deletions(-)
 
8732
 2 files changed, 35 insertions(+), 1 deletion(-)
8555
8733
 
8556
8734
commit f1bda36443d1759e02a4168563de21f08b39c566
8557
8735
Author: Behdad Esfahbod <behdad@behdad.org>
8563
8741
 
8564
8742
 docs/Makefile.am       |    1 +
8565
8743
 docs/tmpl/scripts.sgml |    7 -------
8566
 
 2 files changed, 1 insertions(+), 7 deletions(-)
 
8744
 2 files changed, 1 insertion(+), 7 deletions(-)
8567
8745
 
8568
8746
commit 8197b4d1721d905f1cda3207494df525be112f5d
8569
8747
Author: Behdad Esfahbod <behdad@behdad.org>
8590
8768
    of checking for "face->num_faces >1".
8591
8769
 
8592
8770
 pango/opentype/harfbuzz-stream.c |   11 +++++++++--
8593
 
 1 files changed, 9 insertions(+), 2 deletions(-)
 
8771
 1 file changed, 9 insertions(+), 2 deletions(-)
8594
8772
 
8595
8773
commit c5921ca904f3ab25f975e4c719c7334a31d84434
8596
8774
Author: Behdad Esfahbod <behdad@behdad.org>
8619
8797
 
8620
8798
 pango/pangofc-font.c    |    2 +-
8621
8799
 pango/pangofc-fontmap.c |    5 +++++
8622
 
 2 files changed, 6 insertions(+), 1 deletions(-)
 
8800
 2 files changed, 6 insertions(+), 1 deletion(-)
8623
8801
 
8624
8802
commit 7a654f4999cdedf71d2c39cfa6ccf6fe2a7a8477
8625
8803
Author: Peter Clifton <pcjc2@cam.ac.uk>
8644
8822
    wrapped and ellipsized.
8645
8823
 
8646
8824
 pango/pango-layout.c |   16 +++++++---------
8647
 
 1 files changed, 7 insertions(+), 9 deletions(-)
 
8825
 1 file changed, 7 insertions(+), 9 deletions(-)
8648
8826
 
8649
8827
commit b6b9a22500c3e760f7c05d6c1fd62ff1529dee1b
8650
8828
Author: Behdad Esfahbod <behdad@behdad.org>
8660
8838
    set with no size.
8661
8839
 
8662
8840
 pango/pango-layout.c |   23 ++++++++++++++---------
8663
 
 1 files changed, 14 insertions(+), 9 deletions(-)
 
8841
 1 file changed, 14 insertions(+), 9 deletions(-)
8664
8842
 
8665
8843
commit 5ea040faf98de83101d50d1dfa141cdaf0cc5c2f
8666
8844
Author: Behdad Esfahbod <behdad@behdad.org>
8670
8848
    ellipsized
8671
8849
 
8672
8850
 pango/pango-layout.c |    9 +++++++--
8673
 
 1 files changed, 7 insertions(+), 2 deletions(-)
 
8851
 1 file changed, 7 insertions(+), 2 deletions(-)
8674
8852
 
8675
8853
commit caabe183c7747d7486695071ab592e677bbdce25
8676
8854
Author: Behdad Esfahbod <behdad@behdad.org>
8705
8883
    Allow desc_to_merge=NULL in pango_font_description_merge()
8706
8884
 
8707
8885
 pango/fonts.c |    8 ++++++--
8708
 
 1 files changed, 6 insertions(+), 2 deletions(-)
 
8886
 1 file changed, 6 insertions(+), 2 deletions(-)
8709
8887
 
8710
8888
commit 3948365307f6b70863d89af7da832b84af72c263
8711
8889
Author: Behdad Esfahbod <behdad@behdad.org>
8724
8902
    [cairotwisted] Plug couple other leaks
8725
8903
 
8726
8904
 examples/cairotwisted.c |    3 +++
8727
 
 1 files changed, 3 insertions(+), 0 deletions(-)
 
8905
 1 file changed, 3 insertions(+)
8728
8906
 
8729
8907
commit 434011df553c8d40c1e6508c9bdea4884e591f97
8730
8908
Author: Behdad Esfahbod <behdad@behdad.org>
8733
8911
    [cairotwisted] Plug leak
8734
8912
 
8735
8913
 examples/cairotwisted.c |    6 +++++-
8736
 
 1 files changed, 5 insertions(+), 1 deletions(-)
 
8914
 1 file changed, 5 insertions(+), 1 deletion(-)
8737
8915
 
8738
8916
commit 17ea2edc6defca2862bd45680d80e525998ea738
8739
8917
Author: Behdad Esfahbod <behdad@behdad.org>
8742
8920
    [indic] Fix build
8743
8921
 
8744
8922
 modules/indic/indic-ot-class-tables.c |    6 +++---
8745
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
8923
 1 file changed, 3 insertions(+), 3 deletions(-)
8746
8924
 
8747
8925
commit cf13cde8a80c9a1a9d4c9e343c634350da59991a
8748
8926
Author: Behdad Esfahbod <behdad@behdad.org>
8754
8932
    Patch from Rahul Bhalerao.
8755
8933
 
8756
8934
 modules/indic/indic-ot-class-tables.c |   20 +++++++++++---------
8757
 
 1 files changed, 11 insertions(+), 9 deletions(-)
 
8935
 1 file changed, 11 insertions(+), 9 deletions(-)
8758
8936
 
8759
8937
commit 477747bc1ef1078b06c4e1c615a1a912e6ada299
8760
8938
Author: Sebastian Dröge <slomo@circular-chaos.org>
8765
8943
 
8766
8944
 pango-view/pango-view.c   |    2 +-
8767
8945
 pango-view/viewer-cairo.c |    4 ++++
8768
 
 2 files changed, 5 insertions(+), 1 deletions(-)
 
8946
 2 files changed, 5 insertions(+), 1 deletion(-)
8769
8947
 
8770
8948
commit 698203ab28bc679c2e62a2452a79d5785fd46ca7
8771
8949
Author: Chris Wilson <chris@chris-wilson.co.uk>
8781
8959
    allocations associated with the iterator.
8782
8960
 
8783
8961
 pango/Makefile.am            |    1 +
8784
 
 pango/break.c                |   13 ++++---
8785
 
 pango/pango-context.c        |   13 ++++---
 
8962
 pango/break.c                |   13 ++++----
 
8963
 pango/pango-context.c        |   13 ++++----
8786
8964
 pango/pango-script-private.h |   56 +++++++++++++++++++++++++++++++++
8787
8965
 pango/pango-script.c         |   70
8788
8966
 ++++++++++++++++++------------------------
8795
8973
    [pango-context] Fix assertion with enable_fallback=FALSE and no fonts
8796
8974
 
8797
8975
 pango/pango-context.c |    3 +++
8798
 
 1 files changed, 3 insertions(+), 0 deletions(-)
 
8976
 1 file changed, 3 insertions(+)
8799
8977
 
8800
8978
commit 7c025dc9d4ef396d991c823ed015c34aaf0eb3ae
8801
8979
Author: Behdad Esfahbod <behdad@behdad.org>
8826
9004
    [Makefile.am] Generage ChangeLog from git-log
8827
9005
 
8828
9006
 Makefile.am |   17 +++++++++++++++++
8829
 
 1 files changed, 17 insertions(+), 0 deletions(-)
 
9007
 1 file changed, 17 insertions(+)
8830
9008
 
8831
9009
commit c82e8ad9dda142b1acfbcb86054750e082600893
8832
9010
Author: Behdad Esfahbod <behdad@behdad.org>
8864
9042
    [pango-view] Add an extra level of mild annotation to cairo backend
8865
9043
 
8866
9044
 pango-view/viewer-main.c       |    2 +-
8867
 
 pango-view/viewer-pangocairo.c |  133
8868
 
 ++++++++++++++++++++-------------------
 
9045
 pango-view/viewer-pangocairo.c |  129
 
9046
 ++++++++++++++++++++--------------------
8869
9047
 pango-view/viewer-x.c          |   15 ++---
8870
 
 3 files changed, 74 insertions(+), 76 deletions(-)
 
9048
 3 files changed, 72 insertions(+), 74 deletions(-)
8871
9049
 
8872
9050
commit c4f9a30634779bc985a470df2bc9f7e4fa0e6ad0
8873
9051
Author: Behdad Esfahbod <behdad@behdad.org>
8877
9055
 
8878
9056
 pango-view/viewer-cairo.c    |   90
8879
9057
 ++++++++++++++++++++++++++----------------
8880
 
 pango-view/viewer-pangoxft.c |   21 ++++------
 
9058
 pango-view/viewer-pangoxft.c |   21 +++++-----
8881
9059
 pango-view/viewer-x.c        |    8 ----
8882
9060
 3 files changed, 65 insertions(+), 54 deletions(-)
8883
9061
 
8888
9066
    Bug 502805 – pango-view option for foreground/background color
8889
9067
 
8890
9068
 pango-view/viewer-cairo.c      |   58 +++++++++++++++++-------
8891
 
 pango-view/viewer-cairo.h      |    3 +
 
9069
 pango-view/viewer-cairo.h      |    3 ++
8892
9070
 pango-view/viewer-pangocairo.c |   13 +++++-
8893
 
 pango-view/viewer-pangoxft.c   |   26 +++++++----
 
9071
 pango-view/viewer-pangoxft.c   |   26 ++++++-----
8894
9072
 pango-view/viewer-render.c     |   97
8895
9073
 +++++++++++++++++++++++++++++++++++++++-
8896
 
 pango-view/viewer-render.h     |    7 +++-
8897
 
 pango-view/viewer-x.c          |    8 +++
 
9074
 pango-view/viewer-render.h     |    7 ++-
 
9075
 pango-view/viewer-x.c          |    8 ++++
8898
9076
 7 files changed, 182 insertions(+), 30 deletions(-)
8899
9077
 
8900
9078
commit 2599e265eba6fd27b3f7684c484f3160f9a67595
8904
9082
    [configure.in] Look for pango.pc.in instead of ChangeLog
8905
9083
 
8906
9084
 configure.in |    2 +-
8907
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
9085
 1 file changed, 1 insertion(+), 1 deletion(-)
8908
9086
 
8909
9087
commit 4eb4cf81312691516c2129f04f245401b5566235
8910
9088
Author: Behdad Esfahbod <behdad@behdad.org>
8935
9113
    [pango-view] Make the cairo backend save png natively
8936
9114
 
8937
9115
 pango-view/viewer-pangocairo.c |    4 ++++
8938
 
 1 files changed, 4 insertions(+), 0 deletions(-)
 
9116
 1 file changed, 4 insertions(+)
8939
9117
 
8940
9118
commit a08cd2843ea38b142d375a15a08520c8758cd4ba
8941
9119
Author: Behdad Esfahbod <behdad@behdad.org>
8944
9122
    [Makefile.am] Cleanup
8945
9123
 
8946
9124
 pango-view/Makefile.am |   18 +++++-------------
8947
 
 1 files changed, 5 insertions(+), 13 deletions(-)
 
9125
 1 file changed, 5 insertions(+), 13 deletions(-)
8948
9126
 
8949
9127
commit 9644e56231280151803e0bdbee7141507a6b899f
8950
9128
Author: Behdad Esfahbod <behdad@behdad.org>
8955
9133
    Don't crash when no fonts installed.
8956
9134
 
8957
9135
 pango/pangofc-fontmap.c |    2 +-
8958
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
9136
 1 file changed, 1 insertion(+), 1 deletion(-)
8959
9137
 
8960
9138
commit df05d117a5c168fb90138d7d6bae760c1b2851af
8961
9139
Author: Behdad Esfahbod <behdad@behdad.org>
8981
9159
    [pango-view] Don't set metrics-hinting, fallback to surface default
8982
9160
 
8983
9161
 pango-view/viewer-pangocairo.c |    2 --
8984
 
 1 files changed, 0 insertions(+), 2 deletions(-)
 
9162
 1 file changed, 2 deletions(-)
8985
9163
 
8986
9164
commit 5ca1d5b3373e6a2c2c69829a9ffd2a515d64e860
8987
9165
Author: Behdad Esfahbod <behdad@behdad.org>
8991
9169
 
8992
9170
 pango-view/Makefile.am       |   97
8993
9171
 ------------------------------------------
8994
 
 pango-view/pangocairo-view.c |    8 ---
8995
 
 pango-view/pangoft2-view.c   |    8 ---
8996
 
 pango-view/pangox-view.c     |    8 ---
8997
 
 pango-view/pangoxft-view.c   |    8 ---
8998
 
 5 files changed, 0 insertions(+), 129 deletions(-)
 
9172
 pango-view/pangocairo-view.c |    8 ----
 
9173
 pango-view/pangoft2-view.c   |    8 ----
 
9174
 pango-view/pangox-view.c     |    8 ----
 
9175
 pango-view/pangoxft-view.c   |    8 ----
 
9176
 5 files changed, 129 deletions(-)
8999
9177
 
9000
9178
commit f4508bc989919842e8df3ff5b9aeeffece29571c
9001
9179
Author: Behdad Esfahbod <behdad@behdad.org>
9005
9183
 
9006
9184
 pango/pango-script-lang-table.h |  434
9007
9185
 ++++++++++++++++++++++-----------------
9008
 
 1 files changed, 241 insertions(+), 193 deletions(-)
 
9186
 1 file changed, 241 insertions(+), 193 deletions(-)
9009
9187
 
9010
9188
commit 46c65d090998b27a25ee89d36d444d645640934e
9011
9189
Author: Behdad Esfahbod <behdad@behdad.org>
9014
9192
    [Makefile.am] Fix build of gen-script-for-lang
9015
9193
 
9016
9194
 tools/Makefile.am |    2 +-
9017
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
9195
 1 file changed, 1 insertion(+), 1 deletion(-)
9018
9196
 
9019
9197
commit 04138218a9b515244f02202c5b18103e84e33d9e
9020
9198
Author: Behdad Esfahbod <behdad@behdad.org>
9024
9202
 
9025
9203
 pango/pangofc-fontmap.c |   54
9026
9204
 +++++++++++++++++++++++++++++++++++++++++++++++
9027
 
 1 files changed, 54 insertions(+), 0 deletions(-)
 
9205
 1 file changed, 54 insertions(+)
9028
9206
 
9029
9207
commit 03a13541fbf3f49c21d73490570ca217f559acbb
9030
9208
Author: Behdad Esfahbod <behdad@behdad.org>
9033
9211
    [pangofc] Share cmap cache between PangoFcFont's of the same face
9034
9212
    (#567160)
9035
9213
 
9036
 
 pango/pangofc-font.c    |   41 ++++--------
 
9214
 pango/pangofc-font.c    |   41 ++++-------
9037
9215
 pango/pangofc-fontmap.c |  172
9038
 
 ++++++++++++++++++++++++++++++++--------------
 
9216
 ++++++++++++++++++++++++++++++++---------------
9039
9217
 pango/pangofc-private.h |   26 +++++++
9040
9218
 3 files changed, 158 insertions(+), 81 deletions(-)
9041
9219
 
9046
9224
    [pangofc] Reuse filename from pattern in coverage key
9047
9225
 
9048
9226
 pango/pangofc-fontmap.c |   28 ++++++++++++++++++++--------
9049
 
 1 files changed, 20 insertions(+), 8 deletions(-)
 
9227
 1 file changed, 20 insertions(+), 8 deletions(-)
9050
9228
 
9051
9229
commit 9305b9a9995e84ace3818a90346820ef8c47a3ce
9052
9230
Author: Behdad Esfahbod <behdad@behdad.org>
9083
9261
    [pango-coverage] Fix optimization bug in pango_coverage_to_bytes()
9084
9262
 
9085
9263
 pango/pango-coverage.c |   19 +++++++++++--------
9086
 
 1 files changed, 11 insertions(+), 8 deletions(-)
 
9264
 1 file changed, 11 insertions(+), 8 deletions(-)
9087
9265
 
9088
9266
commit fa908f4cb6db943b555a51d1ce4bf01112b1a710
9089
9267
Author: Behdad Esfahbod <behdad@behdad.org>
9092
9270
    [pango-coverage] Use gslice for data arrays
9093
9271
 
9094
9272
 pango/pango-coverage.c |    6 +++---
9095
 
 1 files changed, 3 insertions(+), 3 deletions(-)
 
9273
 1 file changed, 3 insertions(+), 3 deletions(-)
9096
9274
 
9097
9275
commit b22da261e98702b95db83cd96175d0d655dc0df4
9098
9276
Author: Behdad Esfahbod <behdad@behdad.org>
9101
9279
    [pango-coverage] Remove unused struct member
9102
9280
 
9103
9281
 pango/pango-coverage.c |    1 -
9104
 
 1 files changed, 0 insertions(+), 1 deletions(-)
 
9282
 1 file changed, 1 deletion(-)
9105
9283
 
9106
9284
commit e3cff8e0bb2926b2db1687182fab587ade7b64ee
9107
9285
Author: Behdad Esfahbod <behdad@behdad.org>
9113
9291
    cache size.
9114
9292
 
9115
9293
 pango/pangofc-fontmap.c |    2 +-
9116
 
 1 files changed, 1 insertions(+), 1 deletions(-)
 
9294
 1 file changed, 1 insertion(+), 1 deletion(-)
9117
9295
 
9118
9296
commit 5861e2609ded6495ebfd4110c4fc8f07ba32ebca
9119
9297
Author: Behdad Esfahbod <behdad@behdad.org>
9122
9300
    [pangofc-fontmap] Don't unref NULL object (RH bug# 487593)
9123
9301
 
9124
9302
 pango/pangofc-fontmap.c |    6 +++++-
9125
 
 1 files changed, 5 insertions(+), 1 deletions(-)
 
9303
 1 file changed, 5 insertions(+), 1 deletion(-)
9126
9304
 
9127
9305
commit a45933e695a6a60ebae63b30b5a021859cb85305
9128
9306
Author: Tor Lillqvist <tml@iki.fi>
9139
9317
 
9140
9318
 pango/pangowin32-fontmap.c |  100
9141
9319
 +-------------------------------------------
9142
 
 1 files changed, 2 insertions(+), 98 deletions(-)
 
9320
 1 file changed, 2 insertions(+), 98 deletions(-)
9143
9321
 
9144
9322
commit fab7a104d5c6f3182fe9bdc84bfcba5807f87f8a
9145
9323
Author: Behdad Esfahbod <behdad@behdad.org>
9168
9346
    [glyphstring] Handle overflow with very long glyphstrings
9169
9347
 
9170
9348
 pango/glyphstring.c |   26 ++++++++++++++++++++------
9171
 
 1 files changed, 20 insertions(+), 6 deletions(-)
 
9349
 1 file changed, 20 insertions(+), 6 deletions(-)
9172
9350
 
9173
9351
commit 1c9433bfe43890b102c8cead8ab3ee34b44c5c37
9174
9352
Author: Behdad Esfahbod <behdad@behdad.org>
9179
9357
    Reported by Tommi Rantala.
9180
9358
 
9181
9359
 pango/pango-language.c |    6 ++++--
9182
 
 1 files changed, 4 insertions(+), 2 deletions(-)
 
9360
 1 file changed, 4 insertions(+), 2 deletions(-)
9183
9361
 
9184
9362
commit 7245e427818d88358f2c9fcfdbe777701d7b0ab9
9185
9363
Author: Behdad Esfahbod <behdad@behdad.org>
9192
9370
 pango-view/Makefile.am    |    1 -
9193
9371
 pango-view/viewer-win32.c |  748
9194
9372
 ---------------------------------------------
9195
 
 2 files changed, 0 insertions(+), 749 deletions(-)
 
9373
 2 files changed, 749 deletions(-)
9196
9374
 
9197
9375
commit e2f1e870a164dfe855542520c38b5d0b5758d433
9198
9376
Author: Behdad Esfahbod <behdad@behdad.org>
9214
9392
    Fix Bug 572529 – Poor -I ordering can break build
9215
9393
 
9216
9394
 pango/opentype/Makefile.am |    4 ++--
9217
 
 1 files changed, 2 insertions(+), 2 deletions(-)
 
9395
 1 file changed, 2 insertions(+), 2 deletions(-)
9218
9396
 
9219
9397
commit 44c9dd3d4c17776240a2bd7bdee93b5455ab76d5
9220
9398
Author: Behdad Esfahbod <behdad@behdad.org>
9223
9401
    Fix warnings
9224
9402
 
9225
9403
 tests/gen-all-unicode.c |    3 ++-
9226
 
 1 files changed, 2 insertions(+), 1 deletions(-)
 
9404
 1 file changed, 2 insertions(+), 1 deletion(-)
9227
9405
 
9228
9406
commit d17a99734b13e3ea4886177c704d54fbb634a0f7
9229
9407
Author: Behdad Esfahbod <behdad@src.gnome.org>
9234
9412
    svn path=/trunk/; revision=2829
9235
9413
 
9236
9414
 pango/pangoft2.def |    6 ++++++
9237
 
 1 files changed, 6 insertions(+), 0 deletions(-)
 
9415
 1 file changed, 6 insertions(+)
9238
9416
 
9239
9417
commit 400b54870729c2afe49d1aec2b43b2678e0d0844
9240
9418
Author: Behdad Esfahbod <behdad@gnome.org>
9254
9432
 
9255
9433
 ChangeLog |    8 ++++++++
9256
9434
 NEWS      |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
9257
 
 2 files changed, 62 insertions(+), 0 deletions(-)
 
9435
 2 files changed, 62 insertions(+)