commit 324a5eec22d7f30dc911814a18f2993f4d4b0b12
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
Date:   Mon Mar 18 16:37:01 2013 +0800

    Visual Studio Builds: Fix the Debug configs

    We need to link to the Debug CRT for debug configs, not the release
    CRTs,
    as linking to different CRTs will cause trouble during debugging.

 build/win32/vs10/pango.vcxprojin         | 4 ++--
 build/win32/vs10/pangocairo.vcxprojin    | 4 ++--
 build/win32/vs10/pangocairo_fc.vcxprojin | 4 ++--
 build/win32/vs10/pangoft2.vcxprojin      | 2 +-
 build/win32/vs10/pangowin32.vcxproj      | 4 ++--
 build/win32/vs9/pango.vcprojin           | 4 ++--
 build/win32/vs9/pangocairo.vcprojin      | 8 ++++----
 build/win32/vs9/pangoft2.vcprojin        | 2 +-
 build/win32/vs9/pangowin32.vcproj        | 4 ++--
 9 files changed, 18 insertions(+), 18 deletions(-)

commit 992e4d27c8e66c8f8cf9df5f143759654967cbab
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Fri Mar 15 06:32:36 2013 -0400

    [test] Fix scale

 tests/test-pangocairo-threads.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0942b1962d2ee8574c0aff345eb871e2daccea1e
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Fri Mar 15 06:13:09 2013 -0400

    Bug 682846 - Use G_DEFINE_TYPE in pangowin32-fontmap

    Based on patch from Chun-wei Fan.

 pango/pangocairo-win32fontmap.c |  2 --
 pango/pangowin32-fontmap.c      | 76
 ++++++++++++-----------------------------
 pango/pangowin32-private.h      |  1 +
 3 files changed, 22 insertions(+), 57 deletions(-)

commit 71006c534a5599f0a69f4bd9b6677b2a6ad5adb3
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Fri Mar 15 06:03:52 2013 -0400

    Call g_type_init if necessary

 pango/pangocairo-fontmap.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit eaf18c76ac132c488a274b0ecd1206c4097aedd9
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Fri Mar 15 06:01:08 2013 -0400

    Remove unused code

 pango/pangocairo-win32font.c | 26 +-------------------------
 1 file changed, 1 insertion(+), 25 deletions(-)

commit 16e4dd37e5fdd231a32bba6a1238ff01408c783d
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Fri Mar 15 05:57:52 2013 -0400

    Port PangoWin32 to use GWeakRef

    Patch from Chun-wei Fan.

 pango/pangowin32-fontmap.c |  8 ++++----
 pango/pangowin32.c         | 12 ++++++------
 2 files changed, 10 insertions(+), 10 deletions(-)

commit e95a0ecd5d1bbcc0c96fc52160edc18292f66f04
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Fri Mar 15 05:56:14 2013 -0400

    Use g_snprintf()

 tests/test-pangocairo-threads.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 480fb1d6eee13092e50ceb213fcc7eeb4b52e52f
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
Date:   Wed Mar 6 15:58:29 2013 +0800

    Update Visual Studio property sheets

    Add commands to be used for building introspection files.

 build/win32/vs10/pango.propsin  | 40
 ++++++++++++++++++++++++++++++----------
 build/win32/vs9/pango.vspropsin | 33 +++++++++++++++++++++++++++------
 2 files changed, 57 insertions(+), 16 deletions(-)

commit 0d4ab34441a94f65a50fe5b9153fb5f534223610
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
Date:   Wed Mar 6 12:50:14 2013 +0800

    Update Visual Studio Solution files

    Integrate the utility project files to build the introspection files.

    This is not built by default, so one may choose to build the
    introspection
    files if he/she chooses

 build/win32/vs10/pango.sln |  6 ++++++
 build/win32/vs9/pango.sln  | 10 ++++++++++
 2 files changed, 16 insertions(+)

commit 44ad377d70724fc85be5965a9ee85aa58c9b5c04
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
Date:   Wed Mar 6 12:48:31 2013 +0800

    Visual Studio builds: Support building introspection files

    Add Windows .bat and Python utility script to call g-ir-scanner
    to build
    the introspection files for Pango/MSVC builds.  This will read from
    pango/Makefile.am to determine the source and header files to
    process using
    Python REGEX capabilities, so the autotools files won't have to
    be updated
    except to distribute the necessary files under build/win32.

    Also add utility Visual Studio 2008/2010 projects to call the
    Windows .bat
    to create the introspection files.

    https://bugzilla.gnome.org/show_bug.cgi?id=692255

 build/win32/Makefile.am            |   5 +-
 build/win32/gen-file-list-pango.py | 154
 +++++++++++++++++++++++++++++++++
 build/win32/gengir_pango.bat       | 169
 +++++++++++++++++++++++++++++++++++++
 build/win32/vs10/Makefile.am       |  49 +++++------
 build/win32/vs10/gengir.vcxproj    | 108 ++++++++++++++++++++++++
 build/win32/vs9/Makefile.am        |  27 +++---
 build/win32/vs9/gengir.vcproj      |  77 +++++++++++++++++
 7 files changed, 551 insertions(+), 38 deletions(-)

commit 8b720bc3ae50dd6483f21e81578e98fb8f18a43b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 4 21:51:22 2013 -0500

    Post-release version bump

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)