Add InnoSetup
This commit is contained in:
parent
4a1488347e
commit
7eeb31dd9d
1 changed files with 14 additions and 0 deletions
14
modules/InnoSetup.php
Normal file
14
modules/InnoSetup.php
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue