Compare commits
5 commits
43d6478764
...
290f770ce8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
290f770ce8 | ||
|
|
cd77db8b86 | ||
|
|
874fd1e9e8 | ||
|
|
47462ef3d2 | ||
|
|
dbada0b235 |
3 changed files with 31 additions and 1 deletions
15
modules/WarnWetterAPK.php
Normal file
15
modules/WarnWetterAPK.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class WarnWetterAPK extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Deutscher Wetterdienst', 'WarnWetter', 'https://www.dwd.de/DE/leistungen/warnwetterapp/apk/download_apk_android5_x.html');
|
||||
$this->patch->setBranch('Android');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://www.dwd.de/DE/leistungen/warnwetterapp/apk/download_apk_android5_x.html'))
|
||||
return $this->parse('/\(apk - ([\d\.]+)\)/');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
15
modules/WhatsAppAPK.php
Normal file
15
modules/WhatsAppAPK.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class WhatsAppAPK extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('WhatsApp LLC', 'WhatsApp', 'https://www.whatsapp.com/android');
|
||||
$this->patch->setBranch('Android');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://www.whatsapp.com/android'))
|
||||
return $this->parse('/\(Version ([\d\.]+)\)/');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
class ZeroTierOne extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('ZeroTier Inc.', 'ZeroTier', 'https://www.zerotier.com/download/');
|
||||
parent::__construct('ZeroTier Inc.', 'ZeroTier One', 'https://www.zerotier.com/download/');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch_json('https://api.github.com/repos/zerotier/ZeroTierOne/releases/latest'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue