12016-07-19  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>
2
3	Build: Fix silent builds
4
5	* configure.ac: Pass yes to AM_SILENT_RULES, thus enabling silent builds.
6	Replace MM_AX_CXX_COMPILE_STDCXX_11 by MM_AX_CXX_COMPILE_STDCXX (not necessary
7	for silent builds).
8	* docs/reference/Doxyfile.in: Set QUIET=YES.
9	Update for doxygen 1.8.11 (not necessary for silent builds).
10	Bug #768797
11
122016-04-10  Murray Cumming  <murrayc@murrayc.com>
13
14	C++11: AttrIter, AttrList, Color: Make operator bool() explicit.
15
16	See https://bugzilla.gnome.org/show_bug.cgi?id=626858#c4
17
182016-03-28  Murray Cumming  <murrayc@murrayc.com>
19
20	2.40
21
222016-03-28  Murray Cumming  <murrayc@murrayc.com>
23
24	Regenerate docs.xml files.
25
262016-03-28  Murray Cumming  <murrayc@murrayc.com>
27
28	Regenerate .defs.
29
302016-03-28  Murray Cumming  <murrayc@murrayc.com>
31
32	Depend on latest glibmm-2.4
33
34	To use the latest gmmproc.
35
362015-11-29  Murray Cumming  <murrayc@murrayc.com>
37
38	2.39.1
39
402015-11-29  Murray Cumming  <murrayc@murrayc.com>
41
42	Depend on a recent glibmm
43
44	To use the latest gmmproc.
45
462015-11-29  Murray Cumming  <murrayc@murrayc.com>
47
48	Renderer: Add get/set_alpha().
49
50	Wrapping pango_renderer_get/set_alpha(), which is new API
51	in pango 1.38.
52
532015-11-29  Murray Cumming  <murrayc@murrayc.com>
54
55	Attributes: Add create_attr_foreground/background_alpha().
56
57	Wrapping new API in pango.
58
592015-11-29  Murray Cumming  <murrayc@murrayc.com>
60
61	Regenerate docs.xml file.
62
632015-11-29  Murray Cumming  <murrayc@murrayc.com>
64
65	Regenerate .defs files.
66
672015-10-27  Murray Cumming  <murrayc@murrayc.com>
68
69	--enable-warnings=fatal: Use the same warnings as glibmm and gtkmm.
70
712015-09-23  Murray Cumming  <murrayc@murrayc.com>
72
73	Reduce the cairomm dependency back to 1.2.2.
74
75	Because it probably works, and this is kinder.
76	Bug #755460 (Daniel Stone)
77
782015-09-22  Murray Cumming  <murrayc@murrayc.com>
79
80	2.38.1
81
822015-09-21  Murray Cumming  <murrayc@murrayc.com>
83
84	2.38.0
85
862015-09-17  Chun-wei Fan  <fanchunwei@src.gnome.org>
87
88	Update .gitignore for MSVC-specific Items
89
902015-09-10  Chun-wei Fan  <fanchunwei@src.gnome.org>
91
92	MSVC Builds: Improve Build Speed and Debugging Experience
93
94	Use multiprocessor compilation, which can cut down build times by quite a
95	bit, and use /d2Zi+ to put more useful info into the .pdb's in release
96	builds.
97
982015-09-10  Chun-wei Fan  <fanchunwei@src.gnome.org>
99
100	MSVC Builds: Support only Visual Studio 2013 (and later)
101
102	The current pangomm code base now requires C++-11 support, which is only
103	supported well enough by Visual Studio 2013 and later, so:
104
105	-Update the Visaul Studio 2010 projects to be in 2013 format, and rename
106	things as needed.
107	-Remove the Visual Studio 2005/2008 projects
108	-Update the README.win32 file to reflect on these changes.
109
1102015-09-03  Murray Cumming  <murrayc@murrayc.com>
111
112	2.37.2
113
1142015-08-22  Murray Cumming  <murrayc@murrayc.com>
115
116	configure.ac: Require the latest glibmm.
117
118	To use the latest gmmproc, which generates more move operations,
119	and to have the latest Glib::Object/ObjectBase/Interface which have
120	move operations that those generated move operations call.
121
1222015-08-22  Murray Cumming  <murrayc@murrayc.com>
123
124	C++11: Mark all _CLASS_OPAQUE_REFCOUNTED classes as final.
125
126	Because _CLASS_OPAQUE_REFCOUNTED already generates a comment
127	telling us not to derive from them, presumably because they can
128	only be instantiated by reinterpret_cast<>ing a base C struct.
129
130	Ideally, _CLASS_OPAQUE_REFCOUNTED would add the final keyword,
131	but the class line is is not generated, so that would be a little
132	difficult.
133
1342015-07-15  Murray Cumming  <murrayc@murrayc.com>
135
136	2.37.1
137
1382015-07-15  Murray Cumming  <murrayc@murrayc.com>
139
140	Regenerate pango_docs.xml
141
1422015-07-15  Murray Cumming  <murrayc@murrayc.com>
143
144	Regenerate pango_methods.defs.
145
1462015-07-15  Murray Cumming  <murrayc@murrayc.com>
147
148	Regenerate pango_enums.defs
149
1502015-07-15  Murray Cumming  <murrayc@murrayc.com>
151
152	Require the latest glibmm.
153
154	For the latest gmmproc.
155
1562015-07-15  Murray Cumming  <murrayc@murrayc.com>
157
158	configure.ac: Use MM_AX_CXX_COMPILE_STDCXX_11() from mm-common.
159
160	Instead of a copy of AX_CXX_COMPILE_STDCXX_11().
161
1622015-07-11  Murray Cumming  <murrayc@murrayc.com>
163
164	Require C++11.
165
166	configure.ac: Use AX_CXX_COMPILE_STDCXX_11 to check for compiler
167	support for C++11 and use it (--std=c++11 for current versions of
168	g++).
169
170	Among other reasons, this is because glibmm now requires C++11,
171	and its gmmrpoc generates C++11 code.
172
1732015-06-30  Maks Naumov  <maksqwe1@ukr.net>
174
175	Attribute: fix operator!=
176
177	Bug #751531
178
1792015-03-24  Murray Cumming  <murrayc@murrayc.com>
180
181	2.36.0
182
1832015-02-04  Murray Cumming  <murrayc@murrayc.com>
184
185	1.35.1
186
1872015-02-04  Murray Cumming  <murrayc@murrayc.com>
188
189	FontMap: Added get_serial().
190
1912015-02-04  Murray Cumming  <murrayc@murrayc.com>
192
193	Context: Add get_serial().
194
1952015-02-04  Murray Cumming  <murrayc@murrayc.com>
196
197	Layout: Add get_character_count() and get_serial().
198
1992015-02-04  Murray Cumming  <murrayc@murrayc.com>
200
201	Doxyfile: Make this more like the latest Doxyfile.in in gtkmm.
202
203	Just to make sure that we are consistent.
204
2052015-02-04  Murray Cumming  <murrayc@murrayc.com>
206
207	Doxyfile: Remove obsolete (according to doxygen warnings) lines.
208
2092015-02-04  Murray Cumming  <murrayc@murrayc.com>
210
211	Regenerate _docs.xml file.
212
2132015-02-04  Murray Cumming  <murrayc@murrayc.com>
214
215	Regenerate methods .defs file.
216
2172015-02-04  Murray Cumming  <murrayc@murrayc.com>
218
219	Regenerate enums .defs file.
220
2212015-02-04  Murray Cumming  <murrayc@murrayc.com>
222
223	tools/: Add gen_scripts/, as in glibmm and gtkmm.
224
225	This makes it easier to regenerate the .defs and _docs.xml files.
226
2272014-09-22  Chun-wei Fan  <fanchunwei@src.gnome.org>
228
229	MSVC 2008/2010 Projects: Add "Install" Projects
230
231	This adds "install" projects for Visual Studio 2008/2010 builds so that the
232	build results can be copied to a common directory together with the
233	dependencies, so that testing and packaging will be made easier.
234
235	* MSVC_Net2008/pangomm-install.vsprops:
236	* MSVC_Net2008/install.vcproj:
237	* MSVC_Net2010/pangomm-install.props:
238	* MSVC_Net2010/install.vcxproj: Add MSVC projects and property sheets to
239	copy build results to a common directory under the root build directory.
240	* MSVC_Net2008/pangomm.sln:
241	* MSVC_Net2010/pangomm.sln: Include the "install" project in the build
242	process.
243	* MSVC_Net2008/filelist.am:
244	* MSVC_Net2010/filelist.am: Include the added projects and property sheets
245	in dist.
246
2472014-09-18  Chun-wei Fan  <fanchunwei@src.gnome.org>
248
249	Overhaul The Visual Studio 2010 Projects
250
251	Give the Visual Studio 2010 Projects an overhaul, by using property sheets
252	to consolidate commonly-used items, and moving all the projects to
253	MSVC_Net2010.  Also stop using the /vd2 compile-time option, as it is more
254	harm than help here, since it causes weird crashes.
255
256	* MSVC_Net2010/pangomm-build-defines.props:
257	* MSVC_Net2010/pangomm-version-paths.props: Add property sheet
258	sheets to consolidate commonly-used items items so that projects
259	can refer to them, which will help to simplify future
260	maintenance.
261	* MSVC_Net2010/gendef/gendef.vcxproj:
262	* MSVC_Net2010/gendef/gendef.vcxproj.filters:
263	* MSVC_Net2010/gendef/pangomm.vcxproj:
264	* MSVC_Net2010/gendef/pangomm.vcxproj.filters: Move to
265	MSVC_Net2010/, and clean up using the property sheets.  Adjust
266	the source file paths accordingly, and remove the /vd2 compile-
267	time option as it brings more trouble than help.  Add
268	PlatformToolset tags so to ease future move to Visual Studio
269	2012/2013.
270	* MSVC_Net2010/filelist.am:
271	* MSVC_Net2010/pangomm.sln: Update file paths accordingly.
272
2732014-09-17  Chun-wei Fan  <fanchunwei@src.gnome.org>
274
275	Overhaul the Visual Studio 2008 Projects
276
277	Give the Visual Studio 2008 Projects an overhaul, and clean them up in the
278	process by consolidating commonly-used items in property sheets, so to ease
279	future maintenance.
280
281	* MSVC_Net2008/pangomm-build-defines.vsprops:
282	* MSVC_Net2008/pangomm-version-paths.vsprops: Add property sheets
283	to group together commonly-used items so that the projects can
284	refer to them, so to ease future maintenance.
285	* MSVC_Net2008/pangomm/pangomm.vcproj:
286	* MSVC_Net2008/gendef/gendef.vcproj: Move to MSVC_Net2008/ and
287	clean up using the property sheets, and update the file paths
288	accordingly.  Stop building blank.cpp, as the IDE recognize the
289	.cc sources, and stop using the /vd2 option, as it is a source
290	of weird crashes.
291	* MSVC_Net2008/pangomm.sln:
292	MSVC_Net2008/filelist.am: Update file paths accordingly.
293
2942014-08-01  Andre Klapper  <a9016009@gmx.de>
295
296	doap: add <programming-language>
297
2982014-07-30  Olav Vitters  <olav@vitters.nl>
299
300	doap category core
301
3022013-09-09  Chun-wei Fan  <fanchunwei@src.gnome.org>
303
304	Update the MSVC Project Files
305
306	* MSVC_Net2005/gendef/gendef.vcproj:
307	MSVC_Net2008/gendef/gendef.vcproj:
308	MSVC_Net2010/gendef/gendef.vcxproj:
309	MSVC_Net2005/pangomm/pangomm.vcproj:
310	MSVC_Net2008/pangomm/pangomm.vcproj:
311	MSVC_Net2010/pangomm/pangomm.vcxproj: Clean up the project files by
312	purging unneeded entries, macros and whitespace.
313
314	Also improve on the project files by adding to the
315	AdditionalIncludeDirectories and AdditionalLibraryDirectories so that
316	they can find and use the deps from a local build directory instead
317	of using builds in the global include and libs path.  This is useful when
318	we are building an unstable release as unstable releases usually require
319	the latest unstable releases of their respective deps, which we do not
320	usually want to place where they are used globally.
321
3222013-09-09  Chun-wei Fan  <fanchunwei@src.gnome.org>
323
324	MSVC Solution Files: Use DOS Line Endings
325
326	* MSVC_Net2010/pangomm.sln: Use DOS/Windows line endings as Visual
327	Studio expects .sln files to have DOS/Windows line endings in order to
328	determine the Visual Studio version to use to open the .sln files.
329
3302013-07-03  José Alburquerque  <jaalburquerque@gmail.com>
331
332	Move to a generated ChangeLog.
333
3342013-07-02  José Alburquerque  <jaalburquerque@gmail.com>
335
336	Auto-generate the ChangeLog from the git log for 'make dist'.
337
338	* Makefile.am: Include the dist-changelog.am file copied in build/
339	from mm-common so that the ChangeLog is automatically generated from
340	the git commit messages on 'make dist'.
341
3422013-04-24  Murray Cumming  <murrayc@murrayc.com>
343
344	2.34.0
345
3462012-10-26  José Alburquerque  <jaalburqu@svn.gnome.org>
347
348	Remove the use of g_type_init() because it has been deprecated.
349
350	* tools/extra_defs_gen/generate_defs_pango.cc: The docs for the
351	function says that the GType system is initialized automatically now
352	as of glib-2.36.
353
3542011-10-26  Murray Cumming  <murrayc@murrayc.com>
355
356	2.28.4
357
3582011-10-25  Murray Cumming  <murrayc@murrayc.com>
359
360	Add #includes needed with the latest glibmm.
361
362	* pango/src/attributes.ccg:
363	* pango/src/attributes.hg:
364	* pango/src/color.hg:
365	* pango/src/fontdescription.hg:
366	* pango/src/fontface.hg:
367	* pango/src/fontmetrics.hg:
368	* pango/src/fontset.ccg:
369	* pango/src/item.hg:
370	* pango/src/language.hg:
371	* pango/src/layoutline.hg: Add individual includes now that gmmproc does not
372	add #include glibmm.h at the top of every generated header.
373
3742011-09-27  Murray Cumming  <murrayc@murrayc.com>
375
376	2.28.3
377
3782011-09-22  Krzesimir Nowak  <qdlacz@gmail.com>
379
380	Don't use obsolete macros.
381
382	* autogen.sh: Warn about everything during autoreconf.
383	* configure.ac: Replaced obsolete macros with their modern counterparts.
384
3852011-08-31  Frédéric Péters  <fpeters@0d.be>
386
387	ship convert_pangomm.m4 in tarballs
388
389	https://bugzilla.gnome.org/show_bug.cgi?id=657817
390
3912011-05-24  Olav Vitters  <olav@vitters.nl>
392
393	Use tar-ustar instead of tar-pax to ensure OpenBSD compatibility
394
3952011-03-30  Murray Cumming  <murrayc@murrayc.com>
396
397	2.28.2
398
3992011-03-30  Murray Cumming  <murrayc@murrayc.com>
400
401	Use the latest mm-common.
402
403	* configure.ac: Require the latest version.
404	* doc/Makefile.am: Don't specify the mm-common .pl files to distribute
405	because mm-common now does this automatically.
406
4072011-03-26  Kalev Lember  <kalev@smartlink.ee>
408
409	Install the m4 files without --enable-maintainer-mode
410
411	* Makefile.am: Install the convert.m4 files even if we aren't in
412	maintainer mode; this makes sure distro packages pick up the files.
413
4142011-03-25  Murray Cumming  <murrayc@murrayc.com>
415
416	2.28.1
417
4182011-03-25  Murray Cumming  <murrayc@murrayc.com>
419
420	Avoid a tarball dependency on mm-common.
421
422	* configure.ac: Add a call to MM_CONFIG_DOCTOOL_DIR() telling it to
423	copy the files locally and use them from there.
424	* docs/Makefile.am: Dist the copied files, so that the build does not
425	try to use the versions installed by mm-common.
426
4272011-03-23  Murray Cumming  <murrayc@murrayc.com>
428
429	2.28.0
430
4312011-01-08  Murray Cumming  <murrayc@murrayc.com>
432
433	2.27.1
434
4352011-01-08  Murray Cumming  <murrayc@murrayc.com>
436
437	Added missing file
438
4392011-01-08  Murray Cumming  <murrayc@murrayc.com>
440
441	LayoutIter: Wrap this as a boxed type, which needs less code.
442
443	* pango/src/layoutiter.[hg|ccg]: PangoLayoutIter became a boxed type at some
444	point, with a pango_layout_iter_copy() function, so we can now wrap it
445	normally without so much hand-coding. This also adds a copy constructor.
446	* pango/src/layout.ccg: get_iter(): Use the LayoutIter copy constructor
447	instead of the crappy old assign_gobj() function. Also deprecate this
448	method, adding a get_iter(void), now that the copy constructor allows us to
449	use LayoutIter as a return type.
450
4512011-01-08  Murray Cumming  <murrayc@murrayc.com>
452
453	Improve the generated API documentation.
454
455	* pango/src/pango_methods.defs: Regenerated with h2defs.py
456	* pango/src/pango_extra_objects.defs: Added some object definitions to help
457	the documentation generator, avoiding warnings about not being able to
458	transform C function names into C++ function names. I did the same thing in
459	gtkmm a few months ago.
460	* pango/src/filelist.am: Mention the new files.
461	* pango/src/pango.defs: Include the new file.
462
4632011-01-08  Murray Cumming  <murrayc@murrayc.com>
464
465	Added conversions used by gtkmm.
466
467	* tools/m4/convert_pango.m4: Added the extra conversions that were in the
468	gtkmm copy of this file. They will probably be needed by other modules so
469	it makes sense to keep them to here to avoid duplication.
470
4712011-01-07  Murray Cumming  <murrayc@murrayc.com>
472
473	Allow other modules to use the m4 files.
474
475	* codegen/Makefile.am: Install the m4 files, like gtkmm installs its files.
476	* pango/pangomm.pc.in: Add the gmmproc4mdir variable so that other modules such
477	as gtkmm and cluttermm can get the path to the m4 file, to avoid
478	duplicating its contents.
479
4802011-01-07  Murray Cumming  <murrayc@murrayc.com>
481
482	Fix the build with --enable-warnings=fatal.
483
484	* configure.ac: Add no-long-long to avoid a warning caused by a newer glib.
485	Also avoid use of deprecated GLIBMM API and make sure that GSEAL is defined.
486
4872010-12-09  Murray Cumming  <murrayc@murrayc.com>
488
489	Include convert_glibmm.m4 instead of convert_gtkmm.m4.
490
491	* tools/m4/convert.m4: Inlcude convert_glibmm.m4, just added to glibmm,
492	instead of convert_gtkmm.m4, which glibmm no longer provides.
493	Also include convert_pangomm.m4 - we probably used the copy in glibmm until
494	now.
495
4962010-10-01  Armin Burgmeier  <armin@arbur.net>
497
498	Add support for MSVC 2010 and 64 bit to MSVC project files
499
5002010-09-30  Armin Burgmeier  <armin@arbur.net>
501
502	* MSVC_Net2005/gendef/gendef.vcproj:
503	* MSVC_Net2005/pangomm.sln:
504	* MSVC_Net2005/pangomm/pangomm.vcproj:
505	* MSVC_Net2008/gendef/gendef.vcproj:
506	* MSVC_Net2008/pangomm.sln:
507	* MSVC_Net2008/pangomm/pangomm.vcproj:
508	* MSVC_Net2010/filelist.am:
509	* MSVC_Net2010/gendef/gendef.cc:
510	* MSVC_Net2010/gendef/gendef.vcxproj:
511	* MSVC_Net2010/gendef/gendef.vcxproj.filters:
512	* MSVC_Net2010/pangomm.sln:
513	* MSVC_Net2010/pangomm/pangomm.rc.in:
514	* MSVC_Net2010/pangomm/pangomm.vcxproj:
515	* MSVC_Net2010/pangomm/pangomm.vcxproj.filters:
516	* Makefile.am:
517	* configure.ac: Add support for MSVC 2010 and 64 bit.
518
5192010-06-06  Murray Cumming  <murrayc@murrayc.com>
520
521	Remove unused file.
522
5232010-05-04  Murray Cumming  <murrayc@murrayc.com>
524
525	2.26.2
526
5272010-05-04  Murray Cumming  <murrayc@murrayc.com>
528
529	Documentation: Main page: Improve, linking to class and correcting pkg-config
530
531	* pango/pangomm.h: Simplify the text, improving the link, and link to
532	Pango::Layout as a starting point. Correct the pkg-config check from pangomm
533	to pangomm-1.4.
534
5352010-04-27  David King  <davidk@openismus.com>
536
537	Update link formatting in main page of documentation
538
539	* pango/pangomm.h: Add link text to Pango link.
540
5412010-04-23  David King  <davidk@openismus.com>
542
543	Add main page to Doxygen documentation
544
545	* docs/Makefile.am: Parse pango/pangomm.h for documentation.
546	* pango/pangomm.h: Add main page to Doxygen documentation.
547
5482010-04-18  Olav Vitters  <olav@vitters.nl>
549
550	Fix doap file
551
5522010-04-16  Murray Cumming  <murrayc@murrayc.com>
553
554	2.26.1
555
5562010-04-16  Murray Cumming  <murrayc@murrayc.com>
557
558	Regenerated C documentation XML.
559
560	* pango/src/pango_docs.xml: Regenerated with the improved docextract_to_xml.py.
561
5622010-03-17  Murray Cumming  <murrayc@murrayc.com>
563
564	Regenerated pango function .defs.
565
566	* pango/src/pango_methods.defs: Regnerated with h2defs.py thought there is
567	no significant change.
568
5692009-09-21  Murray Cumming  <murrayc@murrayc.com>
570
571	2.26.0
572
5732009-09-19  Daniel Elstner  <daniel.kitta@gmail.com>
574
575	Support Automake silent rules
576
577	* configure.ac: Call the AM_SILENT_RULES macro if it is defined.
578	(AM_INIT_AUTOMAKE): Add check-news option.
579	(MM_INIT_MODULE): Move block below Automake initialization.
580
5812009-09-07  Daniel Elstner  <danielk@openismus.com>
582
583	Update Doxygen configuration for Doxygen 1.6.1
584
585	* docs/reference/Doxyfile.in: Update file using Doxygen 1.6.1.
586	(SORT_MEMBERS_CTORS_1ST): Set option to YES.
587
5882009-09-07  Daniel Elstner  <danielk@openismus.com>
589
590	Delete obsolete MAINTAINERS file
591
5922009-08-28  Daniel Elstner  <danielk@openismus.com>
593
594	Increment version to 2.25.1.3 and update news
595
596	* configure.ac (AC_INIT): Bump version to pangomm 2.25.1.3.
597	* NEWS: Write news entry for pangomm 2.25.1.3.
598
5992009-08-28  Daniel Elstner  <danielk@openismus.com>
600
601	Fix documentation location in pkg-config files
602
603	* pango/pangomm{,-uninstalled}.pc.in (htmlrefpub): Point to
604	library.gnome.org.
605
6062009-08-28  Daniel Elstner  <danielk@openismus.com>
607
608	Increment version to 2.25.1.2 and update news
609
610	* configure.ac (AC_INIT): Bump version to pangomm 2.25.1.2.
611	* NEWS: Write news entry for pangomm 2.25.1.2.
612
6132009-08-28  Daniel Elstner  <danielk@openismus.com>
614
615	Remove documentation location override
616
617	* docs/Makefile.am (htmlrefpub): Remove variable override as
618	the documentation is now hosted on library.gnome.org.  D'oh.
619
6202009-08-28  Daniel Elstner  <danielk@openismus.com>
621
622	Increment version to 2.25.1.1 and update news
623
624	* configure.ac (AC_INIT): Bump version to pangomm 2.25.1.1.
625	(MM_PREREQ): Require mm-common 0.7.1.
626	* NEWS: Write news entry for pangomm 2.25.1.1.
627
6282009-08-28  Daniel Elstner  <danielk@openismus.com>
629
630	Use shared mm-common Doxygen style sheet
631
632	* configure.ac (MM_PREREQ): Require mm-common 0.7.
633	* docs/reference/Doxyfile.in (HTML_STYLESHEET): Assign path
634	to the shared doxygen.css provided by mm-common.
635
6362009-08-28  Daniel Elstner  <danielk@openismus.com>
637
638	Remove header and footer HTML fragments
639
640	* docs/reference/pangomm_{header,footer}.html_fragment: Delete
641	files.  These custom fragments were an unnecessary maintenance
642	hassle.  Also, the files were out of date with respect to the
643	encoding and CSS classes used by Doxygen.
644	* docs/reference/Doxyfile.in (HTML_HEADER), (HTML_FOOTER): Set
645	to the empty string.
646	(PROJECT_NUMBER): Substitute @PACKAGE_VERSION@.  It does look
647	nicer in the generated HTML pages, and is probably also less
648	confusing.
649	(SORT_GROUP_NAMES): Enable for predictability.
650	* docs/Makefile.am (dist_noinst_DATA): Remove deleted HTML
651	fragment files.
652
6532009-08-26  Daniel Elstner  <danielk@openismus.com>
654
655	Reenable hierarchy graphs for each class
656
657	* docs/reference/Doxyfile.in (COLLABORATION_GRAPH): Set option
658	to YES to enable the per-class inheritance graphs.
659
6602009-08-26  Murray Cumming  <murrayc@murrayc.com>
661
662	2.25.1
663
6642009-08-25  Murray Cumming  <murrayc@murrayc.com>
665
666	Regenerated .defs files.
667
668	* pango/src/pango_docs.xml:
669	* pango/src/pango_methods.defs: Regenerated.
670
6712009-08-20  Daniel Elstner  <danielk@openismus.com>
672
673	Rename @since back to @newin
674
675	* docs/reference/Doxyfile.in (ALIASES): Rename the @since alias
676	back to its old name @newin, but otherwise keep the parameters.
677	Apparently there is a @since command predefined in Doxygen which
678	I hadn't noticed.  It does seem to get overridden silently, but
679	it is better not to rely on this.
680	* pango/src/{language,layout}.hg: Replace all uses of @since with
681	@newin.
682
6832009-08-20  Daniel Elstner  <danielk@openismus.com>
684
685	Remove bogus backslash in Doxygen configuration
686
687	* docs/reference/Doxyfile.in (STRIP_FROM_PATH): Remove bogus
688	trailing \ after the the last assigned value.  This probably
689	caused the following assignment to STRIP_FROM_INC_PATH to be
690	eaten.
691
6922009-08-20  Daniel Elstner  <danielk@openismus.com>
693
694	Substitute API version in filenames dynamically
695
696	* pango/pangomm.pc.in: Rename file from pango/pangomm-1.4.pc.in.
697	* pango/pangomm-uninstalled.pc.in: Rename file from
698	pango/pangomm-1.4-uninstalled.pc.in.
699	* configure.ac (AC_CONFIG_FILES): Insert ${PANGOMM_MODULE_NAME}
700	into output filenames and remove the hard-coded version from the
701	input filenames.
702	* pango/pangomm/Makefile.am (lib_LTLIBRARIES): Substitute
703	@PANGOMM_API_VERSION@ into the libtool archive name as well as
704	the variable names derived from it instead of hard-coding the
705	API version.
706
7072009-08-20  Daniel Elstner  <danielk@openismus.com>
708
709	Do not hard-code API version in resource files
710
711	* MSVC_Net200[58]/pangomm/pangomm.rc.in: Use newer @PACKAGE_VERSION@
712	substitution in place of @VERSION@.  Use "@PANGOMM_MODULE_NAME@.dll"
713	instead of hardcoding the API version.
714
7152009-08-19  Daniel Elstner  <daniel.kitta@gmail.com>
716
717	Reference external cairomm documentation
718
719	* configure.ac (MM_ARG_WITH_TAGFILE_DOC): Specify cairomm-1.0.tag
720	as Doxygen tag file dependency for links to the external reference
721	documentation of cairomm.
722
7232009-08-18  Daniel Elstner  <danielk@openismus.com>
724
725	Use parametric Doxygen alias @since{m,n}
726
727	* docs/reference/Doxyfile.in (ALIASES): Define a parametrized alias
728	@since{major,minor} to replace the old @newin?p?* aliases which had
729	to be defined manually for every version number used.
730	* pango/src/*.hg: Change all uses of @newin?p?* to @since{m,n}.
731
7322009-08-17  Daniel Elstner  <danielk@openismus.com>
733
734	Define PANGOMM_BUILD macro during build
735
736	* pango/pangomm/Makefile.am (local_cppflags): Add -DPANGOMM_BUILD=1.
737
7382009-08-17  Daniel Elstner  <danielk@openismus.com>
739
740	Make use of new MM_ARG_DISABLE_DEPRECATED macro
741
742	* configure.ac (PANGOMM_DISABLE_DEPRECATED): Call the new
743	MM_ARG_DISABLE_DEPRECATED_API macro from mm-common in order
744	to provide the option to omit deprecated API from the library
745	build, and to define the corresponding configuration macro.
746	* pango/pangommconfig.h.in (PANGOMM_DISABLE_DEPRECATED): Copy
747	the #undef statement from the generated config.h.in template.
748
7492009-08-17  Daniel Elstner  <danielk@openismus.com>
750
751	Append slash to overridden $(htmlrefpub)
752
753	* docs/Makefile.am (htmlrefpub): Append trailing slash for
754	consistency with the non-overridden value.
755
7562009-08-17  Daniel Elstner  <daniel.kitta@gmail.com>
757
758	Reenable JAVADOC_AUTOBRIEF mode of Doxygen
759
760	* docs/reference/Doxyfile.in (JAVADOC_AUTOBRIEF): Change value
761	back to 'YES'.  I accidentally turned off the setting during the
762	build infrastructure transition.
763
7642009-08-16  Daniel Elstner  <daniel.kitta@gmail.com>
765
766	Include glibmmconfig.h from pangommconfig.h
767
768	* pango/pangommconfig.h.in: Include glibmmconfig.h for
769	consistency with gtkmm.  Also define an include guard.
770
7712009-08-16  Daniel Elstner  <daniel.kitta@gmail.com>
772
773	List PANGOMM_* macros in pangommconfig.h.in
774
775	* pango/pangommconfig.h.in (PANGOMM_*_VERSION): Add #undef
776	statements for the version number component macros.
777
7782009-08-16  Daniel Elstner  <daniel.kitta@gmail.com>
779
780	Add pkg-config file for uninstalled use
781
782	* pango/pangomm-1.4-uninstalled.pc.in: New pkg-config metadata
783	file for building against a non-installed pangomm library.
784	* configure.ac (AC_CONFIG_FILES): Add configure output file
785	pango/pangomm-1.4-uninstalled.pc.
786
7872009-08-16  Daniel Elstner  <daniel.kitta@gmail.com>
788
789	Make use of latest mm-common features
790
791	* configure.ac: Insert MM_PREREQ([0.4]) macro call.
792	(MM_INIT_MODULE): Remove now optional second argument.
793	* pango/pangomm-1.4.pc.in (htmlrefpub): Append trailing slash
794	as per new mm-common guidelines.
795
7962009-08-16  Daniel Elstner  <daniel.kitta@gmail.com>
797
798	Get rid of GLIBMM_USING_STD()
799
800	* pango/src/tabarray.hg: Stop using GLIBMM_USING_STD(), now
801	that it has been removed from glibmm.
802
8032009-08-12  Daniel Elstner  <danielk@openismus.com>
804
805	Delete empty pango/README file
806
8072009-08-12  Daniel Elstner  <danielk@openismus.com>
808
809	Really do delete pango/Makefile.am
810
8112009-08-12  Daniel Elstner  <danielk@openismus.com>
812
813	Install pangomm.h and pangomm-1.4.pc again
814
815	* Makefile.am (pangomm_include_HEADERS): Install pango/pangomm.h.
816	(nodist_pangomm_libinclude_HEADERS): Install pango/pangommconfig.h.
817	(nodist_pkgconfig_DATA): Install pango/pangomm-1.4.pc.
818	* pango/Makefile.am: Delete already unused file.
819
8202009-08-11  Daniel Elstner  <danielk@openismus.com>
821
822	Provide documentation location via pkg-config
823
824	* pango/pangomm-1.4.pc.in (datadir), (datarootdir): Substitute.
825	(docdir), (doxytagfile), (htmlrefdir), (htmlrefpub): Point to the
826	location of the reference documentation.
827
8282009-08-11  Daniel Elstner  <danielk@openismus.com>
829
830	Wrap pango_font_map_create_context()
831
832	* pango/src/fontmap.hg (FontMap::create_context): Wrap new
833	pango_font_map_create_context() method.
834	* pango/src/cairofontmap.{ccg,hg} (CairoFontMap::create_context):
835	Wrap method manually in terms of pango_font_map_create_context(),
836	so that it longer uses deprecated API.  The wrapper method should
837	be removed altogether when we can break API and ABI.
838
8392009-08-11  Daniel Elstner  <danielk@openismus.com>
840
841	Fix typo in tools/m4/convert_pango.m4
842
8432009-08-11  Daniel Elstner  <danielk@openismus.com>
844
845	Regenerate pango/src/pango_methods.defs
846
8472009-08-11  Daniel Elstner  <danielk@openismus.com>
848
849	Generate more complete extra defs
850
851	* tools/extra_defs_gen/generate_defs_pango.cc (main): Query the
852	defs for all not backend-specific GObject classes in Pango, just
853	in case.
854
8552009-08-11  Daniel Elstner  <danielk@openismus.com>
856
857	Rename scripts/ subdirectory to build/
858
859	* configure.ac (AC_CONFIG_AUX_DIR): Point to build/ directory.
860	(AC_CONFIG_MACRO_DIR): ditto.
861	* Makefile.am (ACLOCAL_AMFLAGS): Use -I build as M4 include path.
862	* docs/Makefile.am, pango/{src,pangomm}/Makefile.am: Include files
863	from $(top_srcdir)/build/ instead of $(top_srcdir)/scripts/.
864
8652009-08-11  Daniel Elstner  <danielk@openismus.com>
866
867	Delete obsolete Autoconf M4 files from scripts/
868
869	* scripts/*.m4: Delete all Autoconf M4 files from version control.
870	* scripts/README: Delete superfluous file.
871	* Makefile.am (text_files): Remove scripts/README.
872	(msvc_files): Use $(addprefix ...) for readability.
873
8742009-08-11  Daniel Elstner  <danielk@openismus.com>
875
876	Transition to mm-common documentation build
877
878	* configure.ac (AC_CONFIG_FILES): List docs/Makefile.am and
879	docs/reference/Doxyfile as output files.
880	* Makefile.am (SUBDIRS): Resurrect docs/ subdirectory.
881	* docs/Makefile.am: Rewrite based upon the new mm-common build
882	infrastructure for the reference documentation.
883	* docs/reference/Doxyfile.in: Heavily modernize and adapt to the
884	new documentation build organization.
885	* docs/Makefile_web.am_fragment: Delete obsolete file.
886	* docs/images/Makefile.am: ditto,
887	* docs/reference/Makefile.am: ditto,
888	* docs/reference/doxygen_to_devhelp.xsl: ditto,
889	* docs/reference/README: ditto.
890	* docs/reference/widget_hierarchy.{dia,html,png}: Delete files as
891	they belong to the documentation of the gtkmm module, not pangomm.
892
8932009-08-11  Daniel Elstner  <danielk@openismus.com>
894
895	Further reduce pointless make recursion
896
897	* scripts/Makefile.am: Delete file.
898	* MSVC_Net200[58]/**/Makefile.am: Delete files.
899	* MSVC_Net200[58]/filelist.am: New files, defining the files to
900	distribute from the MSVC subdirectories.
901	* Makefile.am: Include MSVC_Net200[58]/filelist.am and distribute
902	the files listed there.
903	(SUBDIRS): Remove scripts/ and MSVC_Net200[58]/.  Temporarily
904	remove docs/ subdirectory.
905	* configure.ac: Use mm-common Autoconf macros for setting up the
906	documentation build.
907	(AC_CONFIG_FILES): Remove deleted Makefiles from the list.
908	(AC_CONFIG_COMMANDS): Append commands to config.status to copy the
909	pangommconfig.h configuration header into the MSVC subdirectories.
910
9112009-08-11  Daniel Elstner  <danielk@openismus.com>
912
913	Convert tools/ and pango/ to new infrastructure
914
915	* Makefile.am (SUBDIRS): Skip the pango/ subdirectory and recurse
916	directly into pango/src/ and pango/pangomm/.
917	(EXTRA_DIST): Remove the old build_shared/ include files.
918	* configure.ac (AC_CONFIG_FILES): Remove files pango/Makefile.am,
919	pango/pangomm/private/Makefile.am and tools/m4/Makefile.am from
920	the list of output files.
921	* pango/src/filelist.am: Rename Makefile_list_of_hg.am_fragment
922	and adapt to new mm-common Automake include files.
923	* pango/pangomm/filelist.am: New file, defining the list of source
924	code files to compile.
925	* pango/pangomm/private/Makefile.am: Delete obsolete file.
926	* pango/src/Makefile.am: Rewrite to use new mm-common build
927	infrastructure.
928	* pango/pangomm/Makefile.am: ditto,
929	* tools/Makefile.am: ditto.
930	* tools/m4/filelist.am: Rename Makefile_list_of_sources.am_fragment
931	and adapt to new mm-common Automake include files.
932	* tools/m4/Makefile.am: Delete obsolete file.
933	* build_shared/*.am_fragment: Delete obsolete build support files.
934
9352009-08-11  Daniel Elstner  <danielk@openismus.com>
936
937	Create .gitignore files
938
9392009-08-11  Daniel Elstner  <danielk@openismus.com>
940
941	Begin transition to mm-common build system
942
943	* autogen.sh: Replace with minimal version using mm-common-prepare
944	and autoreconf.
945	* configure.ac: Rename file from configure.in.  Remove a lot of old
946	cruft and clean up the remaining bits.  Make use of mm-common macros.
947	Insert temporary dummy conditionals to keep the module buildable.
948	* config.h.in: Delete file, as it is now generated by autoheader.
949	* Makefile.am (ACLOCAL_AMFLAGS): Set to help autoreconf do its work.
950	* MSVC_Net200[58]/pangomm/Makefile.am: Change rule dependency
951	configure.in to configure.ac.
952
9532009-06-24  Daniel Elstner  <danielk@openismus.com>
954
955	Add DOAP file and fix mail address in MAINTAINERS
956
9572009-03-09  Theppitak Karoonboonyanan  <thep@linux.thai.net>
958
959	Split out devhelp installation rule, so VPATH reference is possible for
960
9612009-03-09  Theppitak Karoonboonyanan  <thep@linux.thai.net>
962
963	* docs/reference/Makefile.am: Split out devhelp installation rule, so
964	VPATH reference is possible for both tarball and VCS builds, fixing
965	distcheck correctly.
966
967	svn path=/trunk/; revision=35
968
9692009-03-09  Murray Cumming  <murrayc@murrayc.com>
970
971	2.24.0:
972
9732009-03-09  Murray Cumming  <murrayc@murrayc.com>
974
975	* docs/reference/Makefile.am: Added srcdir before the devhelp file, to
976	fix distcheck.
977
978	svn path=/trunk/; revision=34
979
9802009-03-09  Murray Cumming  <murrayc@murrayc.com>
981
982	Regenerated with doxextract_to_xml.py.
983
9842009-03-09  Murray Cumming  <murrayc@murrayc.com>
985
986	* pango/src/pango_docs.xml: Regenerated with doxextract_to_xml.py.
987
988	svn path=/trunk/; revision=33
989
9902009-02-05  Theppitak Karoonboonyanan  <thep@linux.thai.net>
991
992	Allow pangomm to build outside the source tree. Bug #570322
993
9942009-02-05  Theppitak Karoonboonyanan  <thep@linux.thai.net>
995
996	* docs/reference/Doxyfile.in:
997	* docs/reference/Makefile.am: Allow pangomm to build outside the source
998	tree. Bug #570322
999
1000	svn path=/trunk/; revision=32
1001
10022009-01-19  Deng Xiyue  <manphiz@gmail.com>
1003
1004	Change license header to mention Lesser General Public License version 2.1
1005
10062009-01-20  Deng Xiyue  <manphiz@gmail.com>
1007
1008	* Change license header to mention Lesser General Public License
1009	version 2.1 instead of Library General Public License, to be
1010	consistent with COPYING.
1011
1012	svn path=/trunk/; revision=31
1013
10142008-11-13  Murray Cumming  <murrayc@murrayc.com>
1015
1016	Add some more newin2p* aliases. Mark show_in_cairo_context as since 2.16.
1017
10182008-11-13  Murray Cumming  <murrayc@murrayc.com>
1019
1020	* docs/reference/Doxyfile.in: Add some more newin2p* aliases.
1021	* pango/src/layout.hg: Mark show_in_cairo_context as since 2.16.
1022
1023	svn path=/trunk/; revision=30
1024
10252008-11-13  Louis-Francis Ratté-Boulianne  <louisfrancis.rb@gmail.com>
1026
1027	Added show_in_cairo_context(). Bug #560232,
1028
1029	2008-11-12  Louis-Francis Ratté-Boulianne <louisfrancis.rb@gmail.com>
1030
1031	* pango/src/layout.cgg:
1032	* pango/src/layout.hg: Added show_in_cairo_context().
1033	Bug #560232,
1034
1035	svn path=/trunk/; revision=29
1036
10372008-11-10  Murray Cumming  <murrayc@src.gnome.org>
1038
1039	Increased version
1040
1041	svn path=/trunk/; revision=27
1042
10432008-11-10  Deng Xiyue  <manphiz@gmail.com>
1044
1045	Fix references to gtkmm, should be pangomm, and use reference index.html
1046
10472008-11-08  Deng Xiyue  <manphiz@gmail.com>
1048
1049	* docs/reference/doxygen_to_devhelp.xsl: Fix references to gtkmm,
1050	should be pangomm, and use reference index.html as start point.
1051
1052	svn path=/trunk/; revision=26
1053
10542008-10-23  Jonathon Jongsma  <jjongsma@src.gnome.org>
1055
1056	Removed gtk stock image stuff that was accidentally left over from splitting up pangomm from gtkmm.
1057
1058	svn path=/trunk/; revision=25
1059
10602008-10-09  Armin Burgmeier  <arminb@src.gnome.org>
1061
1062	Added missing MSVC 2008 solution file to the repository.
1063
1064	svn path=/trunk/; revision=24
1065
10662008-10-09  Armin Burgmeier  <armin@openismus.com>
1067
1068	Changed the library DLL name to match the new naming convention.
1069
10702008-10-09  Armin Burgmeier  <armin@openismus.com>
1071
1072	* MSVC_Net2005/pangomm/pangomm.vcproj: Changed the library DLL name to
1073	match the new naming convention.
1074
1075	* MSVC_Net2008/: Added Visual Studio 2008 project files.
1076
1077	* Makefile.am:
1078	* configure.in: Added the new files to the distribution.
1079
1080	svn path=/trunk/; revision=23
1081
10822008-09-21  Murray Cumming  <murrayc@src.gnome.org>
1083
1084	Increased version
1085
1086	svn path=/trunk/; revision=22
1087
10882008-09-08  Deng Xiyue  <manphiz@gmail.com>
1089
1090	Added COPYING.tools with the GPL because the tools/*.cc file is GPL. Bug
1091
10922008-09-08  Deng Xiyue  <manphiz@gmail.com>
1093
1094	* Added COPYING.tools with the GPL because the tools/*.cc file is
1095	GPL. Bug #550789.
1096
1097	svn path=/trunk/; revision=21
1098
10992008-09-08  Deng Xiyue  <manphiz@gmail.com>
1100
1101	Mention pangomm instead of gtkmm. Bug #550789.
1102
11032008-09-08  Deng Xiyue  <manphiz@gmail.com>
1104
1105	* README: Mention pangomm instead of gtkmm. Bug #550789.
1106
1107	svn path=/trunk/; revision=20
1108
11092008-08-27  Armin Burgmeier  <armin@arbur.net>
1110
1111	Replaced #include "afxres.h" by #include <windows.h> which does the job
1112
11132008-08-27  Armin Burgmeier  <armin@arbur.net>
1114
1115	* MSVC_Net2005/pangomm/pangomm.rc.in: Replaced #include "afxres.h" by
1116	#include <windows.h> which does the job equally well, and allows
1117	compilation with the freely available Visual Studio Express compiler.
1118
1119	svn path=/trunk/; revision=19
1120
11212008-08-20  Murray Cumming  <murrayc@murrayc.com>
1122
1123	Added get_scripts().
1124
11252008-08-20  Murray Cumming  <murrayc@murrayc.com>
1126
1127	* pango/src/language.ccg:
1128	* pango/src/language.hg: Added get_scripts().
1129
1130	svn path=/trunk/; revision=18
1131
11322008-08-20  Murray Cumming  <murrayc@src.gnome.org>
1133
1134	Increased version
1135
1136	svn path=/trunk/; revision=17
1137
11382008-08-12  Murray Cumming  <murrayc@murrayc.com>
1139
1140	Wrap this with CLASS_BOXEDTYPE() instead of _CLASS_GENERIC(), because the
1141
11422008-08-12  Murray Cumming  <murrayc@murrayc.com>
1143
1144	* pango/src/layoutrun.ccg:
1145	* pango/src/layoutrun.hg: Wrap this with CLASS_BOXEDTYPE() instead of
1146	_CLASS_GENERIC(), because the PangoGlyphItem (of which PangoLayoutRun
1147	is a typedef) is a boxed type. This reduces the amount of code in .hg,
1148	while apparently not breaking API or ABI.
1149	This should be renamed to GlyphItem when we can break ABI.
1150
1151	svn path=/trunk/; revision=16
1152
11532008-08-12  Murray Cumming  <murrayc@src.gnome.org>
1154
1155	A few documention comments.
1156
1157	svn path=/trunk/; revision=15
1158
11592008-08-12  Murray Cumming  <murrayc@murrayc.com>
1160
1161	Typedef this to GlyphItem, because that is what it is (and is documented
1162
11632008-08-12  Murray Cumming  <murrayc@murrayc.com>
1164
1165	* pango/src/layoutrun.hg: Typedef this to GlyphItem, because
1166	that is what it is (and is documented as) in Pango.
1167	Added splt() and letter() space to LayoutRun, wrapping PangoGlyphItem
1168	functions.
1169	* tools/m4/convert_pango.m4:
1170	* pango/src/renderer.hg: Added draw_glyph_item().
1171
1172	* pango/src/cairofontmap.hg: Added set_default().
1173
1174	svn path=/trunk/; revision=14
1175
11762008-08-09  Armin Burgmeier  <armin@arbur.net>
1177
1178	Added project files to build pangomm with Visual Studio 2005.
1179
11802008-08-09  Armin Burgmeier  <armin@arbur.net>
1181
1182	* MSVC_Net2005/gendef/gendef.cc:
1183	* MSVC_Net2005/gendef/gendef.vcproj:
1184	* MSVC_Net2005/gendef/Makefile.am:
1185	* MSVC_Net2005/pangomm/pangomm.vcproj:
1186	* MSVC_Net2005/pangomm/pangomm.rc.in:
1187	* MSVC_Net2005/pangomm/Makefile.am:
1188	* MSVC_Net2005/pangomm.sln:
1189	* MSVC_Net2005/blank.cpp:
1190	* MSVC_Net2005/Makefile.am: Added project files to build pangomm with
1191	Visual Studio 2005.
1192
1193	* configure.in:
1194	* Makefile.am: Adapt build files.
1195
1196	svn path=/trunk/; revision=13
1197
11982008-08-04  Murray Cumming  <murrayc@src.gnome.org>
1199
1200	Increased version
1201
1202	svn path=/trunk/; revision=12
1203
12042008-08-02  Murray Cumming  <murrayc@murrayc.com>
1205
1206	Do not try to upload a non-existant index.html Correct the filenames.
1207
12082008-08-02  Murray Cumming  <murrayc@murrayc.com>
1209
1210	* docs/Makefile.am: Do not try to upload a non-existant index.html
1211	* docs/images/Makefile.am: Correct the filenames.
1212	* docs/reference/pangomm_header.html_fragment: Change the links as
1213	in glibmm.
1214
1215	svn path=/trunk/; revision=11
1216
12172008-08-02  Deng Xiyue  <manphiz@gmail.com>
1218
1219	Fix all references of ABI version 2.4 to version 1.4, though the tarball
1220
1221	2008-08-01  Deng Xiyue <manphiz@gmail.com>
1222
1223	* docs/Makefile_web.am_fragment:
1224	* docs/reference/Makefile.am:
1225	* tools/m4/Makefile.am:
1226	* Makefile.am: Fix all references of ABI version 2.4 to version 1.4,
1227	though the tarball version (as reported by pkgconfig --modversion)
1228	must stay as 2.x.
1229	Bug #545537.
1230
1231	svn path=/trunk/; revision=10
1232
12332008-08-01  Murray Cumming  <murrayc@murrayc.com>
1234
1235	Removed index.html. It was just a copy from gtkmm (from where I will also
1236
12372008-08-01  Murray Cumming  <murrayc@murrayc.com>
1238
1239	* docs/Makefile.am:
1240	* docs/index.html: Removed index.html. It was just a copy from
1241	gtkmm (from where I will also be removing it.) The true copy is in
1242	gnomemm-website (uploaded to gtkmm.org).
1243
1244	svn path=/trunk/; revision=9
1245
12462008-07-30  Sebastien Bacher  <seb128@ubuntu.com>
1247
1248	require a correct pango version (bug #545378)
1249
12502008-07-30  Sebastien Bacher  <seb128@ubuntu.com>
1251
1252	* configure.in: require a correct pango version (bug #545378)
1253
1254	svn path=/trunk/; revision=8
1255
12562008-07-27  Murray Cumming  <murrayc@murrayc.com>
1257
1258	Corrected the upload location. Corrected a variable so we really generate
1259
12602008-07-27  Murray Cumming  <murrayc@murrayc.com>
1261
1262	* docs/Makefile_web.am_fragment: Corrected the upload location.
1263	* docs/reference/Doxyfile.in: Corrected a variable so we really
1264	generate documentation.
1265
1266	svn path=/trunk/; revision=7
1267
12682008-07-27  Murray Cumming  <murrayc@src.gnome.org>
1269
1270	Increased version
1271
1272	svn path=/trunk/; revision=6
1273
12742008-07-27  Murray Cumming  <murrayc@murrayc.com>
1275
1276	Regenerated.
1277
12782008-07-27  Murray Cumming  <murrayc@murrayc.com>
1279
1280	* pango/src/pango_docs.xml:
1281	* pango/src/pango_enums.defs:
1282	* pango/src/pango_methods.defs: Regenerated.
1283
1284	* pango/src/layout.hg: Added get_height(), set_height(),
1285	get_baseline().
1286	* pango/src/layoutiter.ccg:
1287	* pango/src/layoutiter.hg: Added get_layout().
1288	* pango/src/renderer.hg: Added get_layout() and get_layout_line().
1289
1290	svn path=/trunk/; revision=5
1291
12922008-07-23  Murray Cumming  <murrayc@src.gnome.org>
1293
1294	Released
1295
1296	svn path=/trunk/; revision=4
1297
12982008-07-18  Murray Cumming  <murrayc@src.gnome.org>
1299
1300	Now it builds and distchecks
1301
1302	svn path=/trunk/; revision=3
1303
13042008-07-18  Murray Cumming  <murrayc@src.gnome.org>
1305
1306	Added pangomm source by copying from gtkmm
1307
1308	svn path=/trunk/; revision=2
1309
1310