com.elestrago.unity.package-tools 2.2.3 → 2.3.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/CAHNGELOG.md +14 -0
- package/Documentation~/api.md +230 -198
- package/Documentation~/manual.md +19 -19
- package/Documentation~/samples.md +44 -10
- package/Editor/Tools/FileTools.cs +11 -5
- package/README.md +39 -172
- package/Samples~/ClaudeSkills/unity-package-docs/SKILL.md +50 -8
- package/Samples~/ClaudeSkills/unity-package-docs/assets/api-chunk.md.template +10 -4
- package/Samples~/ClaudeSkills/unity-package-docs/assets/api.md.template +13 -4
- package/Samples~/ClaudeSkills/unity-package-docs/scripts/scan_package.py +50 -2
- package/package.json +4 -4
- package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/SKILL.md +0 -309
- package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/README.md.template +0 -42
- package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/api-chunk.md.template +0 -41
- package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/api-index.md.template +0 -26
- package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/api.md.template +0 -43
- package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/manual.md.template +0 -57
- package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/samples.md.template +0 -56
- package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/scripts/scan_package.py +0 -504
package/CAHNGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
+
## [2.3.0](https://gitlab.com/elestrago-pkg/package-tool/-/tags/2.3.0)
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added per-file MD5 hashes and line counts to the `unity-package-docs` scanner output and rendered them in `api.md` Source lines.
|
|
10
|
+
- Added a `Line` column to API member tables so each member's source line is greppable from the docs.
|
|
11
|
+
- Added a "Fast-update check" step to the `unity-package-docs` skill that skips re-rendering API chunks whose source files are byte-identical to the last run.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Changed `FileTools.CopyEntriesToProject` so a folder source replaces the destination's contents; a blank destination still merges to avoid wiping the repo root.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
5
19
|
## [2.2.3](https://gitlab.com/elestrago-pkg/package-tool/-/tags/2.2.3)
|
|
6
20
|
|
|
7
21
|
### Fixed
|