PatchBot/modules/DigiKam.php
2021-12-14 13:18:25 +01:00

14 lines
380 B
PHP

<?php
class DigiKam extends PatchBase {
function __construct() {
parent::__construct('digiKam Team', 'digiKam', 'https://www.digikam.org/download/');
}
function check() : bool {
if ($this->fetch('https://www.digikam.org/download/'))
return $this->parse('_//download\.kde\.org/stable/digikam/[\d\.]+/digiKam-([\d\.]+)-Win64\.exe\.mirrorlist_');
return false;
}
}
?>