PatchBot/modules/Duplicati.php
2023-09-18 17:57:56 +02:00

14 lines
347 B
PHP

<?php
class Duplicati extends PatchBase {
function __construct() {
parent::__construct('Duplicati Team', 'Duplicati', 'https://www.duplicati.com/download');
}
function check() : bool {
if ($this->fetch('https://updates.duplicati.com/beta/latest-installers.js'))
return $this->parse('/"version": "([\d\.]+)"/');
return false;
}
}
?>