Merge pull request #145 from Daeraxa/help-links

Update help links
This commit is contained in:
confused_techie 2022-11-19 20:49:31 -08:00 committed by GitHub
commit d255f195e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 15 deletions

View File

@ -7,8 +7,9 @@
"branding": {
"id": "pulsar",
"name": "Pulsar",
"urlWeb": "https://atom.io/",
"urlGH": "https://github.com/pulsar-edit"
"urlWeb": "https://pulsar-edit.dev/",
"urlGH": "https://github.com/pulsar-edit",
"urlForum": "https://github.com/orgs/pulsar-edit/discussions"
},
"main": "./src/main-process/main.js",
"repository": {

View File

@ -99,9 +99,8 @@ export default class WelcomeView {
<ul>
<li>
The{' '}
{/* // TODO_PULSAR: Update to our docs or test {atom.branding.urlWeb}+"/docs" */}
<a
href="https://www.atom.io/docs"
href={atom.branding.urlWeb + "docs"}
dataset={{ event: 'atom-docs' }}
>
{this.brand} docs
@ -111,7 +110,7 @@ export default class WelcomeView {
<li>
The {this.brand} forum at{' '}
<a
href="https://github.com/pulsar-edit/pulsar/discussions"
href={atom.branding.urlForum}
dataset={{ event: 'discussions' }}
>
Github Discussions
@ -125,7 +124,7 @@ export default class WelcomeView {
>
{this.brand} org
</a>
. This is where all GitHub-created {this.brand} packages can be found.
. This is where all {this.brand} org packages can be found.
</li>
</ul>
</section>
@ -144,12 +143,12 @@ export default class WelcomeView {
<footer className="welcome-footer">
<a href={atom.branding.urlWeb} dataset={{ event: 'footer-atom-io' }}>
atom.io
pulsar-edit.dev
</a>{' '}
<span className="text-subtle">×</span>{' '}
<a
className="icon icon-octoface"
href="https://github.com/"
className="icon icon-heart"
href={atom.branding.urlWeb + "community"}
dataset={{ event: 'footer-octocat' }}
/>
</footer>

View File

@ -225,7 +225,8 @@ class AtomEnvironment {
id: packagejson.branding.id,
name: packagejson.branding.name,
urlWeb: packagejson.branding.urlWeb,
urlGH: packagejson.branding.urlGH
urlGH: packagejson.branding.urlGH,
urlForum: packagejson.branding.urlForum
};
// Keep instances of HistoryManager in sync

View File

@ -590,24 +590,24 @@ module.exports = class AtomApplication extends EventEmitter {
});
this.on('application:open-documentation', () =>
shell.openExternal('http://flight-manual.atom.io')
shell.openExternal('https://pulsar-edit.dev/docs/')
);
this.on('application:open-discussions', () =>
shell.openExternal('https://github.com/atom/atom/discussions')
shell.openExternal('https://github.com/orgs/pulsar-edit/discussions')
);
this.on('application:open-faq', () =>
shell.openExternal('https://atom.io/faq')
shell.openExternal('https://pulsar-edit.dev/docs/launch-manual/sections/faq/')
);
this.on('application:open-terms-of-use', () =>
shell.openExternal('https://atom.io/terms')
);
this.on('application:report-issue', () =>
shell.openExternal(
'https://github.com/atom/atom/blob/master/CONTRIBUTING.md#reporting-bugs'
'https://github.com/pulsar-edit/pulsar/issues/new/choose'
)
);
this.on('application:search-issues', () =>
shell.openExternal('https://github.com/search?q=+is%3Aissue+user%3Aatom')
shell.openExternal('https://github.com/pulsar-edit/pulsar/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc')
);
this.on('application:install-update', () => {