Changeset 12001
- Timestamp:
- 07/25/10 18:19:15 (19 months ago)
- Location:
- trunk/Padre
- Files:
-
- 3 edited
-
Changes (modified) (1 diff)
-
lib/Padre/Wx/Main.pm (modified) (3 diffs)
-
lib/Padre/Wx/Nth.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/Changes
r12000 r12001 65 65 - Documentation of Padre::Current (SEWI) 66 66 - Include only changed files in changed-file-list (SEWI) 67 - Added wxwidgets.pod which contains the method documentation of all Wx classes68 (AZAWAWI)67 - Added wxwidgets.pod which contains the method documentation of all Wx 68 classes (AZAWAWI) 69 69 - Padre has wxWidgets method documentation in F2 help search (AZAWAWI) 70 70 - Added Padre::Wx::Nth to group first/nth-time startup magic (ADAMK) 71 - Fixed #781 : Unicode should not be used for accessing file system on Win32 (CHORNY) 71 - Fixed #781 : Unicode should not be used for accessing file system on 72 Win32 (CHORNY) 73 - The New Installation Survey now only appears on the third time that 74 Padre starts, so it doesn't confuse people with locale issues (ADAMK) 72 75 73 76 0.66 2010.07.01 -
trunk/Padre/lib/Padre/Wx/Main.pm
r11996 r12001 362 362 $manager->alert_new; 363 363 364 unless ( $Padre::Test::VERSION or $config->feedback_done ) {365 require Padre::Wx::Dialog::WhereFrom;366 Padre::Wx::Dialog::WhereFrom->new($self);367 }368 369 364 # Start the change detection timer 370 365 my $timer1 = Wx::Timer->new( $self, Padre::Wx::ID_TIMER_FILECHECK ); … … 390 385 }, 391 386 ); 392 $timer2->Start( 1 , 1 );387 $timer2->Start( 1 * SECONDS, 1 ); 393 388 394 389 return; … … 399 394 400 395 # Hand off to the nth start system 401 require Padre::Wx::Nth; 402 Padre::Wx::Nth->nth( $self, $self->config->startup_count ); 396 unless ( $Padre::Test::VERSION ) { 397 require Padre::Wx::Nth; 398 Padre::Wx::Nth->nth( $self, $self->config->startup_count ); 399 } 403 400 404 401 return 1; -
trunk/Padre/lib/Padre/Wx/Nth.pm
r11996 r12001 11 11 # Even if more than one rule matches, only ever bother the user once. 12 12 sub nth { 13 my $class = shift; 14 my $main = shift; 15 my $nth = shift; 13 my $class = shift; 14 my $main = shift; 15 my $nth = shift; 16 my $config = $main->config; 16 17 17 18 # Is it Padre's birthday … … 27 28 } 28 29 30 if ( $nth > 2 and not $config->feedback_done ) { 31 require Padre::Wx::Dialog::WhereFrom; 32 Padre::Wx::Dialog::WhereFrom->new($main); 33 return 1; 34 } 35 29 36 # Nothing to say 30 37 return 1;
Note: See TracChangeset
for help on using the changeset viewer.
