PatchBot/modules/USBRemoteAPK.php
2026-02-12 18:06:48 +01:00

15 lines
373 B
PHP

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