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

[release-0.17] to 0.17.1 #1923

Merged
merged 3 commits into from
Mar 9, 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.17.0
VOICEVOX_RESOURCE_VERSION: 0.17.0
VOICEVOX_ENGINE_VERSION: 0.17.1
VOICEVOX_RESOURCE_VERSION: 0.17.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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Playwright を使用しているためテストパターンを生成すること
**ブラウザ版を起動している状態で**以下のコマンドを実行してください。

```bash
npx playwright codegen http://localhost:5173/ --viewport-size=800,600
npx playwright codegen http://localhost:5173/ --viewport-size=1024,630
```

詳細は [Playwright ドキュメントの Test generator](https://playwright.dev/docs/codegen-intro) を参照してください。
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.17.1",
"descriptions": [
"キャラクター「玄野武宏」「白上虎太郎」「青山龍星」「冥鳴ひまり」「九州そら」のハミングを追加",
"キャラクター「もち子さん」「剣崎雌雄」のハミングを追加",
"音域調整・声量調整機能",
"バグ修正"
],
"contributors": ["Hiroshiba", "sigprogramming"]
},
{
"version": "0.17.0",
"descriptions": [
Expand Down
4 changes: 2 additions & 2 deletions src/backend/electron/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,8 @@ let filePathOnMac: string | undefined = undefined;
// create window
async function createWindow() {
const mainWindowState = windowStateKeeper({
defaultWidth: 800,
defaultHeight: 600,
defaultWidth: 1024,
defaultHeight: 630,
});

const currentTheme = configManager.get("currentTheme");
Expand Down
8 changes: 5 additions & 3 deletions src/components/Talk/TalkEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,11 @@ const removeAudioItem = async () => {
};

// view
const DEFAULT_PORTRAIT_PANE_WIDTH = 25; // %
const DEFAULT_PORTRAIT_PANE_WIDTH = 22; // %
const MIN_PORTRAIT_PANE_WIDTH = 0;
const MAX_PORTRAIT_PANE_WIDTH = 40;
const MIN_AUDIO_INFO_PANE_WIDTH = 160; // px
const DEFAULT_AUDIO_INFO_PANE_WIDTH = 200; // px
const MIN_AUDIO_INFO_PANE_WIDTH = 160;
const MAX_AUDIO_INFO_PANE_WIDTH = 250;
const MIN_AUDIO_DETAIL_PANE_HEIGHT = 185; // px
const MAX_AUDIO_DETAIL_PANE_HEIGHT = 500;
Expand Down Expand Up @@ -365,7 +366,8 @@ watch(shouldShowPanes, (val, old) => {
);

audioInfoPaneWidth.value = clamp(
splitterPosition.value.audioInfoPaneWidth ?? MIN_AUDIO_INFO_PANE_WIDTH,
splitterPosition.value.audioInfoPaneWidth ??
DEFAULT_AUDIO_INFO_PANE_WIDTH,
MIN_AUDIO_INFO_PANE_WIDTH,
MAX_AUDIO_INFO_PANE_WIDTH
);
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tests/e2e/navigators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { getNewestQuasarDialog, getQuasarMenu } from "./locators";
*/
export async function gotoHome({ page }: { page: Page }) {
const BASE_URL = "http://localhost:7357/";
await page.setViewportSize({ width: 800, height: 600 });
await page.setViewportSize({ width: 1024, height: 630 });
await page.goto(BASE_URL);
}

Expand Down
Loading