Add TeXworks

This commit is contained in:
Steffen Lange 2022-03-04 09:15:37 +01:00
parent 1191d4d074
commit f7e1c98e8b

14
modules/TeXworks.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class TeXworks extends PatchBase {
function __construct() {
parent::__construct('J. Kew, S. Löffler, C. Sharpsteen', 'TeXworks', 'https://www.tug.org/texworks/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/TeXworks/texworks/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>