Compare commits

..

No commits in common. "f352fb82b3293a7cf2613636236bb5263cf6dad7" and "72b233660456d415d1a08be22d33fe306d4bad31" have entirely different histories.

3 changed files with 2 additions and 32 deletions

View file

@ -1,15 +0,0 @@
<?php
class GCC15 extends PatchBase {
function __construct() {
parent::__construct('Free Software Foundation', 'GNU Compiler Collection', 'https://gcc.gnu.org/');
$this->patch->setBranch('15');
}
function check() : bool {
if ($this->fetch('https://gcc.gnu.org/'))
return $this->parse('/<span class="version"><a href="gcc-15\/">GCC ([\d\.]+)/');
return false;
}
}
?>

View file

@ -1,15 +0,0 @@
<?php
class MariaDB118 extends PatchBase {
function __construct() {
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://mariadb.org/download/');
$this->patch->setBranch('11.8');
}
function check() : bool {
if ($this->fetch_json('https://downloads.mariadb.org/rest-api/mariadb/11.8/'))
return $this->parse_json('release_id');
return false;
}
}
?>

View file

@ -2,10 +2,10 @@
class XnView extends PatchBase {
function __construct() {
parent::__construct('Pierre-Emmanuel Gougelet', 'XnView', 'https://www.xnview.com/en/xnview-classic/');
parent::__construct('Pierre-Emmanuel Gougelet', 'XnView', 'https://www.xnview.com/en/xnview/');
}
function check() : bool {
if ($this->fetch('https://www.xnview.com/en/xnview-classic/'))
if ($this->fetch('https://www.xnview.com/en/xnview/'))
return $this->parse('/<strong>XnView ([\d\.]+)<\/strong>/');
return false;
}