Changeset 5530
- Timestamp:
- 06/24/09 11:23:06 (3 years ago)
- Location:
- trunk/Padre-Plugin-Perl6
- Files:
-
- 9 edited
-
Changes (modified) (1 diff)
-
lib/Padre/Plugin/Perl6.pm (modified) (1 diff)
-
lib/Padre/Plugin/Perl6/Perl6Document.pm (modified) (1 diff)
-
lib/Padre/Plugin/Perl6/Perl6OutlineTask.pm (modified) (1 diff)
-
lib/Padre/Plugin/Perl6/Perl6PgeColorizerTask.pm (modified) (1 diff)
-
lib/Padre/Plugin/Perl6/Perl6StdColorizerTask.pm (modified) (1 diff)
-
lib/Padre/Plugin/Perl6/Perl6SyntaxCheckerTask.pm (modified) (1 diff)
-
lib/Padre/Plugin/Perl6/Preferences.pm (modified) (1 diff)
-
lib/Padre/Plugin/Perl6/Util.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre-Plugin-Perl6/Changes
r5490 r5530 1 1 Changes 2 3 =head1 0.46 2009.6.24 4 5 - More source documentation on quick fixes. 6 - No more insertion of text; just current line string replacement. 7 - Comment error line' is more accurate. 8 - Fixed a possible point of failure. 9 - Respect document newline and user's indentation. 10 - Comment error line quick fix is always the last one if an error occurs is 11 on the current line 12 - Finally implemented 'Surround with try { ... }' quick fix. Perl 6 13 exception handling with indentation. 14 - use a # and a space to toggle comments to avoid '#(' parametric comments 2 15 3 16 =head1 0.45 2009.6.23 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6.pm
r5488 r5530 9 9 10 10 # exports and version 11 our $VERSION = '0.4 5';11 our $VERSION = '0.46'; 12 12 our @EXPORT_OK = qw(plugin_config); 13 13 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6Document.pm
r5519 r5530 7 7 use Padre::Wx (); 8 8 9 our $VERSION = '0.4 5';9 our $VERSION = '0.46'; 10 10 our @ISA = 'Padre::Document'; 11 11 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6OutlineTask.pm
r5488 r5530 4 4 use warnings; 5 5 6 our $VERSION = '0.4 5';6 our $VERSION = '0.46'; 7 7 8 8 use base 'Padre::Task::Outline'; -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6PgeColorizerTask.pm
r5488 r5530 5 5 use base 'Padre::Task'; 6 6 7 our $VERSION = '0.4 5';7 our $VERSION = '0.46'; 8 8 our $thread_running = 0; 9 9 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6StdColorizerTask.pm
r5488 r5530 5 5 use base 'Padre::Task'; 6 6 7 our $VERSION = '0.4 5';7 our $VERSION = '0.46'; 8 8 our $thread_running = 0; 9 9 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6SyntaxCheckerTask.pm
r5488 r5530 4 4 use warnings; 5 5 6 our $VERSION = '0.4 5';6 our $VERSION = '0.46'; 7 7 8 8 use base 'Padre::Task::SyntaxChecker'; -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Preferences.pm
r5488 r5530 11 11 }; 12 12 13 our $VERSION = '0.4 5';13 our $VERSION = '0.46'; 14 14 15 15 use Padre::Current; -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Util.pm
r5488 r5530 4 4 use warnings; 5 5 6 our $VERSION = '0.4 5';6 our $VERSION = '0.46'; 7 7 8 8 our @ISA = 'Exporter';
Note: See TracChangeset
for help on using the changeset viewer.
