added UI to toggle autoplaylist repeat option

This commit is contained in:
Robb Ebright 2017-03-31 00:00:19 -04:00
parent 7a944ac9ce
commit c12ad4ea4f
13 changed files with 64 additions and 2 deletions

View file

@ -519,3 +519,15 @@ class AirtimeUpgrader300alpha1 extends AirtimeUpgrader
return '3.0.0-alpha.1';
}
}
class AirtimeUpgrader300alpha2 extends AirtimeUpgrader
{
protected function getSupportedSchemaVersions() {
return array(
'3.0.0-alpha'
);
}
public function getNewVersion() {
return '3.0.0-alpha.2';
}
}