[gimp-perl] Release 2.32
- From: Ed J <edj src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp-perl] Release 2.32
- Date: Sun, 8 May 2016 14:43:27 +0000 (UTC)
commit a1edf1dc7a6de26c856f92ee1bbb3b7422a488de
Author: Ed J <edj src gnome org>
Date: Sun May 8 15:38:10 2016 +0100
Release 2.32
Changes | 30 ++++++++++++++++++++++++++++++
lib/Gimp.pm | 2 +-
lib/Gimp/Constant.pm | 2 +-
lib/Gimp/Extension.pm | 2 +-
lib/Gimp/Fu.pm | 2 +-
lib/Gimp/Lib.pm | 2 +-
lib/Gimp/Net.pm | 2 +-
lib/Gimp/Pod.pm | 2 +-
lib/Gimp/UI.pm | 2 +-
lib/Gimp/Util.pm | 2 +-
10 files changed, 39 insertions(+), 9 deletions(-)
---
diff --git a/Changes b/Changes
index 0734f94..1c53bc1 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,35 @@
Revision history for Perl module Gimp
+2.32 2016-05-08
+
+ [API]
+ - Add on_proc hook called in lib mode only
+ - Correctly handle returning of selected vals for storing
+ - Add code param to UI::interact
+
+ [Doc]
+ - Update examples README with updated tutorial location
+
+ [Plugins]
+ - Perl-Console now runs commands on startup.
+
+ [Build]
+ - update to proper Changes format
+ - update to use EUMM XSMULTI
+ - remove from MANIFEST MYMETA.* (oops)
+ - Move build system to using Alien::Gimp, unify typemaps
+ - Reduce false positives in make setver.
+ - dist target doesn't need gzip specified.
+ - make parallel test run faster by starting slow ones first
+ - specify dependencies better
+
+ [Bug fixes]
+ - Avoid 5.21 sprintf warnings if no %d
+ - Avoid uninit warning
+ - If too many args to PDB call, report how many right.
+ - make t/02-netplugin.t ignore RANDR error
+ - force locale as 5.20.0 in de_DE fails on "use 5.006_001"
+
2.31_07 2016-05-07
Build:
diff --git a/lib/Gimp.pm b/lib/Gimp.pm
index 4dc156f..edfc4e2 100644
--- a/lib/Gimp.pm
+++ b/lib/Gimp.pm
@@ -10,7 +10,7 @@ our (
use subs qw(init end lock unlock);
BEGIN {
- $VERSION = '2.31_07'; # going forward: 2.xx, or 2.xx_yy for dev
+ $VERSION = '2.32'; # going forward: 2.xx, or 2.xx_yy for dev
eval {
require XSLoader;
XSLoader::load Gimp $VERSION;
diff --git a/lib/Gimp/Constant.pm b/lib/Gimp/Constant.pm
index fceeed2..4fb8674 100644
--- a/lib/Gimp/Constant.pm
+++ b/lib/Gimp/Constant.pm
@@ -5,7 +5,7 @@ use strict qw(vars);
our ($VERSION, @EXPORT, @PARAMS, @INXS);
BEGIN {
- $VERSION = "2.31_07";
+ $VERSION = "2.32";
# XS code in Gimp.xs... for now
# eval {
# require XSLoader;
diff --git a/lib/Gimp/Extension.pm b/lib/Gimp/Extension.pm
index 4686596..788d32a 100644
--- a/lib/Gimp/Extension.pm
+++ b/lib/Gimp/Extension.pm
@@ -12,7 +12,7 @@ use Gtk2;
sub __ ($) { goto &Gimp::__ }
sub main { goto &Gimp::main; }
-our $VERSION = "2.31_07";
+our $VERSION = "2.32";
our @EXPORT = qw(podregister main add_listener register_temp podregister_temp);
# this is to avoid warnings from importing main etc from Gimp::Fu AND here
diff --git a/lib/Gimp/Fu.pm b/lib/Gimp/Fu.pm
index c5215e1..0f3ecdc 100644
--- a/lib/Gimp/Fu.pm
+++ b/lib/Gimp/Fu.pm
@@ -11,7 +11,7 @@ use FindBin qw($RealBin $RealScript);
use File::stat;
our $run_mode;
-our $VERSION = "2.31_07";
+our $VERSION = "2.32";
# manual import
sub __ ($) { goto &Gimp::__ }
diff --git a/lib/Gimp/Lib.pm b/lib/Gimp/Lib.pm
index 667c18e..9c3a3e7 100644
--- a/lib/Gimp/Lib.pm
+++ b/lib/Gimp/Lib.pm
@@ -5,7 +5,7 @@ use warnings;
use vars qw($VERSION @ISA);
BEGIN {
- $VERSION = "2.31_07";
+ $VERSION = "2.32";
require XSLoader;
XSLoader::load Gimp::Lib $VERSION;
warn "$$-Loading ".__PACKAGE__ if $Gimp::verbose >= 2;
diff --git a/lib/Gimp/Net.pm b/lib/Gimp/Net.pm
index b0e0c34..1cfdfaf 100644
--- a/lib/Gimp/Net.pm
+++ b/lib/Gimp/Net.pm
@@ -33,7 +33,7 @@ use IO::Socket;
use Carp 'croak';
use Fcntl qw(F_SETFD);
-$VERSION = "2.31_07";
+$VERSION = "2.32";
bootstrap Gimp::Net $VERSION;
my $PROTOCOL_VERSION = 5; # protocol version
diff --git a/lib/Gimp/Pod.pm b/lib/Gimp/Pod.pm
index 8dcd914..718697a 100644
--- a/lib/Gimp/Pod.pm
+++ b/lib/Gimp/Pod.pm
@@ -10,7 +10,7 @@ use base 'Exporter';
use Pod::Simple::SimpleTree;
our @EXPORT = qw(fixup_args make_arg_line);
-our $VERSION = "2.31_07";
+our $VERSION = "2.32";
warn "$$-Loading ".__PACKAGE__ if $Gimp::verbose >= 2;
diff --git a/lib/Gimp/UI.pm b/lib/Gimp/UI.pm
index c006099..85a3bfc 100644
--- a/lib/Gimp/UI.pm
+++ b/lib/Gimp/UI.pm
@@ -15,7 +15,7 @@ use warnings;
our (@ISA, $VERSION);
BEGIN {
no locale;
- $VERSION = "2.31_07";
+ $VERSION = "2.32";
eval {
require XSLoader;
XSLoader::load Gimp::UI $VERSION;
diff --git a/lib/Gimp/Util.pm b/lib/Gimp/Util.pm
index 61e3c87..1d1fef1 100644
--- a/lib/Gimp/Util.pm
+++ b/lib/Gimp/Util.pm
@@ -14,7 +14,7 @@ our @EXPORT_OK = qw(
sub __ ($); # declare - defined in Gimp
-our $VERSION = "2.31_07";
+our $VERSION = "2.32";
sub get_state() {
[
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]