Import source
This commit is contained in:
parent
50b489784d
commit
32b8c4cb56
34 changed files with 890 additions and 0 deletions
14
modules/GIMP.php
Normal file
14
modules/GIMP.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class GIMP extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('GIMP Team', 'GNU Image Manipulation Program', 'https://www.gimp.org/');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://www.gimp.org/downloads/'))
|
||||
return $this->parse('_//download\.gimp\.org/mirror/pub/gimp/v[\d\.]+/windows/gimp-([\d\.]+)-setup[\-\d]*\.exe_');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue