Compare commits
No commits in common. "a00f610f74aaa6b44200d9a68d08890b6e461471" and "93876bfa69ae11efd07a39a22b3db1bc562e1caa" have entirely different histories.
a00f610f74
...
93876bfa69
2 changed files with 15 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ class TenEditor extends PatchBase {
|
||||||
}
|
}
|
||||||
function check() : bool {
|
function check() : bool {
|
||||||
if ($this->fetch('https://sweetscape.com/010editor/'))
|
if ($this->fetch('https://sweetscape.com/010editor/'))
|
||||||
return $this->parse('/<div class="version-text">Current: v([\d\.]+)<\/div>/');
|
return $this->parse('/<div class="versiontext">v([\d\.]+)<\/div>/');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
14
modules/TinyCheck.php
Normal file
14
modules/TinyCheck.php
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue