Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
Preparing minor version, with Travis CI, thanks to @sirreal
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorVelarde committed Nov 6, 2017
1 parent e0c69a8 commit 8cb786b
Show file tree
Hide file tree
Showing 8 changed files with 1,433 additions and 718 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,7 @@
- Minor: deleted unused L.ColorScale class + little adjustments in examples.

#v1.3.4
- Fixed 'RangeError: Maximum call stack size exceeded', when loading some big ASCII Grid files.
- Fixed 'RangeError: Maximum call stack size exceeded', when loading some big ASCII Grid files.

#v1.3.5

This comment has been minimized.

Copy link
@sirreal

sirreal Nov 6, 2017

Contributor

Probably not necessary to do an npm release for this, should only affect usage on GitHub (PRs etc).

- Added CI testing with travis, thanks to @sirreal (https://github.com/IHCantabria/Leaflet.CanvasLayer.Field/pull/12)
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ A plugin for [LeafletJS](http://www.leafletjs.com) that adds layers to visualize

**[Leaflet.CanvasLayer.Field EXAMPLES](https://ihcantabria.github.io/Leaflet.CanvasLayer.Field/)**

![Travis CI](https://travis-ci.org/IHCantabria/Leaflet.CanvasLayer.Field.svg?branch=master)

It includes:
* `L.CanvasLayer.ScalarField` - a "typical" raster layer (from scalars such as DTM, temperature...) that can be rendered with different color scales and arrows.
* `L.CanvasLayer.VectorFieldAnim` - an animated layer representing a vector field (wind, currents...), based on the excellent [earth](https://github.com/cambecc/earth) by Cameron Becarrio
Expand Down
2 changes: 1 addition & 1 deletion dist/leaflet.canvaslayer.field.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/leaflet.canvaslayer.field.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/dist/leaflet.canvaslayer.field.js

Large diffs are not rendered by default.

2,129 changes: 1,419 additions & 710 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "leaflet-canvaslayer-field",
"version": "1.3.4",
"description": "A set of layers using canvas to draw ASCIIGrid or GeoTIFF files. This includes a basic raster layer (*ScalaField*) and an animated layer for vector fields, such as wind or currents (*VectorFieldAnim*)",
"version": "1.3.5",
"description":
"A set of layers using canvas to draw ASCIIGrid or GeoTIFF files. This includes a basic raster layer (*ScalaField*) and an animated layer for vector fields, such as wind or currents (*VectorFieldAnim*)",
"main": "index.js",
"dependencies": {
"npm": "^3.10.7",
Expand Down Expand Up @@ -50,7 +51,7 @@
],
"author": {
"name": "Víctor Velarde Gutiérrez",
"email": "victor.velarde@unican.es",
"email": "victor.velarde@gmail.com",
"url": "http://victorvelarde.github.io/"
},
"license": "GPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ require('./layer/L.CanvasLayer.VectorFieldAnim.js');
require('./control/L.Control.ColorBar.js');

/* eslint-disable no-console */
console.log('leaflet.canvaslayer.field v1.3.4');
console.log('leaflet.canvaslayer.field v1.3.5');
/* eslint-enable no-console */

0 comments on commit 8cb786b

Please sign in to comment.