Skip to content

Commit 6a98b2c

Browse files
[release-0.17] to 0.17.1 (#1923)
* ビルド周り改修、更新情報更新 * デフォルトの画面サイズを大きくする [update snapshots] * (スナップショットを更新) --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent a7fd929 commit 6a98b2c

File tree

7 files changed

+21
-9
lines changed

7 files changed

+21
-9
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ on:
2727

2828
env:
2929
VOICEVOX_ENGINE_REPO_URL: "https://github.com/VOICEVOX/voicevox_engine"
30-
VOICEVOX_ENGINE_VERSION: 0.17.0
31-
VOICEVOX_RESOURCE_VERSION: 0.17.0
30+
VOICEVOX_ENGINE_VERSION: 0.17.1
31+
VOICEVOX_RESOURCE_VERSION: 0.17.1
3232
VOICEVOX_EDITOR_VERSION:
3333
|- # releaseタグ名か、workflow_dispatchでのバージョン名か、999.999.999-developが入る
3434
${{ github.event.release.tag_name || github.event.inputs.version || '999.999.999-develop' }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Playwright を使用しているためテストパターンを生成すること
114114
**ブラウザ版を起動している状態で**以下のコマンドを実行してください。
115115

116116
```bash
117-
npx playwright codegen http://localhost:5173/ --viewport-size=800,600
117+
npx playwright codegen http://localhost:5173/ --viewport-size=1024,630
118118
```
119119

120120
詳細は [Playwright ドキュメントの Test generator](https://playwright.dev/docs/codegen-intro) を参照してください。

public/updateInfos.json

+10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
[
2+
{
3+
"version": "0.17.1",
4+
"descriptions": [
5+
"キャラクター「玄野武宏」「白上虎太郎」「青山龍星」「冥鳴ひまり」「九州そら」のハミングを追加",
6+
"キャラクター「もち子さん」「剣崎雌雄」のハミングを追加",
7+
"音域調整・声量調整機能",
8+
"バグ修正"
9+
],
10+
"contributors": ["Hiroshiba", "sigprogramming"]
11+
},
212
{
313
"version": "0.17.0",
414
"descriptions": [

src/backend/electron/main.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,8 @@ let filePathOnMac: string | undefined = undefined;
364364
// create window
365365
async function createWindow() {
366366
const mainWindowState = windowStateKeeper({
367-
defaultWidth: 800,
368-
defaultHeight: 600,
367+
defaultWidth: 1024,
368+
defaultHeight: 630,
369369
});
370370

371371
const currentTheme = configManager.get("currentTheme");

src/components/Talk/TalkEditor.vue

+5-3
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,11 @@ const removeAudioItem = async () => {
221221
};
222222
223223
// view
224-
const DEFAULT_PORTRAIT_PANE_WIDTH = 25; // %
224+
const DEFAULT_PORTRAIT_PANE_WIDTH = 22; // %
225225
const MIN_PORTRAIT_PANE_WIDTH = 0;
226226
const MAX_PORTRAIT_PANE_WIDTH = 40;
227-
const MIN_AUDIO_INFO_PANE_WIDTH = 160; // px
227+
const DEFAULT_AUDIO_INFO_PANE_WIDTH = 200; // px
228+
const MIN_AUDIO_INFO_PANE_WIDTH = 160;
228229
const MAX_AUDIO_INFO_PANE_WIDTH = 250;
229230
const MIN_AUDIO_DETAIL_PANE_HEIGHT = 185; // px
230231
const MAX_AUDIO_DETAIL_PANE_HEIGHT = 500;
@@ -365,7 +366,8 @@ watch(shouldShowPanes, (val, old) => {
365366
);
366367
367368
audioInfoPaneWidth.value = clamp(
368-
splitterPosition.value.audioInfoPaneWidth ?? MIN_AUDIO_INFO_PANE_WIDTH,
369+
splitterPosition.value.audioInfoPaneWidth ??
370+
DEFAULT_AUDIO_INFO_PANE_WIDTH,
369371
MIN_AUDIO_INFO_PANE_WIDTH,
370372
MAX_AUDIO_INFO_PANE_WIDTH
371373
);

tests/e2e/navigators.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { getNewestQuasarDialog, getQuasarMenu } from "./locators";
66
*/
77
export async function gotoHome({ page }: { page: Page }) {
88
const BASE_URL = "http://localhost:7357/";
9-
await page.setViewportSize({ width: 800, height: 600 });
9+
await page.setViewportSize({ width: 1024, height: 630 });
1010
await page.goto(BASE_URL);
1111
}
1212

0 commit comments

Comments
 (0)