@jlcpcb/mcp 0.1.0 → 0.2.0
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/CHANGELOG.md +41 -0
- package/dist/index.js +525 -385
- package/package.json +2 -3
- package/src/index.ts +1 -2
- package/dist/assets/search.html +0 -528
- package/dist/src/index.js +0 -28521
- package/scripts/build-search-page.ts +0 -68
- package/src/assets/search-built.html +0 -528
- package/src/assets/search.html +0 -458
- package/src/browser/index.ts +0 -381
- package/src/browser/kicad-renderer.ts +0 -646
- package/src/browser/sexpr-parser.ts +0 -321
- package/src/http/routes.ts +0 -253
- package/src/http/server.ts +0 -74
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @jlcpcb/mcp
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- cd6df88: Packages to select: @jlcpcb/cli (minor), @jlcpcb/core (minor)
|
|
8
|
+
|
|
9
|
+
Summary to paste:
|
|
10
|
+
|
|
11
|
+
Add `jlc easyeda install [uuid]` command for EasyEDA community components
|
|
12
|
+
|
|
13
|
+
CLI changes:
|
|
14
|
+
- New `jlc easyeda install [uuid]` subcommand with -p/--project, --with-3d, -f/--force options
|
|
15
|
+
- Dedicated EasyEDAInfoScreen and EasyEDADetailView showing community-specific fields
|
|
16
|
+
- Installation status detection: shows "R Regenerate" if installed, "Enter Install" if not
|
|
17
|
+
- "✓ Installed" indicator next to component title when already in library
|
|
18
|
+
- `jlc install` now rejects non-LCSC IDs with helpful redirect to `jlc easyeda install`
|
|
19
|
+
|
|
20
|
+
Core changes:
|
|
21
|
+
- Add `isEasyEDAInstalled()` method to check if component exists in EasyEDA library
|
|
22
|
+
- Register EasyEDA library in global KiCad tables with portable ${KICAD9_3RD_PARTY} paths
|
|
23
|
+
- Support global installation for community components (no projectPath required)
|
|
24
|
+
- Separate library names (EasyEDA vs EasyEDA-local) to avoid global/local collision
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [cd6df88]
|
|
29
|
+
- @jlcpcb/core@0.2.0
|
|
30
|
+
|
|
31
|
+
## 0.1.1
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- **@jlcpcb/core:**
|
|
36
|
+
- Fix: Restrict built-in footprints to 2-pad passives only — prevents pin-flip issues on multi-pin components
|
|
37
|
+
|
|
38
|
+
**@jlcpcb/cli & @jlcpcb/mcp:**
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
|
|
41
|
+
- Updated dependencies []:
|
|
42
|
+
- @jlcpcb/core@0.1.1
|
|
43
|
+
|
|
3
44
|
## 0.1.0
|
|
4
45
|
|
|
5
46
|
### Minor Changes
|