Changeset 5387
- Timestamp:
- 06/19/09 23:51:45 (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
r5285 r5387 1 1 Changes 2 3 =head1 0.43 2009.6.20 4 - Cleaned up Perl 6 menu to be more elegant. 5 - Added Create Perl 6 class/grammar/..etc menu 6 - Added the concept of export/generate sub menu. 7 - Refactored preferences dialog: 8 - Removed unwanted stuff 9 - Enabled localization 10 - 'Enable coloring' is now in preferences and it is enabled by default. 11 - Depends on S:H:P6 0.62 which fixes the undefined return value from 12 STD->parse(\s*) bug 13 - Fixed ticket:393 - Perl 6: switching to Parrot based highlighting does 14 not work 15 - Refactored colorizer task into separate PGE and STD tasks. 16 - Handle STD's undeclared rountine(s) warning more properly. 17 - Implemented the creation of the Perl 6 template files by borrowing code 18 from Padre :) 19 - Added a bigger Perl 6 Camelia icon in the about box. 20 - No more manual syntax highlighting menu item. 21 - Handled export into HTML no document situation. 22 - Remove building of .mo files as it is now managed by szabgab++ release.pl 23 - Fixed S29-functions.pod bad location 24 - Fixed "Generate PIR" dying when rakudo does not parse the Perl 6 file. 2 25 3 26 =head1 0.42 2009.6.18 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6.pm
r5383 r5387 9 9 10 10 # exports and version 11 our $VERSION = '0.4 2';11 our $VERSION = '0.43'; 12 12 our @EXPORT_OK = qw(plugin_config); 13 13 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6Document.pm
r5379 r5387 5 5 use warnings; 6 6 7 our $VERSION = '0.4 2';7 our $VERSION = '0.43'; 8 8 our @ISA = 'Padre::Document'; 9 9 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6OutlineTask.pm
r5271 r5387 4 4 use warnings; 5 5 6 our $VERSION = '0.4 2';6 our $VERSION = '0.43'; 7 7 8 8 use base 'Padre::Task::Outline'; -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6PgeColorizerTask.pm
r5379 r5387 5 5 use base 'Padre::Task'; 6 6 7 our $VERSION = '0.4 2';7 our $VERSION = '0.43'; 8 8 our $thread_running = 0; 9 9 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6StdColorizerTask.pm
r5366 r5387 5 5 use base 'Padre::Task'; 6 6 7 our $VERSION = '0.4 2';7 our $VERSION = '0.43'; 8 8 our $thread_running = 0; 9 9 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6SyntaxCheckerTask.pm
r5271 r5387 4 4 use warnings; 5 5 6 our $VERSION = '0.4 2';6 our $VERSION = '0.43'; 7 7 8 8 use base 'Padre::Task::SyntaxChecker'; -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Preferences.pm
r5384 r5387 11 11 }; 12 12 13 our $VERSION = '0.4 2';13 our $VERSION = '0.43'; 14 14 15 15 use Padre::Current; -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Util.pm
r5267 r5387 4 4 use warnings; 5 5 6 our $VERSION = '0.4 2';6 our $VERSION = '0.43'; 7 7 8 8 our @ISA = 'Exporter';
Note: See TracChangeset
for help on using the changeset viewer.
