Compare commits

..

No commits in common. "bb8f9e406461b541b641209588ce9f8092806e6f" and "4a1488347e9a79da77253a98b557bc5077b1b457" have entirely different histories.

5 changed files with 0 additions and 71 deletions

View file

@ -1,14 +0,0 @@
<?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;
}
}
?>

View file

@ -1,14 +0,0 @@
<?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;
}
}
?>

View file

@ -1,14 +0,0 @@
<?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;
}
}
?>

View file

@ -1,15 +0,0 @@
<?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;
}
}
?>

View file

@ -1,14 +0,0 @@
<?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;
}
}
?>