Skip to content

Commit

Permalink
to 0.20.0 (#1452)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Jul 31, 2024
1 parent abcfa78 commit d399635
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-engine-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

env:
IMAGE_NAME: ${{ vars.DOCKERHUB_USERNAME }}/voicevox_engine
VOICEVOX_RESOURCE_VERSION: "0.19.1"
VOICEVOX_RESOURCE_VERSION: "0.20.0"
VOICEVOX_CORE_VERSION: "0.15.4"

defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-engine-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
default: false

env:
VOICEVOX_RESOURCE_VERSION: "0.19.1"
VOICEVOX_RESOURCE_VERSION: "0.20.0"
VOICEVOX_CORE_VERSION: "0.15.4"

defaults:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ RUN <<EOF
EOF

# Download Resource
ARG VOICEVOX_RESOURCE_VERSION=0.19.1
ARG VOICEVOX_RESOURCE_VERSION=0.20.0
RUN <<EOF
set -eux

Expand Down
2 changes: 1 addition & 1 deletion engine_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"return_resource_url":{
"type":"bool",
"value":true,
"name": "speaker_info・singer_infoのリソースをURLで返送"
"name": "キャラクター情報のリソースをURLで返送"
}
}
}
16 changes: 16 additions & 0 deletions resources/engine_manifest_assets/update_infos.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
[
{
"version": "0.20.0",
"descriptions": [
"句読点などの無音時間の調整パラメータを追加",
"キャラクター情報のリソースをURLで返す機能追加",
"開発環境の向上"
],
"contributors": [
"Hiroshiba",
"nix6839",
"sabonerune",
"tarepan",
"weweweok",
"X-20A"
]
},
{
"version": "0.19.1",
"descriptions": ["キャラクター「後鬼」のスタイルを追加"],
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion voicevox_engine/engine_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class SupportedFeatures(BaseModel):
default=None, description="音声ライブラリのインストール・アンインストール"
)
return_resource_url: bool | SkipJsonSchema[None] = Field(
default=None, description="speaker_info・singer_infoのリソースをURLで返送"
default=None, description="キャラクター情報のリソースをURLで返送"
)


Expand Down

0 comments on commit d399635

Please sign in to comment.