jp.keijiro.ai.assistant.extensions 1.1.1 → 1.1.2
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/.attestation.p7m +0 -0
- package/CHANGELOG.md +10 -0
- package/Skills/GameViewCapture/SKILL.md +0 -2
- package/package.json +4 -4
package/.attestation.p7m
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.1.2] - 2026-05-08
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fixed `game-view-capture` skill compatibility with AI Assistant 2.7.0-pre.2 by removing redundant package requirement metadata.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Updated project and package metadata for AI Assistant 2.7.0-pre.2.
|
|
17
|
+
|
|
8
18
|
## [1.1.1] - 2026-05-02
|
|
9
19
|
|
|
10
20
|
### Fixed
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: game-view-capture
|
|
3
3
|
description: Capture the Unity Game view in Edit Mode so Assistant can visually inspect the rendered game output without entering Play Mode.
|
|
4
|
-
required_packages:
|
|
5
|
-
com.unity.ai.assistant: 2.7.0-pre.1
|
|
6
4
|
tools:
|
|
7
5
|
- Unity.RunCommand
|
|
8
6
|
- Unity.FindProjectAssets
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jp.keijiro.ai.assistant.extensions",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"displayName": "AI Assistant Extensions",
|
|
5
5
|
"description": "Custom Unity package that provides extensions for Unity AI Assistant.",
|
|
6
6
|
"unity": "6000.0",
|
|
7
7
|
"author": "Keijiro Takahashi",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"com.unity.ai.assistant": "2.7.0-pre.
|
|
9
|
+
"com.unity.ai.assistant": "2.7.0-pre.2"
|
|
10
10
|
},
|
|
11
11
|
"changelogUrl": "https://github.com/keijiro/AIA-Extensions/blob/master/CHANGELOG.md",
|
|
12
12
|
"documentationUrl": "https://github.com/keijiro/AIA-Extensions",
|
|
13
13
|
"licensesUrl": "https://github.com/keijiro/AIA-Extensions/blob/master/LICENSE",
|
|
14
14
|
"license": "Unlicense",
|
|
15
15
|
"_upm": {
|
|
16
|
-
"changelog": "<b>Fixed</b><br>- Fixed
|
|
16
|
+
"changelog": "<b>Fixed</b><br>- Fixed `game-view-capture` skill compatibility with AI Assistant 2.7.0-pre.2 by removing redundant package requirement metadata.<br><br><b>Changed</b><br>- Updated project and package metadata for AI Assistant 2.7.0-pre.2."
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"url": "git@github.com:keijiro/AIA-Extensions.git",
|
|
20
20
|
"type": "git",
|
|
21
|
-
"revision": "
|
|
21
|
+
"revision": "22b8dc7818b1bc47202ea464116601c6e91d88c0"
|
|
22
22
|
}
|
|
23
23
|
}
|