@shijiu/jsview 2.2.128 → 2.2.201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
const TargetRevision = {
|
|
6
|
-
"CoreRevision":
|
|
7
|
-
"CoreRevisionAndBranch": "
|
|
8
|
-
"JseRevision": "1.0.
|
|
6
|
+
"CoreRevision": 1021852,
|
|
7
|
+
"CoreRevisionAndBranch": "1021852",
|
|
8
|
+
"JseRevision": "1.0.963",
|
|
9
9
|
"JseUrl":
|
|
10
|
-
"http://cdn.release.qcast.cn/forge_js/master/
|
|
11
|
-
"JseName": "
|
|
10
|
+
"http://cdn.release.qcast.cn/forge_js/master/JsViewES6_js2c_r963.jsv.4b3a9429.js",
|
|
11
|
+
"JseName": "JsViewES6_js2c_r963.jsv.4b3a9429.js",
|
|
12
12
|
"JsidtName": "libjsidt.102.7.so",
|
|
13
13
|
};
|
|
14
14
|
|
package/loader/jsview-loader.js
CHANGED
|
@@ -184,7 +184,7 @@ export default class JsViewLoader {
|
|
|
184
184
|
// 检查配套引擎的版本
|
|
185
185
|
if (window.JsView.CodeRevision !== TargetRevision.CoreRevision /* Native引擎版本(由APK启动参数 CORE 决定) */
|
|
186
186
|
|| window.Forge.Version !== TargetRevision.JseRevision) {/* JS引擎版本(由APK启动参数 ENGINEJS 决定) */
|
|
187
|
-
console.warn(`Warning: JsView Engine version miss matched, some effect will be lost. core should be ${TargetRevision.CoreRevision},
|
|
187
|
+
console.warn(`Warning: JsView Engine version miss matched, some effect will be lost or crash!! current using core=${window.JsView.CodeRevision} engine=${window.Forge.Version}(but core should be ${TargetRevision.CoreRevision}, engine should be ${TargetRevision.JseRevision} url=${TargetRevision.JseUrl})`);
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
190
|
|