update version number and add changelog
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
# 0.1.0
|
||||||
|
|
||||||
|
- Modified interface to conform to Tilesource interface:
|
||||||
|
- `tile(x, y, z, callback)` is now `getTile(z, x, y, callback)`. Note the changed order of arguments.
|
||||||
|
- `grid(x, y, z, callback)` is now `getGrid(z, x, y, callback)`. Note the changed order of arguments.
|
||||||
|
- Added `getInfo(callback)` method.
|
||||||
|
- Removed `index.js` with `pool`, `serve` and `store` functions.
|
||||||
|
- MBTiles objects now create their databases as a singleton. There's no need to add additional pooling around MBTiles objects; you can create as many as you want.
|
||||||
|
- The constructor now takes Tilesource URIs (e.g. mbtiles:///path/to/file.mbtiles) as strings and parsed URIs as a hash.
|
||||||
+8
-2
@@ -1,8 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "mbtiles",
|
"name": "mbtiles",
|
||||||
"version": "0.0.3",
|
"version": "0.1.0",
|
||||||
"description": "Utilities and tilelive integration for the MBTiles format.",
|
"description": "Utilities and tilelive integration for the MBTiles format.",
|
||||||
"url": "http://github.com/mapbox/node-mbtiles",
|
"url": "http://github.com/mapbox/node-mbtiles",
|
||||||
|
"author": {
|
||||||
|
"name": "MapBox",
|
||||||
|
"url": "http://mapbox.com/",
|
||||||
|
"email": "info@mapbox.com"
|
||||||
|
},
|
||||||
"keywords": ["map", "mbtiles"],
|
"keywords": ["map", "mbtiles"],
|
||||||
"licenses": [{ "type": "BSD" }],
|
"licenses": [{ "type": "BSD" }],
|
||||||
"main": "./lib/mbtiles",
|
"main": "./lib/mbtiles",
|
||||||
@@ -20,7 +25,8 @@
|
|||||||
"Tom MacWright <tmcw>",
|
"Tom MacWright <tmcw>",
|
||||||
"Will White <willwhite>",
|
"Will White <willwhite>",
|
||||||
"Dane Springmeyer <springmeyer>",
|
"Dane Springmeyer <springmeyer>",
|
||||||
"Young Hahn <yhahn>"
|
"Young Hahn <yhahn>",
|
||||||
|
"Konstantin Käfer <kkaefer>"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"optimist": "0.2.x",
|
"optimist": "0.2.x",
|
||||||
|
|||||||
Reference in New Issue
Block a user