Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Should probably include compiled files when releasing a version. #488

Merged
merged 1 commit into from Mar 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,6 +5,20 @@ Leaflet.draw Changelog

An in-progress version being developed on the master branch.

## 0.3.0 (March 09, 2016)

### Improvements

* Add support for touch devices
* Corrected license
* Linter

### Bugfixes

* Added mouse handlers
* Fixed event listener leaks in Polyline
* Edit vertex event

## 0.2.4 (February 04, 2014)

### Improvements
Expand Down Expand Up @@ -120,7 +134,7 @@ Major new version. Added Edit toolbar which allows editing and deleting shapes.
* Added 'drawing' event fired on the map when a draw handler is actived. (by [@ajbeaven](https://github.com/thegreat)). [#30](https://github.com/jacobtoye/Leaflet.draw/pull/30)

### Bugfixes

* Stopped L.Control.Draw from storing handlers in it's prototype. (by [@thegreat](https://github.com/thegreat)). [#37](https://github.com/jacobtoye/Leaflet.draw/pull/37)

## 0.1.4 (October 8, 2012)
Expand Down
4 changes: 2 additions & 2 deletions MIT-LICENCE.txt → MIT-LICENSE.md
@@ -1,4 +1,4 @@
Copyright 2012 Jacob Toye
Copyright 2012-2016 Jacob Toye and Leaflet

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand All @@ -17,4 +17,4 @@ 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.
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5 changes: 2 additions & 3 deletions dist/leaflet.draw-src.js
@@ -1,10 +1,9 @@
/*
Leaflet.draw, a plugin that adds drawing and editing tools to Leaflet powered maps.
(c) 2012-2013, Jacob Toye, Smartrak
(c) 2012-2016, Jacob Toye, Smartrak, Leaflet

https://github.com/Leaflet/Leaflet.draw
http://leafletjs.com
https://github.com/jacobtoye
*/
(function (window, document, undefined) {/*
* Leaflet.draw assumes that you have already included the Leaflet library.
Expand Down Expand Up @@ -3500,4 +3499,4 @@ L.EditToolbar.Delete = L.Handler.extend({
});


}(window, document));
}(window, document));
5 changes: 2 additions & 3 deletions dist/leaflet.draw.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -41,6 +41,6 @@
"email" : "ddproxy@gmail.com"
}
],
"license": "BSD",
"license": "MIT",
"readmeFilename": "README.md"
}
3 changes: 1 addition & 2 deletions src/copyright.js
@@ -1,8 +1,7 @@
/*
Leaflet.draw, a plugin that adds drawing and editing tools to Leaflet powered maps.
(c) 2012-2013, Jacob Toye, Smartrak
(c) 2012-2016, Jacob Toye, Smartrak, Leaflet

https://github.com/Leaflet/Leaflet.draw
http://leafletjs.com
https://github.com/jacobtoye
*/