* Bug fixes:
694077 Make GtkItemFactory produce GtkSeparatorMenuItems
645065 GtkFileChooserButton doesn't handle closing its dialog correctly
Reliably stop spinning when a GtkSpinButton is hidden
* Bug fixes:
626499 GtkClipboard unnotified on change of OS X pasteboard owner
656565 Signalify (already existing) GtkMenuShell.insert()
664640 CUPS authentication does not work
669808 fullscreen/unscreen was broken for Quartz on OS X earli...
674556 File chooser dialog does not save its sizes
679883 When printing Custom paper sizes GTK Print Dialog does ...
683511 spinbutton: fix xthickness bug when resizing the text a...
689810 Include guard optimization
689982 Make GChecksum more fully introspectable
690788 Critical in gtknotebook dnd with rgba colormap
692099 autogen.sh doesn't recognize automake 1.13
692554 entry: never use GTK_STATE_ACTIVE to paint the background
692810 Fails to build with the gold linker due to missing refe...
Fix scrolling in insensitive modal dialogs
* Translation updates
Norwegian bokmål
changes:
- Use the bookmarks file from the same XDG location as GTK+ 3 if present
- Add a setting to specify the file chooser startup mode
-bugfixes
-translation updates
libXext/buildlink3.mk, now that it is included there.
Leave the places where its API version is set or variables from it
are used directly (about 3 packages).
* Implement a gtk-primary-button-warps-slider setting
that lets us adjust scale and scrollbar behaviour
according to platform.
* Bug fixes:
661973 Try harder to discriminate Shift-F10 and F10
675365 Always check if the global context id changed
674108 Hard crash due to wrong NSAutoreleasePool stacking
* Translation updates:
Polish
* Allow building with automake 1.12
* Bugs fixed:
616997 gtk_recent_manager_add_item() is slow
680346 gtk+-2.24.11 (commit 3f6592f6) breaks keyboard input...
680901 GTK+: The chinese translations of "even sheet" and ...
681784 colorspaces used in gtk+ and cairo quartz backends d...
683070 tooltip: add tooltip-radius and tooltip-alpha style ...
683279 range: add a primary-button-warps-slider style prope...
quartz: fix corruption during scrolling in some cases
* Translation updates:
Polish
Traditional Chinese
changes: bugfixes
pkgsrc note: backed out upstream change for cups Custom print options,
it causes crashes at least with firefox, see gnome bug #543520
the "bash" requirement for "configure", works around build problems
due to unresolved problems with bash on Dragonfly
(PR pkg/45059 by Matthias Rampke)
alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in */*; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" "$i"
fi
done
done