Skip to content

Commit 5779cd6

Browse files
authored
Merge pull request #46 from sarcadass/v2.0.0
V2.0.0
2 parents cd9aa3a + 983ac2b commit 5779cd6

Some content is hidden

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

66 files changed

+3754
-1362
lines changed

.eslintrc.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
module.exports = {
2+
'rules': {
3+
'quotes': [1, 'single'],
4+
'semi': [1, 'always'],
5+
'strict': [1, 'global'],
6+
'indent': [1, 'tab', {
7+
'SwitchCase': 1,
8+
'VariableDeclarator': 0,
9+
'CallExpression': { 'arguments': 1 },
10+
}],
11+
'no-whitespace-before-property': 2,
12+
'keyword-spacing': [1, {
13+
before: true,
14+
after: true,
15+
overrides: { 'switch': { after: false } }
16+
}],
17+
'array-bracket-spacing': [1, 'never'],
18+
'object-curly-spacing': [1, 'always'],
19+
'space-before-function-paren': [1, 'never'],
20+
'no-console': 1,
21+
'no-debugger': 1,
22+
'no-extra-semi': 1,
23+
'semi-spacing': 1,
24+
'no-unneeded-ternary': 1,
25+
'no-mixed-spaces-and-tabs': [1, 'smart-tabs'],
26+
}
27+
};

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
language: node_js
22
node_js:
3-
- "8.11.2"
4-
- "6"
3+
- "10.13.0"
4+
- "8.12.0"
5+
- "6.14.4"
56
script:
67
- gulp && npm test
78
after_success:

CHANGELOG.md

+27-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
1+
## 2.0.0
2+
3+
### Features
4+
5+
- Add custom direction ([rhanb](https://github.com/rhanb))
6+
- Add support for other color types: `rgb`, `rgba`, `hsl`, `hsla`
7+
- Add custom color positions
8+
9+
### Improvements
10+
11+
- Add `image.strecthMode` property `'none'` to allow `strecthMode` on only one axis
12+
- Add ESLint for better code consistency
13+
- Add tests and doc updates for all the new feature
14+
15+
### Miscellaneous
16+
17+
- Update local server config to latest Hapi version
18+
- Add multiple API versions page
19+
20+
121
## 1.1.1
222

323
### Miscellaneous
424

525
- Update dependencies
6-
- Update gulpfile with last gulp version
26+
- Update gulpfile with latest gulp version
727
- Update node versions on for Travis CI tests
828

929

@@ -39,15 +59,15 @@
3959

4060
- Reduce CPU footprint for Chrome
4161
- Add option to change default state name
42-
- Add Karma / Jasmine tests
43-
- Add Code coverage
62+
- Add Karma / Jasmine tests ([pranaygp](https://github.com/pranaygp))
63+
- Add Code coverage ([pranaygp](https://github.com/pranaygp))
64+
- Can set HTMLCanvasElement directly instead of CSS selector ([suhaotian](https://github.com/suhaotian))
4465

4566
### Miscellaneous
4667

47-
- Add to NPM registry
48-
- Add to Bower registry
49-
- Add `CONTRIBUTING.md`
68+
- Add to NPM and Bower registry
69+
- Add `CONTRIBUTING.md` ([pranaygp](https://github.com/pranaygp))
5070
- Add `CHANGELOG.md`
5171
- Updated `README.md`
52-
- Docs fixes and improvements
72+
- Docs fixes and improvements ([howdy39](https://github.com/howdy39), [M-arcus](https://github.com/M-arcus) and [YLiohenki](https://github.com/YLiohenki))
5373
- Create a Gitter Channel

0 commit comments

Comments
 (0)