PatchBot/modules/Tubular.php
2025-07-30 15:42:01 +02:00

14 lines
377 B
PHP

<?php
class Tubular extends PatchBase {
function __construct() {
parent::__construct('polymorphicshade', 'Tubular', 'https://f-droid.org/packages/org.polymorphicshade.tubular/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/polymorphicshade/Tubular/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>