Skip to content

Commit f376cfb

Browse files
authored
UniVRM-0.131.0 (#529)
1 parent 0105553 commit f376cfb

7 files changed

Lines changed: 59 additions & 11 deletions

File tree

docs/release/128/v_next.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/release/131/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# ■v0.131 ~ ■
2+
3+
- `0.131.0` からソースファイルを Assets から Packages に移動しました。
4+
5+
https://github.com/vrm-c/UniVRM/issues/2736
6+
7+
Packages 配下では `package.json` が有効になり、自動的に [com.unity.mathematics](https://github.com/vrm-c/UniVRM/issues/2735) が install されます。
8+
9+
- サポートする Unity の最低バージョンは引き続き `2022.3LTS` です。

docs/release/131/v0_131_0.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# v0.131.0 Assets から Packages に移動
2+
3+
<GitHubMilestone milestone="105" clsed />
4+
5+
<GitHubRelease tag="v0.131.0" />
6+
7+
## Assets 配下から Packages 配下への移動
8+
9+
before
10+
11+
```
12+
+ UniVRM
13+
+ Assets
14+
+ UniGLTF
15+
+ VRM
16+
+ VRM10
17+
```
18+
19+
after
20+
21+
```
22+
+ UniVRM
23+
+ Packages
24+
+ UniGLTF
25+
+ VRM
26+
+ VRM10
27+
```
28+
29+
という移動をしました。
30+
これにより [com.unity.mathematics 問題](https://github.com/vrm-c/UniVRM/issues/2735) が解決します。
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 🚧 nextnext
1+
# 🚧 next
22

33
<GitHubMilestone milestone="106" />
44

docs/release/131/v_nextnext.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# 🚧 nextnext
2+
3+
<GitHubMilestone milestone="107" />
4+

release_template.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@ You can install these UPM packages via Package Manager in UnityEditor.
2222
- Click `+` at the top-right of the package manager window, then select `Add package from git URL...`
2323
- Specify UPM packages using URLs below.
2424

25+
> [!Warning]
26+
> Starting with version `v0.131.0`, Assets/UniGLTF, VRM, and VRM10 have been moved to the `Packages` folder.
27+
> Therefore, please specify `path=/Packages/UniGLTF`, `path=/Packages/VRM`, or `path=/Packages/VRM10`.
28+
2529
| UPM package | git URL |
2630
|:-----------------------------|:------------------------------------------------------------------------|
27-
| com.vrmc.gltf | https://github.com/vrm-c/UniVRM.git?path=/Assets/UniGLTF#v${version} |
28-
| com.vrmc.univrm (VRM 0.x) | https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM#v${version} |
29-
| com.vrmc.vrm (VRM 1.0) | https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM10#v${version} |
31+
| com.vrmc.gltf | https://github.com/vrm-c/UniVRM.git?path=/Packages/UniGLTF#v${version} |
32+
| com.vrmc.univrm (VRM 0.x) | https://github.com/vrm-c/UniVRM.git?path=/Packages/VRM#v${version} |
33+
| com.vrmc.vrm (VRM 1.0) | https://github.com/vrm-c/UniVRM.git?path=/Packages/VRM10#v${version} |
3034

3135
You can also install via editing `Packages/manifest.json` directly.
3236

@@ -35,9 +39,9 @@ You can also install via editing `Packages/manifest.json` directly.
3539
{
3640
"dependencies": {
3741
// ...
38-
"com.vrmc.gltf": "https://github.com/vrm-c/UniVRM.git?path=/Assets/UniGLTF#v${version}",
39-
"com.vrmc.univrm": "https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM#v${version}",
40-
"com.vrmc.vrm": "https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM10#v${version}",
42+
"com.vrmc.gltf": "https://github.com/vrm-c/UniVRM.git?path=/Packages/UniGLTF#v${version}",
43+
"com.vrmc.univrm": "https://github.com/vrm-c/UniVRM.git?path=/Packages/VRM#v${version}",
44+
"com.vrmc.vrm": "https://github.com/vrm-c/UniVRM.git?path=/Packages/VRM10#v${version}",
4145
// ...
4246
}
4347
}

sidebars.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,11 @@ const sidebars: SidebarsConfig = {
398398
],
399399
releaseSidebar: [
400400
"release/index",
401+
{
402+
type: "category",
403+
label: "v0.131(Packages)~",
404+
items: [{ type: "autogenerated", dirName: "release/131" }],
405+
},
401406
{
402407
type: "category",
403408
label: "v0.128(Unity2022.3)~",

0 commit comments

Comments
 (0)