feat: implement whisper transcription engine with hardware detection and IPC bridge

This commit is contained in:
Ümit Tunç
2026-04-23 09:05:10 +03:00
parent 16ae1a8345
commit 4a7e23de79
2 changed files with 5 additions and 1 deletions
+3
View File
@@ -228,6 +228,9 @@ function createWindow() {
if (action === "maximize") win.isMaximized() ? win.unmaximize() : win.maximize();
if (action === "close") win.close();
});
electron.ipcMain.on("open-explorer", (event, path2) => {
electron.shell.showItemInFolder(path2);
});
}
electron.app.whenReady().then(() => {
utils.electronApp.setAppUserModelId("com.voicext.app");