Skip to content

Commit

Permalink
project-sブランチをmainブランチにマージ (#1776)
Browse files Browse the repository at this point in the history
## 内容

メインブランチにマージします。
エンジンを更新しないと多分エラーが色々発生するはずなので、色々書いた案内issueを作ろうと思います。

## 関連 Issue

- VOICEVOX/voicevox_project#15

## その他

これでとりあえずエディタ・エンジン・コアのすべてのproject-sブランチの役割が終わった形になります。
一区切りだと思います、一旦お疲れ様でした!!
  • Loading branch information
Hiroshiba authored Jan 28, 2024
2 parents 2b2013b + 7d1772b commit 3129605
Show file tree
Hide file tree
Showing 64 changed files with 8,895 additions and 555 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ npm run electron:serve
npm run browser:serve
```

また、main ブランチのビルド結果がこちらにデプロイされています <https://voicevox-browser-dev.netlify.app/#/home>
また、main ブランチのビルド結果がこちらにデプロイされています <https://voicevox-browser-dev.netlify.app/#/talk>
今はローカル PC 上で音声合成エンジンを起動する必要があります。

## ビルド
Expand Down Expand Up @@ -108,7 +108,7 @@ Playwright を使用しているためテストパターンを生成すること
**ブラウザ版を起動している状態で**以下のコマンドを実行してください。

```bash
npx playwright codegen http://localhost:5173/#/home --viewport-size=800,600
npx playwright codegen http://localhost:5173/#/talk --viewport-size=800,600
```

詳細は [Playwright ドキュメントの Test generator](https://playwright.dev/docs/codegen-intro) を参照してください。
Expand Down
14 changes: 7 additions & 7 deletions docs/UI名称とVueファイル名の対応早見表.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

### views ディレクトリ

- メイン画面全体 ・・・ [EditorHome](../src/views/EditorHome.vue)
- メイン画面全体 ・・・ [EditorHome](../src/components/Talk/EditorHome.vue)

### compornents ディレクトリ

Expand All @@ -37,16 +37,16 @@
- ウィンドウ右上のボタン群(ピンボタン含む) ・・・ [TitleBarButtons](../src/components/TitleBarButtons.vue)
- ピンボタン以外のボタン ・・・ [MinMaxCloseButtons](../src/components/MinMaxCloseButtons.vue)
- ツールバー ・・・ [HeaderBar](../src/components/HeaderBar.vue)
- キャラクター表示欄 ・・・ [CharacterPortrait](../src/components/CharacterPortrait.vue)
- キャラクター表示欄 ・・・ [CharacterPortrait](../src/components/Talk/CharacterPortrait.vue)
- 台本欄(テキスト欄追加ボタンを含む) ・・・ [views/EditorHome](../src/views/EditorHome.vue) に含まれる
- レーン(行番号・テキスト欄含む) ・・・ [AudioCell](../src/components/AudioCell.vue)
- レーン(行番号・テキスト欄含む) ・・・ [AudioCell](../src/components/Talk/AudioCell.vue)
- キャラクターアイコン ・・・ [CharacterButton](../src/components/CharacterButton.vue)
- コンテキスト(右クリック)メニュー ・・・ [ContextMenu](../src/components/ContextMenu.vue)
- パラメータ調整欄 ・・・ [AudioInfo](../src/components/AudioInfo.vue)
- パラメータ調整欄 ・・・ [AudioInfo](../src/components/Talk/AudioInfo.vue)
- プリセット管理 ・・・ [PresetManageDialog](../src/components/PresetManageDialog.vue)
- 詳細調整欄(各項目・再生ボタンを含む) ・・・ [AudioDetail](../src/components/AudioDetail.vue)
- アクセント項目のうち、文字以外の部分の UI ・・・ [AudioAccent](../src/components/AudioAccent.vue)
- イントネーション・長さ項目のスライダー [AudioParameter](../src/components/AudioParameter.vue)
- 詳細調整欄(各項目・再生ボタンを含む) ・・・ [AudioDetail](../src/components/Talk/AudioDetail.vue)
- アクセント項目のうち、文字以外の部分の UI ・・・ [AudioAccent](../src/components/Talk/AudioAccent.vue)
- イントネーション・長さ項目のスライダー [AudioParameter](../src/components/Talk/AudioParameter.vue)
- その他
- 初回起動時に表示される画面
- 利用規約 ・・・ [AcceptTermsDialog](../src/components/AcceptTermsDialog.vue)
Expand Down
28 changes: 14 additions & 14 deletions docs/res/起動シーケンス図.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,16 @@
flowchart
174170["back.installVvppEngineWithWarning"] --> 786961["back.installVvppEngine"]
764022["(画面読み込み)"] --> 698565["App.vue"]
764022 --> 332024["EditorHome.vue"]
733212["back.createWindow"] -.-> 764022
448821>"アプリ停止中"] -.-> 430173["app.ready"]
style 448821 fill:#ffbbbb,stroke:#ff0000
430173 -->|"ある"| 174170
430173 -->|"ない"| 389651["back.start"]
698565 -.-> 704891>"アプリ実行中"]
332024["EditorHome.vue"] -.-> 704891>"アプリ実行中"]
style 704891 fill:#bbbbff,stroke:#0000ff
332024 -.-> 704891
786961 --> 389651
698565 --> 332024
subgraph 332024["EditorHome.vue"]
709863["Vuex.GET_ENGINE_INFOS"] --> 773040["Vuex.POST_ENGINE_START"]
subgraph 773040["Vuex.POST_ENGINE_START"]
970396["get ALT_PORT_INFOS"] --> 467527["各エンジン"]
subgraph 467527["各エンジン"]
592206["Vuex.START_WAITING_ENGINE"] --> 799767["Vuex.FETCH_AND_SET_ENGINE_MANIFEST"]
end
end
subgraph 709863["Vuex.GET_ENGINE_INFOS"]
807081["back.get ENGINE_INFOS"] --> 423649["Vuex.set engineInfos"]
423649 --> 623418["Vuex.set engineIds"]
end
end
subgraph 389651["back.start"]
967432["engine.runEngineAll"] --> 733212
Expand All @@ -47,9 +35,21 @@ flowchart
546251{{"VVPPファイルがあるか"}}
end
subgraph 698565["App.vue"]
709863["Vuex.GET_ENGINE_INFOS"] --> 773040["Vuex.POST_ENGINE_START"]
646647["Vuex.INIT_VUEX"] --> 632374["back.ON_VUEX_READY"]
632374 --> 709863
subgraph 632374["back.ON_VUEX_READY"]
225701["win.show"]
end
subgraph 709863["Vuex.GET_ENGINE_INFOS"]
807081["back.get ENGINE_INFOS"] --> 423649["Vuex.set engineInfos"]
423649 --> 623418["Vuex.set engineIds"]
end
subgraph 773040["Vuex.POST_ENGINE_START"]
970396["get ALT_PORT_INFOS"] --> 467527["各エンジン"]
subgraph 467527["各エンジン"]
592206["Vuex.START_WAITING_ENGINE"] --> 799767["Vuex.FETCH_AND_SET_ENGINE_MANIFEST"]
end
end
end
```
2 changes: 1 addition & 1 deletion openapi.json

Large diffs are not rendered by default.

Loading

0 comments on commit 3129605

Please sign in to comment.