mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-14 14:29:52 -05:00
Merge pull request #2146 from ousttrue/fix/unity_version_limit
記述が古いところを修正
This commit is contained in:
commit
645612262d
|
|
@ -74,7 +74,7 @@ namespace VRM
|
|||
""version"": ""{1}"",
|
||||
""displayName"": ""VRM Shaders"",
|
||||
""description"": ""VRM Shaders"",
|
||||
""unity"": ""2019.4"",
|
||||
""unity"": ""2021.3"",
|
||||
""keywords"": [
|
||||
""vrm"",
|
||||
""shader""
|
||||
|
|
@ -93,7 +93,7 @@ namespace VRM
|
|||
""version"": ""{1}"",
|
||||
""displayName"": ""VRM"",
|
||||
""description"": ""VRM importer"",
|
||||
""unity"": ""2019.4"",
|
||||
""unity"": ""2021.3"",
|
||||
""keywords"": [
|
||||
""vrm"",
|
||||
""importer"",
|
||||
|
|
@ -139,7 +139,7 @@ namespace VRM
|
|||
""version"": ""{1}"",
|
||||
""displayName"": ""VRM-1.0"",
|
||||
""description"": ""VRM-1.0 importer"",
|
||||
""unity"": ""2019.4"",
|
||||
""unity"": ""2021.3"",
|
||||
""keywords"": [
|
||||
""vrm"",
|
||||
""importer"",
|
||||
|
|
@ -176,7 +176,7 @@ namespace VRM
|
|||
""version"": ""{0}"",
|
||||
""displayName"": ""UniGLTF"",
|
||||
""description"": ""GLTF importer and exporter"",
|
||||
""unity"": ""2019.4"",
|
||||
""unity"": ""2021.3"",
|
||||
""keywords"": [
|
||||
""gltf""
|
||||
],
|
||||
|
|
|
|||
|
|
@ -1,100 +1,102 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<head>
|
||||
<style type="text/css">
|
||||
html,
|
||||
body {
|
||||
{
|
||||
color: black;
|
||||
background-color: white;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
<head>
|
||||
<title>UniVRM</title>
|
||||
<style type="text/css">
|
||||
html,
|
||||
body {
|
||||
color: black;
|
||||
background-color: white;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
main {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.btn {
|
||||
{
|
||||
margin: 1em;
|
||||
color: white;
|
||||
background-color: green;
|
||||
padding: 0.5em;
|
||||
border-radius: 0.3em;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
margin: 1em;
|
||||
color: white;
|
||||
background-color: green;
|
||||
padding: 0.5em;
|
||||
border-radius: 0.3em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn.unity2019 {
|
||||
{
|
||||
background-color: gray;
|
||||
}
|
||||
}
|
||||
.btn.unity2019 {
|
||||
background-color: gray;
|
||||
}
|
||||
|
||||
.btn h1 {
|
||||
{
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.btn h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.btn h2 {
|
||||
{
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<header></header>
|
||||
<main>
|
||||
<a href="https://github.com/vrm-c/UniVRM/releases/download/v${version}/VRM-${version}_${hash4}.unitypackage" class="btn">
|
||||
<div>
|
||||
<h1>VRM-${version}</h1>
|
||||
<div>for vrm-1.0</div>
|
||||
<div>Unity-2020.3 or later</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://github.com/vrm-c/UniVRM/releases/download/v${version}/UniVRM-${version}_${hash4}.unitypackage" class="btn">
|
||||
<div>
|
||||
<h1>UniVRM-${version}</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Unity-2020.3 or later</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://github.com/vrm-c/UniVRM/releases/download/v0.111.0/UniVRM-0.111.0_b413.unitypackage" class="btn unity2019">
|
||||
<div>
|
||||
<h1>UniVRM-0.111.0</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Final version for Unity-2020.3</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://github.com/vrm-c/UniVRM/releases/download/v0.99.4/UniVRM-0.99.4_8d33.unitypackage" class="btn unity2019">
|
||||
<div>
|
||||
<h1>UniVRM-0.99.4</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Final version for Unity-2019.4</div>
|
||||
</div>
|
||||
</a>
|
||||
</main>
|
||||
<nav>
|
||||
API Document
|
||||
<ul>
|
||||
<li>
|
||||
<a href="./ja/">日本語</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="./en/">English</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
.btn h2 {
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<a
|
||||
href="https://github.com/vrm-c/UniVRM/releases/download/v${version}/VRM-${version}_${hash4}.unitypackage"
|
||||
class="btn"
|
||||
>
|
||||
<div>
|
||||
<h1>VRM-${version}</h1>
|
||||
<div>for vrm-1.0</div>
|
||||
<div>${unity_version} or later</div>
|
||||
</div>
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/vrm-c/UniVRM/releases/download/v${version}/UniVRM-${version}_${hash4}.unitypackage"
|
||||
class="btn"
|
||||
>
|
||||
<div>
|
||||
<h1>UniVRM-${version}</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>${unity_version} or later</div>
|
||||
</div>
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/vrm-c/UniVRM/releases/download/v0.111.0/UniVRM-0.111.0_b413.unitypackage"
|
||||
class="btn unity2019"
|
||||
>
|
||||
<div>
|
||||
<h1>UniVRM-0.111.0</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Final version for Unity-2020.3</div>
|
||||
</div>
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/vrm-c/UniVRM/releases/download/v0.99.4/UniVRM-0.99.4_8d33.unitypackage"
|
||||
class="btn unity2019"
|
||||
>
|
||||
<div>
|
||||
<h1>UniVRM-0.99.4</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Final version for Unity-2019.4</div>
|
||||
</div>
|
||||
</a>
|
||||
</main>
|
||||
<nav>
|
||||
API Document
|
||||
<ul>
|
||||
<li>
|
||||
<a href="./ja/">日本語</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="./en/">English</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
186
docs/index.html
186
docs/index.html
|
|
@ -1,100 +1,102 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<head>
|
||||
<style type="text/css">
|
||||
html,
|
||||
body {
|
||||
{
|
||||
color: black;
|
||||
background-color: white;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
<head>
|
||||
<title>UniVRM</title>
|
||||
<style type="text/css">
|
||||
html,
|
||||
body {
|
||||
color: black;
|
||||
background-color: white;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
main {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.btn {
|
||||
{
|
||||
margin: 1em;
|
||||
color: white;
|
||||
background-color: green;
|
||||
padding: 0.5em;
|
||||
border-radius: 0.3em;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
margin: 1em;
|
||||
color: white;
|
||||
background-color: green;
|
||||
padding: 0.5em;
|
||||
border-radius: 0.3em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn.unity2019 {
|
||||
{
|
||||
background-color: gray;
|
||||
}
|
||||
}
|
||||
.btn.unity2019 {
|
||||
background-color: gray;
|
||||
}
|
||||
|
||||
.btn h1 {
|
||||
{
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.btn h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.btn h2 {
|
||||
{
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<header></header>
|
||||
<main>
|
||||
<a href="https://github.com/vrm-c/UniVRM/releases/download/v0.114.0/VRM-0.114.0_0.11.unitypackage" class="btn">
|
||||
<div>
|
||||
<h1>VRM-0.114.0</h1>
|
||||
<div>for vrm-1.0</div>
|
||||
<div>Unity-2020.3 or later</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://github.com/vrm-c/UniVRM/releases/download/v0.114.0/UniVRM-0.114.0_0.11.unitypackage" class="btn">
|
||||
<div>
|
||||
<h1>UniVRM-0.114.0</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Unity-2020.3 or later</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://github.com/vrm-c/UniVRM/releases/download/v0.111.0/UniVRM-0.111.0_b413.unitypackage" class="btn unity2019">
|
||||
<div>
|
||||
<h1>UniVRM-0.111.0</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Final version for Unity-2020.3</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://github.com/vrm-c/UniVRM/releases/download/v0.99.4/UniVRM-0.99.4_8d33.unitypackage" class="btn unity2019">
|
||||
<div>
|
||||
<h1>UniVRM-0.99.4</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Final version for Unity-2019.4</div>
|
||||
</div>
|
||||
</a>
|
||||
</main>
|
||||
<nav>
|
||||
API Document
|
||||
<ul>
|
||||
<li>
|
||||
<a href="./ja/">日本語</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="./en/">English</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
.btn h2 {
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<a
|
||||
href="https://github.com/vrm-c/UniVRM/releases/download/v0.114.0/VRM-0.114.0_0.11.unitypackage"
|
||||
class="btn"
|
||||
>
|
||||
<div>
|
||||
<h1>VRM-0.114.0</h1>
|
||||
<div>for vrm-1.0</div>
|
||||
<div>2021.3 LTS or later</div>
|
||||
</div>
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/vrm-c/UniVRM/releases/download/v0.114.0/UniVRM-0.114.0_0.11.unitypackage"
|
||||
class="btn"
|
||||
>
|
||||
<div>
|
||||
<h1>UniVRM-0.114.0</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>2021.3 LTS or later</div>
|
||||
</div>
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/vrm-c/UniVRM/releases/download/v0.111.0/UniVRM-0.111.0_b413.unitypackage"
|
||||
class="btn unity2019"
|
||||
>
|
||||
<div>
|
||||
<h1>UniVRM-0.111.0</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Final version for Unity-2020.3</div>
|
||||
</div>
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/vrm-c/UniVRM/releases/download/v0.99.4/UniVRM-0.99.4_8d33.unitypackage"
|
||||
class="btn unity2019"
|
||||
>
|
||||
<div>
|
||||
<h1>UniVRM-0.99.4</h1>
|
||||
<div>for vrm-0.x</div>
|
||||
<div>Final version for Unity-2019.4</div>
|
||||
</div>
|
||||
</a>
|
||||
</main>
|
||||
<nav>
|
||||
API Document
|
||||
<ul>
|
||||
<li>
|
||||
<a href="./ja/">日本語</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="./en/">English</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ MERGE_PATTERN = re.compile(r"Merge pull request #(\d+)")
|
|||
TEMPLATE = HERE / "release_template.md"
|
||||
HTML_TEMPLATE = HERE / "html_template.html"
|
||||
RELEASE_NOTE_DIR = "112"
|
||||
UNITY_VERSION = "2021.3 LTS"
|
||||
|
||||
|
||||
def gen(template: str, version: str, hash: str):
|
||||
|
|
@ -31,6 +32,7 @@ def gen(template: str, version: str, hash: str):
|
|||
"version_hash": version_hash,
|
||||
"hash4": version_hash[0:4],
|
||||
"dir": RELEASE_NOTE_DIR,
|
||||
"unity_version": UNITY_VERSION,
|
||||
}
|
||||
|
||||
def replace(m: re.Match):
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
## Installation
|
||||
|
||||
The UniVRM supports Unity 2020.3 LTS or later.
|
||||
The UniVRM supports Unity ${unity_version} or later.
|
||||
|
||||
You can install UniVRM using the UnityPackage or the UPM Package.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user