Skip to content

Commit 73e25ca

Browse files
authored
Merge branch 'master' into dateSelect
2 parents abc548d + c3f2150 commit 73e25ca

File tree

7 files changed

+7
-4
lines changed

7 files changed

+7
-4
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
5. Click the Scrum Helper icon on your browser toolbar
2424
6. Fill in your settings in the popup (GitHub username, date range, etc.)
2525

26-
### For Firefox:
26+
<!-- ### For Firefox:
2727
2828
1. Clone this repository to your local machine.
2929
2. Open Firefox and navigate to `about:debugging`
@@ -36,7 +36,7 @@
3636
3737
**Note for Firefox users:** The extension will be automatically removed when you close Firefox. You'll need to reload it each time you start a new browser session by repeating steps 2-5.
3838
39-
**Persistence Note:** If you need the extension to persist between sessions, use Firefox Developer Edition. You can enable persistence by setting `xpinstall.signatures.required` to `false` in the browser's configuration.
39+
**Persistence Note:** If you need the extension to persist between sessions, use Firefox Developer Edition. You can enable persistence by setting `xpinstall.signatures.required` to `false` in the browser's configuration. -->
4040

4141
## Usage
4242

@@ -80,8 +80,12 @@ $ npm install
8080

8181
![POPUP](docs/images/popup.png)
8282

83+
![POPUP2](docs/images/popup2.png)
84+
8385
![STANDALONE](docs/images/standalone.png)
8486

87+
![SETTINGSMENU](docs/images/settings.png)
88+
8589
## Using Scrum Helper with Your Own GitHub Organization
8690

8791
Scrum Helper is not limited to the [FOSSASIA](https://github.com/fossasia) organization. You can easily configure it to fetch and generate SCRUM reports for your own GitHub organization or repositories.

docs/images/popup.png

-590 Bytes
Loading

docs/images/popup2.png

28 KB
Loading

docs/images/settings.png

42.8 KB
Loading

docs/images/standalone.png

-36.9 KB
Loading

src/index.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,6 @@ body,input,div,h3,h4,p,label,hr, #scrumReport{
362362
}
363363
.dark-mode #homeButton:active {
364364
background: #374151;
365-
366365
}
367366
.dark-mode .token-preview-char {
368367
box-shadow: 0 1px 4px rgba(0,0,0,0.18);

src/scripts/scrumHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ function allIncluded(outputTarget = 'email') {
188188
return WeekDisplayPadded;
189189
}
190190

191-
const DEBUG = true;
191+
const DEBUG = false;
192192
function log( ...args) {
193193
if(DEBUG) {
194194
console.log(`[SCRUM-HELPER]:`, ...args);

0 commit comments

Comments
 (0)