Skip to content

Commit 97c5531

Browse files
authored
Merge pull request #222 from manosim/release-1.1.0
Release v1.1.0
2 parents bd44402 + 2558d8c commit 97c5531

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

auto_updater.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"name": "Release 1.0.0",
3-
"url": "https://github.com/ekonstantinidis/gitify/releases/download/1.0.0/gitify-osx.zip"
2+
"name": "Release 1.1.0",
3+
"url": "https://github.com/manosim/gitify/releases/download/1.1.0/gitify-osx.zip"
44
}

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "gitify",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "GitHub Notifications on your menu bar.",
55
"main": "main.js",
66
"scripts": {
77
"build": "gulp build",
88
"watch": "gulp watch",
9-
"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'",
9+
"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'",
1010
"codesign": "bash scripts/codesign.bash",
1111
"dist": "gulp release && npm run package && npm run codesign",
1212
"lint-js": "eslint 'src/js/' 'src/js/app.js' 'main.js'",
@@ -18,7 +18,7 @@
1818
},
1919
"repository": {
2020
"type": "git",
21-
"url": "https://github.com/ekonstantinidis/gitify.git"
21+
"url": "https://github.com/manosim/gitify.git"
2222
},
2323
"keywords": [
2424
"gitify",
@@ -35,7 +35,7 @@
3535
"contributors": [
3636
{
3737
"name": "Emmanouil Konstantinidis",
38-
"url": "https://githib.com/ekonstantinidis"
38+
"url": "https://githib.com/manosim"
3939
},
4040
{
4141
"name": "Jake 'Sid' Smith",
@@ -44,9 +44,9 @@
4444
],
4545
"license": "MIT",
4646
"bugs": {
47-
"url": "https://github.com/ekonstantinidis/gitify/issues"
47+
"url": "https://github.com/manosim/gitify/issues"
4848
},
49-
"homepage": "https://github.com/ekonstantinidis/gitify",
49+
"homepage": "http://www.gitify.io/",
5050
"dependencies": {
5151
"auto-launch": "=4.0.0",
5252
"bootstrap": "=4.0.0-alpha.3",

src/js/__tests__/components/navigation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ describe('components/navigation.js', function () {
192192
wrapper.find('.navbar-brand').simulate('click');
193193

194194
expect(shell.openExternal).to.have.been.calledOnce;
195-
expect(shell.openExternal).to.have.been.calledWith('http://www.github.com/ekonstantinidis/gitify');
195+
expect(shell.openExternal).to.have.been.calledWith('http://www.github.com/manosim/gitify');
196196

197197
});
198198

src/js/components/navigation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class Navigation extends React.Component {
4141
}
4242

4343
openBrowser() {
44-
shell.openExternal('http://www.github.com/ekonstantinidis/gitify');
44+
shell.openExternal('http://www.github.com/manosim/gitify');
4545
}
4646

4747
render() {

src/js/components/notifications.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class NotificationsPage extends React.Component {
2222
}
2323

2424
openBrowser() {
25-
shell.openExternal('http://www.github.com/ekonstantinidis/gitify');
25+
shell.openExternal('http://www.github.com/manosim/gitify');
2626
}
2727

2828
render() {

src/js/utils/constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ let constants = {
44
CLIENT_SECRET: '9670de733096c15322183ff17ed0fc8704050379',
55
SCOPE: ['user:email', 'notifications'],
66

7-
REPO_SLUG: 'ekonstantinidis/gitify',
7+
REPO_SLUG: 'manosim/gitify',
88

99
// Storage
1010
STORAGE_KEY: 'gitify-storage',

0 commit comments

Comments
 (0)