summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobrun <tobrun.van.nuland@gmail.com>2017-01-27 15:03:00 +0100
committerGitHub <noreply@github.com>2017-01-27 15:03:00 +0100
commit2629f22a43628d93f65141a69e4b01999e19bcbd (patch)
treef517661fb78432b60632575ddd0cc0ceb4bcfa3a
parenta253a15a7c61f6c0fbdeca69cd6ca813a9b8d40f (diff)
downloadqtlocation-mapboxgl-2629f22a43628d93f65141a69e4b01999e19bcbd.tar.gz
[android] - update changelog with 4.x entries (#7825)
* [android] - update changelog with 4.x entries * update release script
-rw-r--r--platform/android/CHANGELOG.md27
-rw-r--r--platform/android/scripts/release.py2
2 files changed, 27 insertions, 2 deletions
diff --git a/platform/android/CHANGELOG.md b/platform/android/CHANGELOG.md
index c702e1e759..ec6b3a803b 100644
--- a/platform/android/CHANGELOG.md
+++ b/platform/android/CHANGELOG.md
@@ -36,6 +36,19 @@ Mapbox welcomes participation and contributions from everyone. If you'd like to
- Avoid calls to onFling when while pinch zooming [#7666](https://github.com/mapbox/mapbox-gl-native/issues/7666)
* Support for style-wide transition animation duration and delay [#6779](https://github.com/mapbox/mapbox-gl-native/issues/6779)
+## 4.2.2 - January 27, 2017
+
+Mapbox Android 4.2.2 builds further on v4.2.1 and resolves:
+* OnFling gesture improvements
+ - Improve fling by calculating animation time based on velocity [#7676](https://github.com/mapbox/mapbox-gl-native/pull/7676)
+ - Avoid triggering a fling after a scale gesture [#7675](https://github.com/mapbox/mapbox-gl-native/issues/7675)
+* Deselect marker on infowindow click [#7784](https://github.com/mapbox/mapbox-gl-native/issues/7784)
+* Update build tools to Bitrise supported one [#7729](https://github.com/mapbox/mapbox-gl-native/issues/7729)
+* Removal of redudant log statements in native_map_view.cpp [#7801](https://github.com/mapbox/mapbox-gl-native/issues/7801)
+* Invalidate markersviews when updating their position [#7794](https://github.com/mapbox/mapbox-gl-native/issues/7794)
+* Avoid clustering unclusterable GeoJSON [#7633](https://github.com/mapbox/mapbox-gl-native/pull/7633)
+* Prevent null pointer exceptions when receiving connecitivy change events [#6858](https://github.com/mapbox/mapbox-gl-native/issues/6858)
+
## 4.2.1 - December 22, 2016
Mapbox Android 4.2.1 is a bugfix release build on top of 4.2.0 and resolves:
@@ -50,7 +63,7 @@ Mapbox Android 4.2.1 is a bugfix release build on top of 4.2.0 and resolves:
## 4.2.0 - December 14, 2016
-Mapbox Android 4.2.0 contains all 4.2.0-beta.3 changes and adds:
+Mapbox Android 4.2.0 contains all 4.2.0-beta.5 changes and adds:
* Adds additional documentation to APIs
* Resolved issue with marker views occasionally not showing up until a gesture was performed on map [#7239](https://github.com/mapbox/mapbox-gl-native/pull/7239)
@@ -58,6 +71,18 @@ Mapbox Android 4.2.0 contains all 4.2.0-beta.3 changes and adds:
* Resolved issue with changing visibility of a layer [#7242](https://github.com/mapbox/mapbox-gl-native/pull/7242)
* Proguard improvement and fixes
+## 4.2.0-beta.5 - October 25, 2016
+
+Mapbox Android 4.2.0-beta.5 adds no new features, only bug fixes.
+
+## 4.2.0-beta.4 - October 25, 2016
+
+Mapbox Android 4.2.0-beta.4 contains all 4.2.0-beta.3 changes and adds:
+
+* Query rendered features by source [#6516](https://github.com/mapbox/mapbox-gl-native/issues/6516)
+* Decreased logging for release builds [#6787](https://github.com/mapbox/mapbox-gl-native/pull/6787)
+* setConnected method to manually set a connected flag [#6618](https://github.com/mapbox/mapbox-gl-native/pull/6618)
+
## 4.2.0-beta.3 - September 21, 2016
Mapbox Android 4.2.0-beta.3 contains all 4.2.0-beta.2 changes and adds:
diff --git a/platform/android/scripts/release.py b/platform/android/scripts/release.py
index bc485aa706..8abcccffdb 100644
--- a/platform/android/scripts/release.py
+++ b/platform/android/scripts/release.py
@@ -161,7 +161,7 @@ def abort_with_message(message):
def execute_call(command):
click.echo('Executing: %s' % command)
- result = subprocess.call(command.split(' '))
+ result = subprocess.call(command, shell=True)
if result != 0:
abort_with_message('Command failed: %s' % command)