Add Super Productivity

This commit is contained in:
Steffen Lange 2026-05-14 23:31:45 +02:00
parent f8e9d39ccd
commit 444c1764c1

View file

@ -0,0 +1,14 @@
<?php
class SuperProductivity extends PatchBase {
function __construct() {
parent::__construct('Johannes Millan', 'Super Productivity', 'https://super-productivity.com/download/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/super-productivity/super-productivity/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>