Debug Log: Copy URL instead of open in browser
This commit is contained in:
parent
dc81bf2bba
commit
7bb7c0d1e1
7 changed files with 61 additions and 34 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
const { ipcRenderer } = require('electron');
|
||||
const url = require('url');
|
||||
const copyText = require('copy-text-to-clipboard');
|
||||
const i18n = require('./js/modules/i18n');
|
||||
|
||||
const config = url.parse(window.location.toString(), true).query;
|
||||
|
@ -11,6 +12,7 @@ const localeMessages = ipcRenderer.sendSync('locale-data');
|
|||
window.getVersion = () => config.version;
|
||||
window.theme = config.theme;
|
||||
window.i18n = i18n.setup(locale, localeMessages);
|
||||
window.copyText = copyText;
|
||||
|
||||
// got.js appears to need this to successfully submit debug logs to the cloud
|
||||
window.nodeSetImmediate = setImmediate;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue