From f9820eef8fcfd677c94feff646625b8264d76c87 Mon Sep 17 00:00:00 2001 From: Ramiro Saenz Date: Fri, 31 Aug 2018 11:43:57 -0300 Subject: [PATCH] Changed repo URL --- app.js | 2 +- app/Application.js | 4 ++-- app/view/main/Main.js | 2 +- electron/menu.js | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app.js b/app.js index 920844bd..9547bc2f 100644 --- a/app.js +++ b/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 } ,'->' ,{ diff --git a/app/Application.js b/app/Application.js index fd44edca..70625e7d 100644 --- a/app/Application.js +++ b/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 } ,'->' ,{ diff --git a/app/view/main/Main.js b/app/view/main/Main.js index 73deaeab..d911b0ab 100644 --- a/app/view/main/Main.js +++ b/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' } ] } diff --git a/electron/menu.js b/electron/menu.js index 83560074..d31d0aff 100644 --- a/electron/menu.js +++ b/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)}`); } }, {