Changeset 10324
- Timestamp:
- 01/27/10 17:40:01 (7 months ago)
- Location:
- trunk/Padre
- Files:
-
- 3 modified
-
Changes (modified) (1 diff)
-
Makefile.PL (modified) (1 diff)
-
lib/Padre/PluginManager.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/Changes
r10322 r10324 50 50 - Added a fast ascii shortcut to the very slow encode detector. Opening 51 51 files all of a sudden gets much faster if you have ascii files (ADAMK) 52 - Bumped ORLite to 1.3 7 to getARRAY object support and52 - Bumped ORLite to 1.38 to get faster ARRAY object support and 53 53 Class::XSAccessor acceleration support. If they cause problems, 54 54 these changes can be safely backed out. (ADAMK) -
trunk/Padre/Makefile.PL
r10321 r10324 101 101 requires 'Module::Refresh' => '0.13'; 102 102 requires 'Module::Starter' => '1.50'; 103 requires 'ORLite' => '1.3 7';103 requires 'ORLite' => '1.38'; 104 104 105 105 # Temporarily disabled as we have cloned a private copy -
trunk/Padre/lib/Padre/PluginManager.pm
r10323 r10324 574 574 # Should we try to enable the plug-in 575 575 my $config = $self->plugin_db( $plugin->class ); 576 unless ( defined $config->[2] ) { 577 576 unless ( defined $config->enabled ) { 578 577 # Do not enable by default 579 $config-> [2] = 0;580 } 581 unless ( $config-> [2]) {578 $config->set( enabled => 0 ); 579 } 580 unless ( $config->enabled ) { 582 581 $plugin->status('disabled'); 583 582 return;
