Merge pull request #7 from adlerweb/InnoSetup

Add InnoSetup
This commit is contained in:
Steffen Lange 2024-11-19 16:32:58 +01:00 committed by GitHub
commit f69ed25a88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
modules/InnoSetup.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class InnoSetup extends PatchBase {
function __construct() {
parent::__construct('Jordan Russell', 'Inno Setup', 'https://jrsoftware.org/isinfo.php');
}
function check() : bool {
if ($this->fetch('https://jrsoftware.org/isdl.php'))
return $this->parse('/>innosetup-([\d\.]+).exe</');
return false;
}
}
?>