diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..9ddfcf1c --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo \ No newline at end of file diff --git a/build/build.js b/build/build.js index 6d2e578d..1188938c 100644 --- a/build/build.js +++ b/build/build.js @@ -108,12 +108,19 @@ function generateDirectoryTree(dir, currentDepth = 0, parentFolders = []) { info.tags = jsInfo.tags; } } else { - info.children = fs.readdirSync(dir).map(child => { - const childPath = path.join(dir, child); - return generateDirectoryTree(childPath, currentDepth + 1, [...parentFolders, info.name]); - }); + info.children = fs.readdirSync(dir) + .filter(child => !['desktop.ini', 'icon.ico'].includes(child)) // 过滤掉 desktop.ini 和 icon.ico + .map(child => { + const childPath = path.join(dir, child); + return generateDirectoryTree(childPath, currentDepth + 1, [...parentFolders, info.name]); + }); } } else { + // 如果是 desktop.ini 或 icon.ico 文件,直接返回 null + if (['desktop.ini', 'icon.ico'].includes(info.name)) { + return null; + } + const hash = calculateSHA1(dir); info.hash = hash; info.version = hash.substring(0, 7); diff --git a/build/icon/1.filter.js b/build/icon/1.filter.js new file mode 100644 index 00000000..409583cc --- /dev/null +++ b/build/icon/1.filter.js @@ -0,0 +1,34 @@ +const fs = require('fs'); +const path = require('path'); + +// 读取JSON文件 +const jsonPath = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\Material.json'; +const jsonData = JSON.parse(fs.readFileSync(jsonPath, 'utf8')); + +// 设置源文件夹和目标文件夹 +const sourceDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\ItemIcon-tiny'; +const targetDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\newPng'; + +// 确保目标文件夹存在 +if (!fs.existsSync(targetDir)) { + fs.mkdirSync(targetDir, { recursive: true }); +} + +// 读取源文件夹中的所有文件 +fs.readdirSync(sourceDir).forEach(file => { + const fileName = path.parse(file).name; // 获取文件名(不含扩展名) + + // 在JSON数据中查找匹配项 + const matchedItem = jsonData.find(item => item.Icon === fileName); + + if (matchedItem) { + const sourcePath = path.join(sourceDir, file); + const targetPath = path.join(targetDir, `${matchedItem.Name}.png`); + + // 复制并重命名文件 + fs.copyFileSync(sourcePath, targetPath); + console.log(`已复制并重命名: ${file} -> ${matchedItem.Name}.png`); + } +}); + +console.log('处理完成'); \ No newline at end of file diff --git a/build/icon/2.match.js b/build/icon/2.match.js new file mode 100644 index 00000000..5b27828f --- /dev/null +++ b/build/icon/2.match.js @@ -0,0 +1,43 @@ +const fs = require('fs'); +const path = require('path'); + +// 定义路径 +const pathingDir = 'D:\\HuiPrograming\\Projects\\CSharp\\MiHoYo\\bettergi-scripts-list\\repo\\pathing'; +const pngDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\newPng'; +const outputDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\matchedPng'; + +// 确保输出目录存在 +if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir); +} + +// 读取 pathing 目录下的所有文件夹名称 +fs.readdir(pathingDir, { withFileTypes: true }, (err, entries) => { + if (err) { + console.error('读取 pathing 目录时出错:', err); + return; + } + + // 过滤出目录 + const directories = entries.filter(entry => entry.isDirectory()).map(dir => dir.name); + + // 遍历目录名称 + directories.forEach(dirName => { + const pngPath = path.join(pngDir, `${dirName}.png`); + const outputPath = path.join(outputDir, `${dirName}.png`); + + // 检查对应的 PNG 文件是否存在 + if (fs.existsSync(pngPath)) { + // 复制文件 + fs.copyFile(pngPath, outputPath, err => { + if (err) { + console.error(`复制 ${dirName}.png 时出错:`, err); + } else { + console.log(`成功复制 ${dirName}.png 到 matchedPng 文件夹`); + } + }); + } else { + console.log(`未找到对应的 PNG 文件: ${dirName}.png`); + } + }); +}); \ No newline at end of file diff --git a/build/icon/3.icon.js b/build/icon/3.icon.js new file mode 100644 index 00000000..7e31ed2b --- /dev/null +++ b/build/icon/3.icon.js @@ -0,0 +1,57 @@ +const fs = require('fs'); +const path = require('path'); +const { exec } = require('child_process'); + +// 定义路径 +const sourcePath = 'D:\\HuiPrograming\\Projects\\CSharp\\MiHoYo\\bettergi-scripts-list\\repo\\pathing'; +const iconSourcePath = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\matchedIco'; +const desktopIniPath = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\desktop.ini'; + +// 读取源目录 +fs.readdir(sourcePath, { withFileTypes: true }, (err, entries) => { + if (err) { + console.error('读取源目录时出错:', err); + return; + } + + // 遍历每个目录 + entries.filter(entry => entry.isDirectory()).forEach(dir => { + const dirPath = path.join(sourcePath, dir.name); + const iconSourceFile = path.join(iconSourcePath, `${dir.name}.ico`); + const iconDestFile = path.join(dirPath, 'icon.ico'); + const desktopIniDestFile = path.join(dirPath, 'desktop.ini'); + + // 检查图标源文件是否存在 + if (!fs.existsSync(iconSourceFile)) { + console.log(`警告:${dir.name} 的图标文件不存在,跳过所有操作`); + return; // 跳过当前目录的所有后续操作 + } + + // 复制图标文件 + fs.copyFile(iconSourceFile, iconDestFile, (err) => { + if (err) { + console.error(`复制图标文件到 ${dir.name} 时出错:`, err); + return; // 如果复制图标失败,跳过后续操作 + } + console.log(`成功复制图标文件到 ${dir.name}`); + + // 复制desktop.ini文件 + fs.copyFile(desktopIniPath, desktopIniDestFile, (err) => { + if (err) { + console.error(`复制desktop.ini到 ${dir.name} 时出错:`, err); + return; // 如果复制desktop.ini失败,跳过后续操作 + } + console.log(`成功复制desktop.ini到 ${dir.name}`); + + // 执行cmd命令 + exec(`attrib +R "${dirPath}"`, (err, stdout, stderr) => { + if (err) { + console.error(`执行attrib命令时出错 ${dir.name}:`, err); + return; + } + console.log(`成功为 ${dir.name} 设置只读属性`); + }); + }); + }); + }); +}); diff --git a/repo/pathing/嘟嘟莲/desktop.ini b/repo/pathing/嘟嘟莲/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/嘟嘟莲/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/icon.ico b/repo/pathing/嘟嘟莲/icon.ico new file mode 100644 index 00000000..bc5c4d43 Binary files /dev/null and b/repo/pathing/嘟嘟莲/icon.ico differ diff --git a/repo/pathing/圣遗物/desktop.ini b/repo/pathing/圣遗物/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/圣遗物/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/圣遗物/icon.ico b/repo/pathing/圣遗物/icon.ico new file mode 100644 index 00000000..23abcd0b Binary files /dev/null and b/repo/pathing/圣遗物/icon.ico differ diff --git a/repo/pathing/小灯草/desktop.ini b/repo/pathing/小灯草/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/小灯草/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/小灯草/icon.ico b/repo/pathing/小灯草/icon.ico new file mode 100644 index 00000000..f0f4a6ff Binary files /dev/null and b/repo/pathing/小灯草/icon.ico differ diff --git a/repo/pathing/幽光星星/desktop.ini b/repo/pathing/幽光星星/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/幽光星星/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/幽光星星/icon.ico b/repo/pathing/幽光星星/icon.ico new file mode 100644 index 00000000..577bf412 Binary files /dev/null and b/repo/pathing/幽光星星/icon.ico differ diff --git a/repo/pathing/幽灯蕈/desktop.ini b/repo/pathing/幽灯蕈/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/幽灯蕈/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/幽灯蕈/icon.ico b/repo/pathing/幽灯蕈/icon.ico new file mode 100644 index 00000000..e3cb7c04 Binary files /dev/null and b/repo/pathing/幽灯蕈/icon.ico differ diff --git a/repo/pathing/悼灵花/desktop.ini b/repo/pathing/悼灵花/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/悼灵花/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/悼灵花/icon.ico b/repo/pathing/悼灵花/icon.ico new file mode 100644 index 00000000..75a473c9 Binary files /dev/null and b/repo/pathing/悼灵花/icon.ico differ diff --git a/repo/pathing/慕风蘑菇/desktop.ini b/repo/pathing/慕风蘑菇/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/慕风蘑菇/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/慕风蘑菇/icon.ico b/repo/pathing/慕风蘑菇/icon.ico new file mode 100644 index 00000000..a7cd4f3b Binary files /dev/null and b/repo/pathing/慕风蘑菇/icon.ico differ diff --git a/repo/pathing/日落果/desktop.ini b/repo/pathing/日落果/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/日落果/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/日落果/icon.ico b/repo/pathing/日落果/icon.ico new file mode 100644 index 00000000..3517d287 Binary files /dev/null and b/repo/pathing/日落果/icon.ico differ diff --git a/repo/pathing/星螺/desktop.ini b/repo/pathing/星螺/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/星螺/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/星螺/icon.ico b/repo/pathing/星螺/icon.ico new file mode 100644 index 00000000..0d4824cd Binary files /dev/null and b/repo/pathing/星螺/icon.ico differ diff --git a/repo/pathing/月莲/desktop.ini b/repo/pathing/月莲/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/月莲/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/月莲/icon.ico b/repo/pathing/月莲/icon.ico new file mode 100644 index 00000000..abdd993a Binary files /dev/null and b/repo/pathing/月莲/icon.ico differ diff --git a/repo/pathing/柔灯铃/desktop.ini b/repo/pathing/柔灯铃/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/柔灯铃/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/柔灯铃/icon.ico b/repo/pathing/柔灯铃/icon.ico new file mode 100644 index 00000000..2c7922d5 Binary files /dev/null and b/repo/pathing/柔灯铃/icon.ico differ diff --git a/repo/pathing/沉玉仙茗/desktop.ini b/repo/pathing/沉玉仙茗/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/沉玉仙茗/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/沉玉仙茗/icon.ico b/repo/pathing/沉玉仙茗/icon.ico new file mode 100644 index 00000000..731bd059 Binary files /dev/null and b/repo/pathing/沉玉仙茗/icon.ico differ diff --git a/repo/pathing/浪沫羽鳃/desktop.ini b/repo/pathing/浪沫羽鳃/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/浪沫羽鳃/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/浪沫羽鳃/icon.ico b/repo/pathing/浪沫羽鳃/icon.ico new file mode 100644 index 00000000..c95a207c Binary files /dev/null and b/repo/pathing/浪沫羽鳃/icon.ico differ diff --git a/repo/pathing/海灵芝/desktop.ini b/repo/pathing/海灵芝/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/海灵芝/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/海灵芝/icon.ico b/repo/pathing/海灵芝/icon.ico new file mode 100644 index 00000000..1d11c8bd Binary files /dev/null and b/repo/pathing/海灵芝/icon.ico differ diff --git a/repo/pathing/湖光铃兰/desktop.ini b/repo/pathing/湖光铃兰/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/湖光铃兰/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/湖光铃兰/icon.ico b/repo/pathing/湖光铃兰/icon.ico new file mode 100644 index 00000000..79753d8a Binary files /dev/null and b/repo/pathing/湖光铃兰/icon.ico differ diff --git a/repo/pathing/灼灼彩菊/desktop.ini b/repo/pathing/灼灼彩菊/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/灼灼彩菊/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/灼灼彩菊/icon.ico b/repo/pathing/灼灼彩菊/icon.ico new file mode 100644 index 00000000..bc0497a0 Binary files /dev/null and b/repo/pathing/灼灼彩菊/icon.ico differ diff --git a/repo/pathing/珊瑚真珠/desktop.ini b/repo/pathing/珊瑚真珠/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/珊瑚真珠/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/珊瑚真珠/icon.ico b/repo/pathing/珊瑚真珠/icon.ico new file mode 100644 index 00000000..1a839c00 Binary files /dev/null and b/repo/pathing/珊瑚真珠/icon.ico differ diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠1-望泷村右上-9个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠1-望泷村右上-9个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠1-望泷村右上-9个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠1-望泷村右上-9个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠2-珊瑚宫下-7个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠2-珊瑚宫下-7个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠2-珊瑚宫下-7个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠2-珊瑚宫下-7个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠3-珊瑚宫右-3个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠3-珊瑚宫右-3个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠3-珊瑚宫右-3个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠3-珊瑚宫右-3个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠4-珊瑚宫上-12个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠4-珊瑚宫上-12个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠4-珊瑚宫上-12个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠4-珊瑚宫上-12个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠5-水月池-5个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠5-水月池-5个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠5-水月池-5个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠5-水月池-5个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠6-水月池下-6个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠6-水月池下-6个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠6-水月池下-6个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠6-水月池下-6个.json diff --git a/repo/pathing/琉璃百合/desktop.ini b/repo/pathing/琉璃百合/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/琉璃百合/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/琉璃百合/icon.ico b/repo/pathing/琉璃百合/icon.ico new file mode 100644 index 00000000..057aa198 Binary files /dev/null and b/repo/pathing/琉璃百合/icon.ico differ diff --git a/repo/pathing/琉璃袋/desktop.ini b/repo/pathing/琉璃袋/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/琉璃袋/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/琉璃袋/icon.ico b/repo/pathing/琉璃袋/icon.ico new file mode 100644 index 00000000..77a06d4a Binary files /dev/null and b/repo/pathing/琉璃袋/icon.ico differ diff --git a/repo/pathing/甜甜花/desktop.ini b/repo/pathing/甜甜花/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/甜甜花/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/甜甜花/icon.ico b/repo/pathing/甜甜花/icon.ico new file mode 100644 index 00000000..236d5cde Binary files /dev/null and b/repo/pathing/甜甜花/icon.ico differ diff --git a/repo/pathing/石珀/desktop.ini b/repo/pathing/石珀/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/石珀/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/石珀/icon.ico b/repo/pathing/石珀/icon.ico new file mode 100644 index 00000000..50681ab0 Binary files /dev/null and b/repo/pathing/石珀/icon.ico differ diff --git a/repo/pathing/竹笋/desktop.ini b/repo/pathing/竹笋/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/竹笋/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/竹笋/icon.ico b/repo/pathing/竹笋/icon.ico new file mode 100644 index 00000000..520c0744 Binary files /dev/null and b/repo/pathing/竹笋/icon.ico differ diff --git a/repo/pathing/绝云椒椒/desktop.ini b/repo/pathing/绝云椒椒/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/绝云椒椒/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/绝云椒椒/icon.ico b/repo/pathing/绝云椒椒/icon.ico new file mode 100644 index 00000000..9492f07e Binary files /dev/null and b/repo/pathing/绝云椒椒/icon.ico differ diff --git a/repo/pathing/肉龙掌/desktop.ini b/repo/pathing/肉龙掌/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/肉龙掌/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/肉龙掌/icon.ico b/repo/pathing/肉龙掌/icon.ico new file mode 100644 index 00000000..9a7cbe1c Binary files /dev/null and b/repo/pathing/肉龙掌/icon.ico differ diff --git a/repo/pathing/胡萝卜/desktop.ini b/repo/pathing/胡萝卜/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/胡萝卜/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/胡萝卜/icon.ico b/repo/pathing/胡萝卜/icon.ico new file mode 100644 index 00000000..3067561c Binary files /dev/null and b/repo/pathing/胡萝卜/icon.ico differ diff --git a/repo/pathing/苦种/desktop.ini b/repo/pathing/苦种/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/苦种/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/苦种/icon.ico b/repo/pathing/苦种/icon.ico new file mode 100644 index 00000000..8f703f61 Binary files /dev/null and b/repo/pathing/苦种/icon.ico differ diff --git a/repo/pathing/茉洁草/desktop.ini b/repo/pathing/茉洁草/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/茉洁草/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/茉洁草/icon.ico b/repo/pathing/茉洁草/icon.ico new file mode 100644 index 00000000..486472c0 Binary files /dev/null and b/repo/pathing/茉洁草/icon.ico differ diff --git a/repo/pathing/落落莓/desktop.ini b/repo/pathing/落落莓/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/落落莓/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/落落莓/icon.ico b/repo/pathing/落落莓/icon.ico new file mode 100644 index 00000000..87c7cda5 Binary files /dev/null and b/repo/pathing/落落莓/icon.ico differ diff --git a/repo/pathing/虹彩蔷薇/desktop.ini b/repo/pathing/虹彩蔷薇/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/虹彩蔷薇/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/虹彩蔷薇/icon.ico b/repo/pathing/虹彩蔷薇/icon.ico new file mode 100644 index 00000000..eee673eb Binary files /dev/null and b/repo/pathing/虹彩蔷薇/icon.ico differ diff --git a/repo/pathing/血斛/desktop.ini b/repo/pathing/血斛/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/血斛/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/血斛/icon.ico b/repo/pathing/血斛/icon.ico new file mode 100644 index 00000000..45dbe61d Binary files /dev/null and b/repo/pathing/血斛/icon.ico differ diff --git a/repo/pathing/金鱼草/desktop.ini b/repo/pathing/金鱼草/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/金鱼草/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/金鱼草/icon.ico b/repo/pathing/金鱼草/icon.ico new file mode 100644 index 00000000..4c902f43 Binary files /dev/null and b/repo/pathing/金鱼草/icon.ico differ diff --git a/repo/pathing/钩钩果/desktop.ini b/repo/pathing/钩钩果/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/钩钩果/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/钩钩果/icon.ico b/repo/pathing/钩钩果/icon.ico new file mode 100644 index 00000000..70690fe2 Binary files /dev/null and b/repo/pathing/钩钩果/icon.ico differ diff --git a/repo/pathing/霓裳花/desktop.ini b/repo/pathing/霓裳花/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/霓裳花/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/霓裳花/icon.ico b/repo/pathing/霓裳花/icon.ico new file mode 100644 index 00000000..177826e3 Binary files /dev/null and b/repo/pathing/霓裳花/icon.ico differ diff --git a/repo/pathing/青蜜莓/desktop.ini b/repo/pathing/青蜜莓/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/青蜜莓/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/青蜜莓/icon.ico b/repo/pathing/青蜜莓/icon.ico new file mode 100644 index 00000000..2c8c76ce Binary files /dev/null and b/repo/pathing/青蜜莓/icon.ico differ diff --git a/repo/pathing/须弥蔷薇/desktop.ini b/repo/pathing/须弥蔷薇/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/须弥蔷薇/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/须弥蔷薇/icon.ico b/repo/pathing/须弥蔷薇/icon.ico new file mode 100644 index 00000000..428dc81d Binary files /dev/null and b/repo/pathing/须弥蔷薇/icon.ico differ diff --git a/repo/pathing/风车菊/desktop.ini b/repo/pathing/风车菊/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/风车菊/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/风车菊/icon.ico b/repo/pathing/风车菊/icon.ico new file mode 100644 index 00000000..5c3a2ae3 Binary files /dev/null and b/repo/pathing/风车菊/icon.ico differ diff --git a/repo/pathing/鸟蛋/desktop.ini b/repo/pathing/鸟蛋/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/鸟蛋/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/鸟蛋/icon.ico b/repo/pathing/鸟蛋/icon.ico new file mode 100644 index 00000000..a52f9e80 Binary files /dev/null and b/repo/pathing/鸟蛋/icon.ico differ diff --git a/repo/pathing/鸣草/desktop.ini b/repo/pathing/鸣草/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/鸣草/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/鸣草/icon.ico b/repo/pathing/鸣草/icon.ico new file mode 100644 index 00000000..0e540bc0 Binary files /dev/null and b/repo/pathing/鸣草/icon.ico differ