Supports automatic recognition of PCB layers

This commit is contained in:
Fang_Zhijian 2025-09-27 17:21:55 +08:00
parent d17c375732
commit ef521ec2b0
5 changed files with 1989 additions and 1652 deletions

View File

@ -1,3 +1,8 @@
# 1.1.0
1. 支持自动识别板子层数
2. 更新依赖 pro-api-types
# 1.0.2 # 1.0.2
1. 检查更新功能 1. 检查更新功能

View File

@ -3,7 +3,7 @@
"uuid": "817c3321fba54f70b0186500933ed47b", "uuid": "817c3321fba54f70b0186500933ed47b",
"displayName": "捷配下单助手", "displayName": "捷配下单助手",
"description": "一键前往捷配下单 PCB支持保存下单偏好", "description": "一键前往捷配下单 PCB支持保存下单偏好",
"version": "1.0.3", "version": "1.1.0",
"publisher": "Mr_Fang", "publisher": "Mr_Fang",
"engines": { "engines": {
"eda": "^2.3.0" "eda": "^2.3.0"

File diff suppressed because it is too large Load Diff

8
package-lock.json generated
View File

@ -9,7 +9,7 @@
"version": "1.1.1", "version": "1.1.1",
"license": "Apache-2.0", "license": "Apache-2.0",
"devDependencies": { "devDependencies": {
"@jlceda/pro-api-types": "^0.1.156", "@jlceda/pro-api-types": "^0.1.175",
"@microsoft/tsdoc": "^0.15.1", "@microsoft/tsdoc": "^0.15.1",
"@tailwindcss/cli": "^4.1.8", "@tailwindcss/cli": "^4.1.8",
"@trivago/prettier-plugin-sort-imports": "^5.2.1", "@trivago/prettier-plugin-sort-imports": "^5.2.1",
@ -900,9 +900,9 @@
} }
}, },
"node_modules/@jlceda/pro-api-types": { "node_modules/@jlceda/pro-api-types": {
"version": "0.1.156", "version": "0.1.175",
"resolved": "https://registry.npmjs.org/@jlceda/pro-api-types/-/pro-api-types-0.1.156.tgz", "resolved": "https://registry.npmjs.org/@jlceda/pro-api-types/-/pro-api-types-0.1.175.tgz",
"integrity": "sha512-U26OzNETxZZfwGS3sfqQ7emclnwWgD72gWCtgU99TwMBAV+G5kP8Fd65w7nKqMcTVVG0TlSbsgUdNW/IPD8HcA==", "integrity": "sha512-83opK7FZmtm5GFkfulYuCWHOhFO+WYocjfiuRh1K2PQaPeIe+/e3wKE4vUBcKptGajePpyDlfKL4UXTFVBe+Vg==",
"dev": true, "dev": true,
"license": "Apache-2.0" "license": "Apache-2.0"
}, },

View File

@ -15,7 +15,7 @@
"build": "npm run tailwind && npm run compile && ts-node ./build/packaged.ts" "build": "npm run tailwind && npm run compile && ts-node ./build/packaged.ts"
}, },
"devDependencies": { "devDependencies": {
"@jlceda/pro-api-types": "^0.1.156", "@jlceda/pro-api-types": "^0.1.175",
"@microsoft/tsdoc": "^0.15.1", "@microsoft/tsdoc": "^0.15.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.1", "@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/fs-extra": "^11.0.4", "@types/fs-extra": "^11.0.4",