This commit is contained in:
Steffen Lange 2024-07-12 13:40:08 +02:00
parent 845fdde1ea
commit b739f68688

14
modules/Zed.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Zed extends PatchBase {
function __construct() {
parent::__construct('Zed Industries Inc.', 'Zed', 'https://zed.dev/download');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/zed-industries/zed/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>