macOS handoff and cider go beep

This commit is contained in:
child_duckling 2022-02-05 16:37:00 -08:00
parent e453bfb94e
commit 74ffd4811c
3 changed files with 18 additions and 0 deletions

View file

@ -30,6 +30,7 @@
"dependencies": { "dependencies": {
"@sentry/electron": "^2.5.4", "@sentry/electron": "^2.5.4",
"@sentry/integrations": "^6.17.4", "@sentry/integrations": "^6.17.4",
"castv2-client": "^1.2.0",
"discord-rpc": "^4.0.1", "discord-rpc": "^4.0.1",
"ejs": "^3.1.6", "ejs": "^3.1.6",
"electron-fetch": "^1.7.4", "electron-fetch": "^1.7.4",
@ -47,14 +48,18 @@
"mpris-service": "^2.1.2", "mpris-service": "^2.1.2",
"music-metadata": "^7.11.4", "music-metadata": "^7.11.4",
"node-gyp": "^8.4.1", "node-gyp": "^8.4.1",
"node-ssdp": "^4.0.1",
"qrcode": "^1.5.0", "qrcode": "^1.5.0",
"qrcode-terminal": "^0.12.0", "qrcode-terminal": "^0.12.0",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"run-script-os": "^1.1.6", "run-script-os": "^1.1.6",
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"tsc": "^2.0.4",
"typescript": "^4.5.5", "typescript": "^4.5.5",
"upnp-mediarenderer-client": "^1.4.0",
"v8-compile-cache": "^2.3.0", "v8-compile-cache": "^2.3.0",
"wavefile": "^11.0.0",
"ws": "^8.4.2", "ws": "^8.4.2",
"xml2js": "^0.4.23", "xml2js": "^0.4.23",
"youtube-search-without-api-key": "^1.0.7" "youtube-search-without-api-key": "^1.0.7"

View file

@ -174,6 +174,16 @@ export class AppEvents {
utils.getWindow().webContents.send('play', 'url', url) utils.getWindow().webContents.send('play', 'url', url)
} else if (arg.includes('/debug/appdata')) { } else if (arg.includes('/debug/appdata')) {
shell.openPath(app.getPath('userData')) shell.openPath(app.getPath('userData'))
} else if (arg.includes('/debug/logs')) {
shell.openPath(app.getPath('logs'))
} else if (arg.includes('/discord')) {
shell.openExternal('https://discord.gg/applemusic')
} else if (arg.includes('/github')) {
shell.openExternal('https://github.com/ciderapp/cider')
} else if (arg.includes('/donate')) {
shell.openExternal('https://opencollective.com/ciderapp')
} else if (arg.includes('/beep')) {
shell.beep()
} }
} }

View file

@ -549,6 +549,9 @@ export class BrowserWindow {
let url = `http://${BrowserWindow.getIP()}:${this.remotePort}`; let url = `http://${BrowserWindow.getIP()}:${this.remotePort}`;
BrowserWindow.win.webContents.send('send-remote-pair-url', url); BrowserWindow.win.webContents.send('send-remote-pair-url', url);
}) })
app.setUserActivity('com.CiderCollective.remote.pair', {
ip: `${BrowserWindow.getIP()}`
}, `http://${BrowserWindow.getIP()}:${this.remotePort}`);
// Get previews for normalization // Get previews for normalization
ipcMain.on("getPreviewURL", (_event, url) => { ipcMain.on("getPreviewURL", (_event, url) => {