X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=README;h=cd795d8084c1f9ec7fc930d8894714933b5b6fc9;hb=cd96bd02093f10908253e94ff9cebc919600ef0d;hp=04bd814a15f34d9b2dc3955eb41acc84e2e1640d;hpb=f393e85f593b7628a2f2bc81558c075dcb11c131;p=~andy%2Fgtk diff --git a/README b/README index 04bd814a1..cd795d808 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ General Information =================== -This is GTK+ version 2.13.2. GTK+ is a multi-platform toolkit for +This is GTK+ version 2.16.0. GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. @@ -36,6 +36,29 @@ Release notes for 2.14 without including gtkitemfactory.h - even though this behaviour has never been supported in the first place. +* The GtkFileSystem semi-private interface has been removed. + The GTK+ filechooser implementation now uses GIO directly, which has + rendered external filesystem implementations unnecessary. Consequently, + the GtkFileSystem interface is no longer available, nor the filechooser + will load any GtkFileSystem implementation. + +* GtkComboBox now renders the popdown button insensitive when + the model is empty. Applications which want to populate the list + only before displaying it can set gtk_combo_box_set_button_sensitivity + to GTK_SENSITIVITY_ON, so that the button is always sensitive or + GTK_SENSITIVITY_OFF to make it insensitive respectively. + +* GtkAdjustment now enforces that values are restricted to the + range [lower, upper - page_size]. This has always been the documented + behaviour, and the recommended practice is to set page_size to 0 + when using adjustments for simple scalar values, like in a slider + or spin button. + +* gdk-pixbuf will use GIO for mime type detection if possible. For + this to work, shared-mime-info needs to be installed and XDG_DATA_DIRS + set accordingly at configure time. Otherwise, gdk-pixbuf falls + back to its built-in sniffing implementation. + Release notes for 2.12 ======================