PatchBot/modules/Inkscape.php

14 lines
330 B
PHP

<?php
class Inkscape extends PatchBase {
function __construct() {
parent::__construct('Inkscape Authors', 'Inkscape', 'https://inkscape.org/release/');
}
function check() : bool {
if ($this->fetch_header('https://inkscape.org/release/'))
return $this->parse('/\/release\/inkscape-([\d\.]+)/');
return false;
}
}
?>