Skip to content

Commit bae7f7c

Browse files
committed
Resolve merge conflict
2 parents b7ccb6a + 8e2315a commit bae7f7c

File tree

13 files changed

+358
-261
lines changed

13 files changed

+358
-261
lines changed

.eslintignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
**/node_modules/**
2+
react-es6-popup/**/dist
3+
mocha-client-tests
4+
store-collected-images/webextension-plain/deps
5+
src/scripts/jquery-3.2.1.min.js
6+
src/materialize

.eslintrc.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"webextensions": true
5+
},
6+
"extends": "eslint:recommended",
7+
"rules": {
8+
"indent": [
9+
"error",
10+
"tab"
11+
],
12+
"linebreak-style": [
13+
"error",
14+
"unix"
15+
],
16+
"quotes": [
17+
"error",
18+
"double"
19+
],
20+
"semi": [
21+
"error",
22+
"always"
23+
],
24+
"no-unused-vars": [0]
25+
}
26+
};

.github/ISSUE_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
**Actual Behaviour**
2+
3+
Please state here what is currently happening.
4+
5+
**Expected Behaviour**
6+
7+
State here what the feature should enable the user to do.
8+
9+
**Screenshots of the issue**
10+
11+
Where-ever possible attach a screenshot of the issue.
12+
13+
**Would you like to work on the issue?**
14+
15+
Please let us know if you can work on it or the issue should be assigned to someone else.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Fixes issue #[Add issue number here. If you do not solve the issue entirely, please change the message e.g. "First steps for issues #IssueNumber]
2+
3+
Changes: [Add here what changes were made in this issue and if possible provide links.]
4+
5+
Screenshots for the change:

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: node_js
2+
node_js: stable
3+
sudo: false
4+
script:
5+
- npm test
6+
7+
cache:
8+
directories:
9+
- node_modules
10+
11+
branches:
12+
only:
13+
- master

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ This chrome extension helps you to write scrums in google groups for FOSSASIA re
88
3. Turn on developer mode if not already on.
99
4. Load unpacked extension from `src` folder.
1010
5. Click on the Scrum Helper icon you see on your browser toolbar.
11-
6. Fill in the settings in the popup
12-
7. Open https://groups.google.com/forum/#!newtopic/<groupname>
13-
8. Refresh the page for new settings to reflect
11+
6. Fill in the settings in the popup.
12+
7. Open https://groups.google.com/forum/#!newtopic/<groupname>.
13+
8. Refresh the page for new settings to reflect.
1414
```
1515
## Setting up the code locally
1616

@@ -24,3 +24,7 @@ $ npm install
2424

2525
![POPUP](https://github.com/hkedia321/scrum_helper_extension/blob/master/src/docs/screenshots/popup.png)
2626

27+
## About contributing
28+
- Follow the Issues and PRs templates as far as possible.
29+
- If you want to make a PR, please mention in the corresponding issue that you are working on it.
30+
- Please run `npm run test` locally to check for syntax errors before making a PR.

src/docs/screenshots/scrum.png

-6.38 KB
Loading

src/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Scrum Helper Extension",
44
"version": "1.0",
5-
"description": "This extension helps in writing Srums in google groups, particularly related to FOSSASIA. It converts a link to a github PR or an Issue to display the PR or the Issue's name along with the link to it.",
5+
"description": "This extension helps in writing Scrums in Google groups, particularly related to FOSSASIA. ",
66
"browser_action": {
77
"default_popup": "popup.html",
88
"default_title" : "SCRUM Helper"
@@ -20,7 +20,7 @@
2020
"js": ["scripts/jquery-3.2.1.min.js","scripts/scrumHelper.js"]
2121
}
2222
],
23-
"content_security_policy": "script-src 'self' https://cdn.jsdelivr.net/ https://api.github.com/; object-src 'self'",
23+
"content_security_policy": "script-src 'self' https://cdn.jsdelivr.net/ https://api.github.com/ https://use.fontawesome.com/; object-src 'self'",
2424

2525
"permissions":[
2626
"http://*/*",

src/materialize/css/font-awesome.min.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/popup.html

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
77
<link href="materialize/css/materialize.min.css" type="text/css" rel="stylesheet">
8-
<link href="materialize/css/font-awesome.min.css" type="text/css" rel="stylesheet">
98
<link rel="stylesheet" type="text/css" href="index.css">
9+
<script src="https://use.fontawesome.com/73d6eff847.js"></script>
1010
</head>
1111
<body>
1212
<div class="container">
@@ -27,11 +27,7 @@ <h6 class="center">
2727
</div>
2828
<br />
2929
<div class="row">
30-
<div class="input-field col s12">
31-
<input placeholder="Enter your name to appear on scrum subject" id="name" type="text">
32-
<label for="first_name">Your Name</label>
33-
</div>
34-
<div class="input-field col s12">
30+
<div class="input-field col s12">
3531
<input placeholder="Required for getting data from github" id="githubUsername" type="text">
3632
<label for="githubUsername">Your Github Username</label>
3733
</div>

0 commit comments

Comments
 (0)