mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-19 14:50:38 -07:00
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:
@@ -47,7 +47,7 @@ export function useExportGeneration() {
|
|||||||
filters: [
|
filters: [
|
||||||
{
|
{
|
||||||
name: 'Voicebox Generation',
|
name: 'Voicebox Generation',
|
||||||
extensions: ['voicebox.zip', 'zip'],
|
extensions: ['zip'],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ export function useExportProfile() {
|
|||||||
filters: [
|
filters: [
|
||||||
{
|
{
|
||||||
name: 'Voicebox Profile',
|
name: 'Voicebox Profile',
|
||||||
extensions: ['voicebox.zip', 'zip'],
|
extensions: ['zip'],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -10,5 +10,7 @@
|
|||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.device.audio-input</key>
|
<key>com.apple.security.device.audio-input</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
<key>com.apple.security.files.user-selected.read-write</key>
|
||||||
|
<true/>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
Reference in New Issue
Block a user