~ubuntu-branches/ubuntu/precise/mythexport/precise

« back to all changes in this revision

Viewing changes to usr/share/mythexport/configs/PortableH264HighRes.pm

  • Committer: Bazaar Package Importer
  • Author(s): John Baab, John Baab, Mario Limonciello
  • Date: 2010-09-15 20:41:11 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20100915204111-425299ggcekfc5qe
Tags: 2.2.1-0ubuntu1
[ John Baab ]
* Added link to baablogic.net for additional configs.
* Added version number to configs and web interface.
* Modified config notes to include link for Medibuntu. 

[ Mario Limonciello ]
* Update vcs-bzr to be on ~mythbuntu-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
my $description = "High Resolution (800x400) Portable H264 Settings.";
10
10
my $devices = "High Resolution Android Devices (example Droid, Evo, N1), iPod Touch, iPhone, iPad";
11
 
my $notes = "Requires AAC, activate Medibuntu";
 
11
my $notes = "Requires AAC, <a href=\"https://help.ubuntu.com/community/Medibuntu\">activate Medibuntu</a>";
 
12
my $version = "1.0";
12
13
 
13
14
sub new{
14
15
    my $class = shift;
15
 
    my $self = $class->SUPER::new(shift, shift, $description, $devices, $notes);
 
16
    my $self = $class->SUPER::new(shift, shift, $description, $devices, $notes, $version);
16
17
    bless $self, $class;
17
18
    return $self;
18
19
}