summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--platform/node/CHANGELOG.md12
2 files changed, 13 insertions, 2 deletions
diff --git a/README.md b/README.md
index 57928618ab..c54afa28fa 100644
--- a/README.md
+++ b/README.md
@@ -2,14 +2,13 @@
[![Travis](https://api.travis-ci.org/mapbox/mapbox-gl-native.svg?branch=master)](https://travis-ci.org/mapbox/mapbox-gl-native/builds)
-An OpenGL ES-based renderer for [Mapbox Vector Tiles](https://www.mapbox.com/blog/vector-tiles), consisting of a C++ library for OS X and Linux and SDK bindings for iOS and Android.
+An OpenGL ES-based renderer for [Mapbox Vector Tiles](https://www.mapbox.com/blog/vector-tiles), consisting of a C++ library for OS X and Linux and SDK bindings for iOS, Android and Node.js.
**This repository is for development on Mapbox GL itself.**
If you want to use products _based on_ Mapbox GL, check out:
- [Mapbox Mobile](http://mapbox.com/mobile) — iOS and Android native development libraries for vector maps in apps
-- [`node-mapbox-gl-native`](https://github.com/mapbox/node-mapbox-gl-native) — Node.js library for vector map rendering
- [`react-native-mapbox-gl`](https://github.com/mapbox/react-native-mapbox-gl`) — React Native library for vector maps in apps
- [`qmapboxgl`](https://github.com/tmpsantos/qmapboxgl) — Qt library for vector map rendering
diff --git a/platform/node/CHANGELOG.md b/platform/node/CHANGELOG.md
index a86be910ef..6d6486bd29 100644
--- a/platform/node/CHANGELOG.md
+++ b/platform/node/CHANGELOG.md
@@ -1,3 +1,15 @@
+# 2.0.0
+
+- Integrates Node.js bindings into core mapbox-gl-native project.
+- Requires an options object argument to `new mbgl.Map()`
+ (with required `request` and optional `cancel` methods),
+ drops `mbgl.FileSource`.
+- Requires numerical `ratio` in `mbgl.Map` options argument.
+ Map pixel ratio is now immutable and can no longer be set with
+ render options.
+- Adds support for rendering v8 styles.
+- No longer load resources before a render request is made.
+
# 1.1.3
- Removes deprecated mbgl::Environment from NodeLogObserver.