From d5a620cf09b835db2bccd99556525c90b458719f Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 5 Aug 2021 17:21:23 +0200 Subject: i18n for 21.08 --- discord/client.js | 78 +++++++++++++++++++++++++++---------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) (limited to 'discord') diff --git a/discord/client.js b/discord/client.js index d849ed3..63dd6db 100644 --- a/discord/client.js +++ b/discord/client.js @@ -1,40 +1,40 @@ -const DiscordRPC = require('discord-rpc'); - -// Set this to your Client ID. -const clientId = '821064368535633920'; - -// Only needed if you want to use spectate, join, or ask to join -DiscordRPC.register(clientId); - -const rpc = new DiscordRPC.Client({ transport: 'ipc' }); -const startTimestamp = new Date(); - -async function setActivity() { - if (!rpc) { - return; - } - - //const boops = await mainWindow.webContents.executeJavaScript('window.boops'); - - // You'll need to have snek_large and snek_small assets uploaded to - // https://discord.com/developers/applications//rich-presence/assets - rpc.setActivity({ - details: win.ddetails, - state: win.dstate, - startTimestamp, - largeImageKey: 'kartik', - largeImageText: 'Kartik, ' + lang.game.credits.by + ' Minteck', - smallImageKey: dimg, - smallImageText: dchan, - instance: false, - }); -} - -rpc.on('ready', () => { - // activity can only be set every 15 seconds - setInterval(() => { - setActivity(); - }, 15e3); -}); - +const DiscordRPC = require('discord-rpc'); + +// Set this to your Client ID. +const clientId = '821064368535633920'; + +// Only needed if you want to use spectate, join, or ask to join +DiscordRPC.register(clientId); + +const rpc = new DiscordRPC.Client({ transport: 'ipc' }); +const startTimestamp = new Date(); + +async function setActivity() { + if (!rpc) { + return; + } + + //const boops = await mainWindow.webContents.executeJavaScript('window.boops'); + + // You'll need to have snek_large and snek_small assets uploaded to + // https://discord.com/developers/applications//rich-presence/assets + rpc.setActivity({ + details: win.ddetails, + state: win.dstate, + startTimestamp, + largeImageKey: 'kartik', + largeImageText: 'Kartik, ' + lang.game.credits.by + ' Minteck', + smallImageKey: dimg, + smallImageText: dchan, + instance: false, + }); +} + +rpc.on('ready', () => { + // activity can only be set every 15 seconds + setInterval(() => { + setActivity(); + }, 15e3); +}); + rpc.login({ clientId }).catch(console.error); \ No newline at end of file -- cgit