This commit is contained in:
mno
2025-05-10 21:17:06 +08:00
committed by GitHub
parent 0c46ac6880
commit 1bb50c00e9
6 changed files with 3 additions and 5 deletions

View File

@@ -159,7 +159,7 @@ if (operationMode === "生成路径文件") {
.join('\n');
await file.writeText(pathGroupFilePath, resultContent);
log.info(`生成成功,共计 ${selectedRoutes.length} 条路线,路径组文件已保存到 ${pathGroupFilePath}`);
log.info(`生成成功,共计 ${selectedRoutes.length} 条路线,路径组文件已保存到 ${pathGroupFilePath}请将js自定义配置中操作模式改为执行路径文件以执行`);
} else if (operationMode === "输出地图追踪文件") {
const pathingOutDir = `pathingout/${outputFolderName}/`; // 输出文件夹路径

View File

@@ -286,7 +286,7 @@ for (const path of sortedRoutes) {
.map(path => `${path.name}::2000-01-01T00:00:00.000Z`);
const pathGroupContent = sortedPathNames.join('\n');
await file.writeText(pathGroupFilePath, pathGroupContent);
log.info(`生成并刷新路径组${i + 1}文件成功,路径数:${sortedPathNames.length}`);
log.info(`生成并刷新路径组${i + 1}文件成功,路径数:${sortedPathNames.length}请修改js自定义配置中的操作模式以执行文件`);
}
}
} else if (operationType === "输出地图追踪文件") {

View File

@@ -36,8 +36,6 @@ if (!userSettings.infoFileName) {
userSettings.pathGroup2CdType,
userSettings.pathGroup3CdType,
userSettings.otherPathGroupsCdTypes,
userSettings.partyNames,
userSettings.skipTimeRanges
].join(".");
}

View File

@@ -1,6 +1,6 @@
{
"manifest_version": 1,
"name": "采集cd管理@mno",
"name": "采集cd管理",
"version": "1.0",
"bgi_version": "0.44.8",
"description": "仅面对会操作文件和读readme的用户基于文件夹操作自动管理采集路线的cd会按照路径组的顺序依次运行直到指定的时间并会按照给定的cd类型自动跳过未刷新的路线",