Skip to content

Commit

Permalink
Repository rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhus committed Sep 8, 2016
1 parent 1850b8c commit 19d2088
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# HTML Canvas Gauges v2.0

[![Build Status](https://travis-ci.org/Mikhus/canv-gauge.svg?branch=v2.0.0)](https://travis-ci.org/Mikhus/canv-gauge) ![Test Coverage](https://rawgit.com/Mikhus/canv-gauge/v2.0.0/test-coverage.svg) ![Documentation Coverage](https://rawgit.com/Mikhus/canv-gauge/v2.0.0/docs-coverage.svg) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/Mikhus/canv-gauge/v2.0.0/LICENSE)
[![Build Status](https://travis-ci.org/Mikhus/canvas-gauges.svg?branch=v2.0.0)](https://travis-ci.org/Mikhus/canvas-gauges) ![Test Coverage](https://rawgit.com/Mikhus/canvas-gauges/v2.0.0/test-coverage.svg) ![Documentation Coverage](https://rawgit.com/Mikhus/canvas-gauges/v2.0.0/docs-coverage.svg) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/Mikhus/canvas-gauges/v2.0.0/LICENSE)

[![Canvas Gauges](https://raw.githubusercontent.com/Mikhus/blob/master/gauges.png)](https://rawgit.com/Mikhus/canv-gauge/v2.0.0/examples/component.html)
[![Canvas Gauges](https://raw.githubusercontent.com/Mikhus/blob/master/gauges.png)](https://rawgit.com/Mikhus/canvas-gauges/v2.0.0/examples/component.html)

<!-- toc -->

Expand All @@ -21,17 +21,17 @@ No dependencies. Suitable for IoT devices because of minimum code base.
Canvas gauges can be simply installed using npm package manager. Depending on your needs there is possibility to install whole gauge library or only that part you really need for your project.
To install the whole library, run:

$ npm install canv-gauge
$ npm install canvas-gauges

If you only need the exact type of the gauge it can be installed using the appropriate npm tag. Currently the following gauges are supported: linear, radial.

To install only linear gauge, run:

$ npm install canv-gauge@linear
$ npm install canvas-gauges@linear

To install only radial gauge, run:

$ npm install canv-gauge@radial
$ npm install canvas-gauges@radial

This strategy useful only if you need to minimize your code base and plan to use ONLY a specific gauge type. If you need to use various gauge types in your project it is recommended to use whole gauge package.

Expand All @@ -41,15 +41,15 @@ This strategy useful only if you need to minimize your code base and plan to use

You can find complete docs on the canvas gauges web-site:

* [Quick Start Guide](http://mikhus.github.io/canv-gauge/documentation/getting-started/)
* [Complete User Guide](http://mikhus.github.io/canv-gauge/documentation/user-guide/)
* [Developer's Docs](http://mikhus.github.io/canv-gauge/documentation/api/)
* [Examples](http://mikhus.github.io/canv-gauge/documentation/examples/)
* [Quick Start Guide](http://canvas-gauges.com/documentation/getting-started/)
* [Complete User Guide](http://canvas-gauges.com/documentation/user-guide/)
* [Developer's Docs](http://canvas-gauges.com/documentation/api/)
* [Examples](http://canvas-gauges.com/documentation/examples/)

## Sponsored By

[![Lohika](http://www.lohika.com/wp-content/themes/gridalicious/images/lohika_full.svg)](http://www.lohika.com/)

## License

This code is subject to [MIT](https://raw.githubusercontent.com/Mikhus/canv-gauge/v2.0.0/LICENSE) license.
This code is subject to [MIT](https://raw.githubusercontent.com/Mikhus/canvas-gauges/v2.0.0/LICENSE) license.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "canv-gauge",
"name": "canvas-gauges",
"version": "2.0.0",
"homepage": "https://github.com/Mikhus/canv-gauge",
"homepage": "https://github.com/Mikhus/canvas-gauges",
"authors": [
"Mykhailo Stadnyk <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ gulp.task('build:prod', done => {


console.log(chalk.grey('npm publish'));
console.log(chalk.grey('npm dist-tag add canv-gauge@' +
console.log(chalk.grey('npm dist-tag add canvas-gauges@' +
version + ' ' + type));
});

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "canv-gauge",
"name": "canvas-gauges",
"version": "2.0.0",
"description": "Minimalistic HTML5 Canvas Gauges",
"main": "gauge.min.js",
Expand All @@ -17,7 +17,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/Mikhus/canv-gauge.git"
"url": "git://github.com/Mikhus/canvas-gauges.git"
},
"keywords": [
"gauge",
Expand Down Expand Up @@ -70,7 +70,7 @@
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Mikhus/canv-gauge/issues"
"url": "https://github.com/Mikhus/canvas-gauges/issues"
},
"devDependencies": {
"babel": "^6.5.2",
Expand Down

0 comments on commit 19d2088

Please sign in to comment.