-
Notifications
You must be signed in to change notification settings - Fork 312
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
[project-s] mainブランチマージのコンフリクト解消、及び追従 #1583
The head ref may contain hidden characters: "\u30B3\u30F3\u30D5\u30EA\u30AF\u30C8\u89E3\u6D88"
Conversation
<q-btn | ||
v-close-popup | ||
flat | ||
no-caps | ||
v-close-popup | ||
class="col-grow" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
このあたりの順序が入れ替わっているのは新しく導入されたformatterの影響です
const changeStyleId = (speakerUuid: string, styleId: number) => { | ||
const changeStyleId = (speakerUuid: SpeakerId, styleId: StyleId) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
speakerIdやstyleIdやengineIdに型が導入されました
const midiData = await window.electron.readFile({ filePath }); | ||
const midiData = getValueOrThrow( | ||
await window.electron.readFile({ filePath }) | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Result型になりました
<<<<<<< HEAD | ||
components: { | ||
draggable, | ||
MenuBar, | ||
HeaderBar, | ||
AudioCell, | ||
AudioDetail, | ||
AudioInfo, | ||
HelpDialog, | ||
SettingDialog, | ||
HotkeySettingDialog, | ||
HeaderBarCustomDialog, | ||
CharacterPortrait, | ||
DefaultStyleSelectDialog, | ||
CharacterOrderDialog, | ||
AcceptRetrieveTelemetryDialog, | ||
AcceptTermsDialog, | ||
DictionaryManageDialog, | ||
SingerTab, | ||
======= |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TTS側のVueファイルはComposition APIに変えた影響でこれらのimportが不要になりました。
あとreturnでいっぱい状態変数や関数を返すのも不要になっています。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTMです!
コンフリクト解消とコメントありがとうございます!動作等、問題なさそうです!
レビューありがとうございます!! |
内容
mainブランチのマージのコンフリクトを解消し、フォーマッターを動作させ、エラーが起こる箇所を変更・追従しました。
実行するにはおそらく
Node
のバージョン更新と、npmパッケージの更新(npm run ci
)と、.env
ファイルの更新が必要です。主な仕様変更点
PROCESS_BEFORE_QUIT
アクションを解体して元のCHECK_EDITED_AND_NOT_SAVE
を改造する形にしたCHECK_EDITED_AND_NOT_SAVE
内に組み込みました関連 Issue
その他
あとTTS側のVueファイルがComposition形式になってとても楽になったのですが、全範囲にコンフリクトが発生してしまうので、そこはとりあえず追従していません。