Add NewPipe

This commit is contained in:
Steffen Lange 2025-03-29 23:13:05 +01:00
parent 36fdcdbb2c
commit 83d8c15afe

14
modules/NewPipe.php Normal file
View file

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