PatchBot/modules/WordTsar.php
2026-01-06 16:53:08 +01:00

14 lines
372 B
PHP

<?php
class WordTsar extends PatchBase {
function __construct() {
parent::__construct('Gerald Brandt', 'WordTsar', 'https://wordtsar.ca/downloads/');
}
function check() : bool {
if ($this->fetch_json('https://sourceforge.net/projects/wordtsar/best_release.json'))
return $this->parse_json('filename', '/^\/Releases\/WordTsar-(.+)\//');
return false;
}
}
?>