Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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