Add Picard

This commit is contained in:
Steffen Lange 2025-10-27 12:10:13 +01:00
parent 78a40550ad
commit 63c64c0bdc

14
modules/Picard.php Normal file
View file

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