Skip to content

Commit

Permalink
Update: 全体のアイコンを Material Symbols Rounded に変更
Browse files Browse the repository at this point in the history
Material Symbols Rounded の方がより優しい印象を与えられる上、font-feature-settings でアイコンスタイルを調整できる
  • Loading branch information
tsukumijima committed Aug 11, 2024
1 parent 6cc32c2 commit 6c6d836
Show file tree
Hide file tree
Showing 37 changed files with 109 additions and 104 deletions.
2 changes: 1 addition & 1 deletion .env.production
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ VITE_DEFAULT_ENGINE_INFOS=`[
"uuid": "1b4a5014-d9fd-11ee-b97d-83c170a68ed3",
"name": "AivisSpeech Engine",
"executionEnabled": true,
"executionFilePath": "AivisSpeech-Engine/run.exe",
"executionFilePath": "../Resources/AivisSpeech-Engine/run",
"executionArgs": [],
"host": "http://127.0.0.1:10101"
}
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"@gtm-support/vue-gtm": "1.2.3",
"@quasar/extras": "1.10.10",
"@quasar/extras": "1.16.12",
"@sevenc-nanashi/utaformatix-ts": "npm:@jsr/[email protected]",
"async-lock": "1.4.0",
"dayjs": "1.10.7",
Expand Down
2 changes: 1 addition & 1 deletion public/licenses.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/CharacterButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
@mouseleave="reassignSubMenuOpen.cancel()"
@keyup.right="reassignSubMenuOpen(characterIndex)"
>
<QIcon name="keyboard_arrow_right" color="grey-6" size="sm" />
<QIcon name="sym_r_keyboard_arrow_right" color="grey-6" size="sm" />
<QMenu
v-model="subMenuOpenFlags[characterIndex]"
noParentEvent
Expand Down
4 changes: 2 additions & 2 deletions src/components/Dialog/AcceptRetrieveTelemetryDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<QBtn
outline
label="拒否"
icon="close"
icon="sym_r_close"
color="toolbar-button"
textColor="toolbar-button-display"
class="text-no-wrap q-mr-md text-bold"
Expand All @@ -32,7 +32,7 @@
<QBtn
outline
label="許可"
icon="done"
icon="sym_r_done"
color="toolbar-button"
textColor="toolbar-button-display"
class="text-no-wrap text-bold"
Expand Down
4 changes: 2 additions & 2 deletions src/components/Dialog/AcceptTermsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<QBtn
outline
label="同意せずに終了"
icon="close"
icon="sym_r_close"
color="toolbar-button"
textColor="toolbar-button-display"
class="text-no-wrap q-mr-md text-bold"
Expand All @@ -29,7 +29,7 @@
<QBtn
outline
label="同意してはじめる"
icon="power_settings_new"
icon="sym_r_power_settings_new"
color="toolbar-button"
textColor="toolbar-button-display"
class="text-no-wrap text-bold"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dialog/CharacterOrderDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<QLayout container view="hHh Lpr lff" class="bg-background">
<QHeader class="q-py-sm">
<QToolbar>
<QBtn round flat icon="close" color="display" @click="closeDialog" />
<QBtn round flat icon="sym_r_close" color="display" @click="closeDialog" />
<QToolbarTitle class="text-display">話者リスト</QToolbarTitle>
</QToolbar>
</QHeader>
Expand Down
8 changes: 4 additions & 4 deletions src/components/Dialog/CharacterTryListenCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<QBtn
flat
dense
icon="chevron_left"
icon="sym_r_chevron_left"
textColor="display"
class="style-select-button"
aria-label="前のスタイル"
Expand All @@ -45,7 +45,7 @@
<QBtn
flat
dense
icon="chevron_right"
icon="sym_r_chevron_right"
textColor="display"
class="style-select-button"
aria-label="次のスタイル"
Expand All @@ -70,8 +70,8 @@
speakerUuid === playing.speakerUuid &&
selectedStyle.styleId === playing.styleId &&
voiceSampleIndex === playing.index
? 'stop'
: 'play_arrow'
? 'sym_r_stop'
: 'sym_r_play_arrow'
"
color="primary"
class="voice-sample-btn"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dialog/DefaultStyleListDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<QLayout container view="hHh Lpr lff" class="bg-background">
<QHeader class="q-py-sm">
<QToolbar>
<QBtn round flat icon="close" color="display" @click="closeDialog" />
<QBtn round flat icon="sym_r_close" color="display" @click="closeDialog" />
<QToolbarTitle class="text-display">
デフォルトスタイル
</QToolbarTitle>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Dialog/DefaultStyleSelectDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
round
flat
color="display"
:icon="isModified ? 'save' : 'arrow_back'"
:icon="isModified ? 'sym_r_save' : 'sym_r_arrow_back'"
@click="closeDialog"
/>
<QToolbarTitle class="text-display">
Expand Down Expand Up @@ -72,8 +72,8 @@
playing.speakerUuid &&
style.styleId === playing.styleId &&
voiceSampleIndex === playing.index
? 'stop'
: 'play_arrow'
? 'sym_r_stop'
: 'sym_r_play_arrow'
"
color="primary"
class="voice-sample-btn"
Expand Down
16 changes: 8 additions & 8 deletions src/components/Dialog/DictionaryManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<QBtn
round
flat
icon="close"
icon="sym_r_close"
color="display"
@click="discardOrNotDialog(closeDialog)"
/>
Expand All @@ -23,7 +23,7 @@
</QToolbarTitle>
<QBtn
outline
icon="add"
icon="sym_r_add"
label="追加"
textColor="display"
class="text-bold"
Expand Down Expand Up @@ -123,15 +123,15 @@
fab
color="primary"
textColor="display-on-primary"
icon="play_arrow"
icon="sym_r_play_arrow"
@click="play"
/>
<QBtn
v-else
fab
color="primary"
textColor="display-on-primary"
icon="stop"
icon="sym_r_stop"
:disable="nowGenerating"
@click="stop"
/>
Expand Down Expand Up @@ -200,7 +200,7 @@
<QBtn
v-show="!!selectedId"
outline
icon="delete"
icon="sym_r_delete"
label="削除"
textColor="warning"
class="text-no-wrap text-bold q-mr-sm"
Expand All @@ -210,7 +210,7 @@
<QBtn
v-show="!!selectedId"
outline
icon="settings_backup_restore"
icon="sym_r_settings_backup_restore"
label="リセット"
textColor="warning"
class="text-no-wrap text-bold q-mr-sm"
Expand All @@ -220,7 +220,7 @@
<QBtn
v-show="isNewWordEditing"
outline
icon="close"
icon="sym_r_close"
label="キャンセル"
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
Expand All @@ -229,7 +229,7 @@
/>
<QBtn
outline
icon="save"
icon="sym_r_save"
label="保存"
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
Expand Down
18 changes: 9 additions & 9 deletions src/components/Dialog/EngineManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<QBtn
round
flat
icon="close"
icon="sym_r_close"
color="display"
:disabled="isAddingEngine || uiLocked"
@click="toDialogClosedState"
Expand All @@ -24,7 +24,7 @@
</QToolbarTitle>
<QBtn
outline
icon="add"
icon="sym_r_add"
label="追加"
textColor="display"
class="text-bold"
Expand Down Expand Up @@ -140,7 +140,7 @@
dense
flat
color="primary"
icon="folder_open"
icon="sym_r_folder_open"
@click="selectVvppFile"
>
<QTooltip :delay="500" anchor="bottom left">
Expand Down Expand Up @@ -183,7 +183,7 @@
dense
flat
color="primary"
icon="folder_open"
icon="sym_r_folder_open"
@click="selectEngineDir"
>
<QTooltip :delay="500" anchor="bottom left">
Expand All @@ -208,15 +208,15 @@

<QBtn
outline
icon="close"
icon="sym_r_close"
label="キャンセル"
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
@click="toInitialState"
/>
<QBtn
outline
icon="add"
icon="sym_r_add"
label="追加"
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
Expand Down Expand Up @@ -316,7 +316,7 @@

<QBtn
outline
icon="delete"
icon="sym_r_delete"
label="削除"
textColor="warning"
class="text-no-wrap text-bold q-mr-sm"
Expand All @@ -328,7 +328,7 @@
/>
<QBtn
outline
icon="folder_open"
icon="sym_r_folder_open"
label="フォルダを開く"
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
Expand All @@ -337,7 +337,7 @@
/>
<QBtn
outline
icon="restart_alt"
icon="sym_r_restart_alt"
label="再起動"
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
Expand Down
4 changes: 2 additions & 2 deletions src/components/Dialog/HelpDialog/HelpDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<QBtn
round
flat
icon="close"
icon="sym_r_close"
color="display"
aria-label="ヘルプを閉じる"
@click="modelValueComputed = false"
Expand All @@ -62,7 +62,7 @@
<QBtn
v-if="page.component === ContactInfo"
outline
icon="description"
icon="sym_r_description"
label="ログフォルダを開く"
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dialog/HelpDialog/LibraryPolicy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<div class="q-mb-md">
<QBtn
outline
icon="keyboard_arrow_left"
icon="sym_r_keyboard_arrow_left"
label="戻る"
@click="selectCharacterInfo(undefined)"
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dialog/HelpDialog/OssLicense.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div class="q-mb-md">
<QBtn
outline
icon="keyboard_arrow_left"
icon="sym_r_keyboard_arrow_left"
label="戻る"
@click="selectLicenseIndex(undefined)"
/>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Dialog/HotkeySettingDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<QBtn
round
flat
icon="close"
icon="sym_r_close"
color="display"
@click="hotkeySettingDialogOpenComputed = false"
/>
Expand All @@ -26,7 +26,7 @@
class="q-mr-sm search-box"
>
<template #prepend>
<QIcon name="search" />
<QIcon name="sym_r_search" />
</template>
<template #append>
<QIcon
Expand Down Expand Up @@ -99,7 +99,7 @@
<QBtn
rounded
flat
icon="settings_backup_restore"
icon="sym_r_settings_backup_restore"
padding="none sm"
size="1em"
:disable="checkHotkeyReadonly(tableProps.row.action)"
Expand Down
4 changes: 2 additions & 2 deletions src/components/Dialog/ModelManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<QHeader class="q-py-sm">
<QToolbar>
<!-- close button -->
<QBtn round flat icon="close" color="display" @click="toDialogClosedState" />
<QBtn round flat icon="sym_r_close" color="display" @click="toDialogClosedState" />
<QToolbarTitle class="text-display">
音声合成モデルの管理
</QToolbarTitle>
<QBtn outline icon="add" label="追加" textColor="display" class="text-bold" @click="() => ''" />
<QBtn outline icon="sym_r_add" label="追加" textColor="display" class="text-bold" @click="() => ''" />
</QToolbar>
</QHeader>
<QPage class="row no-wrap">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dialog/PresetManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<QSpace />
<QItemSection avatar>
<QBtn
icon="delete"
icon="sym_r_delete"
flat
color="display"
@click="deletePreset(item.key)"
Expand Down
Loading

0 comments on commit 6c6d836

Please sign in to comment.