Changes between Version 55 and Version 56 of PadrePluginCookbookRecipie05
- Timestamp:
- 11/22/12 20:43:02 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PadrePluginCookbookRecipie05
v55 v56 51 51 my $self = shift; 52 52 return $self->plugin_name => [ 53 'About' => sub { $self-> show_about},53 'About' => sub { $self->about_dialog }, 54 54 55 55 # 'Another Menu Entry' => sub { $self->other_method }, … … 98 98 99 99 # Default, required 100 'Padre::Plugin' => '0.9 4',100 'Padre::Plugin' => '0.96', 101 101 102 102 # used by Main, About and by Padre::Plugin::FormBuilder 103 'Padre::Wx' => '0.9 4',104 'Padre::Wx::Main' => '0.9 4',105 'Padre::Wx::Role::Main' => '0.9 4',106 'Padre::DB' => '0.9 4',107 'Padre::Logger' => '0.9 4',103 'Padre::Wx' => '0.96', 104 'Padre::Wx::Main' => '0.96', 105 'Padre::Wx::Role::Main' => '0.96', 106 'Padre::DB' => '0.96', 107 'Padre::Logger' => '0.96', 108 108 ); 109 109 } … … 358 358 359 359 $info->SetName( 'The wxPerl demo' ); 360 $info->SetVersion( '0.01 alpha 12');360 $info->SetVersion( $VERSION ); 361 361 $info->SetDescription( 'The cool and pluggable wxPerl demo' ); 362 362 $info->SetCopyright( '(c) 2001-today Me <me@test.com>' ); … … 372 372 373 373 $info->SetName( 'The wxPerl demo' ); 374 $info->SetVersion( '0.01 alpha 12');374 $info->SetVersion( $VERSION ); 375 375 $info->SetDescription( 'The cool and pluggable wxPerl demo' ); 376 376 $info->SetCopyright( '(c) 2001-today Me <me@test.com>' );
