Merge pull request #8 from adlerweb/JaspersoftStudio

Add JaspersoftStudio
This commit is contained in:
Steffen Lange 2024-11-19 16:33:17 +01:00 committed by GitHub
commit bb8f9e4064
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,15 @@
<?php
class JaspersoftStudio extends PatchBase {
function __construct() {
parent::__construct('Cloud Software Group', 'Jaspersoft Studio', 'https://community.jaspersoft.com/project/jaspersoft-studio');
$this->patch->setBranch('Community Edition');
}
function check() : bool {
if ($this->fetch('https://community.jaspersoft.com/download-jaspersoft/community-edition/'))
return $this->parse('/Jaspersoft Studio ([\d\.]+) \| Windows/');
return false;
}
}
?>