Add Lapce

This commit is contained in:
Steffen Lange 2024-10-06 13:44:24 +02:00
parent a00f610f74
commit aa2616b886

14
modules/Lapce.php Normal file
View file

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