update to 4.7

This commit is contained in:
kmvan
2020-04-25 12:30:17 +08:00
parent 57dde3abdb
commit 78d114b7e6
6 changed files with 25 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
{
"APP_VERSION": "4.6",
"APP_VERSION": "4.7",
"APP_NAME": "X Prober",
"APP_URL": "https://github.com/kmvan/x-prober",
"AUTHOR_URL": "https://inn-studio.com/prober",

View File

@@ -2,6 +2,22 @@
All Notable changes to `X-Prober` will be documented in this file
## 4.7.0 - 2020-04-25
### Fix
- Fix memory refresh error
### Update
- Update Nginx stable version
- Update SQLite3 stable version
- Update MySQLi client version
### Optimize
- Remove lodash lib, reduce js size
## 4.6.0 - 2020-04-22
### Fix

4
dist/prober.php vendored

File diff suppressed because one or more lines are too long

6
package-lock.json generated
View File

@@ -2325,9 +2325,9 @@
"integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs="
},
"caniuse-lite": {
"version": "1.0.30001045",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001045.tgz",
"integrity": "sha512-Y8o2Iz1KPcD6FjySbk1sPpvJqchgxk/iow0DABpGyzA1UeQAuxh63Xh0Enj5/BrsYbXtCN32JmR4ZxQTCQ6E6A=="
"version": "1.0.30001046",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001046.tgz",
"integrity": "sha512-CsGjBRYWG6FvgbyGy+hBbaezpwiqIOLkxQPY4A4Ea49g1eNsnQuESB+n4QM0BKii1j80MyJ26Ir5ywTQkbRE4g=="
},
"chalk": {
"version": "2.4.2",

View File

@@ -49,7 +49,7 @@
"@typescript-eslint/eslint-plugin-tslint": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-loader": "^8.1.0",
"caniuse-lite": "^1.0.30001045",
"caniuse-lite": "^1.0.30001046",
"es6-promise": "^4.2.8",
"eslint-config-prettier": "^6.11.0",
"glob": "^7.1.6",

View File

@@ -7,7 +7,7 @@ namespace InnStudio\Prober\Components\Config;
class ConfigApi
{
public static $APP_VERSION = '4.6';
public static $APP_VERSION = '4.7';
public static $APP_NAME = 'X Prober';
public static $APP_URL = 'https://github.com/kmvan/x-prober';
public static $APP_CONFIG_URLS = array('https://raw.githubusercontent.com/kmvan/x-prober/master/AppConfig.json', 'https://api.inn-studio.com/download/?id=xprober-config');
@@ -18,5 +18,5 @@ class ConfigApi
public static $UPDATE_PHP_URLS = array('https://raw.githubusercontent.com/kmvan/x-prober/master/dist/prober.php', 'https://api.inn-studio.com/download/?id=xprober');
public static $AUTHOR_NAME = 'INN STUDIO';
public static $LATEST_PHP_STABLE_VERSION = '7';
public static $LATEST_NGINX_STABLE_VERSION = '1.16.1';
public static $LATEST_NGINX_STABLE_VERSION = '1.18.0';
}