Merge branch 'develop' of https://github.com/ciderapp/Cider into develop

This commit is contained in:
booploops 2022-02-22 23:36:55 -08:00
commit 660a12423e

View file

@ -761,6 +761,10 @@ export class BrowserWindow {
`) `)
}); });
ipcMain.on('writeAudio', (event, buffer) => {
this.audioStream.write(Buffer.from(buffer));
})
//QR Code //QR Code
ipcMain.handle('showQR', async (_event, _) => { ipcMain.handle('showQR', async (_event, _) => {
let url = `http://${BrowserWindow.getIP()}:${this.remotePort}`; let url = `http://${BrowserWindow.getIP()}:${this.remotePort}`;