-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.pre-1-0
5211 lines (3443 loc) · 166 KB
/
ChangeLog.pre-1-0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Thu Mar 7 22:55:13 2002 Owen Taylor <[email protected]>
===== Released 1.0.0 =====
* NEWS: Final updates for 1.0.0.
* README AUTHORS: Update.
2002-03-07 jacob berkman <[email protected]>
* autogen.sh: pass --enable-gtk-doc to configure
2002-03-08 Tor Lillqvist <[email protected]>
* pango-zip.sh.in: Use PANGO_MODULE_VERSION in modules path.
* pango/pangoft2.def: Add the pango_ot_* symbols from the static
libpango-ot library.
Thu Mar 7 14:42:50 2002 Owen Taylor <[email protected]>
* configure.in: As we do in other modules, default to
--disable-gtk-doc, and run the check we used to do
for the default when the --enable-gtk-doc is specified.
(Alain Rouge)
Thu Mar 7 10:51:16 2002 Owen Taylor <[email protected]>
* configure.in: Fix some problems with setting
library variables for --enable-explicit-deps. (Laszlo Peter,
#73851)
Wed Mar 6 12:44:00 2002 Owen Taylor <[email protected]>
* Pango 1.0.0 rc2.
Wed Mar 6 12:12:21 2002 Owen Taylor <[email protected]>
* pango/fonts.c: Add some text names to weight map for
weights that were added to the PangoWeight enumeration
but not here. (#73728, Arnaud Charlet)
2002-03-06 Manish Singh <[email protected]>
* pango/Makefile.am: install-exec-hook should always exist,
because the automake rules assume it to be there if it is
included anywhere in the Makefile.am. So put only the body
of it inside DISABLE_EXPLICIT_DEPS.
Wed Mar 6 11:43:46 2002 Owen Taylor <[email protected]>
* configure.in: Fix problem where == was used instead if =.
(#73694, Martin Gansser)
* modules/Makefile.am (install-data-local): Simplify
the rule to create the pango.modules file to avoid
problems with differing shared library suffixes.
pango-querymodules run without any arguments does the
right thing by default. (#73694, Martin Gansser)
* configure.in: Add a PANGO_MODULE_VERSION variable
defining the subdir in which modules are installed.
* pango/querymodules.c pango/modules.c modules/*/*.am:
Install modules in lib/pango/MODULE_VERSION/modules
* pango.pc.in (pango_module_version): Export pango_module_version
variable so that 3rd parties can determine where to install
libraries.
Wed Mar 6 11:40:45 2002 Owen Taylor <[email protected]>
* Pango 1.0.0 rc1.
* pango/Makefile.am: Use install-exec-hook not
install-exec-local when running sanitize-la.sh.
2002-03-06 Tor Lillqvist <[email protected]>
* pango/Makefile.am (install-exec-local): Ignore return status
from for loop, in case the last test -f happens to fail. Handle
also the libpangowin32 .la file.
* pango/Makefile.am (libpangoft2_1_0_la_LDFLAGS): Use
pangoft2_export_symbols, not pangowin32_export_symbols.
* pango/pango.rc.in
* pango/pangowin32.rc.in
* pango/pangoft2.rc.in
* pango/Makefile.am
* pango-zip.sh.in: : Adapt to new shared library naming scheme,
also for Win32 import library names.
2002-03-05 Manish Singh <[email protected]>
* configure.in: require GLIB 2.0.0 at minimum
2002-03-05 jacob berkman <[email protected]>
* tests/Makefile.am (*boundaries_LDADD): more $(PANGO_API_VERSION)
fixing
Tue Mar 5 15:41:17 2002 Owen Taylor <[email protected]>
* modules/*/Makefile.am: Fix pangoxft-$(PANGO_API_VERSION).
(Reported by Manish Singh.)
Tue Mar 5 11:00:20 2002 Owen Taylor <[email protected]>
* configure.in **/Makefile.am *.pc.in: Switch over to
GLib/GTK+ style library versioning. Update version numbers
to 1.0.0.
2002-03-03 jacob berkman <[email protected]>
* Makefile.am (EXTRA_DIST): add sanitize-la.sh
Sat Mar 2 21:57:55 2002 Owen Taylor <[email protected]>
* examples/Makefile.am (pango.modules): Write
examples/pango.modules in terms of .la files rather than
direct shared objects to avoid having to know soname
extension.
* pango/querymodules.c (main): Use G_MODULE_SUFFIX or
.la to compare with filenames when querying modules,
rather than hardcoded .so/.la.
* configure.in (USE_LA_MODULES): On aix, load .la files
since we can't guess the soname extension.
Fri Mar 1 00:46:49 2002 Owen Taylor <[email protected]>
* configure: Default to --disable-static.
* configure.in pangoft2.pc.in pangoxft2.pc.in pangox.pc.in:
Add a --enable-explicit-deps option to control whether dependency
libraries are written into .la files and .pc files.
Default is auto: if static libraries are off
and shlib dependencies are found, don't write deps.
* pango/Makefile.am sanitize-la.sh: Shell script used
to strip dependencies out of .la files.
* configure.in: Default to --disable-gtk-doc.
* Makefile.am: Add a slightly modified distcheck rule
that passes --enable-gtk-doc to the configure inside.
(So that 'make dist' succeeds inside.)
Fri Mar 1 14:37:47 2002 Owen Taylor <[email protected]>
* pango/pangoxft-font.c (pango_xft_font_get_glyph_extents):
Treat glyph 0 as an 0 size, non-drawn glyph consistent
with other backends. (#71931)
Fri Mar 1 14:25:22 2002 Owen Taylor <[email protected]>
* pango/modules.c: Don't crash on out-of-BMP values.
* pango/mini-fribidi/fribidi_get_type.c (_pango_fribidi_get_type):
Return FRIBIDI_TYPE_LTR for all non-BMP characters.
Fri Mar 1 12:11:50 2002 Owen Taylor <[email protected]>
* pango/pango-layout.c (pango_layout_line_get_vis2log_map):
Fix problem with positions at the ends of lines
(#63328, reported by Dov Grobgeld.)
2002-02-28 Sven Neumann <[email protected]>
* configure.in: align --help output.
2002-02-28 Alex Larsson <[email protected]>
* pango/pangoft2.c (pango_ft2_font_get_face):
Check for errors when loading font face, fall back to sans,
exit with warning if no font found.
2002-02-28 Sven Neumann <[email protected]>
* modules/arabic/Makefile.am: don't link libpango-ot into the module.
* pango/Makefile.am: added libpango-ot.la to libpangoft2_la_LIBADD.
Should fix #72934, reported by Raymond Wan.
2002-02-28 Sven Neumann <[email protected]>
* configure.in: beautified configure --help output.
Wed Feb 27 11:10:07 2002 Owen Taylor <[email protected]>
* pango/Makefile.am (libpangoft2_la_LIBADD): Move .la
files to beginning of link line ... may prevent some
problems with linking to installed libraries.
(#61359, _)
Wed Feb 27 08:55:32 2002 Owen Taylor <[email protected]>
* pango/Makefile.am (pango_querymodules_LDADD): Add
$(X_EXTRA_LIBS) (reported Richard Warren)
Tue Feb 26 19:06:07 2002 Owen Taylor <[email protected]>
* pango/mini-xft/minixftint.h: Fix some C++ style
comments. (David L. Cooper II)
Tue Feb 26 16:43:05 2002 Owen Taylor <[email protected]>
* pango/Makefile.am (pango-enum-types.c): Make
pango-enum-types.c depend on pango-enum-types.h
Tue Feb 26 15:50:35 2002 Owen Taylor <[email protected]>
* pango/pangoxft-font.c (pango_xft_font_get_font): Try
to load something (load sans) if we can't load a font
that Xft listed. (Workaround for #72299, reported
by Gediminas Paulauskas)
Mon Feb 25 16:36:47 2002 Owen Taylor <[email protected]>
* modules/hebrew/hebrew-x.c pango/mini-fribidi/fribidi-types.h:
Fix trailing , on enumerations.
(#72572, Miroslaw Dobrzanski-Neumann)
Sun Feb 24 13:40:55 2002 Owen Taylor <[email protected]>
* pango/pangoxft-fontmap.c (pango_xft_pattern_equal):
Rewrite to reduce the number of strcmps.
* pango/pangoxft-fontmap.c (pango_xft_font_map_load_font):
Compute the patterns as for load_fontset(), then just
return the first. This takes advantage of our caching
strategy.
Sun Feb 24 12:12:09 2002 Owen Taylor <[email protected]>
* pango/pangoxft-fontmap.c (pango_xft_font_map_new_font):
Fix problem where we unref'ed before we ref'ed resulting
in entries in the cache that shouldn't have been there.
* pango/pangoft2-fontmap.c (pango_ft2_font_map_new_font):
Same.
Sat Feb 23 21:40:27 2002 Owen Taylor <[email protected]>
* configure.in: Version 0.26
* NEWS: Updates.
Sat Feb 23 17:34:26 2002 Owen Taylor <[email protected]>
* modules/basic/basic-{ft2,x,xft}.c: Patch from Sven Neumann
to extend and make consistent the set of zero-width characters
that are not displayed. (#71931)
Sat Feb 23 13:07:02 2002 Owen Taylor <[email protected]>
* pango/pango-font.h pango/pango-fontmap.h pango/pango-fontset.h:
Add some class padding for future expansion.
Wed Feb 20 16:58:24 2002 Owen Taylor <[email protected]>
* modules/arabic/{naqshfont.[ch],mulefont.[ch],langboxfont.[ch]}:
Fix recode functions to take gunichar * since we pass that in.
(#72059, reported by Miroslaw Dobrzanski-Neumann)
Sun Feb 17 18:50:30 2002 Owen Taylor <[email protected]>
* configure.in: Version 0.25
* configure.in: Add X_EXTRA_LIBS to XFT_LIBS.
* NEWS: Updates
* pango/mini-xft/minixftdpy.c
* pango/mini-xft/minixftstr.c: Fix some problems
with signed arguments to to isupper()/tolower().
(#71705, Morten Welinder)
2002-02-15 Hans Breuer <[email protected]>
* examples/makefile.am pango/makefile.am : added
makefile.msc to EXTRA_DIST
Thu Feb 14 14:46:26 2002 Owen Taylor <[email protected]>
* configure.in: Respect QTDIR if set. Look for qt3 as well as qt2.
2002-02-14 Sven Neumann <[email protected]>
* configure.in: updated the list of available modules (bug #71411).
2002-02-10 Hans Breuer <[email protected]>
* pango/makefile.msc : update version,
use -FImsvc_recommended_pragmas.h and add $(DIRENT_LIBS) to
pangoft2 linking
2002-02-09 Darin Adler <[email protected]>
* pango/fonts.c: (getword): isspace -> g_ascii_isspace
(pango_font_description_from_string): isspace -> g_ascii_isspace
* pango/modules.c: Remove unneeded <ctype.h> include.
* pango/pango-markup.c: (xml_isspace): New.
(pango_parse_markup): isspace -> xml_isspace
(span_parse_func): isdigit -> g_ascii_isdigit
* pango/pango-utils.c: (pango_trim_string): isspace -> g_ascii_isspace
(pango_skip_space): isspace -> g_ascii_isspace
(pango_scan_word): isspace -> g_ascii_isspace
(pango_scan_string): isspace -> g_ascii_isspace
(pango_scan_int): isspace -> g_ascii_isspace
* pango/pangoft2-fontmap.c: Remove unneeded <ctype.h> include.
* pango/pangox-fontmap.c: Remove unneeded <ctype.h> include.
2002-02-07 Tor Lillqvist <[email protected]>
* examples/pangoft2topgm.c (main): Accept also outfile name on
command line, fopen it separately then. Needed on Windows where
stdout is in text mode.
* modules/arabic/Makefile.am
* modules/hebrew/Makefile.am: Use -no-undefined on Windows,
otherwise libtool won't produce DLLs, and there will be no such to
install
Sat Feb 2 18:27:38 2002 Owen Taylor <[email protected]>
* pango/Makefile.am (pango_querymodules_LDADD): Try removing
libpango.la from the link line since it will be pulled
in from the other libraries to avoid duplicate inclusion.
(#70400.)
* pangox.pc.in (Libs): Add @X_XTRA_LIBS@ (#70400)
2002-02-01 Havoc Pennington <[email protected]>
* pangoxft.pc.in (Description, Name): fix cut-and-paste mess
name/description
2002-02-01 Anders Carlsson <[email protected]>
* pango/pangoxft-fontmap.c (pango_xft_get_font_map):
move to next element in list.
Tue Jan 29 11:35:11 2002 Owen Taylor <[email protected]>
* configure.in: Version 0.24
* NEWS: Updates
Mon Jan 28 20:23:59 2002 Owen Taylor <[email protected]>
* pango/pango-markup.c (pango_parse_markup): Fix problem
with detected root node. (Based on patch from Matthias Clasen,
#69600)
Mon Jan 28 19:41:20 2002 Owen Taylor <[email protected]>
* pango/pango-context.c (pango_context_load_font[set]): Add some
return-if-fails to catch loading size 0 fonts.
Thu Jan 24 18:05:54 2002 Owen Taylor <[email protected]>
* pango/pango-layout.c (get_items_log_attrs): Fix problems with
computing the length of the paragraph delimiter. (Reported by Evan Martin)
2002-01-24 Sven Neumann <[email protected]>
* configure.in
* modules/arabic/Makefile.am
* modules/arabic/arabic-ft2.c: added arabic shaper for FT2 ported
from arabic-xft.c by Andreas Bogk <[email protected]>.
Wed Jan 23 16:49:24 2002 Owen Taylor <[email protected]>
* examples/viewer-ft2.c: Remove this file; pangofttopgm
is the test case for the FT2 backend now.
* examples/Makefile.am: Don't dist moc_viewer-qt.cc.
* examples/Makefile.am: Build pangofttopgm if we have FT2.
* examples/pangoft2topgm.c (main): Warning fixes.
2002-01-21 Havoc Pennington <[email protected]>
* pango/pango-layout.c (pango_layout_set_markup_with_accel): fix
memory leak of "text", reported by Jason Tackaberry
2002-01-20 Alexander Larsson <[email protected]>
* pango/pangoft2.c (pango_ft2_draw_hline):
Clean up underline drawing. Fixes segfaults.
Sat Jan 19 11:50:32 2002 Owen Taylor <[email protected]>
* configure.in: Add a AC_TRY_LINK() for qt, since broken setups
seem to be common.
* configure.in: Save ACLOCAL_FLAGS for --enable-maintainer-mode rebuilds.
2002-01-18 Alexander Larsson <[email protected]>
* pango/pangoft2-private.h:
Add glyph_cache_destroy to PangoFont. This is slightly ugly, we
should perhaps have it in the FontMap, but it was easy.
Added cached_glyph to PangoFT2GlyphInfo. This can be used by
apps that want to have a glyph cache. Only one user per PangoContext
though. Right now it is only internally accessible.
Added pango_ft2_font_get_cache_glyph_data(), pango_ft2_font_set_cache_glyph_data() and
pango_ft2_font_set_glyph_cache_destroy() to access this functionallity
* pango/pangoft2.c:
Implement glyph caching for pango_ft2_render_layout(). Unbounded
caching right now. We should probably limit this in order to not
use a lot of memory if the user displayed a lot of glyphs once,
and then doesn't use them anymore.
2002-01-17 jacob berkman <[email protected]>
* modules/hebrew/Makefile.am (common_sources): include missing
header file
Wed Jan 16 14:45:23 2002 Owen Taylor <[email protected]>
* pango/pango-layout.c (pango_layout_check_lines):
A string ending in a paragraph delimiter has an
empty line at the end. (#68079, Arjan J. Molenaar.)
Wed Jan 16 09:25:34 2002 Owen Taylor <[email protected]>
* pango/fonts.c (pango_font_description_from_string): Initialize
the static_family field. (Fix from Zack Rusin)
2002-01-14 Havoc Pennington <[email protected]>
* pango/pango-layout.c: slight correction to
pango_layout_get_extents(), docs still need to be clearer, but
at least they aren't a cut-and-paste of glyph string docs now.
* docs/tmpl/glyphs.sgml: add note about special-case use of
PANGO_SCALE with font sizes
* pango/fonts.c: fix docs to be correct about PANGO_SCALE
2002-01-13 Havoc Pennington <[email protected]>
* pango/fonts.c: fix up docs to be clearer about PANGO_SCALE,
as suggested by Dennis Bjorklund
2002-01-11 Havoc Pennington <[email protected]>
* docs/pango_markup.sgml: fix cross-references in here
2002-01-11 Havoc Pennington <[email protected]>
* pango/pango-layout.c (pango_layout_set_attributes): allow
setting attrs to NULL
2002-01-11 Havoc Pennington <[email protected]>
* pango/pango-layout.c (pango_layout_iter_get_index): docs tweak
(pango_layout_iter_next_cluster): update iter->index here
Fri Jan 11 15:01:13 2002 Owen Taylor <[email protected]>
* pango/pangoft2-fontmap.c (pango_ft2_make_pattern)
pango/pangoxft-fontmap.c (pango_xft_make_pattern):
Split comma separated family names and add them in
pieces, so they are all visible to Xft.
* pango/pangoxft-fontmap.c: Remove duplicate XFT_FAMILY
in call to XftListFonts.
Thu Jan 10 16:27:24 2002 Owen Taylor <[email protected]>
* pango/mini-fribidi/fribidi.c: Fix read of unitialized
memory (#66067, Hidetoshi Tajima)
Thu Jan 10 15:04:31 2002 Owen Taylor <[email protected]>
* pango/glyphstring.c (pango_glyph_string_extents_range):
Don't offset the logical rect by y_offset - this generally
is not desired, since it means that the logical height
of a line could change if it included accented characters.
(#67921, Dov Grobgeld)
2002-01-09 Alex Larsson <[email protected]>
* pango/pangoxft-fontmap.c (pango_xft_font_map_load_fontset):
Add g_error if font match fails, referencing bug #68030, which
is the "libXrender is broken" bug.
Wed Jan 9 18:51:02 2002 Owen Taylor <[email protected]>
* pango/pango-context.c (pango_context_load_font):
g_return_if_fail() if the desc's family is NULL.
(#67947, report from Darin Adler.)
Wed Jan 9 11:23:31 2002 Owen Taylor <[email protected]>
* pango/Makefile.am (s-enum-types-h): Include glib-object.h,
Add G_BEGIN_DECLS/END_DECLS to pango-enum-types.h. (#68325,
Mikael Hermansson)
Tue Jan 1 20:52:00 2002 Owen Taylor <[email protected]>
* pango/fonts.c (pango_font_description_merge[_static]):
Update the field mask in the merged description.
2002-01-02 Tor Lillqvist <[email protected]>
* pango/pangowin32.c (pango_win32_render_layout_line): Silence gcc
-Wall, initialise a couple of variables.
* pango/pangowin32-fontcache.c (pango_win32_font_cache_load): Set
lfCharSet to DEFAULT_CHARSET always. Conditional debugging output
with the PING() macro.
* pango/pangowin32-fontmap.c: Make the size_infos hash table
actually work like it is suppposed to, not that I know if it
matters. I think that it's useless to store all the different
charset vviews of the same actual ttf font in the list. Will have
to do more testing.
(logfont_nosize_hash): Lowercase face name before calculating
hash.
(logfont_nosize_equal): Compare face names ignoring case.
(pango_win32_insert_font): Store "courier new" also under the name
"courier", as that is what gtk-demo (and presumably often other
applications, too?) looks for.
Thu Dec 27 14:19:46 2001 Owen Taylor <[email protected]>
* modules/basic/basic-x.c: Mark as only an approximate
match for Hebrew, so the Hebrew shaper will be used
in preference. (#67557, Dov Grobgeld)
Wed Dec 26 11:52:28 2001 Owen Taylor <[email protected]>
* pango/pango-fontmap.c (pango_font_map_load_fontset)
* pango/pango-context.c (pango_context_load_fontset):
return_val_if_fail() if desc->family is not set.
Sat Dec 22 12:14:25 2001 Owen Taylor <[email protected]>
* configure.in: Version 0.23, require glib-1.3.12
* pango/makefile.msc (PANGO_VER): 0.23.
* NEWS: Updated.
Sat Dec 22 11:49:38 2001 Owen Taylor <[email protected]>
* modules/arabic/arabic-ot.c: Patch from Roozbeh
Pournader to update for shaping class changes
in Unicode 3.1.1.
Thu Dec 20 00:18:10 2001 Owen Taylor <[email protected]>
* pango/pangoxft-font.c (pango_xft_picture_render): Fix
doc comment.
Wed Dec 19 22:40:24 2001 Owen Taylor <[email protected]>
* pango/pango-layout.c (get_line_extents_layout_coords):
Remove incorrect special casing of initial line.
(Reported by Darin Adler)
Tue Dec 18 12:33:03 2001 Owen Taylor <[email protected]>
* modules/indic/*-x.c (pango_engine_shape): Syllable
array needs to start at length 2, not 1. Also, some
cleanups. (Memory overrun reported by Joshua Pritikin
#66850)
2001-12-17 Darin Adler <[email protected]>
* pango/pangoft2.c: Fix doc comment.
* pango/pangoft2.h: Move include outside G_BEGIN_DECLS.
* pango/querymodules.c: (main): Add const to avoid warning.
* tests/dump-boundaries.c: (fail): Remove unused local.
2001-12-14 Sven Neumann <[email protected]>
* modules/hebrew/hebrew-x.c (hebrew_engine_get_coverage): use
(PangoLanguage *) instead of (const gchar *) to please the compiler.
2001-12-13 Sebastian Wilhelmi <[email protected]>
* examples/Makefile.am, modules/arabic/Makefile.am,
modules/basic/Makefile.am, modules/hangul/Makefile.am,
modules/hebrew/Makefile.am, modules/indic/Makefile.am,
modules/tamil/Makefile.am, modules/thai/Makefile.am,
pango/Makefile.am, pango/mini-fribidi/Makefile.am,
pango/opentype/Makefile.am, tests/Makefile.am: Compile with
-DG_DISABLE_DEPRECATED. See #52790.
2001-12-12 Sven Neumann <[email protected]>
* pango/mini-xft/minixftinit.c: include config.h so the definition
of MINI_XFTCONFIG_DIR is actually used (spotted by Sebastian Klemke
2001-12-12 Alexander Larsson <[email protected]>
* pango/pangoft2-fontmap.c (pango_ft2_font_map_load_fontset):
Initialize MiniXft library before calling MiniXftConfigSubstitute.
* pango/mini-xft/minixftdir.c (MiniXftDirScan):
Changed back filename from MiniXftCache to XftCache for
compat with Xft.
2001-12-11 Alex Larsson <[email protected]>
* pango/pangoft2.c (pango_ft2_render):
Fix the details in clipping to the bitmap size.
Mon Dec 10 14:22:22 2001 HideToshi Tajima <[email protected]>
* modules/basic/tables-big.i: change "EUC-CN" to "GB2312" which
is the canonical name for gb2312.1980 charset used in libcharset.
(#66174)
Mon Dec 10 09:18:09 2001 Owen Taylor <[email protected]>
* pango/pango-layout.c (pango_layout_index_to_pos):
Fix problem with returned width on lines other than
the first line (#66274).
* pango/pangox,ft2,win32.c (pango_*_render_layout):
Fix problem where indent wasn't honored (#66275).
[ Note, however, there are remaining problems - see, #66626 ]
Thu Dec 6 19:07:31 2001 Owen Taylor <[email protected]>
* pango/pango-layout.c (get_items_log_attrs): Fix problem
where length passed in didn't get adjusted for paragraph
delimiters.
Thu Dec 6 12:10:53 2001 Owen Taylor <[email protected]>
* pango/break.c (pango_default_break): Simplify by
being lazy and calling g_utf8_strlen() (causes a
two passes over the array but shouldn't be a huge
performance loss). Fix bug where attributes weren't
set correctly for empty strings. Handle internal
NULLs consistently with other functions (truncate)
rather than dying with an assertion failure. (#65183)
Thu Dec 6 10:03:49 2001 HideToshi Tajima <[email protected]>
* modules/basic/basic-x.c
(conv_eucjp): handle codeset1(right half of jisx0201.1976)
and codeset3(jisx0212.1990) of EUCJP
(conv_16bit): renamed from the old conv_euc - handle 16bit
character sets only.
* modules/basic/tables-big.i: add jisx0212, jisx0201 and big5.
2001-12-04 Manish Singh <[email protected]>
* pango/modules.c
* pango/querymodules.c: g_module_symbol takes a gpointer *, not just
a gpointer.
2001-12-03 Matthias Clasen <[email protected]>
* docs/pango-sections.txt, docs/tmpl/fonts.sgml,
docs/tmpl/modules.sgml: Updates.
* pango/modules.c: Documentation fixes.
2001-12-04 Sven Neumann <[email protected]>
* pango/pangoft2-fontmap.c
(pango_ft2_font_map_init): set n_families to -1 (uninitialized).
(pango_ft2_font_map_list_families): set n_faces to -1 (uninitialized).
This makes list_families and list_faces work again for PangoFT2.
2001-12-01 Matthias Clasen <[email protected]>
* pango/pango-fontset.c: Documentation fixes.
2001-11-29 Matthias Clasen <[email protected]>
* pango/pango-fontset.c: Documentation updates.
Thu Nov 29 11:40:51 2001 Owen Taylor <[email protected]>
* examples/viewer-qt.cc: Include qpainter.h - apparently
needed for Qt 3. (Patch from Dennis Dementiev)
2001-11-27 Alex Larsson <[email protected]>
* pango/pangoft2-private.h
* pango/pangoft2-fontmap.c (_pango_ft2_font_desc_from_pattern):
Take extra parameter include_size that determines if the
descriptor includes the size.
* pango/pangoft2.c (_pango_ft2_font_new):
Include size in ft2font->description.
* pango/pangoxft-private.h
* pango/pangoxft-fontmap.c (_pango_xft_font_desc_from_pattern):
Take extra parameter include_size that determines if the
descriptor includes the size.
* pango/pangoxft-font.c:
Include size in xfont->description.
Mon Nov 26 19:24:21 2001 Owen Taylor <[email protected]>
* configure.in tests/Makefile.am tests/cxx-test.C: Add
a test program that includes all headers in a C++ program.
(#52606)
2001-11-26 Alex Larsson <[email protected]>
* pango/pangoxft-font.c (pango_xft_font_get_coverage):
Don't leak filename copy.
* pango/pangoxft-fontmap.c (pango_xft_font_map_load_font):
Don't leak matched pattern
Mon Nov 26 18:17:00 2001 Owen Taylor <[email protected]>
* tests/Makefile.am tests/gen-all-unicode.c: Instead
of including all-unicode.txt in the distribution, include
a small program to generate it.
* modules/hangul/hangul-x.c (render_syllable_with_ksc5601): When
falling back to uncomposed Jamos, if we can't render a Jamo
in any way, use the unknown glyph rather than nothing.
* modules/hangul/hangul-x.c (hangul_engine_shape): Prevent
overflows for invalid sequences which can be of arbitrary
length. (#50086)
* modules/arabic/arconv.c: New versions from Roozbeh Pournader.
- Replacing the tables with automatically-generated ones
- Using binary search instead of linear search for table lookup
- Updating all the names with Unicode names (eg Nun -> Noon)
- Fixed the Hamza mixup, using the Unicode rules
- Updating missed cases (eg Superscript Alef was missing from
arabic_isvowel)
- Removing too-intelligent cases which made the code non-compliant
(eg Alef with Hamza above+Kasra was changing to Alef with Hamza below)
- Removing 'connecttoleft' from 'charstruct' (replacing it with a macro)
- Indenting in the GNU style
2001-11-26 Matthias Clasen <[email protected]>
* pango/pangoft2.c (pango_ft2_font_get_coverage): Documentation.
* modules/basic/basic-ft2.c (basic_engine_get_coverage): Use
pango_font_get_coverage().
Mon Nov 26 11:31:01 2001 Owen Taylor <[email protected]>
* pango/Makefile.am: Workaround to work a little better with
automake-1.5 - make $(libpango_la_OBJECTS) as well as $(OBJECTS)
depend on pango_built_headers.
Sun Nov 25 22:35:46 2001 Owen Taylor <[email protected]>
* configure.in (have_fribidi) README: Disable --with-fribidi; it offers
no advantages and until either fribidi is updated to use Glib-2.0
always, or the Glib dependecy is removed from fribidi entirely, there
will be problems with this option.
* pango/mini-fribidi/README: Update fribidi URL.
2001-11-24 Manish Singh <[email protected]>
* acconfig.h
* configure.in: support for --with-xftconfig-dir= path to system
XftConfig file
* pango/pango-utils.c
* pango/pangox.c: include "config.h", not <config.h>
* pango/pangoxft-fontmap.c: this file is pangoxft-fontmap.c, not
pangoxft-fontmap.h :)
* pango/mini-xft/minixftint.h
* pango/mini-xft/minixftinit.c: add code for searching common
locations for the XftConfig file. We search MINI_XFTCONFIG_DIR
if configure defines it for us (as above), then $sysconfdir,
then (only on !_WIN32) /etc/X11 and /usr/X11R6/lib/X11.
Sat Nov 24 13:44:21 2001 Kristian Rietveld <[email protected]>
* pango/pango-fontmap.c (pango_font_map_real_load_fontset):
free the font description when we don't need it anymore
2001-11-23 Padraig O'Briain <[email protected]>
* pango/break.c (pango_default_break):
Fix for bug 65183; i.e. do not call g_utf8_next_char(next) when
next is end.
2001-11-23 Hans Breuer <[email protected]>
* testfonts.c : removed the arbitrary limit to 10 fonts.
Instead make the command line params useful again and reduce
the default result bitmap size by decreasing the default
font size.
* pango/pangowin32-fontcache.c (pango_win32_font_cache_load):
Don't always turn on anti-aliasing. Respect the users settings
from 'Properties of Display/Effects'.
* pango/makefile.msc : updated, version 0.22
* pango/pango.def : updated externals
* pango/font.c pango/pango-coverage.c pango-utils.c
pango/pangowin32.c pango/shape.c :
coding style and static correctness
2001-11-22 Matthias Clasen <[email protected]>
* docs/pango-sections.txt: Remove duplicates.
* docs/tmpl/fonts.sgml: Document PANGO_TYPE_FONTSET
and PANGO_TYPE_FONTSET_SIMPLE.
* pango/pangoxft-font.c: Fix typos in some doc comments.
Thu Nov 22 14:23:07 2001 Owen Taylor <[email protected]>
* Version 0.22
* configure.in (GLIB_REQUIRED_VERSION): Require
GLib-1.3.11
Wed Nov 21 12:54:39 2001 Owen Taylor <[email protected]>
* configure.in (PANGO_MINOR_VERSION): Version 0.22.
* NEWS: Updated
* docs/pango-sections.txt Makefile.am: Update.
* pango/pango-layout.c (process_item): Don't look
like a doc comment.
2001-11-22 Tor Lillqvist <[email protected]>
* pango/pangowin32-fontcache.c (pango_win32_font_cache_load):
Always turn on anti-aliasing.
2001-11-21 Tor Lillqvist <[email protected]>
* pango/testfonts.c: Fix a couple of bugs, update for current
Pango API. It's not completely clear to me what the program is
supposed to do with the command line args. It does load a matching
font, but does nothing with it. It then always lists *all* font
families, and renders a string in each. This causes a huge image
with associated swapping to death if you have lots of fonts... I
added a restriction, only the first 10 fonts are rendered.
2001-11-20 Alex Larsson <[email protected]>
* pango/pangoxft-font.c (pango_xft_font_finalize):
Don't free font_pattern if we opened the XftFont, since the
XftFont claims ownership of it.
2001-11-20 Tor Lillqvist <[email protected]>
* pango/pangowin32-fontmap.c (pango_win32_font_map_load_font): Fix
typo.
2001-11-18 Alex Larsson <[email protected]>
* pango/pangoft2.[ch] (pango_ft2_get_context):
Take both dpi_x and dpi_y as arguments. Doesn't currently handle
dpi_x correctly, but at least the API is in.
2001-11-18 Alex Larsson <[email protected]>
* pango/pango-context.[ch]:
Add new function pango_context_load_fontset() to wrap
pango_font_map_load_fontset().
Add PangoContext arguments to load_font and load_fontset.
* pango/pango-fontmap.[ch]:
* pango/pangoft2-fontmap.c:
* pango/pangowin32-fontmap.c:
* pango/pangox-fontmap.c:
* pango/pangoxft-font.c:
* pango/pangoxft-fontmap.c
Add PangoContext arguments to load_font and load_fontset.
2001-11-19 Tor Lillqvist <[email protected]>
* pango-zip.sh.in: Suffix package names with datestamp. Add
the Pango modules.
* pango/pango.def: pango_context_add_font_map ->
pango_context_set_font_map. Add pango_fontset_*.
* pango/pangoft2.def: Reflect Alexander's changes.
* pango/mini-xft/minixftinit.c (get_xft_default_path): New
function. Use pango_get_sysconf_subdirectory () to construct a
suitable path.
* pango/mini-xft/minixftint.h: On Win32, don't use the hardcoded
/usr/X11R6/lib/X11/XftConfig path (or any other hardcoded path),
but instead the function get_xft_default_path().
* pango/mini-xft/minixftcache.c (MiniXftFileCacheSave): On Win32,
don't use link() and unlink() for the lock file. Instead, use a
lock directory.
2001-11-18 Alexander Larsson <[email protected]>
* pango/pangoxft-fontmap.c:
Add XFT_MATRIX and XFT_MINSPACE macro definitions if missing.
2001-11-17 Alexander Larsson <[email protected]>
* configure.in:
Check for LEX and YACC. This will be made optional later,
with the build sources checked in to cvs.
Generate pango/mini-xft/Makefile
* modules/basic/basic-ft2.c:
Use the new pangoft2 API.
* pango/Makefile.am:
Build mini-xft.
Add new files.
* pango/pango-context.[ch]:
Support only one fontmap per context.
Use pango_font_map_load_fontset() and PangoFontset instead
of internal fontset.
* pango/pango-fontmap.[ch]:
New virtual function pango_font_map_load_fontset() and
default implementation that uses pango_font_map_load_font().
* pango/pango-utils.[ch] (pango_lookup_aliases):
Utility function for looking up aliases. This can be
used by backend that has no backend specific aliases.
* pango/pangoft2-fontcache.c:
Removed file.
* pango/pangoft2-fontmap.c:
* pango/pangoft2-private.h:
* pango/pangoft2.c:
* pango/pangoft2.h:
Major rewrite. Doesn't handle fontsets. Uses mini-xft so that
it will always match the PangoXft backend. Simplified the
public API.
* pango/pangowin32.c:
* pango/pangox.c:
pango_context_add_font_map -> pango_context_set_font_map
* pango/pangoxft-font.c:
* pango/pangoxft-fontmap.c:
* pango/pangoxft-private.h:
New code to handle fontsets.
* pango/mini-xft/*:
Mini version of libXft from XFree86 in order to have
the pangoFT2 and pangXft backends have same config files and
generate the same fonts.
2001-11-14 Matthias Clasen <[email protected]>
* docs/Makefile.am (MKDB_OPTIONS): Add --sgml-mode.
2001-11-11 Matthias Clasen <[email protected]>
* docs/Makefile.am (IGNORE_HFILES): Add pangoxft-private.h.
* pango/pango-utils.c (pango_language_from_string): Fix typo in
documentation.
* docs/tmpl/text-attributes.sgml: Document PangoColor, PangoLanguage,
PangoAttrLanguage, PangoAttrFloat and PangoAttrShape.
* docs/tmpl/layout.sgml: Document PangoWrapMode and PangoLayoutIter.
* docs/tmpl/tab-stops.sgml: Document PangoTabAlign and PangoTabArray.
* docs/tmpl/fonts.sgml: Document PangoFontMask.
* pango/fonts.c (pango_font_description_unset_fields): Fix typo in
documentation.
* docs/tmpl/opentype.sgml: Remove documentation templates of the
unimplemented functions pango_ot_ruleset_set_glyph_loader and