Skip to content

Commit eff642f

Browse files
authored
Merge pull request #4 from no-chris/v0.6.0
V0.6.0
2 parents f3f2470 + 171d6ac commit eff642f

File tree

63 files changed

+3092
-408
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+3092
-408
lines changed

.eslintrc.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ module.exports = {
66
'plugins': [
77
'import',
88
'no-unsanitized',
9-
'react-hooks'
9+
'react-hooks',
10+
'jam3', // for dangerouslySetInnerHTML
1011
],
1112

1213
'extends': [
@@ -46,13 +47,15 @@ module.exports = {
4647
}
4748
],
4849

50+
'jam3/no-sanitizer-with-danger': ['error', { wrapperName: ['escapeHTML'] }],
51+
4952
'no-unsanitized/property': [ 'error', { escape: { methods: ['escapeHTML'] } } ],
5053
'no-unsanitized/method': [ 'error' ],
5154

5255
'react/prop-types': [ 'error' ],
5356

5457
'react-hooks/rules-of-hooks': [ 'error' ],
55-
'react-hooks/exhaustive-deps': [ 'warn' ]
58+
'react-hooks/exhaustive-deps': [ 'warn' ],
5659

5760
},
5861
'settings': {

.idea/.name

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

.idea/modules.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.9.0
1+
12.0.0

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## v0.6.0 (28/04/2019)
4+
5+
#### New features:
6+
7+
- Added print preview functionality
8+
- adopted new versioning schema as semver does not make sense here
9+
10+
---
11+
312
## v0.5.0 (14/04/2019)
413

514
#### New features:

SLOC

+21-21
Original file line numberDiff line numberDiff line change
@@ -2,53 +2,53 @@ Source code:
22

33
---------- Result ------------
44

5-
Physical : 3535
6-
Source : 2802
7-
Comment : 42
8-
Single-line comment : 10
9-
Block comment : 32
5+
Physical : 4298
6+
Source : 3419
7+
Comment : 67
8+
Single-line comment : 19
9+
Block comment : 48
1010
Mixed : 0
1111
Empty block comment : 0
12-
Empty : 691
12+
Empty : 812
1313
To Do : 0
1414

15-
Number of files read : 94
15+
Number of files read : 108
1616

1717
----------------------------
1818

1919
Tests:
2020

2121
---------- Result ------------
2222

23-
Physical : 3342
24-
Source : 2559
25-
Comment : 33
26-
Single-line comment : 30
27-
Block comment : 3
23+
Physical : 4060
24+
Source : 3137
25+
Comment : 42
26+
Single-line comment : 37
27+
Block comment : 5
2828
Mixed : 0
2929
Empty block comment : 0
30-
Empty : 750
30+
Empty : 881
3131
To Do : 0
3232

33-
Number of files read : 40
33+
Number of files read : 48
3434

3535
----------------------------
3636

3737
Total:
3838

3939
---------- Result ------------
4040

41-
Physical : 6877
42-
Source : 5361
43-
Comment : 75
44-
Single-line comment : 40
45-
Block comment : 35
41+
Physical : 8358
42+
Source : 6556
43+
Comment : 109
44+
Single-line comment : 56
45+
Block comment : 53
4646
Mixed : 0
4747
Empty block comment : 0
48-
Empty : 1441
48+
Empty : 1693
4949
To Do : 0
5050

51-
Number of files read : 134
51+
Number of files read : 156
5252

5353
----------------------------
5454

assets/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title><%= htmlWebpackPlugin.options.title %></title>
77
<meta name="description" content="">
88
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
9-
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
9+
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Roboto+Mono:400,700" rel="stylesheet">
1010
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
1111
</head>
1212
<body>

docs/css/main.1c344598d7d62d4c882b.css

-2
This file was deleted.

docs/css/main.1c344598d7d62d4c882b.css.map

-1
This file was deleted.

docs/css/main.dbae970e9fc0ba07e9ca.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/css/main.dbae970e9fc0ba07e9ca.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)