@magic-xpa/engine 4.1300.0-dev4130.132 → 4.1300.0-dev4130.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.
|
@@ -210,6 +210,7 @@ class ConstInterface {
|
|
|
210
210
|
static MG_ATTR_USER = "user";
|
|
211
211
|
static MG_ATTR_FORCE_EXIT = "force_exit";
|
|
212
212
|
static MG_ATTR_PUBLIC = "public_name";
|
|
213
|
+
static MG_ATTR_FOLDER_NAME = "folder_name";
|
|
213
214
|
static MG_ATTR_PRG_DESCRIPTION = "prgDescription";
|
|
214
215
|
static MG_ATTR_TABLE_NAME = "table_name";
|
|
215
216
|
static MG_ATTR_INDEX_IN_TABLE = "index_in_table";
|
|
@@ -27131,6 +27132,8 @@ class MgForm extends MgFormBase {
|
|
|
27131
27132
|
task = task.StudioParentTask;
|
|
27132
27133
|
name = (task.getProp(PropInterface.PROP_TYPE_NAME)).GetComputedValue() + '_' + name;
|
|
27133
27134
|
}
|
|
27135
|
+
if (task.FolderName !== null)
|
|
27136
|
+
name = task.FolderName + "_" + name;
|
|
27134
27137
|
name = name.replace(/ /g, "_");
|
|
27135
27138
|
name = name.replace(/-/g, "_");
|
|
27136
27139
|
return name;
|
|
@@ -30190,6 +30193,7 @@ class Task extends TaskBase {
|
|
|
30190
30193
|
_forms = null;
|
|
30191
30194
|
Name = null;
|
|
30192
30195
|
PublicName = null;
|
|
30196
|
+
FolderName = null;
|
|
30193
30197
|
/// <summary>
|
|
30194
30198
|
/// indicates whether the task suffix was performed for this task
|
|
30195
30199
|
/// </summary>
|
|
@@ -30375,6 +30379,9 @@ class Task extends TaskBase {
|
|
|
30375
30379
|
case ConstInterface.MG_ATTR_PUBLIC:
|
|
30376
30380
|
this.PublicName = XmlParser.unescape(valueStr);
|
|
30377
30381
|
break;
|
|
30382
|
+
case ConstInterface.MG_ATTR_FOLDER_NAME:
|
|
30383
|
+
this.FolderName = XmlParser.unescape(valueStr);
|
|
30384
|
+
break;
|
|
30378
30385
|
case XMLConstants.MG_ATTR_IS_OFFLINE:
|
|
30379
30386
|
this.IsOffline = XmlParser.getBoolean(valueStr);
|
|
30380
30387
|
break;
|
|
@@ -39696,7 +39703,7 @@ class CommandsTable {
|
|
|
39696
39703
|
}
|
|
39697
39704
|
}
|
|
39698
39705
|
|
|
39699
|
-
let CurrentClientVersion = '4.1300.0-dev4130.
|
|
39706
|
+
let CurrentClientVersion = '4.1300.0-dev4130.133';
|
|
39700
39707
|
|
|
39701
39708
|
// @dynamic
|
|
39702
39709
|
class ClientManager {
|