Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge 0.18.1 #2026

Merged
merged 3 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ on:

env:
VOICEVOX_ENGINE_REPO_URL: "https://github.com/VOICEVOX/voicevox_engine"
VOICEVOX_ENGINE_VERSION: 0.18.0
VOICEVOX_RESOURCE_VERSION: 0.18.0
VOICEVOX_ENGINE_VERSION: 0.18.1
VOICEVOX_RESOURCE_VERSION: 0.18.1
VOICEVOX_EDITOR_VERSION:
|- # releaseタグ名か、workflow_dispatchでのバージョン名か、999.999.999-developが入る
${{ github.event.release.tag_name || github.event.inputs.version || '999.999.999-develop' }}
Expand Down
10 changes: 10 additions & 0 deletions public/updateInfos.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
[
{
"version": "0.18.1",
"descriptions": [
"キャラクター「†聖騎士 紅桜†」「雀松朱司」「麒ヶ島宗麟」「春歌ナナ」「猫使アル」「猫使ビィ」「中国うさぎ」のハミングを追加",
"キャラクター「栗田まろん」「あいえるたん」「満別花丸」「琴詠ニア」のハミングを追加",
"ソング:一部のUSTファイルが読み込めないバグの修正",
"起動に必要なメモリ量を大幅に削減"
],
"contributors": ["Hiroshiba", "qryxip", "romot-co"]
},
{
"version": "0.18.0",
"descriptions": [
Expand Down
3 changes: 2 additions & 1 deletion src/store/singing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1794,7 +1794,8 @@ export const singingStore = createPartialStore<SingingStoreTypes>({
if (tempo) tempos[0].bpm = tempo;
}
// ノートセクション
if (params.sectionName.match(/^#\d{4}/)) {
// #以降に数字の場合はノートセクション ex: #0, #0000
if (params.sectionName.match(/^#\d+$/)) {
// テンポ変更があれば追加
const tempo = Number(params["Tempo"]);
if (tempo) tempos.push({ position, bpm: tempo });
Expand Down
Loading