Skip to content

Commit

Permalink
1.010
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Mar 24, 2024
1 parent 85dddc6 commit 29f7088
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
1.010 2024-03-24
- fix PGPLOT to read devices correctly

1.009 2023-01-28
Expand Down
6 changes: 3 additions & 3 deletions lib/PDL/Graphics/Simple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ use PDL::Options q/iparse/;
use File::Temp qw/tempfile tempdir/;
use Scalar::Util q/looks_like_number/;

our $VERSION = '1.009';
$VERSION = eval $VERSION;
our $VERSION = '1.010';
$VERSION =~ s/_//g;

##############################
# Exporting
Expand Down Expand Up @@ -1393,7 +1393,7 @@ sub register {
unless( defined($mod->{$_}));
}

warn "PDL::Graphics::Simple::register: $module is out of date - winging it"
warn "PDL::Graphics::Simple::register: $module is out of date (mod='$mod->{pgs_version}' PGS='$VERSION') - winging it"
unless($mod->{pgs_version} eq $VERSION);

$mods->{$mod->{shortname}} = $mod;
Expand Down
2 changes: 1 addition & 1 deletion lib/PDL/Graphics/Simple/Gnuplot.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ our $mod = {
module=>'PDL::Graphics::Simple::Gnuplot',
engine => 'PDL::Graphics::Gnuplot',
synopsis=> 'Gnuplot 2D/3D (versatile; beautiful output)',
pgs_version=> '1.009',
pgs_version=> '1.010',
};
eval { require PDL::Graphics::Gnuplot; 1; } and
PDL::Graphics::Simple::register( 'PDL::Graphics::Simple::Gnuplot' );
Expand Down
2 changes: 1 addition & 1 deletion lib/PDL/Graphics/Simple/PGPLOT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ our $mod = {
module=>'PDL::Graphics::Simple::PGPLOT',
engine => 'PDL::Graphics::PGPLOT::Window',
synopsis=> 'PGPLOT (venerable but trusted)',
pgs_version=> '1.009',
pgs_version=> '1.010',
};
eval { require PDL::Graphics::PGPLOT::Window; 1; } and
PDL::Graphics::Simple::register( 'PDL::Graphics::Simple::PGPLOT' );
Expand Down
2 changes: 1 addition & 1 deletion lib/PDL/Graphics/Simple/PLplot.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ our $mod = {
module=>'PDL::Graphics::Simple::PLplot',
engine => 'PDL::Graphics::PLplot',
synopsis=> 'PLplot (nice plotting, sloooow images)',
pgs_version=> '1.009',
pgs_version=> '1.010',
};
eval { require PDL::Graphics::PLplot; 1; } and
PDL::Graphics::Simple::register( 'PDL::Graphics::Simple::PLplot' );
Expand Down
2 changes: 1 addition & 1 deletion lib/PDL/Graphics/Simple/Prima.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ our $mod = {
module => 'PDL::Graphics::Simple::Prima',
engine => 'PDL::Graphics::Prima',
synopsis => 'Prima (interactive, fast, PDL-specific)',
pgs_version => '1.009',
pgs_version => '1.010',
};
eval { require PDL::Graphics::Prima; 1 } and
PDL::Graphics::Simple::register('PDL::Graphics::Simple::Prima');
Expand Down

0 comments on commit 29f7088

Please sign in to comment.