Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"extends": "airbnb",
"rules": {
"semi": ["error", "never"],
"prefer-const": 0,
"func-names": 0,
"import/no-extraneous-dependencies": 0,
"space-before-function-paren": "off"
},
"globals": {
"document": true,
"GaugeChart": true
}
}
{
"extends": "airbnb",
"rules": {
"semi": ["error", "never"],
"prefer-const": 0,
"func-names": 0,
"import/no-extraneous-dependencies": 0,
"space-before-function-paren": "off"
},
"globals": {
"document": true,
"GaugeChart": true
}
}
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dist/gauge
dist/index.d.ts
node_modules
coverage
npm-debug.log
dist/gauge
dist/index.d.ts
node_modules
coverage
npm-debug.log
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@

2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dist
dist
10 changes: 5 additions & 5 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
{
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
92 changes: 46 additions & 46 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
## 0.5.3
- Don't format `bundle.js` with prettier.

## 0.5.2

- Updated typescript to `3.x.x`.

## 0.5.2-rc.0

- Updating dependencies.

## 0.5.1

- Fixed bug with build avialability via cdn.
- Updated gitignore and readme

## 0.5.0

- New functionality developed by [Nicolas Bonamy](https://github.com/nbonamy):

Enable/disable over effect.

Padding between arc.

Arc labels.

- Updated README.
- Fixed tests.

## 0.4.4

- Updated readme.
- Updated dependencies.

## 0.4.3

- Updated readme.

## 0.4.2

- Updated docs and readme.

## 0.4.1

- Updated needle outlining.
- Added examples.
## 0.5.3
- Don't format `bundle.js` with prettier.
## 0.5.2
- Updated typescript to `3.x.x`.
## 0.5.2-rc.0
- Updating dependencies.
## 0.5.1
- Fixed bug with build avialability via cdn.
- Updated gitignore and readme
## 0.5.0
- New functionality developed by [Nicolas Bonamy](https://github.com/nbonamy):
Enable/disable over effect.
Padding between arc.
Arc labels.
- Updated README.
- Fixed tests.
## 0.4.4
- Updated readme.
- Updated dependencies.
## 0.4.3
- Updated readme.
## 0.4.2
- Updated docs and readme.
## 0.4.1
- Updated needle outlining.
- Added examples.
40 changes: 20 additions & 20 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
Copyright (c) 2017 RECOGIZER GROUP GmbH.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Copyright (c) 2017 RECOGIZER GROUP GmbH.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Loading