Add AutoHotkey

This commit is contained in:
Steffen Lange 2021-03-01 14:43:00 +01:00
parent 6153b5cc5e
commit 3ffb8c1a1f

14
modules/AutoHotkey.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class AutoHotkey extends PatchBase {
function __construct() {
parent::__construct('Chris Mallett & Steve Gray', 'AutoHotkey', 'https://www.autohotkey.com/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/Lexikos/AutoHotKey_L/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>