Update source code for new org
This commit is contained in:
parent
102f7e8e33
commit
fc84c952f2
3 changed files with 6 additions and 6 deletions
|
@ -49,7 +49,7 @@ AtomBrowserMainParts::~AtomBrowserMainParts() {
|
||||||
// Leak the JavascriptEnvironment on exit.
|
// Leak the JavascriptEnvironment on exit.
|
||||||
// This is to work around the bug that V8 would be waiting for background
|
// This is to work around the bug that V8 would be waiting for background
|
||||||
// tasks to finish on exit, while somehow it waits forever in Electron, more
|
// tasks to finish on exit, while somehow it waits forever in Electron, more
|
||||||
// about this can be found at https://github.com/atom/electron/issues/4767.
|
// about this can be found at https://github.com/electron/electron/issues/4767.
|
||||||
// On the other handle there is actually no need to gracefully shutdown V8
|
// On the other handle there is actually no need to gracefully shutdown V8
|
||||||
// on exit in the main process, we already ensured all necessary resources get
|
// on exit in the main process, we already ensured all necessary resources get
|
||||||
// cleaned up, and it would make quitting faster.
|
// cleaned up, and it would make quitting faster.
|
||||||
|
|
|
@ -112,13 +112,13 @@
|
||||||
<p>You can read the
|
<p>You can read the
|
||||||
<script>
|
<script>
|
||||||
document.write(
|
document.write(
|
||||||
`<a href='https://github.com/atom/electron/blob/v${process.versions.electron}/docs/tutorial/quick-start.md'>quick start</a>`
|
`<a href='https://github.com/electron/electron/blob/v${process.versions.electron}/docs/tutorial/quick-start.md'>quick start</a>`
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
guide in Electron's
|
guide in Electron's
|
||||||
<script>
|
<script>
|
||||||
document.write(
|
document.write(
|
||||||
`<a href='https://github.com/atom/electron/tree/v${process.versions.electron}/docs#readme'>docs</a>`
|
`<a href='https://github.com/electron/electron/tree/v${process.versions.electron}/docs#readme'>docs</a>`
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
to learn how to write one.
|
to learn how to write one.
|
||||||
|
|
|
@ -147,7 +147,7 @@ app.once('ready', function () {
|
||||||
label: 'Documentation',
|
label: 'Documentation',
|
||||||
click: function () {
|
click: function () {
|
||||||
shell.openExternal(
|
shell.openExternal(
|
||||||
`https://github.com/atom/electron/tree/v${process.versions.electron}/docs#readme`
|
`https://github.com/electron/electron/tree/v${process.versions.electron}/docs#readme`
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -160,7 +160,7 @@ app.once('ready', function () {
|
||||||
{
|
{
|
||||||
label: 'Search Issues',
|
label: 'Search Issues',
|
||||||
click: function () {
|
click: function () {
|
||||||
shell.openExternal('https://github.com/atom/electron/issues')
|
shell.openExternal('https://github.com/electron/electron/issues')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -257,7 +257,7 @@ function loadApplicationPackage (packagePath) {
|
||||||
dialog.showErrorBox(
|
dialog.showErrorBox(
|
||||||
'Error opening app',
|
'Error opening app',
|
||||||
'The app provided is not a valid Electron app, please read the docs on how to write one:\n' +
|
'The app provided is not a valid Electron app, please read the docs on how to write one:\n' +
|
||||||
`https://github.com/atom/electron/tree/v${process.versions.electron}/docs
|
`https://github.com/electron/electron/tree/v${process.versions.electron}/docs
|
||||||
|
|
||||||
${e.toString()}`
|
${e.toString()}`
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue