Initial release: DictIA v0.8.14-alpha (fork de Speakr, AGPL-3.0)

This commit is contained in:
InnovA AI
2026-03-16 21:47:37 +00:00
commit 42772a31ed
365 changed files with 103572 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/**
* Composables module exports
*
* Each composable encapsulates related functionality:
* - recordings: Loading, selecting, filtering recordings
* - upload: File upload queue management
* - audio: Microphone/system audio recording
* - ui: Dark mode, color schemes, sidebar
* - transcription: Transcription editing (ASR editor, text editor)
* - speakers: Speaker identification and management
* - reprocess: Reprocessing transcription/summary
* - sharing: Public/internal sharing
* - modals: Modal dialog management
* - chat: AI chat functionality
* - pwa: PWA features (install prompt, notifications, badging, media session)
* - tokens: API token management
*/
export { useRecordings } from './recordings.js';
export { useUpload } from './upload.js';
export { useAudio } from './audio.js';
export { useUI } from './ui.js';
export { useModals } from './modals.js';
export { useSharing } from './sharing.js';
export { useReprocess } from './reprocess.js';
export { useTranscription } from './transcription.js';
export { useSpeakers } from './speakers.js';
export { useChat } from './chat.js';
export { usePWA } from './pwa.js';
export { useTokens } from './tokens.js';
export { useBulkSelection } from './bulk-selection.js';
export { useBulkOperations } from './bulk-operations.js';
export { useFolders } from './folders.js';