Add RawTherapee

This commit is contained in:
Steffen Lange 2024-04-23 22:11:54 +02:00
parent a2665facaf
commit 26aa6593a1

14
modules/RawTherapee.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class RawTherapee extends PatchBase {
function __construct() {
parent::__construct('Gabor Horvath', 'RawTherapee', 'https://rawtherapee.com/downloads/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/Beep6581/RawTherapee/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>