Changeset 2192


Ignore:
Timestamp:
12/23/08 19:52:50 (3 years ago)
Author:
azawawi
Message:

[Padre::Plugin::Perl6] Updating changes and releasing 0.013 to CPAN

Location:
trunk/Padre-Plugin-Perl6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre-Plugin-Perl6/Changes

    r2162 r2192  
    11Changes 
     2 
     30.013 Dec 24 2008 
     4    - Added a menu separator before About menu item in Padre::Plugin::Perl6 
     5    - Another message typo fix in Padre::Document::Perl6 
     6    - Show an error message box in the following situations:  
     7        - exporting a non-Perl6 file  
     8        - STD.pm parsing error occurs 
    29 
    3100.012 Dec 22 2008 
  • trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6.pm

    r2191 r2192  
    1414use File::Temp; 
    1515 
    16 our $VERSION = '0.012'; 
     16our $VERSION = '0.013'; 
    1717 
    1818use URI::file; 
     
    8484    } 
    8585    if($doc->get_mimetype ne q{application/x-perl6}) { 
    86         Wx::MessageBox( 
    87             'Not a Perl 6 file', 
    88             'Export cancelled', 
    89             Wx::wxOK, 
    90             Padre->ide->wx->main_window 
    91         ); 
     86        Wx::MessageBox( 
     87            'Not a Perl 6 file', 
     88            'Export cancelled', 
     89            Wx::wxOK, 
     90            Padre->ide->wx->main_window 
     91        ); 
    9292        return; 
    9393    } 
     
    113113 
    114114    if($EVAL_ERROR) { 
    115         Wx::MessageBox( 
    116             qq{STD.pm Parsing Error:\n$EVAL_ERROR}, 
    117             'Export cancelled', 
    118             Wx::wxOK, 
    119             Padre->ide->wx->main_window 
    120         ); 
     115        Wx::MessageBox( 
     116            qq{STD.pm Parsing Error:\n$EVAL_ERROR}, 
     117            'Export cancelled', 
     118            Wx::wxOK, 
     119            Padre->ide->wx->main_window 
     120        ); 
    121121        say "\nSTD.pm Parsing error\n" . $EVAL_ERROR; 
    122122        return; 
Note: See TracChangeset for help on using the changeset viewer.