Update forum links

This commit is contained in:
Florian Rival
2019-03-11 21:01:23 +00:00
parent 72a61be8ec
commit 728188114e
4 changed files with 12 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ Links
### Community
* [GDevelop forums](http://forum.compilgames.net) and [Discord chat](https://discord.gg/JWcfHEB).
* [GDevelop forums](https://forum.gdevelop-app.com) and [Discord chat](https://discord.gg/JWcfHEB).
* [GDevelop homepage](https://gdevelop-app.com) ([open-source](https://github.com/4ian/GDevelop-website))
* [GDevelop wiki (documentation)](http://wiki.compilgames.net)
* Help translate GD in your language: [GDevelop project on Crowdin](https://crowdin.com/project/gdevelop).

View File

@@ -63,7 +63,7 @@ export default class HelpFinder extends React.PureComponent<Props, State> {
key="forum"
primary={false}
onClick={() => {
Window.openExternalURL('http://forum.compilgames.net');
Window.openExternalURL('https://forum.gdevelop-app.com');
}}
label={<Trans>Community forum</Trans>}
/>,

View File

@@ -139,7 +139,7 @@ class StartPage extends BaseEditor {
<FlatButton
label={<Trans>GDevelop Forums</Trans>}
onClick={() =>
Window.openExternalURL('http://forum.compilgames.net')
Window.openExternalURL('https://forum.gdevelop-app.com')
}
/>
<FlatButton

View File

@@ -245,7 +245,7 @@ class ElectronMainMenu extends React.Component<Props, {||}> {
{ type: 'separator' },
{
label: i18n._(t`Community Forums`),
onClickOpenLink: 'http://forum.compilgames.net',
onClickOpenLink: 'https://forum.gdevelop-app.com',
},
{
label: i18n._(t`Community Discord Chat`),
@@ -256,14 +256,19 @@ class ElectronMainMenu extends React.Component<Props, {||}> {
label: i18n._(t`Contribute to GDevelop`),
onClickOpenLink: 'https://gdevelop-app.com/contribute/',
},
{
label: i18n._(t`Create Extensions for GDevelop`),
onClickOpenLink:
'https://github.com/4ian/GDevelop/blob/master/newIDE/README-extensions.md',
},
{ type: 'separator' },
{
label: i18n._(t`Help to Translate GDevelop`),
onClickOpenLink: 'https://crowdin.com/project/gdevelop',
},
{
label: i18n._(t`Create Extensions for GDevelop`),
onClickOpenLink:
'https://github.com/4ian/GDevelop/blob/master/newIDE/README-extensions.md',
label: i18n._(t`Report a wrong translation`),
onClickOpenLink: 'https://github.com/4ian/GDevelop/issues/969',
},
],
};