com.elestrago.unity.package-tools 2.2.3 → 2.4.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.
Files changed (21) hide show
  1. package/CAHNGELOG.md +22 -0
  2. package/Documentation~/api.md +230 -198
  3. package/Documentation~/manual.md +19 -19
  4. package/Documentation~/samples.md +44 -10
  5. package/Editor/Tools/FileTools.cs +11 -5
  6. package/README.md +39 -172
  7. package/Samples~/ClaudeSkills/unity-package-docs/SKILL.md +50 -8
  8. package/Samples~/ClaudeSkills/unity-package-docs/assets/api-chunk.md.template +10 -4
  9. package/Samples~/ClaudeSkills/unity-package-docs/assets/api.md.template +13 -4
  10. package/Samples~/ClaudeSkills/unity-package-docs/scripts/scan_package.py +50 -2
  11. package/Samples~/ClaudeSkills/unity-package-release/SKILL.md +373 -0
  12. package/Samples~/ClaudeSkills/unity-package-release/scripts/discover_package.py +366 -0
  13. package/package.json +4 -4
  14. package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/SKILL.md +0 -309
  15. package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/README.md.template +0 -42
  16. package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/api-chunk.md.template +0 -41
  17. package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/api-index.md.template +0 -26
  18. package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/api.md.template +0 -43
  19. package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/manual.md.template +0 -57
  20. package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/assets/samples.md.template +0 -56
  21. package/Samples~/ClaudeSkills/unity-package-docs/unity-package-docs/scripts/scan_package.py +0 -504
package/CAHNGELOG.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  ---
4
4
 
5
+ ## [2.4.0](https://gitlab.com/elestrago-pkg/package-tool/-/tags/2.4.0)
6
+
7
+ ### Added
8
+
9
+ - Added `unity-package-release` skill sample for cutting `V-{version}` release commits.
10
+
11
+ ---
12
+
13
+ ## [2.3.0](https://gitlab.com/elestrago-pkg/package-tool/-/tags/2.3.0)
14
+
15
+ ### Added
16
+
17
+ - Added per-file MD5 hashes and line counts to the `unity-package-docs` scanner output and rendered them in `api.md` Source lines.
18
+ - Added a `Line` column to API member tables so each member's source line is greppable from the docs.
19
+ - 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.
20
+
21
+ ### Changed
22
+
23
+ - Changed `FileTools.CopyEntriesToProject` so a folder source replaces the destination's contents; a blank destination still merges to avoid wiping the repo root.
24
+
25
+ ---
26
+
5
27
  ## [2.2.3](https://gitlab.com/elestrago-pkg/package-tool/-/tags/2.2.3)
6
28
 
7
29
  ### Fixed