Add InputStick Android apps

This commit is contained in:
Steffen Lange 2026-02-12 18:06:48 +01:00
parent 512c7b8be2
commit b021c733c7
2 changed files with 30 additions and 0 deletions

View 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
View 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;
}
}
?>