summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Released 1.0.2.PANGO_1_0_2Owen Taylor2002-05-236-0/+24
| | | | | | Thu May 23 16:52:55 2002 Owen Taylor <otaylor@redhat.com> * Released 1.0.2.
* Don't draw fillers when drawing Jamos with ksc5601 fallback.Changwoo Ryu2002-05-237-0/+33
| | | | | * modules/hangul/hangul-x.c (render_syllable_with_ksc5601): Don't draw fillers when drawing Jamos with ksc5601 fallback.
* Version 1.0.2, interface, binary age 2.Owen Taylor2002-05-228-2/+34
| | | | | | Wed May 22 16:07:16 2002 Owen Taylor <otaylor@redhat.com> * configure.in: Version 1.0.2, interface, binary age 2.
* Fix C++ comment. (#82035, David L. Cooper II)Owen Taylor2002-05-217-1/+31
| | | | | | | Tue May 21 15:27:41 2002 Owen Taylor <otaylor@redhat.com> * modules/basic/tables-big.i: Fix C++ comment. (#82035, David L. Cooper II)
* Report standard aliases as uppercase, fix pango_*_face_describe() forOwen Taylor2002-05-148-16/+150
| | | | | | | | Tue May 14 12:02:13 2002 Owen Taylor <otaylor@redhat.com> * pango/pangoxft-fontmap.c pango/pangoft2-fontmap.c: Report standard aliases as uppercase, fix pango_*_face_describe() for aliases.
* Fake sans,serif,monospace in the list of fonts.Owen Taylor2002-05-138-57/+181
| | | | | | | | | Mon May 13 15:56:29 2002 Owen Taylor <otaylor@redhat.com> * pango/pangoxft-fontmap.c: Fake sans,serif,monospace in the list of fonts. * pango/pangoft2-fontmap.c: Fake aliases here as well.
* Add a implementation of strtok_r (copied from glibc) for machines thatOwen Taylor2002-05-139-19/+120
| | | | | | | | | | | | Mon May 13 14:58:12 2002 Owen Taylor <otaylor@redhat.com> * pango/pangox.c configure.in: Add a implementation of strtok_r (copied from glibc) for machines that don't have it. (#79472, Jacob Berkman.) * pango/querymodules.c: Use printf() rather than g_print, since we don't want encoding conversion. (#77341)
* Add compatibility defines for changes in FreeType 2.1.0.Owen Taylor2002-04-237-2/+67
| | | | | | | Tue Apr 23 16:15:07 2002 Owen Taylor <otaylor@redhat.com> * pango/opentype/fterrcompat.h: Add compatibility defines for changes in FreeType 2.1.0.
* Fix typo. (#79574)Owen Taylor2002-04-238-362/+25
| | | | | | Tue Apr 23 15:20:33 2002 Owen Taylor <otaylor@redhat.com> * README: Fix typo. (#79574)
* Released 1.0.1pango-1-0-branchpointPANGO_1_0_1Owen Taylor2002-03-289-3/+67
| | | | | | | | | | Wed Mar 27 19:30:35 2002 Owen Taylor <otaylor@redhat.com> * Released 1.0.1 * NEWS: Updates. * configure.in: Version 1.0.1, interface, binary age 1.
* ue Mar 26 18:22:07 2002 Owen Taylor <otaylor@redhat.com>Owen Taylor2002-03-2613-72/+84
| | | | | | | | * modules/basic/basic-*.c modules/basic/basic-common.h: Move ZERO_WIDTH_CHAR() macro into a common header file, add ZERO WIDTH-NO BREAK SPACE (U+FEFF) * modules/basic/Makefile.am (EXTRA_DIST): Add basic-common.h.
* Free pattern after using it.Alex Larsson2002-03-267-3/+39
| | | | | | | 2002-03-26 Alex Larsson <alexl@redhat.com> * pango/pangoft2-fontmap.c (pango_ft2_font_map_load_font): Free pattern after using it.
* pango/pangoft2-private.h calculate average_char_width andSven Neumann2002-03-2610-26/+232
| | | | | | | | | | | | | 2002-03-26 Sven Neumann <sven@gimp.org> * pango/pangoft2-private.h * pango/pangoft2.c (pango_ft2_font_get_metrics): calculate average_char_width and average_digit_width by measuring sample layouts and cache font metrics per language just like PangoX does, #53425. * pango/pangoxft-font.c * pango/pangoxft-private.h: the same approach for average_char_width and average_digit_width as in PangoFT2, #53425.
* Remove warning about opening modules file... in some cases (includedOwen Taylor2002-03-257-9/+55
| | | | | | | | | | Mon Mar 25 15:53:17 2002 Owen Taylor <otaylor@redhat.com> * pango/modules.c (read_modules): Remove warning about opening modules file... in some cases (included modules) it isn't needed, and the warning about no modules that was added recently should let people know what is going on. (#73834, Arnaud Charlet)
* Convert U+00A0 (NON BREAK SPACE) to U+0020 (SPACE)Owen Taylor2002-03-2511-19/+71
| | | | | | | | | | Mon Mar 25 15:46:54 2002 Owen Taylor <otaylor@redhat.com> * modules/basic/basic-*.c: Convert U+00A0 (NON BREAK SPACE) to U+0020 (SPACE) * modules/basic/basic-xft.c (basic_engine_shape): Remove some dead code.
* Set the right font when computing the average digit width.Owen Taylor2002-03-257-5/+39
| | | | | | | Mon Mar 25 15:31:17 2002 Owen Taylor <otaylor@redhat.com> * pango/pangowin32.c (pango_win32_font_get_metrics): Set the right font when computing the average digit width.
* Rewrite average_digit_width computation to go through the same shapingOwen Taylor2002-03-259-112/+244
| | | | | | | | | | | | | | | | | Mon Mar 25 14:52:29 2002 Owen Taylor <otaylor@redhat.com> * pango/pangox.c (pango_x_font_get_metrics): Rewrite average_digit_width computation to go through the same shaping hack as the average_char_width code. (Part of #53425) * pango/pangox.c (pango_x_font_describe): Implement except for results of pango_x_font_load(). * pango/pangox.c (pango_x_load_font): Document as "don't use". * pango/pangox.[ch] (pango_x_load_font): Add missing const.
* this function may never return NULL, so we shouldn't say so in theSven Neumann2002-03-257-2/+31
| | | | | | | 2002-03-25 Sven Neumann <sven@gimp.org> * pango/fonts.c (pango_font_description_from_string): this function may never return NULL, so we shouldn't say so in the comment.
* Add an informative warning if no modules at all were found. (#74982,Owen Taylor2002-03-207-0/+56
| | | | | | | | Wed Mar 20 18:40:34 2002 Owen Taylor <otaylor@redhat.com> * pango/modules.c (build_map): Add an informative warning if no modules at all were found. (#74982, suggestion from Dan Winship.)
* Error out if no backends found. (#74880)Owen Taylor2002-03-207-0/+35
| | | | | | Wed Mar 20 15:22:54 2002 Owen Taylor <otaylor@redhat.com> * configure.in: Error out if no backends found. (#74880)
* Dummy-initialize gsize variable to 0, not -1. (#73899, Erwann Chenede)Owen Taylor2002-03-207-1/+31
| | | | | | | Wed Mar 20 15:14:15 2002 Owen Taylor <otaylor@redhat.com> * pango/pango-markup.c (text_handler): Dummy-initialize gsize variable to 0, not -1. (#73899, Erwann Chenede)
* When loading an iconv converter fails, recover gracefully and warn ratherOwen Taylor2002-03-209-40/+78
| | | | | | | | | Wed Mar 20 14:57:48 2002 Owen Taylor <otaylor@redhat.com> * modules/basic/basic-x.c modules/basic/tables-{big,small}.i: When loading an iconv converter fails, recover gracefully and warn rather than aborting. (#73861, report about problems on IRIX from Soeren Sandmann)
* Enabled ksc5601 fonts in the Hangul compatibility jamos, the CJK unifiedChangwoo Ryu2002-03-187-1265/+1313
| | | | | | * modules/basic/tables-big.i: Enabled ksc5601 fonts in the Hangul compatibility jamos, the CJK unified ideographs, and the CJK compatibility ideographs areas.
* Add pango_win32_os_version_info variable, an OSVERSIONINFO struct.Tor Lillqvist2002-03-1710-4/+132
| | | | | | | | | | | | | | | | | 2002-03-17 Tor Lillqvist <tml@iki.fi> * pango/pangowin32-private.h: Add pango_win32_os_version_info variable, an OSVERSIONINFO struct. * pango/pangowin32.c: Initialise it. * pango/pangowin32.h: Set _WIN32_WINNT to 0x0501 before including <windows.h> to get the ClearType-related macros defined (if recent enough headers are used). * pango/pangowin32-fontcache.c (pango_win32_font_cache_load): Set desired font quality to CLEARTYPE_QUALITY if on XP (or later), and the system settings ask for ClearType.
* use CFLAGS from gthread-2.0 to assure pango behaves correctly in aSven Neumann2002-03-167-0/+32
| | | | | | | 2002-03-16 Sven Neumann <sven@gimp.org> * configure.in (GLIB_CFLAGS): use CFLAGS from gthread-2.0 to assure pango behaves correctly in a threaded environment.
* Move pre-1.0 ChangeLog asideOwen Taylor2002-03-157-31323/+0
|
* Prefer ksc5601 fonts to unicode fonts for "ko" locales.Owen Taylor2002-03-158-1/+37
| | | | | | | Fri Mar 15 12:25:26 2002 Owen Taylor <otaylor@redhat.com> * modules/basic/tables-big.i: Prefer ksc5601 fonts to unicode fonts for "ko" locales.
* In Load_ChainContextSubst2, handle the case where an empty classOwen Taylor2002-03-1512-191/+404
| | | | | | | | | | | | | | | | Fri Mar 15 01:35:56 2002 Owen Taylor <otaylor@redhat.com> * pango/opentype/ftxgsub.c pango/opentype/ftxopen.c pango/opentype/ftxopenf.h: In Load_ChainContextSubst2, handle the case where an empty class definition is represented by an offset of 0. * pango/opentype/ftxgpos.c: Same for Load_ChainContextPos2. * pango/opentype/{ftxopen.c,ftxgpos.c,ftxgsub.c,ftgdef.c}: Fix pervasive bug where on cleanups on failure of loading an array element, all array elements were freed, not just the ones that had been succesfully loaded.
* Uncomment GPOS parts.Owen Taylor2002-03-159-12/+203
| | | | | | | | | Thu Mar 14 23:05:18 2002 Owen Taylor <otaylor@redhat.com> * pango/opentype/ftxopen.c: Uncomment GPOS parts. * pango/opentype/disasm.c: Start adding some GPOS dumping.
* shut up cvsManish Singh2002-03-151-0/+1
|
* Check for FT_Get_First_Char from FreeType-2.0.9.Owen Taylor2002-03-1510-15/+100
| | | | | | | | | | Thu Mar 14 20:28:59 2002 Owen Taylor <otaylor@redhat.com> * configure.in: Check for FT_Get_First_Char from FreeType-2.0.9. * pango/pangoft2.c pango/pangoxft-font.c: Use FT_Get_First_Char/Get_Next_Char to accelerate coverage calculation.
* Remove moc_view-qt.cc. (#74725)Owen Taylor2002-03-159-12/+55
| | | | | | Thu Mar 14 20:02:58 2002 Owen Taylor <otaylor@redhat.com> * examples/Makefile.am (EXTRA_DIST): Remove moc_view-qt.cc. (#74725)
* Fix typo when computing maximums of sub-byte fields. (Stefan Israelsson,Owen Taylor2002-03-138-2/+44
| | | | | | | | Wed Mar 13 10:31:07 2002 Owen Taylor <otaylor@redhat.com> * pango/pango-coverage.c (pango_coverage_max): Fix typo when computing maximums of sub-byte fields. (Stefan Israelsson, #74518)
* Minor doc edits.Matthias Clasen2002-03-1213-20/+124
| | | | | | | | | | | | | * pango/pangowin32-fontcache.c, pango/pangox-fontcache.c: Minor doc edits. * docs/tmpl/win32-fonts.sgml: Document PangoWin32FontCache. * docs/tmpl/x-fonts.sgml: Document PangoXFontCache. * docs/tmpl/glyphs.sgml: Document PangoGlyphInfo. * docs/tmpl/opentype.sgml: Document PangoOTInfo, PangoOTTag, PangoOTTableType.
* hu Mar 7 22:55:13 2002 Owen Taylor <otaylor@redhat.com>PANGO_1_0_0Owen Taylor2002-03-0810-19/+143
| | | | | | | | ===== Released 1.0.0 ===== * NEWS: Final updates for 1.0.0. * README AUTHORS: Update.
* pass --enable-gtk-doc to configurejacob berkman2002-03-078-1/+29
| | | | | | 2002-03-07 jacob berkman <jacob@ximian.com> * autogen.sh: pass --enable-gtk-doc to configure
* Use PANGO_MODULE_VERSION in modules path.Tor Lillqvist2002-03-078-1/+15
| | | | | | 2002-03-08 Tor Lillqvist <tml@iki.fi> * pango-zip.sh.in: Use PANGO_MODULE_VERSION in modules path.
* Add the pango_ot_* symbols from the static libpango-ot library.Tor Lillqvist2002-03-078-0/+45
| | | | | | | 2002-03-08 Tor Lillqvist <tml@iki.fi> * pango/pangoft2.def: Add the pango_ot_* symbols from the static libpango-ot library.
* As we do in other modules, default to --disable-gtk-doc, and run the checkOwen Taylor2002-03-078-2/+51
| | | | | | | | | Thu Mar 7 14:42:50 2002 Owen Taylor <otaylor@redhat.com> * 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)
* Fix some problems with setting library variables forOwen Taylor2002-03-078-1/+43
| | | | | | | | Thu Mar 7 10:51:16 2002 Owen Taylor <otaylor@redhat.com> * configure.in: Fix some problems with setting library variables for --enable-explicit-deps. (Laszlo Peter, #73851)
* RC2 changelog entryPANGO_1_0_0_RC2Owen Taylor2002-03-067-0/+28
|
* Add some text names to weight map for weights that were added to theOwen Taylor2002-03-068-2/+47
| | | | | | | | Wed Mar 6 12:12:21 2002 Owen Taylor <otaylor@redhat.com> * 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)
* install-exec-hook should always exist, because the automake rules assumeManish Singh2002-03-068-1/+50
| | | | | | | | | 2002-03-06 Manish Singh <yosh@gimp.org> * 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.
* Fix problem where == was used instead if =. (#73694, Martin Gansser)Owen Taylor2002-03-0620-42/+188
| | | | | | | | | | | | | | | | | | | | | | | Wed Mar 6 11:43:46 2002 Owen Taylor <otaylor@redhat.com> * 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.
* Pango 1.0.0 rc1.PANGO_1_0_0_RC1Owen Taylor2002-03-068-1/+50
| | | | | | | | | Tue Mar 5 21:39:37 2002 Owen Taylor <otaylor@redhat.com> * Pango 1.0.0 rc1. * pango/Makefile.am: Use install-exec-hook not install-exec-local when running sanitize-la.sh.
* Ignore return status from for loop, in case the last test -f happens toTor Lillqvist2002-03-068-1/+29
| | | | | | | | 2002-03-06 Tor Lillqvist <tml@iki.fi> * 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.
* Use pangoft2_export_symbols, not pangowin32_export_symbols.Tor Lillqvist2002-03-0612-35/+119
| | | | | | | | | | | | | | 2002-03-06 Tor Lillqvist <tml@iki.fi> * 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.
* require GLIB 2.0.0 at minimumManish Singh2002-03-058-1/+29
| | | | | | 2002-03-05 Manish Singh <yosh@gimp.org> * configure.in: require GLIB 2.0.0 at minimum
* more $(PANGO_API_VERSION) fixingjacob berkman2002-03-058-2/+37
| | | | | | | 2002-03-05 jacob berkman <jacob@ximian.com> * tests/Makefile.am (*boundaries_LDADD): more $(PANGO_API_VERSION) fixing
* Fix pangoxft-$(PANGO_API_VERSION). (Reported by Manish Singh.)Owen Taylor2002-03-0514-7/+42
| | | | | | | Tue Mar 5 15:41:17 2002 Owen Taylor <otaylor@redhat.com> * modules/*/Makefile.am: Fix pangoxft-$(PANGO_API_VERSION). (Reported by Manish Singh.)