Compare commits

..

No commits in common. "a00f610f74aaa6b44200d9a68d08890b6e461471" and "93876bfa69ae11efd07a39a22b3db1bc562e1caa" have entirely different histories.

2 changed files with 15 additions and 1 deletions

View file

@ -6,7 +6,7 @@ class TenEditor extends PatchBase {
}
function check() : bool {
if ($this->fetch('https://sweetscape.com/010editor/'))
return $this->parse('/<div class="version-text">Current:&nbsp;v([\d\.]+)<\/div>/');
return $this->parse('/<div class="versiontext">v([\d\.]+)<\/div>/');
return false;
}
}

14
modules/TinyCheck.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class TinyCheck extends PatchBase {
function __construct() {
parent::__construct('Kaspersky Lab', 'TinyCheck', 'https://github.com/KasperskyLab/TinyCheck/wiki');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/KasperskyLab/TinyCheck/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>