Skip to content

Commit 3590f7e

Browse files
author
Emmanouil Konstantinidis
committed
Merge branch 'master' into jest-tests
2 parents ec41e4c + a860a02 commit 3590f7e

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ If you encounter any issues with `npm install`, then run `ulimit -n 512`.
2828
npm install
2929

3030

31-
### Development
32-
To watch for changes in the `src` directory:
31+
### Development
32+
To watch for changes in the `src` directory:
3333

34-
npm run watch
34+
npm run watch
3535

36-
To run the actual **electron app**:
36+
To run the actual **electron app**:
3737

38-
npm start
38+
npm start
3939

4040

4141
### Distribution
4242
To prepare the app for distribution run:
4343

44-
npm run dist
44+
npm run dist
4545

4646
Currently supports only OS X.
4747

File renamed without changes.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Github Notifier</title>
4+
<title>Gitify</title>
55
<meta charset="utf-8">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1">

main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var Menu = require('menu');
88
var Tray = require('tray');
99
var BrowserWindow = require('browser-window');
1010

11-
var iconIdle = path.join(__dirname, 'images', 'tray-idle.png');
11+
var iconIdle = path.join(__dirname, 'images', 'tray-idleTemplate.png');
1212
var iconActive = path.join(__dirname, 'images', 'tray-active.png');
1313

1414
app.on('ready', function(){
@@ -95,5 +95,5 @@ app.on('ready', function(){
9595
});
9696

9797
app.dock.hide();
98-
appIcon.setToolTip('Github Notifications on your menu bar.');
98+
appIcon.setToolTip('GitHub Notifications on your menu bar.');
9999
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gitify",
33
"version": "0.0.1",
4-
"description": "Github Notifications on your menu bar.",
4+
"description": "GitHub Notifications on your menu bar.",
55
"main": "main.js",
66
"scripts": {
77
"build-js": "mkdir -p build/js && browserify -t reactify src/js/app.js -o build/js/app.js",

src/js/components/login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ var Login = React.createClass({
9191
<img className='img-responsive logo' src='images/github-logo.png' />
9292
<div className='desc'>GitHub notifications in your menu bar.</div>
9393
<button className='btn btn-default btn-lg btn-block' onClick={this.authGithub}>
94-
<i className="fa fa-github" />Login to Gihub
94+
<i className="fa fa-github" />Log in to GitHub
9595
</button>
9696
</div>
9797
</div>

0 commit comments

Comments
 (0)