Update file filters for export generation and profile export

- Modified the file extension filters in useHistory.ts and useProfiles.ts to only allow 'zip' files, removing 'voicebox.zip' for a more streamlined export process.
- Added user-selected read-write permission in Entitlements.plist to enhance file handling capabilities.
This commit is contained in:
Jamie Pine
2026-01-30 14:39:29 -08:00
parent 1b66a528d1
commit bfa38b36b7
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ export function useExportGeneration() {
filters: [
{
name: 'Voicebox Generation',
extensions: ['voicebox.zip', 'zip'],
extensions: ['zip'],
},
],
});
+1 -1
View File
@@ -135,7 +135,7 @@ export function useExportProfile() {
filters: [
{
name: 'Voicebox Profile',
extensions: ['voicebox.zip', 'zip'],
extensions: ['zip'],
},
],
});
+2
View File
@@ -10,5 +10,7 @@
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
</dict>
</plist>