Add WinBtrfs

This commit is contained in:
Steffen Lange 2023-01-28 21:12:27 +01:00
parent 1088a9b19d
commit 3e86d284c3

14
modules/WinBtrfs.php Normal file
View file

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