on about window open link with external browser
This commit is contained in:
parent
03b2fed9ef
commit
7ba34c1074
|
@ -124,8 +124,9 @@
|
|||
}
|
||||
$('#hash').html('<a href="https://github.com/cutls/TheDesk/commits/' + about[3] + '" target="_blank">' + about[3].slice(0, 7) + '</a>')
|
||||
$(document).on('click', 'a', (e) => {
|
||||
e.preventDefault()
|
||||
var url = $(e.target).attr('href')
|
||||
postMessage(['openUrl', url], '*')
|
||||
postMessage(['openUrlMainProcess', url], '*')
|
||||
return false
|
||||
})
|
||||
</script>
|
||||
|
|
|
@ -7,12 +7,17 @@ window.addEventListener('DOMContentLoaded', () => {
|
|||
ipc.send('acsCheck', '')
|
||||
})
|
||||
|
||||
onmessage = function(e) {
|
||||
onmessage = async function (e) {
|
||||
if (e.data[0] == 'openUrl') {
|
||||
urls = e.data[1].match(/https?:\/\/(.+)/)
|
||||
if (urls) {
|
||||
shell.openExternal(e.data[1])
|
||||
}
|
||||
} else if (e.data[0] == 'openUrlMainProcess') {
|
||||
urls = e.data[1].match(/https?:\/\/(.+)/)
|
||||
if (urls) {
|
||||
ipc.send('openUrl', e.data[1])
|
||||
}
|
||||
} else if (e.data[0] == 'sendSinmpleIpc') {
|
||||
ipc.send(e.data[1], '')
|
||||
} else if (e.data[0] == 'dialogStore') {
|
||||
|
@ -91,17 +96,16 @@ onmessage = function(e) {
|
|||
}
|
||||
//version.js
|
||||
ipc.send('getPlatform', '')
|
||||
ipc.on('platform', function(event, args) {
|
||||
ipc.on('platform', function (event, args) {
|
||||
localStorage.setItem('platform', args[0])
|
||||
localStorage.setItem('bit', args[1])
|
||||
localStorage.setItem('about', JSON.stringify([args[2], args[3], args[4], args[5]]))
|
||||
})
|
||||
|
||||
ipc.on('reload', function(event, arg) {
|
||||
ipc.on('reload', function (event, arg) {
|
||||
location.reload()
|
||||
})
|
||||
//Native Notf
|
||||
ipc.on('shownotf', function(event, args) {
|
||||
ipc.on('shownotf', function (event, args) {
|
||||
if (args['type'] == 'toot') {
|
||||
postMessage(['details', [id, acct_id]], '*')
|
||||
} else if (args['type'] == 'userdata') {
|
||||
|
@ -110,7 +114,7 @@ ipc.on('shownotf', function(event, args) {
|
|||
})
|
||||
|
||||
//first.js
|
||||
ipc.on('custom-css-response', function(event, arg) {
|
||||
ipc.on('custom-css-response', function (event, arg) {
|
||||
if (arg == '') {
|
||||
return false
|
||||
}
|
||||
|
@ -121,7 +125,7 @@ ipc.on('custom-css-response', function(event, arg) {
|
|||
styleNode.append(content)
|
||||
document.getElementsByTagName('head')[0].append(styleNode)
|
||||
})
|
||||
ipc.on('theme-css-response', function(event, arg) {
|
||||
ipc.on('theme-css-response', function (event, arg) {
|
||||
if (arg == '') {
|
||||
return false
|
||||
}
|
||||
|
@ -133,7 +137,7 @@ ipc.on('theme-css-response', function(event, arg) {
|
|||
document.getElementsByTagName('head')[0].append(styleNode)
|
||||
})
|
||||
//img.js
|
||||
ipc.on('bmp-img-comp', function(event, b64) {
|
||||
ipc.on('bmp-img-comp', function (event, b64) {
|
||||
if (b64[2]) {
|
||||
var stamped = true
|
||||
} else {
|
||||
|
@ -141,12 +145,12 @@ ipc.on('bmp-img-comp', function(event, b64) {
|
|||
}
|
||||
postMessage(['media', [b64[0], 'image/png', b64[1], stamped]], '*')
|
||||
})
|
||||
ipc.on('resizeJudgement', function(event, b64) {
|
||||
ipc.on('resizeJudgement', function (event, b64) {
|
||||
var resize = localStorage.getItem('uploadCrop') * 1
|
||||
if (resize > 0) {
|
||||
var element = new Image()
|
||||
var width
|
||||
element.onload = function() {
|
||||
element.onload = function () {
|
||||
var width = element.naturalWidth
|
||||
var height = element.naturalHeight
|
||||
if (width > resize || height > resize) {
|
||||
|
@ -161,88 +165,88 @@ ipc.on('resizeJudgement', function(event, b64) {
|
|||
}
|
||||
})
|
||||
//ui,img.js
|
||||
ipc.on('general-dl-prog', function(event, arg) {
|
||||
ipc.on('general-dl-prog', function (event, arg) {
|
||||
console.log('Progress: ' + arg)
|
||||
})
|
||||
ipc.on('general-dl-message', function(event, arg) {
|
||||
ipc.on('general-dl-message', function (event, arg) {
|
||||
var argC = arg.replace(/\\/g, '\\\\')
|
||||
console.log('saved')
|
||||
postMessage(['toastSaved', [arg, argC]], '*')
|
||||
})
|
||||
//setting.js
|
||||
ipc.on('langres', function(event, arg) {
|
||||
ipc.on('langres', function (event, arg) {
|
||||
location.href = '../' + arg + '/setting.html'
|
||||
})
|
||||
ipc.on('exportSettingsFile', function(event, arg) {
|
||||
ipc.on('exportSettingsFile', function (event, arg) {
|
||||
postMessage(['exportSettingsCore', arg], '*')
|
||||
})
|
||||
ipc.on('exportAllComplete', function(event, arg) {
|
||||
ipc.on('exportAllComplete', function (event, arg) {
|
||||
postMessage(['alert', 'Complete'], '*')
|
||||
})
|
||||
ipc.on('config', function(event, arg) {
|
||||
ipc.on('config', function (event, arg) {
|
||||
postMessage(['importSettingsCore', arg], '*')
|
||||
})
|
||||
ipc.on('savefolder', function(event, arg) {
|
||||
ipc.on('savefolder', function (event, arg) {
|
||||
localStorage.setItem('savefolder', arg)
|
||||
})
|
||||
ipc.on('font-list', function(event, arg) {
|
||||
ipc.on('font-list', function (event, arg) {
|
||||
postMessage(['fontList', arg], '*')
|
||||
})
|
||||
ipc.on('customSoundRender', function(event, args) {
|
||||
ipc.on('customSoundRender', function (event, args) {
|
||||
postMessage(['customSoundSave', [args[0], args[1]]], '*')
|
||||
})
|
||||
ipc.on('theme-json-list-response', function(event, args) {
|
||||
ipc.on('theme-json-list-response', function (event, args) {
|
||||
postMessage(['ctLoadCore', args], '*')
|
||||
})
|
||||
ipc.on('theme-json-delete-complete', function(event, args) {
|
||||
ipc.on('theme-json-delete-complete', function (event, args) {
|
||||
postMessage(['ctLoad', ''], '*')
|
||||
})
|
||||
ipc.on('theme-json-response', function(event, args) {
|
||||
ipc.on('theme-json-response', function (event, args) {
|
||||
postMessage(['customConnect', args], '*')
|
||||
})
|
||||
ipc.on('theme-json-create-complete', function(event, args) {
|
||||
if(args != '') alert(args)
|
||||
ipc.on('theme-json-create-complete', function (event, args) {
|
||||
if (args != '') alert(args)
|
||||
postMessage(['clearCustomImport', ''], '*')
|
||||
postMessage(['ctLoad', ''], '*')
|
||||
})
|
||||
//spotify.js
|
||||
ipc.on('itunes-np', function(event, arg) {
|
||||
ipc.on('itunes-np', function (event, arg) {
|
||||
postMessage(['npCore', arg], '*')
|
||||
})
|
||||
//tips.js
|
||||
ipc.on('memory', function(event, arg) {
|
||||
ipc.on('memory', function (event, arg) {
|
||||
var use = arg[0]
|
||||
var cpu = arg[1]
|
||||
var total = arg[2]
|
||||
postMessage(['renderMem', [use, cpu, total, arg[3], arg[4]]], '*')
|
||||
})
|
||||
//log
|
||||
ipc.on('logData', function(event, args) {
|
||||
ipc.on('logData', function (event, args) {
|
||||
postMessage(['logData', args], '*')
|
||||
})
|
||||
//update.html
|
||||
ipc.on('prog', function(event, arg) {
|
||||
ipc.on('prog', function (event, arg) {
|
||||
postMessage(['updateProg', arg], '*')
|
||||
})
|
||||
ipc.on('mess', function(event, arg) {
|
||||
ipc.on('mess', function (event, arg) {
|
||||
postMessage(['updateMess', arg], '*')
|
||||
})
|
||||
//misc
|
||||
ipc.on('asRead', function(event, arg) {
|
||||
ipc.on('asRead', function (event, arg) {
|
||||
postMessage(['asRead', ''], '*')
|
||||
})
|
||||
ipc.on('asReadEnd', function(event, arg) {
|
||||
ipc.on('asReadEnd', function (event, arg) {
|
||||
postMessage(['asReadEnd', ''], '*')
|
||||
})
|
||||
ipc.on('accessibility', function(event, arg) {
|
||||
ipc.on('accessibility', function (event, arg) {
|
||||
postMessage(['accessibility', 'true'], '*')
|
||||
})
|
||||
ipc.on('twitterLoginComplete', function(event, arg) {
|
||||
ipc.on('twitterLoginComplete', function (event, arg) {
|
||||
postMessage(['twitterLoginComplete', ''], '*')
|
||||
})
|
||||
ipc.on('alert', function(event, arg) {
|
||||
ipc.on('alert', function (event, arg) {
|
||||
postMessage(['alert', arg], '*')
|
||||
})
|
||||
ipc.on('customUrl', function(event, args) {
|
||||
ipc.on('customUrl', function (event, args) {
|
||||
postMessage(['customUrl', args], '*')
|
||||
})
|
|
@ -1,3 +1,5 @@
|
|||
const { shell } = require('electron')
|
||||
|
||||
function system(mainWindow, dir, lang, dirname) {
|
||||
const electron = require('electron')
|
||||
const app = electron.app
|
||||
|
@ -144,6 +146,9 @@ function system(mainWindow, dir, lang, dirname) {
|
|||
ipc.on('about', (e, args) => {
|
||||
about()
|
||||
})
|
||||
ipc.on('openUrl', function (event, arg) {
|
||||
shell.openExternal(arg)
|
||||
})
|
||||
function about() {
|
||||
var ver = app.getVersion()
|
||||
var window = new BrowserWindow({
|
||||
|
@ -151,7 +156,9 @@ function system(mainWindow, dir, lang, dirname) {
|
|||
webviewTag: false,
|
||||
nodeIntegration: false,
|
||||
contextIsolation: true,
|
||||
preload: join(dirname, 'js', 'platform', 'preload.js'),
|
||||
spellcheck: false,
|
||||
sandbox: false,
|
||||
preload: join(__dirname, 'js', 'platform', 'preload.js'),
|
||||
},
|
||||
width: 300,
|
||||
height: 500,
|
||||
|
@ -175,6 +182,7 @@ function system(mainWindow, dir, lang, dirname) {
|
|||
webviewTag: false,
|
||||
nodeIntegration: false,
|
||||
contextIsolation: true,
|
||||
sandbox: false,
|
||||
preload: join(dirname, 'js', 'platform', 'preload.js'),
|
||||
},
|
||||
width: 350,
|
||||
|
@ -321,6 +329,7 @@ function system(mainWindow, dir, lang, dirname) {
|
|||
webviewTag: false,
|
||||
nodeIntegration: false,
|
||||
contextIsolation: true,
|
||||
sandbox: false,
|
||||
preload: join(dirname, 'js', 'platform', 'preload.js'),
|
||||
},
|
||||
width: 414,
|
||||
|
|
Loading…
Reference in New Issue
Block a user