jp.keijiro.klutter-tools 2.4.3 → 2.4.4
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 +25 -0
- package/CHANGELOG.md.meta +7 -0
- package/package.json +14 -7
package/.attestation.p7m
ADDED
|
Binary file
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
6
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [2.4.4] - 2025-11-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Added signing for Unity 6.3.
|
|
13
|
+
|
|
14
|
+
## [2.4.3] - 2025-10-27
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Added a compatibility stub so VFX Graph Text Editor works in projects without
|
|
19
|
+
VFX Graph installed.
|
|
20
|
+
|
|
21
|
+
## [2.4.2] - 2025-10-01
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Enabled word wrapping in VFX Graph Text Editor.
|
package/package.json
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jp.keijiro.klutter-tools",
|
|
3
|
+
"version": "2.4.4",
|
|
3
4
|
"displayName": "Klutter Tools",
|
|
4
5
|
"description": "Miscellaneous editor tools.",
|
|
6
|
+
"unity": "6000.0",
|
|
5
7
|
"author": "Keijiro Takahashi",
|
|
8
|
+
"dependencies": {},
|
|
9
|
+
"changelogUrl": "https://github.com/keijiro/KlutterTools/blob/main/CHANGELOG.md",
|
|
10
|
+
"documentationUrl": "https://github.com/keijiro/KlutterTools",
|
|
11
|
+
"licensesUrl": "https://github.com/keijiro/KlutterTools/blob/main/LICENSE",
|
|
6
12
|
"license": "Unlicense",
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
13
|
+
"_upm": {
|
|
14
|
+
"changelog": "<b>Added</b><br>- Added signing for Unity 6.3."
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"url": "git@github.com:keijiro/KlutterTools.git",
|
|
18
|
+
"type": "git",
|
|
19
|
+
"revision": "e681f462862b2948acac6125f0e640030e1434e4"
|
|
20
|
+
}
|
|
11
21
|
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|