summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2005-02-03 21:20:42 +0000
committerOwen Taylor <otaylor@src.gnome.org>2005-02-03 21:20:42 +0000
commitf31d96cadb2e463759de8de51036882ac1342bde (patch)
tree366e03a5bf0d9313cba666d0186d1cb554ef9d4f
parent7782bba2c87b79bff8fa4e62ed84b95b74574617 (diff)
downloadpango-f31d96cadb2e463759de8de51036882ac1342bde.tar.gz
Bump to 1.9.0.
2005-02-03 Owen Taylor <otaylor@redhat.com> * configure.in: Bump to 1.9.0. * pango/pangofc-fontmap.h: Document PangoFcFontMap.create_font()
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-1-106
-rw-r--r--configure.in2
-rw-r--r--pango/pangofc-fontmap.h11
4 files changed, 22 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8dea16f5..e22d70d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2005-02-03 Owen Taylor <otaylor@redhat.com>
+ * configure.in: Bump to 1.9.0.
+
+ * pango/pangofc-fontmap.h: Document PangoFcFontMap.create_font()
+
+2005-02-03 Owen Taylor <otaylor@redhat.com>
+
* examples/cairosimple.c: Open the file with mode "wb", include
cairo-png.h.
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index 8dea16f5..e22d70d2 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,5 +1,11 @@
2005-02-03 Owen Taylor <otaylor@redhat.com>
+ * configure.in: Bump to 1.9.0.
+
+ * pango/pangofc-fontmap.h: Document PangoFcFontMap.create_font()
+
+2005-02-03 Owen Taylor <otaylor@redhat.com>
+
* examples/cairosimple.c: Open the file with mode "wb", include
cairo-png.h.
diff --git a/configure.in b/configure.in
index d5adf9e7..b62ad658 100644
--- a/configure.in
+++ b/configure.in
@@ -21,7 +21,7 @@ dnl
dnl The triplet
m4_define([pango_major_version], [1])
-m4_define([pango_minor_version], [8])
+m4_define([pango_minor_version], [9])
m4_define([pango_micro_version], [0])
m4_define([pango_version],
[pango_major_version.pango_minor_version.pango_micro_version])
diff --git a/pango/pangofc-fontmap.h b/pango/pangofc-fontmap.h
index 925a1467..3cc87512 100644
--- a/pango/pangofc-fontmap.h
+++ b/pango/pangofc-fontmap.h
@@ -67,12 +67,19 @@ struct _PangoFcFontMap
* @new_font: Creates a new #PangoFcFont for the specified
* pattern of the appropriate type for this font map. The
* @pattern argument must be passed to the "pattern" property
- * of #PangoFcFont when you call g_object_new()
+ * of #PangoFcFont when you call g_object_new(). Deprecated
+ * in favor of @create_font().
* @get_render_key: Given a context and font description,
* calculate a "key" of X and Y sizes and a flags word
* that can be used to hash the results of loading a font
* with that information. If %NULL, a default implementation
- is used.
+ * is used.
+ * @create_font: Creates a new #PangoFcFont for the specified
+ * pattern of the appropriate type for this font map using
+ * information from the context that is passed in. The
+ * @pattern argument must be passed to the "pattern" property
+ * of #PangoFcFont when you call g_object_new(). Deprecated
+ * in favor of @create_font(). If %NULL, new_font() is used.
*
* Class structure for #PangoFcFontMap.
**/