Add Cryptomator

This commit is contained in:
Steffen Lange 2023-01-16 17:16:56 +01:00
parent 4a081e1da8
commit fecb1f3ccd

14
modules/Cryptomator.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Cryptomator extends PatchBase {
function __construct() {
parent::__construct('Sebastian Stenzel', 'Cryptomator', 'https://cryptomator.org/downloads/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/cryptomator/cryptomator/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>