You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/10/26 06:18:26 UTC

[1/2] docs commit: Cordova Android 6.0.0 release announcement

Repository: cordova-docs
Updated Branches:
  refs/heads/master 8ecb28fe2 -> a55ff2712


Cordova Android 6.0.0 release announcement


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/18662d34
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/18662d34
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/18662d34

Branch: refs/heads/master
Commit: 18662d34cba7e13dd2aa1a91eb1ebc9738ded0d2
Parents: 8ecb28f
Author: Joe Bowser <bo...@apache.org>
Authored: Mon Oct 24 13:22:08 2016 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Tue Oct 25 23:14:15 2016 -0700

----------------------------------------------------------------------
 www/_posts/2016-10-24-android-release.md | 53 +++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/18662d34/www/_posts/2016-10-24-android-release.md
----------------------------------------------------------------------
diff --git a/www/_posts/2016-10-24-android-release.md b/www/_posts/2016-10-24-android-release.md
new file mode 100644
index 0000000..e6e5eba
--- /dev/null
+++ b/www/_posts/2016-10-24-android-release.md
@@ -0,0 +1,53 @@
+---
+layout: post
+author:
+    name: Joe Bowser
+    url: https://twitter.com/infil00p
+title:  "Cordova Android 6.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce a major release for`Cordova Android 6.0.0` has been released! 
+
+Run the following command in your project to save your currently installed plugins into `config.xml`:
+
+    cordova plugin save
+
+To upgrade:
+
+    npm install -g cordova
+    cd my_project
+    cordova platform update android@6.0.0
+
+To add it explicitly:
+
+    cordova platform add android@6.0.0
+
+<!--more-->
+## What's new in Android
+
+This release adds significant functionality, and also introduces a number
+of breaking changes.  Some of the changes to the code base will be of
+particular interest to third party webview plugin developers.
+
+#### Major Changes ####
+* Primary bridge is the EVAL_BRIDGE, which tells the WebView to execute JS directly.  This is more stable than the ONLINE_EVENT bridge
+* Full Support for Android Nougat (API 24)
+* Ice Cream Sandwich Support has been deprecated.  Minimum Supported Android Version is Jellybean (API 16/ Android 4.1)
+* Plugin Installation now CLEANS the build directory, this speeds up gradle build times and allows for CLI develoment to be more predictable
+
+Changes For Third-Party WebView Developers:
+* executeJavascript method added and is an abstract method that must be implemented
+* the EVAL_BRIDGE must be added to the WebView
+
+
+#### Curated Changes from the Git Commit Logs, check release notes for a more complete list ####
+* [CB-11083](https://issues.apache.org/jira/browse/CB-11083) Fix to deal with custom frameworks with their own Gradle configuration
+* [CB-8722](https://issues.apache.org/jira/browse/CB-8722)  - Move icons from drawable to mipmap
+* [CB-11964](https://issues.apache.org/jira/browse/CB-11964)  Call clean after plugin install and mock it in tests
+* [CB-11935](https://issues.apache.org/jira/browse/CB-11935) Does a best-effort attempt to pause any processing that can be paused safely, such as animations and geolocation.
+* [CB-11640](https://issues.apache.org/jira/browse/CB-11640)  Changing requirements check to ask for Java 8
+* [CB-11907](https://issues.apahce.org/jira/browse/CB-11907): Bumping Gradle to work with Android Studio 2.2 and the Android Gradle Plugin
+* [CB-11078](https://issues.apahce.org/jira/browse/CB-11907):mpty string for BackgroundColor preference crashes application This closes #316
+


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/2] docs commit: CB-120038: Typo and consistency fix

Posted by st...@apache.org.
CB-120038: Typo and consistency fix

 This closes #653


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/a55ff271
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/a55ff271
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/a55ff271

Branch: refs/heads/master
Commit: a55ff27121919676136434579b0600d2f3f1cade
Parents: 18662d3
Author: Joe Bowser <bo...@apache.org>
Authored: Mon Oct 24 13:40:40 2016 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Tue Oct 25 23:18:17 2016 -0700

----------------------------------------------------------------------
 www/_posts/2016-10-24-android-release.md | 29 +++++++++++++--------------
 1 file changed, 14 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/a55ff271/www/_posts/2016-10-24-android-release.md
----------------------------------------------------------------------
diff --git a/www/_posts/2016-10-24-android-release.md b/www/_posts/2016-10-24-android-release.md
index e6e5eba..82d797f 100644
--- a/www/_posts/2016-10-24-android-release.md
+++ b/www/_posts/2016-10-24-android-release.md
@@ -32,22 +32,21 @@ of breaking changes.  Some of the changes to the code base will be of
 particular interest to third party webview plugin developers.
 
 #### Major Changes ####
-* Primary bridge is the EVAL_BRIDGE, which tells the WebView to execute JS directly.  This is more stable than the ONLINE_EVENT bridge
-* Full Support for Android Nougat (API 24)
-* Ice Cream Sandwich Support has been deprecated.  Minimum Supported Android Version is Jellybean (API 16/ Android 4.1)
-* Plugin Installation now CLEANS the build directory, this speeds up gradle build times and allows for CLI develoment to be more predictable
+* Primary bridge is the `EVAL_BRIDGE`, which tells the WebView to execute JS directly.  This is more stable than the `ONLINE_EVENT` bridge
+* Full Support for `Android Nougat (API 24)`
+* `Ice Cream Sandwich Support` has been **deprecated**.  Minimum Supported **Android** Version is `Jellybean (API 16/ Android 4.1)`
+* Plugin Installation now **CLEANS** the build directory, this speeds up gradle build times and allows for CLI develoment to be more predictable
 
-Changes For Third-Party WebView Developers:
-* executeJavascript method added and is an abstract method that must be implemented
-* the EVAL_BRIDGE must be added to the WebView
+Changes For Third-Party `WebView` Developers:
+* `executeJavascript` method added and is an abstract method that must be implemented
+* the `EVAL_BRIDGE` must be added to the `WebView`
 
 
 #### Curated Changes from the Git Commit Logs, check release notes for a more complete list ####
-* [CB-11083](https://issues.apache.org/jira/browse/CB-11083) Fix to deal with custom frameworks with their own Gradle configuration
-* [CB-8722](https://issues.apache.org/jira/browse/CB-8722)  - Move icons from drawable to mipmap
-* [CB-11964](https://issues.apache.org/jira/browse/CB-11964)  Call clean after plugin install and mock it in tests
-* [CB-11935](https://issues.apache.org/jira/browse/CB-11935) Does a best-effort attempt to pause any processing that can be paused safely, such as animations and geolocation.
-* [CB-11640](https://issues.apache.org/jira/browse/CB-11640)  Changing requirements check to ask for Java 8
-* [CB-11907](https://issues.apahce.org/jira/browse/CB-11907): Bumping Gradle to work with Android Studio 2.2 and the Android Gradle Plugin
-* [CB-11078](https://issues.apahce.org/jira/browse/CB-11907):mpty string for BackgroundColor preference crashes application This closes #316
-
+* [CB-11083](https://issues.apache.org/jira/browse/CB-11083): Fix to deal with custom frameworks with their own `Gradle` configuration
+* [CB-8722](https://issues.apache.org/jira/browse/CB-8722): Move icons from drawable to `mipmap`
+* [CB-11964](https://issues.apache.org/jira/browse/CB-11964): Call clean after plugin install and mock it in tests
+* [CB-11935](https://issues.apache.org/jira/browse/CB-11935): Does a best-effort attempt to pause any processing that can be paused safely, such as animations and geolocation.
+* [CB-11640](https://issues.apache.org/jira/browse/CB-11640):  Changing requirements check to ask for **Java 8**
+* [CB-11907](https://issues.apahce.org/jira/browse/CB-11907): Bumping Gradle to work with **Android Studio 2.2** and the **Android Gradle Plugin**
+* [CB-11078](https://issues.apahce.org/jira/browse/CB-11907): Empty string for `BackgroundColor` preference crashes application.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org