@magic-xpa/engine 4.900.0-dev490.88 → 4.900.0-dev490.90
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
|
@@ -22703,10 +22703,12 @@ class Task extends TaskBase {
|
|
|
22703
22703
|
this.setDescriptor(valueStr);
|
|
22704
22704
|
break;
|
|
22705
22705
|
case ConstInterface.MG_ATTR_HAS_LOCATE:
|
|
22706
|
-
|
|
22706
|
+
if (+valueStr == 1)
|
|
22707
|
+
this.hasLocate = true;
|
|
22707
22708
|
break;
|
|
22708
22709
|
case ConstInterface.MG_ATTR_AS_PARENT:
|
|
22709
|
-
|
|
22710
|
+
if (+valueStr == 1)
|
|
22711
|
+
this.ModeAsParent = true;
|
|
22710
22712
|
break;
|
|
22711
22713
|
case ConstInterface.MG_ATTR_TASK_UNIQUE_SORT:
|
|
22712
22714
|
this.UniqueSort = valueStr[0];
|
|
@@ -29526,7 +29528,7 @@ class CommandsTable {
|
|
|
29526
29528
|
}
|
|
29527
29529
|
}
|
|
29528
29530
|
|
|
29529
|
-
let CurrentClientVersion = '4.900.0-dev490.
|
|
29531
|
+
let CurrentClientVersion = '4.900.0-dev490.90';
|
|
29530
29532
|
|
|
29531
29533
|
class ClientManager {
|
|
29532
29534
|
constructor() {
|