commit 86a9348dc4b20dfba9ee38b2dda0b6aaa09d8f21 Author: Matthias Clasen Date: Wed May 13 07:25:53 2015 -0400 2.24.28 configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit d63bee09e0ba4ddd94c26bed97522896dc9be5c6 Author: Marek Kasik Date: Fri Jul 11 11:35:35 2014 +0200 printing: Check connection to remote CUPS server on correct port Add parameter for specification of port to gtk_cups_connection_cups_new(). Use default port returned by ippPort() if the given port is lower than 0. https://bugzilla.gnome.org/show_bug.cgi?id=693738 modules/printbackends/cups/gtkcupsutils.c | 8 ++++++-- modules/printbackends/cups/gtkcupsutils.h | 3 ++- modules/printbackends/cups/gtkprintbackendcups.c | 8 +++++--- 3 files changed, 13 insertions(+), 6 deletions(-) commit 1f74f12d9f8ecec321d7e662ff37127ca01c57c1 Author: Руслан Ижбулатов Date: Mon May 4 15:32:22 2015 +0000 Use GDK_KEY_KP_Decimal instead of GDK_KP_Decimal Fixes the FTBFS introduced in cb3eb7cd777b6cea239898efde3239c39144a955 gdk/win32/gdkkeys-win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit cb3eb7cd777b6cea239898efde3239c39144a955 Author: Matthias Clasen Date: Fri May 1 07:32:47 2015 -0400 win32: Support the decimal point on the keypad Based on a patch by John Emmas. gdk/win32/gdkkeys-win32.c | 2 ++ 1 file changed, 2 insertions(+) commit 92fb170917468b4e8946e3f0b94c5a3eeb0b33d9 Author: Руслан Ижбулатов Date: Thu Apr 16 23:11:14 2015 +0000 W32: Support horizontal mouse wheel scrolling https://bugzilla.gnome.org/show_bug.cgi?id=748014 (cherry picked from commit c0e0a1508be3ccf349717497af2e8a4d77027649) gdk/win32/gdkevents-win32.c | 10 ++++++++-- gdk/win32/gdkmain-win32.c | 1 + gdk/win32/gdkprivate-win32.h | 3 +++ 3 files changed, 12 insertions(+), 2 deletions(-) commit 3da748930fdcb19aaae32ae2fc6cb2d802857752 Author: Matthias Clasen Date: Fri Feb 1 21:58:34 2013 -0500 Avoid perl warnings Apparently, defined is not cool anymore. demos/gtk-demo/geninclude.pl.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit a4bffe01bb78e6088ce787be71bf79e9cd080818 Author: Ignacio Casal Quinteiro Date: Fri Mar 27 18:29:08 2015 +0100 Fix missing field po file po/zh_TW.po | 1 + 1 file changed, 1 insertion(+) commit 0edc775d1aa78988506a4baa5a6af35a138ea5c4 Author: Руслан Ижбулатов Date: Thu Mar 26 17:12:01 2015 +0000 Revert "W32: correctly guess max window size from the size of the workarea of the screen it's on" This is only needed for CSDs. GKT+-2.x has no CSDs, so this code is completely unnecessary. This reverts commit d9122d13795e58bd96ff75e933b00f38d1b24aac. gdk/win32/gdkevents-win32.c | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) commit 88f3b248d6298af5ed08fd344c19bce40b05a2b7 Author: Руслан Ижбулатов Date: Thu Mar 26 17:11:13 2015 +0000 Revert "W32: Correctly set maximized window position" This is only needed for CSDs. GKT+-2.x has no CSDs, so this code is completely unnecessary. This reverts commit 2fdd8627ddeca60ff6fdb84cd8071580a0d1ba74. gdk/win32/gdkevents-win32.c | 2 -- 1 file changed, 2 deletions(-) commit 2fdd8627ddeca60ff6fdb84cd8071580a0d1ba74 Author: Руслан Ижбулатов Date: Thu Mar 26 15:22:07 2015 +0000 W32: Correctly set maximized window position Use screen workarea to *also* set the position of a maximized window, not just its size. Without this the window position defaults to 0:0 (the topleft corner), which is wrong when taskbar is position along the top or left edge of the screen. https://bugzilla.gnome.org/show_bug.cgi?id=746821 gdk/win32/gdkevents-win32.c | 2 ++ 1 file changed, 2 insertions(+) commit d9122d13795e58bd96ff75e933b00f38d1b24aac Author: Руслан Ижбулатов Date: Thu Apr 10 20:05:19 2014 +0000 W32: correctly guess max window size from the size of the workarea of the screen it's on Get monitor on which the most of the window is located (nearest monitor if window is not on screen), get its work area (area not occupied by taskbar or any other bars) and use that for maxsize. Previous default of 30000 meant that windows maximized onto full screen, even covering the area where taskbar is. https://bugzilla.gnome.org/show_bug.cgi?id=726592 gdk/win32/gdkevents-win32.c | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) commit dd882f5b8033286c0e24883569527953f8ee08fa Author: Matthias Clasen Date: Tue Aug 10 00:31:46 2010 -0400 Fix a sporadic segfault in treeview keynav If a a treeview has frequent periodic additions and removals of rows, it is possible that a page down keypress moves the cursor out of the height of the treeview. In some of these cases, we can be tricked into dereferencing a NULL pointer. Bug 612919. https://bugzilla.gnome.org/show_bug.cgi?id=746269 gtk/gtktreeview.c | 7 +++++++ 1 file changed, 7 insertions(+) commit ba48b465741ce49518e51942983832a96288d896 Author: John Lindgren Date: Wed Mar 11 22:12:38 2015 -0400 Fix problems with sticky handling (backport of 01320e57737). Reading a card32 property into a long may lead to undefined high bits, so mask them off. Also, make the conditions for setting and unsetting the stick flag opposites, to avoid unintended changes. https://bugzilla.gnome.org/show_bug.cgi?id=746064 gdk/x11/gdkevents-x11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit df09ce5e87202dde843d5b8ab1a95a999695a141 Author: Chun-wei Fan Date: Fri Mar 6 16:56:19 2015 +0800 MSVC Builds: Rename "Install" Projects Rename the install projects as gtk-install, to ease the integration of the projects in a grand solution that may be used to build, for example, the entire GTK+ stack. build/win32/vs10/Makefile.am | 2 +- build/win32/vs10/gtk+.sln | 2 +- build/win32/vs10/gtk-install.vcxproj | 128 +++++++++++++++++++++++++++++++++++ build/win32/vs10/install.vcxproj | 128 ----------------------------------- build/win32/vs11/Makefile.am | 2 +- build/win32/vs12/Makefile.am | 2 +- build/win32/vs9/Makefile.am | 2 +- build/win32/vs9/gtk+.sln | 2 +- build/win32/vs9/gtk-install.vcproj | 77 +++++++++++++++++++++ build/win32/vs9/install.vcproj | 77 --------------------- 10 files changed, 211 insertions(+), 211 deletions(-) commit bf92167b01ddebf4eb9ff499721fce6d6a5f8020 Author: Chun-wei Fan Date: Fri Mar 6 15:21:52 2015 +0800 MSVC Builds: "Install" the .pdb Files "Install" the .pdb files to help people use them to debug the GTK+ stack, or for their GTK-using applications, as they are already generated for all builds. Also update the copying of the DLLs, LIBs and EXEs so that we ensure that we only copy the items from GTK+-2.x, without accidently copying items that are not meant to be copied, or make extra copies of items in the wrong places, such as when the projects here are used in parts of grand solutions used to build the entire GTK+ stack. build/win32/vs10/gtk-install.props | 16 +++++++++++----- build/win32/vs9/gtk-install.vsprops | 16 +++++++++++----- 2 files changed, 22 insertions(+), 10 deletions(-) commit e129c9417106068b6297621e8ee4eec9b2c2eeea Author: Chun-wei Fan Date: Fri Mar 6 15:16:39 2015 +0800 MSVC 2010+ Builds: Fix .pdb Generation The .pdb file name must be specified for Visual Studio 2010+ later in order fo match the output filename if the output filename is different from the project name. Update the projects as necessary. build/win32/vs10/gailutil.vcxproj | 4 ++++ build/win32/vs10/gdk.vcxprojin | 4 ++++ build/win32/vs10/gtk.vcxprojin | 5 ++++- 3 files changed, 12 insertions(+), 1 deletion(-) commit 8995a3e19cb96762b287b26d69d30d1293138d41 Author: Chun-wei Fan Date: Fri Mar 6 11:16:52 2015 +0800 MSVC 2010+ Builds: Clean up gtk-install.props Remove empty lines, they aren't really necessary. build/win32/vs10/gtk-install.props | 277 ------------------------------------- 1 file changed, 277 deletions(-)