Changeset 11042


Ignore:
Timestamp:
03/10/10 06:57:09 (2 years ago)
Author:
Sewi
Message:

Adding a small survey at first Padre start after installation. The server side of this is still missing and might follow soon.
!!! This is a request-for-comments until the next release !!!

Location:
trunk/Padre
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/Changes

    r11032 r11042  
    55    - Don't crash open file list dialog on unsaved files or without files 
    66      (SEWI) 
     7    - Added a small survey for new Padre installation (SEWI) 
    78 
    890.58 2010.03.08 
  • trunk/Padre/lib/Padre/Config.pm

    r10997 r11042  
    11931193); 
    11941194 
     1195# Save if feedback has been send or not 
     1196setting( 
     1197    name    => 'feedback_done', 
     1198    type    => Padre::Constant::BOOLEAN, 
     1199    store   => Padre::Constant::HUMAN, 
     1200    default => 0, 
     1201); 
     1202 
    119512031; 
    11961204 
  • trunk/Padre/lib/Padre/Task/HTTPClient.pm

    r10997 r11042  
    44use strict; 
    55use warnings; 
    6 use Padre::Constant (); 
     6 
     7use Padre::Util::SVN (); 
    78 
    89# Use all modules which may provide services for us: 
     
    5051 
    5152    # Prepare information 
    52     require Padre::Util::SVN; 
    53     my $revision = Padre::Util::SVN::padre_version(); 
     53    my $revision = Padre::Util::SVN->padre_revision(); 
    5454    $args{method} ||= 'GET'; 
    5555    $args{headers}->{'X-Padre'} ||= "Padre version $VERSION $revision"; 
  • trunk/Padre/lib/Padre/Wx/Main.pm

    r11008 r11042  
    5959use Padre::Wx::Dialog::Text       (); 
    6060use Padre::Wx::Dialog::FilterTool (); 
     61use Padre::Wx::Dialog::WhereFrom  (); 
    6162use Padre::Logger; 
    6263 
     
    250251    ); 
    251252    $timer->Start( 1, 1 ); 
     253 
     254    Padre::Wx::Dialog::WhereFrom->new($self); 
    252255 
    253256    return $self; 
  • trunk/Padre/t/04-config.t

    r10966 r11042  
    33use strict; 
    44use warnings; 
    5 use constant CONFIG_OPTIONS => 113; 
     5use constant CONFIG_OPTIONS => 114; 
    66 
    77# Move of Debug to Run Menu 
Note: See TracChangeset for help on using the changeset viewer.