summaryrefslogtreecommitdiff
path: root/x11/gtk3
AgeCommit message (Collapse)AuthorFilesLines
2013-05-18Update gtk3 to version 3.8.2prlw15-133/+117
Rename patch-gtk_a11y_gail.c to patch-gtk_a11y_gtkaccessibility.c Many improvements, bug fixes and translation updates: https://git.gnome.org/browse/gtk+/tree/NEWS?id=3.8.2 Highlights: * Deprecations and removals: - Custom CSS properties have been deprecated - Support for color schemes has been removed - gtk_style_provider_get_style, gtk_style_provider_get_icon_factory - GtkGradient and GtkSymbolicColor - All the padding style properties in menus * CSS improvements: - Add cycle detection to color resolving * A lot of filechooser button fixes * The print dialog now shows printers that are discovered using avahi, if configured with --enable-avahi-browsing * We now support the Window Manager frame synchronization protocol draft (when running under a WM that supports it). This means applications will throttle their drawing cycle to what the compositor is drawing, and the compositor will never render half-updated windows, for seamless resizing and improved smoothness in drawing. See https://mail.gnome.org/archives/wm-spec-list/2013-January/msg00000.html and the articles at http://blog.fishsoup.net/ for more details. * We now support setting an opacity to any GtkWidget, not just toplevels: gtk_window_set_opacity has been deprecated in favor of gtk_widget_set_opacity. * GtkIconTheme gained asynchronous loaders for GtkIconInfo objects * GtkIconInfo has changed from being a boxed type to a GObject. This is technically an ABI change, but basically all existing code will keep working if its used as a boxed type, and its not possible to instantiate GtkIconInfos outside Gtk, so this is not expected to be a big problem. * GtkTreeView and GtkIconView allow single-click activation * GtkImage can be set from a resource * GdkWaylandDisplay is now public * gdk_window_set_fullscreen_mode: new function to let windows be fullscreened across multiple monitors * We now use state flags for text direction: GTK_STATE_FLAG_LTR/RTL. gtk_style_context_set_direction() has been deprecated. * We install headers for accessible implementations of GTK+ widgets. This makes it possible to implement accessibility for third-party widgets by subclassing the proper GTK+ implementation. To do this, include gtk/gtk-a11y.h. * Invisible widgets now return a size of 0x0. This is an experimental change that makes GtkWidget::visible essentially behave the same way that "display: none" does in CSS. If you want the effect of CSS's "visibility: hidden", you can use a GtkNotebook with an empty page. * GtkFrame now draws a background. * The Broadway backend now installs a separate server: broadwayd. * GtkBuilder now lets you refer to external objects from a ui file if the objects have been exported with the new function gtk_builder_expose_object() * Font handling has been improved: - The default font is no longer handled like a custom style sheet that overrides everything, but as the initial value. This is the same behavior as in web browsers. - It is now possible to set font-family and font-size like other CSS properties, and relative font sizes are supported. Font sizes in CSS can be specified as numbers or with keywords like xx-small, medium, smaller, larger,... * GTK+ now uses proper Unicode ellipses in strings.
2013-05-11Make atk-bridge an option (default enabled) for x11/gtk3.riastradh7-6/+129
2013-03-12Since libXi-1.7 there are header problems between it and Xfixes-5.0.wiz2-1/+17
This is hacky workaround.
2013-02-16Recursive bump for png-1.6.wiz2-4/+4
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-1/+2
2013-01-09Update gtk3 to 3.6.4prlw12-6/+6
Changes in 3.6.4: * Bug fixes: 691186 stylecontext: Make font hack not crash Changes in 3.6.3: * The Wayland backend works with Wayland 1.0.0 now * Bug fixes: 132333 Can't add a palette to the dialog of a color button 371034 Doc for gtk_file_chooser_get_filename: Is the resulting... 548793 funny pattern for iterating GtkTreeModel 577806 gtk_file_chooser_add_shortcut_folder adds duplicates of... 626499 GtkClipboard unnotified on change of OS X pasteboard owner 668239 texts disappear when notebook switch page at zh_CN locate! 672193 windows (including menus) shown multiple times don't ge... 677339 GTK+ 3 documentation wrong about GtkWidget scroll-event... 683072 Print dialog shows cryptic status message and displays ... 687065 InstallableOptions is not filtered in cups backend 687816 GtkTreeView does not draw correctly since commit aaedc7b6 688710 [PATCH] Splash screens shouldn't stay on top of all app... 688884 Typo in gtk_tree_view_set_tooltip_column documentation 689235 Broken function declarations corrupt the stack on windows 690266 Freeze with F10/Shift-F10 on submenus Win32: Avoid infinite recursion in the ime input module Quartz: Fixes for splashscreen and tooltip windows * Translation updates: Dutch German Gujarati Tamil Uyghur
2012-11-13Changes 3.6.2adam4-10/+10
* Bug fixes: 677609 GtkSizeGroup regression in GTK+ 3.3.20 686021 spinner animation should not be subject to... 686265 scrolledwindow: set GDK_EXPOSURE_MASK on t... 686280 GtkScrollbar and GtkScale rendering broken... 687196 filesystemmodel: invalidate nodes on file ... 687467 Commit "Implement proper cross-fades for g... 687872 Segfault when attempting to get character ... * Translation updates: Irish Traditional Chinese
2012-10-29Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-23Remove xextproto/buildlink3.mk in most cases where it occurs withwiz1-2/+1
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).
2012-10-21Revert buildlink3 ABI bump, it wasn't necessary (no shlib major changed)wiz1-2/+2
and leads to unneeded package rebuilds. Discussed with Patrick Welche.
2012-10-18More gtk3 update - less haste more speedprlw11-2/+2
2012-10-18Missed from gtk3 updateprlw11-1/+3
2012-10-18Update gtk3 to 3.6.1prlw18-97/+65
* The accessibility bridge code that exports accessible objects on the bus is now used by default; atk-bridge has been converted into a library that GTK+ links against. To void the linking, pass --without-atk-bridge when configuring GTK+. * GDK threading support has been deprecated. It is recommended to use g_idle_add(), g_main_context_invoke() and similar funtions to make all GTK+ calls from the main thread. * GTK+ now follows the XDG Base Directory specification for user configuration and data files. In detail, * $XDG_CONFIG_HOME/gtk-3.0/custom-papers is the new location for $HOME/.gtk-custom-papers * $XDG_CONFIG_HOME/gtk-3.0/bookmarks is the new location for $HOME/.gtk-bookmarks * $XDG_DATA_HOME/themes is preferred over $HOME/.themes * $XDG_DATA_HOME/icons is preferred over $HOME/.icons. Existing files from the old location will still be read if the new location does not exist. * $HOME/.gtk-3.0 is no longer in the default module load path. If you want to load modules from there, add it to the GTK_PATH environment variable.
2012-10-08Revbump after updating graphics/pangoadam2-4/+4
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-2/+2
are called p5-*. I hope that's all of them.
2012-10-03Add version information in DESCR.wiz1-0/+2
From Bug Hunting.
2012-10-02Mass recursive bump after the dependence fix of the "cairo" packagetron2-4/+4
requested by Thomas Klausner.
2012-09-15recursive bump from libffi shlib major bumpobache2-4/+4
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-09-07Revbump after updating graphics/cairoadam2-3/+4
2012-07-24update to 3.4.4drochner3-14/+13
changes: -bugfixes -translation updates
2012-06-15Whitespace. (as whined about by pkglint)dholland1-3/+3
2012-05-29Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@)cheusov1-2/+2
2012-05-17x11/gtk3: Fix dependency / Fix DragonFlymarino1-2/+9
In order to accomplish the given PLIST, gobject-introspection must be at version 1.32 at least (rather than the specified version 0.10.1). Revbump for the dependency change. Also, two conftests were failing on DragonFly that should have passed so these were overridden as successes to fix the 3.4.3 build on DragonFly.
2012-05-15Changes 3.4.3:adam2-8/+8
* GtkIconView: - The sizing and layout has been rewritten * Bug fixes: 478344 GtkTreeRowReference falsely said to auto-subscribe... 587873 Documentation should explain MessageDialogs don't ... 663072 GtkSelectionData is incorrectly documented 670449 Splash screen stays 672947 GtkEntryCompletion sizing/position fixes 673237 window: Remove needless call to ensure_state_flag_... 674192 out-of-tree build failure: demos/widget-factory/wi... 674549 widget receives leave event when button released 675421 GtkFileChooser should set its role 675501 gtkquartz.h is not the gtk+-3.5.2.tar.xz archive * Translation updates: Dutch Italian
2012-04-30update to 3.4.1drochner4-38/+80
This is a new major release.
2012-03-21Don't override an existing _XOPEN_SOURCE definition. Define it on SunOShans3-2/+19
to make this build with std=gnu99.
2012-03-21update to 3.2.4drochner2-7/+6
changes: -bugfixes -translation updates
2012-03-03Recursive bump for pcre-8.30* (shlib major change)wiz2-4/+4
2012-02-10switch on introspection support, bump PKGREVdrochner2-6/+12
2012-02-09sync API_DEPENDS with reality, from Patrick Welchedrochner1-4/+7
2012-02-06Revbump forwiz2-3/+4
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2012-02-03update to 3.2.3drochner5-29/+78
This switches to the 3.2 release branch. Thanks to Patrick Welche for testing.
2011-11-27Fixes PR pkg/45552obache2-4/+6
* installing GSettings schemas, so prepare it with framework in glib2. * fixes immodule cache path. Bump PKGREVISION.
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd2-3/+4
2011-09-10Fixes PLIST entries for gdk-target=x11.obache1-5/+2
2011-09-09Changes 3.0.12:adam4-44/+60
* Assorted file chooser improvements/redesign: - Remove the expander in Save mode - Move the path bar up in Save mode - Remember the last opened directory - Start in recently-used mode when no folder is set - Update recent-files when confirming in the file chooser
2011-07-17Replace whitespace with tabs.ryoon1-2/+2
2011-06-09update to 3.0.11drochner2-6/+6
changes: -Modernize custom paper size dialog look -Add an app chooser to the gtk-demo 'Pickers' example -bugfixes -translation updates
2011-06-05Rename immodule related variable names, and not to conflict with gtk2 immodules.obache3-13/+13
2011-05-25update to 3.0.10drochner2-7/+6
changes: -bugfixes -translation updates
2011-05-18update to 3.0.9drochner2-6/+6
changes: -bugfixes -theming improvements -translation updates
2011-04-22recursive bump from gettext-lib shlib bump.obache2-3/+4
2011-04-10fix condition for cups option.obache1-2/+2
2011-04-08update to 3.0.8drochner3-54/+9
changes: -theming related improvements -bugfixes -translation updates
2011-03-18first cut on a pkg for gtk3, the successor of the gtk2 toolkit:drochner11-0/+1512
add gtk3-3.0.3