mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-17 05:40:42 -07:00
- Introduced functionality to record audio directly from the microphone, allowing users to switch between uploading files and recording. - Implemented state management for recording status and duration, with user feedback through toast notifications. - Updated Info.plist to include microphone usage description for better user transparency. - Enhanced the UI with tabs for selecting between upload and record modes, improving user experience.
13 lines
435 B
Plaintext
13 lines
435 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleIconFile</key>
|
|
<string>voicebox</string>
|
|
<key>CFBundleIconName</key>
|
|
<string>voicebox</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>voicebox needs microphone access to record voice samples for voice cloning.</string>
|
|
</dict>
|
|
</plist>
|