diff --git a/audon-fe/src/App.vue b/audon-fe/src/App.vue
index b3ae5a4..84be906 100644
--- a/audon-fe/src/App.vue
+++ b/audon-fe/src/App.vue
@@ -48,7 +48,7 @@ export default {
id="mainArea"
>
-
+
@@ -106,4 +106,8 @@ export default {
background: black;
color: white;
}
+
+#mainContainer {
+ background-color: rgba(18, 18, 18, 0.8);
+}
diff --git a/audon-fe/src/assets/style.css b/audon-fe/src/assets/style.css
index cc836a0..db69aff 100644
--- a/audon-fe/src/assets/style.css
+++ b/audon-fe/src/assets/style.css
@@ -29,7 +29,10 @@ body,
#app {
height: 100%;
width: 100%;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans CJK JP", "Original Yu Gothic", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
+ "Hiragino Sans", "Noto Sans CJK JP", "Original Yu Gothic", "Yu Gothic",
+ sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
+ "Noto Sans Emoji";
}
a.plain {
diff --git a/audon-fe/src/components/JoinDialog.vue b/audon-fe/src/components/JoinDialog.vue
index 2c00654..d7ff566 100644
--- a/audon-fe/src/components/JoinDialog.vue
+++ b/audon-fe/src/components/JoinDialog.vue
@@ -89,7 +89,6 @@ export default {
async joining(indicator) {
try {
this.donStore.avatar = this.roomToken.original;
- await this.roomClient.startAudio();
if (indicator && this.uploadEnabled) {
this.uploading = true;
try {
diff --git a/audon-fe/src/components/SettingPanel.vue b/audon-fe/src/components/SettingPanel.vue
new file mode 100644
index 0000000..e69de29
diff --git a/audon-fe/src/locales/en.yaml b/audon-fe/src/locales/en.yaml
index 27058dc..4cf1f47 100644
--- a/audon-fe/src/locales/en.yaml
+++ b/audon-fe/src/locales/en.yaml
@@ -14,8 +14,8 @@ share: "Share"
copy: "Copy"
copied: "Copied"
enterRoom: "Enter"
-leaveRoom: "Leave"
-closeRoom: "Close"
+leaveRoom: "Leave but keep this room open"
+closeRoom: "Close this room"
close: "Close"
connecting: "Connecting"
server: "Your Mastodon instance"
diff --git a/audon-fe/src/locales/ja.yaml b/audon-fe/src/locales/ja.yaml
index cbe42d8..8576473 100644
--- a/audon-fe/src/locales/ja.yaml
+++ b/audon-fe/src/locales/ja.yaml
@@ -14,8 +14,8 @@ share: "シェア"
copy: "コピー"
copied: "コピーしました"
enterRoom: "入室"
-leaveRoom: "退室"
-closeRoom: "閉室"
+leaveRoom: "部屋を閉じずに退室"
+closeRoom: "部屋を閉じる"
close: "閉じる"
connecting: "接続中"
server: "Mastodon サーバー"
diff --git a/audon-fe/src/views/HomeView.vue b/audon-fe/src/views/HomeView.vue
index 0ce7a9b..c683ec1 100644
--- a/audon-fe/src/views/HomeView.vue
+++ b/audon-fe/src/views/HomeView.vue
@@ -83,7 +83,11 @@ export default {