diff --git a/app/src/components/ServerSettings/UpdateStatus.tsx b/app/src/components/ServerSettings/UpdateStatus.tsx index 7e1e160d..31e4640b 100644 --- a/app/src/components/ServerSettings/UpdateStatus.tsx +++ b/app/src/components/ServerSettings/UpdateStatus.tsx @@ -71,11 +71,23 @@ export function UpdateStatus() { {status.downloading && (
-
- - Downloading update... +
+
+ + Downloading update... +
+ {status.downloadProgress !== undefined && ( + + {status.downloadProgress}% + + )}
- + + {status.downloadedBytes !== undefined && status.totalBytes !== undefined && status.totalBytes > 0 && ( +
+ {(status.downloadedBytes / 1024 / 1024).toFixed(1)} MB / {(status.totalBytes / 1024 / 1024).toFixed(1)} MB +
+ )}
)} diff --git a/app/src/components/VoiceProfiles/AudioSampleRecording.tsx b/app/src/components/VoiceProfiles/AudioSampleRecording.tsx index 34c3c372..9c7c9b62 100644 --- a/app/src/components/VoiceProfiles/AudioSampleRecording.tsx +++ b/app/src/components/VoiceProfiles/AudioSampleRecording.tsx @@ -1,4 +1,4 @@ -import { Mic, Square, Play, Pause } from 'lucide-react'; +import { Mic, Pause, Play, Square } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { FormControl, FormItem, FormLabel, FormMessage } from '@/components/ui/form'; import { formatAudioDuration } from '@/lib/utils/audio'; @@ -35,12 +35,7 @@ export function AudioSampleRecording({
{!isRecording && !file && (
- @@ -81,16 +76,9 @@ export function AudioSampleRecording({ Recording complete
-

- File: {file.name} -

+

File: {file.name}

- @@ -81,16 +76,9 @@ export function AudioSampleSystem({ Capture complete
-

- File: {file.name} -

+

File: {file.name}

-