Add Audacity
This commit is contained in:
parent
37dfa2060a
commit
4478c19880
1 changed files with 14 additions and 0 deletions
14
modules/Audacity.php
Normal file
14
modules/Audacity.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?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('/<h2>Current Version: ([\d\.]+)<\/h2>/');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue