diff --git a/auto_updater.json b/auto_updater.json index df2ddc6c4..6b6a477a2 100644 --- a/auto_updater.json +++ b/auto_updater.json @@ -1,4 +1,4 @@ { - "name": "Release 1.0.0", - "url": "https://github.com/ekonstantinidis/gitify/releases/download/1.0.0/gitify-osx.zip" + "name": "Release 1.1.0", + "url": "https://github.com/manosim/gitify/releases/download/1.1.0/gitify-osx.zip" } diff --git a/package.json b/package.json index 1b5280ac9..29dc4578e 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "gitify", - "version": "1.0.0", + "version": "1.1.0", "description": "GitHub Notifications on your menu bar.", "main": "main.js", "scripts": { "build": "gulp build", "watch": "gulp watch", - "package": "electron-packager . Gitify --overwrite --platform=darwin --arch=x64 --version=1.0.2 --asar=true --icon=images/app-icon.icns --prune --ignore='src' --ignore='coverage'", + "package": "electron-packager . Gitify --overwrite --platform=darwin --arch=x64 --version=1.3.4 --asar=true --icon=images/app-icon.icns --prune --ignore='src' --ignore='coverage'", "codesign": "bash scripts/codesign.bash", "dist": "gulp release && npm run package && npm run codesign", "lint-js": "eslint 'src/js/' 'src/js/app.js' 'main.js'", @@ -18,7 +18,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/ekonstantinidis/gitify.git" + "url": "https://github.com/manosim/gitify.git" }, "keywords": [ "gitify", @@ -35,7 +35,7 @@ "contributors": [ { "name": "Emmanouil Konstantinidis", - "url": "https://githib.com/ekonstantinidis" + "url": "https://githib.com/manosim" }, { "name": "Jake 'Sid' Smith", @@ -44,9 +44,9 @@ ], "license": "MIT", "bugs": { - "url": "https://github.com/ekonstantinidis/gitify/issues" + "url": "https://github.com/manosim/gitify/issues" }, - "homepage": "https://github.com/ekonstantinidis/gitify", + "homepage": "http://www.gitify.io/", "dependencies": { "auto-launch": "=4.0.0", "bootstrap": "=4.0.0-alpha.3", diff --git a/src/js/__tests__/components/navigation.js b/src/js/__tests__/components/navigation.js index 5b2a46bdd..606e828ec 100644 --- a/src/js/__tests__/components/navigation.js +++ b/src/js/__tests__/components/navigation.js @@ -192,7 +192,7 @@ describe('components/navigation.js', function () { wrapper.find('.navbar-brand').simulate('click'); expect(shell.openExternal).to.have.been.calledOnce; - expect(shell.openExternal).to.have.been.calledWith('http://www.github.com/ekonstantinidis/gitify'); + expect(shell.openExternal).to.have.been.calledWith('http://www.github.com/manosim/gitify'); }); diff --git a/src/js/components/navigation.js b/src/js/components/navigation.js index 31dc0cd47..06abbba67 100644 --- a/src/js/components/navigation.js +++ b/src/js/components/navigation.js @@ -41,7 +41,7 @@ export class Navigation extends React.Component { } openBrowser() { - shell.openExternal('http://www.github.com/ekonstantinidis/gitify'); + shell.openExternal('http://www.github.com/manosim/gitify'); } render() { diff --git a/src/js/components/notifications.js b/src/js/components/notifications.js index 0c764a0c0..6c220462f 100644 --- a/src/js/components/notifications.js +++ b/src/js/components/notifications.js @@ -22,7 +22,7 @@ export class NotificationsPage extends React.Component { } openBrowser() { - shell.openExternal('http://www.github.com/ekonstantinidis/gitify'); + shell.openExternal('http://www.github.com/manosim/gitify'); } render() { diff --git a/src/js/utils/constants.js b/src/js/utils/constants.js index e84c0c6dd..535174509 100644 --- a/src/js/utils/constants.js +++ b/src/js/utils/constants.js @@ -4,7 +4,7 @@ let constants = { CLIENT_SECRET: '9670de733096c15322183ff17ed0fc8704050379', SCOPE: ['user:email', 'notifications'], - REPO_SLUG: 'ekonstantinidis/gitify', + REPO_SLUG: 'manosim/gitify', // Storage STORAGE_KEY: 'gitify-storage',