@xcpcio/core 0.45.0 → 0.45.1
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/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
- package/src/export/cf.ts +2 -2
package/dist/index.cjs
CHANGED
|
@@ -235,7 +235,7 @@ class CodeforcesGymGhostDATConverter {
|
|
|
235
235
|
if (team.members) {
|
|
236
236
|
name = `${name} - ${team.membersToString}`;
|
|
237
237
|
}
|
|
238
|
-
res += `@t ${teamIndex},0,1
|
|
238
|
+
res += `@t ${teamIndex},0,1,"${name}"
|
|
239
239
|
`;
|
|
240
240
|
teamIdMap.set(team.id, teamIndex);
|
|
241
241
|
teamIndex++;
|
|
@@ -248,7 +248,7 @@ class CodeforcesGymGhostDATConverter {
|
|
|
248
248
|
}
|
|
249
249
|
});
|
|
250
250
|
for (let i = 0; i < 100; i++) {
|
|
251
|
-
res += `@t ${teamIndex},0,1
|
|
251
|
+
res += `@t ${teamIndex},0,1,"\u041F\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u043A\u043E\u043C\u0430\u043D\u0434\u0443"
|
|
252
252
|
`;
|
|
253
253
|
teamIndex++;
|
|
254
254
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -202,7 +202,7 @@ class CodeforcesGymGhostDATConverter {
|
|
|
202
202
|
if (team.members) {
|
|
203
203
|
name = `${name} - ${team.membersToString}`;
|
|
204
204
|
}
|
|
205
|
-
res += `@t ${teamIndex},0,1
|
|
205
|
+
res += `@t ${teamIndex},0,1,"${name}"
|
|
206
206
|
`;
|
|
207
207
|
teamIdMap.set(team.id, teamIndex);
|
|
208
208
|
teamIndex++;
|
|
@@ -215,7 +215,7 @@ class CodeforcesGymGhostDATConverter {
|
|
|
215
215
|
}
|
|
216
216
|
});
|
|
217
217
|
for (let i = 0; i < 100; i++) {
|
|
218
|
-
res += `@t ${teamIndex},0,1
|
|
218
|
+
res += `@t ${teamIndex},0,1,"\u041F\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u043A\u043E\u043C\u0430\u043D\u0434\u0443"
|
|
219
219
|
`;
|
|
220
220
|
teamIndex++;
|
|
221
221
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xcpcio/core",
|
|
3
|
-
"version": "0.45.
|
|
3
|
+
"version": "0.45.1",
|
|
4
4
|
"description": "XCPCIO Core",
|
|
5
5
|
"author": "Dup4 <lyuzhi.pan@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"papaparse": "^5.4.1",
|
|
50
50
|
"string-width": "^6.1.0",
|
|
51
51
|
"xlsx-js-style": "^1.2.0",
|
|
52
|
-
"@xcpcio/types": "0.45.
|
|
52
|
+
"@xcpcio/types": "0.45.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@babel/types": "^7.22.4",
|
package/src/export/cf.ts
CHANGED
|
@@ -42,7 +42,7 @@ export class CodeforcesGymGhostDATConverter {
|
|
|
42
42
|
name = `${name} - ${team.membersToString}`;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
res += `@t ${teamIndex},0,1
|
|
45
|
+
res += `@t ${teamIndex},0,1,"${name}"\n`;
|
|
46
46
|
teamIdMap.set(team.id, teamIndex);
|
|
47
47
|
teamIndex++;
|
|
48
48
|
|
|
@@ -56,7 +56,7 @@ export class CodeforcesGymGhostDATConverter {
|
|
|
56
56
|
});
|
|
57
57
|
|
|
58
58
|
for (let i = 0; i < 100; i++) {
|
|
59
|
-
res += `@t ${teamIndex},0,1
|
|
59
|
+
res += `@t ${teamIndex},0,1,"Пополнить команду"\n`;
|
|
60
60
|
teamIndex++;
|
|
61
61
|
}
|
|
62
62
|
|