~ubuntu-branches/ubuntu/saucy/padre/saucy-proposed

« back to all changes in this revision

Viewing changes to lib/Padre/Feature.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, gregor herrmann, Dominique Dumont
  • Date: 2012-01-04 12:04:20 UTC
  • mfrom: (1.3.3)
  • Revision ID: package-import@ubuntu.com-20120104120420-i5oybqwf91m1d3il
Tags: 0.92.ds1-1
[ gregor herrmann ]
* Remove debian/source/local-options; abort-on-upstream-changes
  and unapply-patches are default in dpkg-source since 1.16.1.
* Swap order of alternative (build) dependencies after the perl
  5.14 transition.

[ Dominique Dumont ]
* Imported Upstream version 0.92.ds1
* removed fix-spelling patch (applied upstream)
* lintian-override: use wildcard to avoid listing a gazillion files
* updated size of some 'not-real-man-page' entries
* rules: remove dekstop cruft (replaced by a file provided in debian
  directory)
* control: removed Breaks statement. Add /me to uploaders. Updated
  dependencies
* rules: make sure that non-DFSG file (i.e. the cute butterfly, sigh)
  is not distributed

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
use constant      ();
40
40
use Padre::Config ();
41
41
 
42
 
our $VERSION = '0.90';
 
42
our $VERSION = '0.92';
43
43
 
44
44
my $config = Padre::Config->read;
45
45
 
56
56
 
57
57
                # Experimental features users can enable
58
58
                QUICK_FIX       => $config->feature_quick_fix,
59
 
                REPLACEINFILES  => $config->feature_replaceinfiles,
60
59
                SYNC            => $config->feature_sync,
61
60
                STYLE_GUI       => $config->feature_style_gui,
62
 
                WIZARD_SELECTOR => $config->feature_wizard_selector,
63
 
                WX_SCINTILLA    => $config->feature_wx_scintilla,
64
61
                DEVEL_ENDSTATS  => $config->feature_devel_endstats,
65
62
                DEVEL_TRACEUSE  => $config->feature_devel_traceuse,
66
63
        }