Compare commits
10 commits
4a1488347e
...
bb8f9e4064
| Author | SHA1 | Date | |
|---|---|---|---|
| bb8f9e4064 | |||
| f69ed25a88 | |||
| 5dabeb9d65 | |||
| 1d1a3a346c | |||
| b70ae32caf | |||
|
|
b47ac273f3 | ||
|
|
7eeb31dd9d | ||
|
|
b4dc772673 | ||
|
|
4978699e8c | ||
|
|
00b0e83f66 |
5 changed files with 71 additions and 0 deletions
14
modules/APlanX.php
Normal file
14
modules/APlanX.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class APlanX extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('braintool', 'A-Plan X', 'https://www.braintool.com/patches-x/');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://www.braintool.com/patch-a-plan-x-historie/'))
|
||||
return $this->parse('/<strong>Release ([\d\.]+) /');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
14
modules/ChemGes.php
Normal file
14
modules/ChemGes.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class ChemGes extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('DR-Software', 'ChemGes', 'https://dr-software.com/en/');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://dr-software.com/en/'))
|
||||
return $this->parse('/Version ([\d\.]+)</');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
15
modules/JaspersoftStudio.php
Normal file
15
modules/JaspersoftStudio.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class JaspersoftStudio extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Cloud Software Group', 'Jaspersoft Studio', 'https://community.jaspersoft.com/project/jaspersoft-studio');
|
||||
$this->patch->setBranch('Community Edition');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://community.jaspersoft.com/download-jaspersoft/community-edition/'))
|
||||
return $this->parse('/Jaspersoft Studio ([\d\.]+) \| Windows/');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
14
modules/KasperskyEndpoint.php
Normal file
14
modules/KasperskyEndpoint.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class KasperskyEndpoint extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Kaspersky Lab', 'Kaspersky Endpoint Security for Windows', 'https://www.kaspersky.de/small-to-medium-business-security/downloads/endpoint');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://api-router.kaspersky-labs.com/downloads/search/v3/b2b?productcode=2911379&sites=https%3A%2F%2Fwww.kaspersky.com&sites=https%3A%2F%2Fwww.kaspersky.com%2Fcarribean&sites=https%3A%2F%2Fwww.kaspersky.com%2Fisrael&sites=https%3A%2F%2Fwww.kaspersky.com%2Fsouth-east-asia&sites=https%3A%2F%2Fwww.kaspersky.com%2Findonesia&sites=https%3A%2F%2Fwww.kaspersky.com%2Fthe-european-union&sites=https%3A%2F%2Fwww.kaspersky.com%2Flatvia&sites=https%3A%2F%2Fwww.kaspersky.com%2Flithuania&sites=https%3A%2F%2Fwww.kaspersky.com%2Festonia&sites=https%3A%2F%2Fwww.kaspersky.com%2Funited-kingdom&sites=https%3A%2F%2Fwww.kaspersky.com%2Fcalifornia&sites=https%3A%2F%2Fwww.kaspersky.com%2Fbrazil'))
|
||||
return $this->parse('/"Link":"http[^"]+keswin_([\d\.]+)_en_[^\.]+\.exe/');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue