Add support for notes field in configuration profiles. #130

This commit is contained in:
Henrik Brix Andersen 2012-02-05 20:55:17 +01:00
parent 4dd33c6b05
commit 121895d3fc
5 changed files with 28 additions and 1 deletions

View file

@ -7,6 +7,18 @@ use constant PI => 4 * atan2(1, 1);
our $Options = {
# miscellaneous options
'notes' => {
label => 'Configuraton notes',
cli => 'notes=s',
type => 's',
multiline => 1,
width => 350,
height => 300,
serialize => sub { join '\n', split /\R/, $_[0] },
deserialize => sub { join "\n", split /\\n/, $_[0] },
},
# output options
'output_filename_format' => {
label => 'Output filename format',