@magic-xpa/engine 4.900.0-dev490.89 → 4.900.0-dev490.91
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 +5 -3
- package/fesm2015/magic-xpa-engine.mjs +5 -3
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +5 -3
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -23294,10 +23294,12 @@ class Task extends TaskBase {
|
|
|
23294
23294
|
this.setDescriptor(valueStr);
|
|
23295
23295
|
break;
|
|
23296
23296
|
case ConstInterface.MG_ATTR_HAS_LOCATE:
|
|
23297
|
-
|
|
23297
|
+
if (+valueStr == 1)
|
|
23298
|
+
this.hasLocate = true;
|
|
23298
23299
|
break;
|
|
23299
23300
|
case ConstInterface.MG_ATTR_AS_PARENT:
|
|
23300
|
-
|
|
23301
|
+
if (+valueStr == 1)
|
|
23302
|
+
this.ModeAsParent = true;
|
|
23301
23303
|
break;
|
|
23302
23304
|
case ConstInterface.MG_ATTR_TASK_UNIQUE_SORT:
|
|
23303
23305
|
this.UniqueSort = valueStr[0];
|
|
@@ -30371,7 +30373,7 @@ class CommandsTable {
|
|
|
30371
30373
|
}
|
|
30372
30374
|
}
|
|
30373
30375
|
|
|
30374
|
-
let CurrentClientVersion = '4.900.0-dev490.
|
|
30376
|
+
let CurrentClientVersion = '4.900.0-dev490.91';
|
|
30375
30377
|
|
|
30376
30378
|
class ClientManager {
|
|
30377
30379
|
constructor() {
|