Skip to content

Commit

Permalink
Merge pull request #222 from manosim/release-1.1.0
Browse files Browse the repository at this point in the history
Release v1.1.0
  • Loading branch information
manosim authored Sep 16, 2016
2 parents bd44402 + 2558d8c commit 97c5531
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions auto_updater.json
Original file line number Diff line number Diff line change
@@ -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"
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -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'",
Expand All @@ -18,7 +18,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/ekonstantinidis/gitify.git"
"url": "https://github.com/manosim/gitify.git"
},
"keywords": [
"gitify",
Expand All @@ -35,7 +35,7 @@
"contributors": [
{
"name": "Emmanouil Konstantinidis",
"url": "https://githib.com/ekonstantinidis"
"url": "https://githib.com/manosim"
},
{
"name": "Jake 'Sid' Smith",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/js/__tests__/components/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

});

Expand Down
2 changes: 1 addition & 1 deletion src/js/components/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/notifications.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion src/js/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 97c5531

Please sign in to comment.