@magic-xpa/engine 4.900.0-dev490.130 → 4.900.0-dev490.133
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.
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/tasks/Task.mjs +3 -1
- package/fesm2015/magic-xpa-engine.mjs +3 -1
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +3 -1
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -25417,6 +25417,8 @@ class Task extends TaskBase {
|
|
|
25417
25417
|
let refListStr = tokensVector.get_Item(3);
|
|
25418
25418
|
let taskContentOriginal = "";
|
|
25419
25419
|
if (taskCacheURL.trim() != "") {
|
|
25420
|
+
if (taskCacheURL.startsWith("./"))
|
|
25421
|
+
taskCacheURL = NString.Replace(taskCacheURL, './', './assets/cache/');
|
|
25420
25422
|
taskContentOriginal = yield Task.CommandsProcessor.GetContent(taskCacheURL, true);
|
|
25421
25423
|
}
|
|
25422
25424
|
let taskContentFinal = new StringBuilder(xmlData.substr(0, RuntimeContextBase.Instance.Parser.getCurrIndex() - (ConstInterface.MG_TAG_TASKURL.length + 1)), taskContentOriginal.length);
|
|
@@ -30381,7 +30383,7 @@ class CommandsTable {
|
|
|
30381
30383
|
}
|
|
30382
30384
|
}
|
|
30383
30385
|
|
|
30384
|
-
let CurrentClientVersion = '4.900.0-dev490.
|
|
30386
|
+
let CurrentClientVersion = '4.900.0-dev490.133';
|
|
30385
30387
|
|
|
30386
30388
|
class ClientManager {
|
|
30387
30389
|
constructor() {
|