Add bruno

This commit is contained in:
Steffen Lange 2024-08-05 12:16:04 +02:00
parent d7b098da09
commit f56ef2d3a8

14
modules/Bruno.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Bruno extends PatchBase {
function __construct() {
parent::__construct('Anoop M D & Anusree P S', 'bruno', 'https://www.usebruno.com/downloads');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/usebruno/bruno/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>