Browse Source

Changed repo URL

pull/1636/merge
Ramiro Saenz 7 years ago
parent
commit
f9820eef8f
  1. 2
      app.js
  2. 4
      app/Application.js
  3. 2
      app/view/main/Main.js
  4. 4
      electron/menu.js

2
app.js

@ -63,7 +63,7 @@ ipc.on('autoUpdater:update-downloaded', function(e, releaseNotes, releaseName, r
xtype: 'button'
,text: 'Changelog'
,ui: 'decline'
,href: 'https://github.com/saenzramiro/rambox/releases/tag/'+releaseName
,href: 'https://github.com/ramboxapp/community-edition/releases/tag/'+releaseName
}
,'->'
,{

4
app/Application.js

@ -264,7 +264,7 @@ Ext.define('Rambox.Application', {
,{
xtype: 'button'
,text: locale['app.update[1]']
,href: process.platform === 'darwin' ? 'https://getrambox.herokuapp.com/download/'+process.platform+'_'+process.arch : 'https://github.com/saenzramiro/rambox/releases/latest'
,href: process.platform === 'darwin' ? 'https://getrambox.herokuapp.com/download/'+process.platform+'_'+process.arch : 'https://github.com/ramboxapp/community-edition/releases/latest'
,hidden: process.platform === 'win32'
}
,{
@ -272,7 +272,7 @@ Ext.define('Rambox.Application', {
,text: locale['app.update[2]']
,ui: 'decline'
,tooltip: 'Click here to see more information about the new version.'
,href: 'https://github.com/saenzramiro/rambox/releases/tag/'+json.version
,href: 'https://github.com/ramboxapp/community-edition/releases/tag/'+json.version
}
,'->'
,{

2
app/view/main/Main.js

@ -371,7 +371,7 @@ Ext.define('Rambox.view.main.Main', {
}
,{
glyph: 'xf09b@FontAwesome'
,href: 'https://www.github.com/saenzramiro/rambox'
,href: 'https://github.com/ramboxapp/community-edition'
}
]
}

4
electron/menu.js

@ -40,7 +40,7 @@ module.exports = function(config) {
{
label: `&GitHub`,
click() {
shell.openExternal('https://www.github.com/saenzramiro/rambox');
shell.openExternal('https://github.com/ramboxapp/community-edition');
}
},
{
@ -60,7 +60,7 @@ module.exports = function(config) {
> Electron ${process.versions.electron}
> ${process.platform} ${process.arch} ${os.release()}`;
shell.openExternal(`https://github.com/saenzramiro/rambox/issues/new?body=${encodeURIComponent(body)}`);
shell.openExternal(`https://github.com/ramboxapp/community-edition/issues/new?body=${encodeURIComponent(body)}`);
}
},
{

Loading…
Cancel
Save