[perl-Gtk2] Release 1.230



commit 91e41f92ca965735ea6be0ebcfa4c241ab3321b0
Author: Torsten Schönfeld <kaffeetisch gmx de>
Date:   Sun Apr 25 18:24:36 2010 +0200

    Release 1.230

 Gtk2.pm     |    6 +++---
 MANIFEST    |    1 +
 Makefile.PL |    8 ++++----
 NEWS        |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 README      |    6 +++---
 5 files changed, 67 insertions(+), 10 deletions(-)
---
diff --git a/Gtk2.pm b/Gtk2.pm
index cf2f43a..550d31b 100644
--- a/Gtk2.pm
+++ b/Gtk2.pm
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2003-2008 by the gtk2-perl team (see the file AUTHORS for
+# Copyright (C) 2003-2010 by the gtk2-perl team (see the file AUTHORS for
 # the full list)
 #
 # This library is free software; you can redistribute it and/or modify it under
@@ -73,7 +73,7 @@ eval "use Cairo;";
 use Exporter;
 require DynaLoader;
 
-our $VERSION = '1.220';
+our $VERSION = '1.230';
 
 our @ISA = qw(DynaLoader Exporter);
 
@@ -405,7 +405,7 @@ The gtk2-perl team:
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2003-2008 by the gtk2-perl team.
+Copyright 2003-2010 by the gtk2-perl team.
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Library General Public
diff --git a/MANIFEST b/MANIFEST
index a770067..242e50a 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -546,6 +546,7 @@ xs_files-2.10
 xs_files-2.12
 xs_files-2.14
 xs_files-2.16
+xs_files-2.18
 xs_files-2.2
 xs_files-2.4
 xs_files-2.6
diff --git a/Makefile.PL b/Makefile.PL
index 59e9e21..50f7111 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -33,7 +33,7 @@ use Cwd;
 our %build_reqs = (
 	'perl-ExtUtils-Depends'   => '0.300',
 	'perl-ExtUtils-PkgConfig' => '1.030',
-	'perl-Glib'               => '1.220',
+	'perl-Glib'               => '1.230',
 	'perl-Pango'              => '1.220',
 	'perl-Cairo'              => '1.000',
 	'Gtk+'                    => '2.0.0',
@@ -286,7 +286,7 @@ WriteMakefile(
     $gtk2->get_makefile_vars,
 );
 
-=unstable
+#=unstable
 
 print <<__EOW__;
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
@@ -294,12 +294,12 @@ WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
    This is an unstable development release of Gtk2.  The API is not
    frozen and things are subject to change at any time.  Report any
    bugs to gtk-perl-list AT gnome DOT org as soon as possible.
-   Please use the 1.20x series for important work.
+   Please use the 1.22x series for important work.
 
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
 __EOW__
 
-=cut
+#=cut
 
 =frozen
 
diff --git a/NEWS b/NEWS
index aede5d9..82feeb4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,59 @@
+Overview of changes in Gtk2 1.230
+=================================
+
+* Wrap gtk+ 2.20 API in:  [Special thanks to Quentin Sculo]
+  - Gtk2::Notebook
+* Wrap gtk+ 2.18 API in:  [Special thanks to Quentin Sculo]
+  - Gtk2::FileChooser
+  - Gtk2::IconView
+  - Gtk2::InfoBar
+  - Gtk2::Label
+  - Gtk2::Menu
+  - Gtk2::Range
+  - Gtk2::StatusIcon
+  - Gtk2::Gdk::Cairo
+  - Gtk2::Gdk::Region
+  - Gtk2::Gdk::Window
+* Wrap gtk+ 2.16 API in:  [Special thanks to Emmanuele Bassi and Quentin
+  Sculo]
+  - Gtk2::Action
+  - Gtk2::Entry
+  - Gtk2::Gdk::Keymap
+  - Gtk2::IMContext
+  - Gtk2::MenuItem, Gtk2::ImageMenuItem
+  - Gtk2::Scale
+  - Gtk2::Window
+* Wrap gtk+ 2.14 API:
+  - Gtk2::Adjustment  [Special thanks to Kevin Ryde]
+  - Gtk2::Gdk::Event
+  - Gtk2::Gdk::Screen
+* Wrap gtk+ 2.12 API in Gtk2::Gdk::Window.
+* Make Gtk2::FontButton->new and Gtk2::ColorButton->new more flexible:
+  When called with an argument, turn new() into new_with_color() or
+  new_with_font(), respectively.
+* Accept format strings in Gtk2::MessageDialog->format_secondary_markup.
+* Allow undef in a few places:
+  - Gtk2::Gdk::Drawable->draw_pixbuf, draw_layout_with_colors,
+    draw_layout_line_with_colors, draw_segments
+  - Gtk2::Gdk::Window->invalidate_rect, set_icon_name,
+    input_shape_combine_mask, shape_combine_mask,
+    input_shape_combine_region, shape_combine_region
+  - Gtk2::AccelLabel->set_accel_widget
+  - Gtk2::Menu->set_screen
+  - Gtk2::Widget->set_accel_path, shape_combine_mask
+  - Gtk2::Window->set_default_icon_name
+* In syntax check mode, do not call gtk_init.  gtk_init may abort the
+  program (e.g. if DISPLAY is not set), so only call gtk_init_check even
+  if asked to call gtk_init.
+* Gtk2::Menu: trap exceptions in popup callbacks.  Uncaught exceptions
+  in a popup callback can result in persistent mouse and keyboard grabs,
+  locking the screen until the program is killed.
+* Make Gtk2::ListStore->remove()'s return value consistent on gtk+ 2.0.
+* Fix memory handling in Gtk2::RecentInfo->get_application_info.
+* Improve the documentation in many places.  [Special thanks to Kevin
+  Ryde]
+* Fix some build and test failures.
+
 Overview of changes in Gtk2 1.220
 =================================
 
diff --git a/README b/README
index 6a9284c..a71dc05 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Gtk2 version 1.220
+Gtk2 version 1.230
 ==================
 
 Perl bindings to the 2.x series of the Gtk+ graphical user interface library.
@@ -61,7 +61,7 @@ DEPENDENCIES
 This module requires these other modules and libraries:
 
   perl >= 5.8.0
-  Glib >= 1.220 (Perl module)
+  Glib >= 1.230 (Perl module)
   Pango >= 1.220 (Perl module)
   GTK+ > 2.x (C library)
 
@@ -85,7 +85,7 @@ Please report bugs to the gnome-perl product in GNOME's Bugzilla:
 COPYRIGHT AND LICENSE
 ---------------------
 
-Copyright (C) 2003-2008 by the gtk2-perl team (see the file AUTHORS for the
+Copyright (C) 2003-2010 by the gtk2-perl team (see the file AUTHORS for the
 full list)
 
 This library is free software; you can redistribute it and/or modify it under



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]