14 lines
358 B
PHP
14 lines
358 B
PHP
<?php
|
|
|
|
class Audacity extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('Audacity Team', 'Audacity', 'https://www.audacityteam.org/download/windows/');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://www.audacityteam.org/download/windows/'))
|
|
return $this->parse('/<p>Current version ([\d\.]+)<\/p>/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|