Add InputStick Android apps
This commit is contained in:
parent
512c7b8be2
commit
b021c733c7
2 changed files with 30 additions and 0 deletions
15
modules/InputStickUtilityAPK.php
Normal file
15
modules/InputStickUtilityAPK.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class InputStickUtilityAPK extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Jakub Zawadzki', 'InputStickUtility', 'https://www.inputstick.com/download/');
|
||||
$this->patch->setBranch('Android');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://www.inputstick.com/download/'))
|
||||
return $this->parse('/>InputStickUtility v([\d\.]+)</');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
15
modules/USBRemoteAPK.php
Normal file
15
modules/USBRemoteAPK.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class USBRemoteAPK extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Jakub Zawadzki', 'USB Remote', 'https://www.inputstick.com/download/');
|
||||
$this->patch->setBranch('Android');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://www.inputstick.com/download/'))
|
||||
return $this->parse('/>USB Remote v([\d\.]+)</');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue