Show
Ignore:
Timestamp:
11/06/06 18:28:37 (7 years ago)
Author:
max
Message:

Respect option_ready; version bump for split tv_grab_au

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • postprocessors/flag_aus_hdtv

    r165 r187  
    1010 
    1111my $progname = "flag_aus_hdtv"; 
    12 my $version = "0.10.1"; 
     12my $version = "0.10.2"; 
    1313$| = 1; 
    1414printf "%s v%s\n",$progname,$version; 
     
    5959 
    6060&parse_command_line; 
     61&show_version if ($opt->{version}); 
    6162&show_help if ($opt->{help}); 
    6263die "'--channels_file {file}' must be specified. see --help for details.\n" if (!$opt->{channels_file}); 
     
    126127                'help'          => \$opt->{help}, 
    127128                'h'             => \$opt->{help}, 
    128                 'v'             => \$opt->{help}); 
     129                'v'             => \$opt->{version}, 
     130                'version'       => \$opt->{version}); 
    129131} 
    130132 
     
    161163} 
    162164 
     165sub show_version 
     166{ 
     167        print "$progname $version\n"; 
     168        exit 0; 
     169} 
    163170###################################################################################################### 
    164171