~ubuntu-branches/ubuntu/utopic/padre/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/Padre/Wx/Menu/Help.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont
  • Date: 2012-05-12 12:40:00 UTC
  • mfrom: (1.3.5)
  • Revision ID: package-import@ubuntu.com-20120512124000-lpfuc4ny1eo3ecvx
Tags: 0.96+dfsg1-1
* new upstream version
* control: 
   * updated dependencies versions
   - removed  libformat-human-bytes-perl
   * cleanup unneeded version dependencies 
   - removed provides on padre-plugin-api-2. The only remaining packages
     depending on this meta package are already incompatible with new 
     padre  (and broken upstream)
   * no need to depend on libtest-warn-perl 0.24, 0.23 is enough
* patches:
   - removed hack-missing-context-menu (obsolete)
   + Skip upstream test that broke with new DBI. See patch header 
     for more details
   + fix spellings reported by lintian

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
use Padre::Wx       ();
13
13
use Padre::Wx::Menu ();
14
14
 
15
 
our $VERSION = '0.94';
 
15
our $VERSION = '0.96';
16
16
our @ISA     = 'Padre::Wx::Menu';
17
17
 
18
18
 
102
102
        $self->add_menu_action(
103
103
                'help.about',
104
104
        );
105
 
        
 
105
 
106
106
        # Add the About2
107
107
        $self->add_menu_action(
108
108
                'help.about2',
109
109
        );
110
 
        
 
110
 
111
111
        return $self;
112
112
}
113
113