Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 74F9E18649 for ; Tue, 4 Aug 2015 19:22:05 +0000 (UTC) Received: (qmail 79007 invoked by uid 500); 4 Aug 2015 19:22:05 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 78982 invoked by uid 500); 4 Aug 2015 19:22:05 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 78970 invoked by uid 99); 4 Aug 2015 19:22:05 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2015 19:22:05 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 36D7DAC04EA for ; Tue, 4 Aug 2015 19:22:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1694099 - in /cordova/site: public/ public/announcements/2015/08/ public/announcements/2015/08/04/ public/blog/ www/_posts/ Date: Tue, 04 Aug 2015 19:22:05 -0000 To: commits@cordova.apache.org From: steven@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150804192205.36D7DAC04EA@hades.apache.org> Author: steven Date: Tue Aug 4 19:22:04 2015 New Revision: 1694099 URL: http://svn.apache.org/r1694099 Log: added ios 3.9.0 release blog post Added: cordova/site/public/announcements/2015/08/ cordova/site/public/announcements/2015/08/04/ cordova/site/public/announcements/2015/08/04/cordova-ios-3.9.0.html cordova/site/www/_posts/2015-08-04-cordova-ios-3.9.0.md Modified: cordova/site/public/blog/index.html cordova/site/public/index.html cordova/site/public/rss.xml Added: cordova/site/public/announcements/2015/08/04/cordova-ios-3.9.0.html URL: http://svn.apache.org/viewvc/cordova/site/public/announcements/2015/08/04/cordova-ios-3.9.0.html?rev=1694099&view=auto ============================================================================== --- cordova/site/public/announcements/2015/08/04/cordova-ios-3.9.0.html (added) +++ cordova/site/public/announcements/2015/08/04/cordova-ios-3.9.0.html Tue Aug 4 19:22:04 2015 @@ -0,0 +1,218 @@ + + + + + + + + + + + Apache Cordova iOS 3.9.0 + + + + + + + + + + + + + + +
+ +
+

Apache Cordova iOS 3.9.0

+
Posted by: Sergey Grebnov
+

04 Aug 2015

+
+ +

We are happy to announce that Cordova iOS 3.9.0 has been released and will be the default iOS version after next cordova-cli release.

+ +

UPDATE: To deploy to iOS devices, developers will have to update their ios-deploy dependency to the version 1.4.0 or greater. Run npm install ios-deploy -g to download the latest release.

+ +

Apart from a number of bug fixes, there is now support for checking system requirements for iOS platform:

+ +
$>cordova requirements ios
+
+Requirements check results for ios:
+Apple OS X: installed darwin
+Xcode: installed 6.3
+ios-deploy: installed 1.7.0
+ios-sim: installed 4.1.1
+ +

and support for Signing the App for iOS platform:

+ +
$>/path/to/my/project/cordova/build --codeSignIdentitiy="iPhone Distribtion" --provisioningProfile="926c2bd6-8de9-4c2f-8407-1016d2d12954"
+ +

To upgrade:

+ +
npm install -g cordova
+cd my_project
+cordova platform update ios@3.9.0
+ +

To add it explicitly:

+ +
cordova platform add ios@3.9.0 --save
+ +

For non-CLI projects or for pre-3.0 projects, refer to the upgrade guides.

+ +

What’s new in iOS platform

+ +
    +
  • CB-8586 Update ios-deploy minimum version to 1.4.0
  • + +
  • CB-8485 Support for signed archive for iOS
  • + +
  • CB-8197 Switch to nodejs for ios platform scripts
  • + +
  • CB-7747 Update project template with new whitelist settings
  • + +
  • CB-8954 Adds requirements command support to check_reqs module
  • + +
  • CB-8907 Cordova ios emulate –list it shows duplicates when ios simulators are present for 7.x and 8.x
  • + +
  • CB-9013 Fix listing of multiple devices in list-devices for iOS
  • + +
  • CB-3360 Set custom User-Agent
  • + +
  • CB-8710 Cordova-ios jasmine tests do not clean up build products, tests can only be run once
  • + +
  • CB-8785 Add try/catch for evalJS
  • + +
  • CB-8948 Clipboard fix for iOS Safari copy
  • + +
  • CB-8855 Fix display ios devices with –list
  • + +
  • CB-8295 Update app template with fix to CSP string
  • + +
  • CB-8965 Copy cordova-js-src directory to platform folder during create
  • + +
  • CB-9273 “Copy www build phase” node is not found
  • + +
  • CB-9088 Sms urls won’t open in iframe
  • + +
  • CB-8621 Fix Q require in list-devices (Q -> q)
  • +
+ +
+
+ + +
+ + + +
+
+
+ + + + + + +
+
+
+
+ +
+ + + + + + Modified: cordova/site/public/blog/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/blog/index.html?rev=1694099&r1=1694098&r2=1694099&view=diff ============================================================================== --- cordova/site/public/blog/index.html (original) +++ cordova/site/public/blog/index.html Tue Aug 4 19:22:04 2015 @@ -57,6 +57,11 @@
  • + 04 Aug 2015 » + Apache Cordova iOS 3.9.0 +
  • + +
  • 21 Jul 2015 » Apache Cordova Android 4.1.0
  • Modified: cordova/site/public/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/index.html?rev=1694099&r1=1694098&r2=1694099&view=diff ============================================================================== --- cordova/site/public/index.html (original) +++ cordova/site/public/index.html Tue Aug 4 19:22:04 2015 @@ -89,6 +89,41 @@

    News Subscribe

      +
    • 04 Aug 2015 » Apache Cordova iOS 3.9.0 + +

      We are happy to announce that Cordova iOS 3.9.0 has been released and will be the default iOS version after next cordova-cli release.

      + +

      UPDATE: To deploy to iOS devices, developers will have to update their ios-deploy dependency to the version 1.4.0 or greater. Run npm install ios-deploy -g to download the latest release.

      + +

      Apart from a number of bug fixes, there is now support for checking system requirements for iOS platform:

      + +
      $>cordova requirements ios
      +
      +Requirements check results for ios:
      +Apple OS X: installed darwin
      +Xcode: installed 6.3
      +ios-deploy: installed 1.7.0
      +ios-sim: installed 4.1.1
      + +

      and support for Signing the App for iOS platform:

      + +
      $>/path/to/my/project/cordova/build --codeSignIdentitiy="iPhone Distribtion" --provisioningProfile="926c2bd6-8de9-4c2f-8407-1016d2d12954"
      + +

      To upgrade:

      + +
      npm install -g cordova
      +cd my_project
      +cordova platform update ios@3.9.0
      + +

      To add it explicitly:

      + +
      cordova platform add ios@3.9.0 --save
      + +

      For non-CLI projects or for pre-3.0 projects, refer to the upgrade guides.

      + + +
    • 21 Jul 2015 » Apache Cordova Android 4.1.0

      We are happy to announce that Cordova Android 4.1.0 has been released.

      @@ -192,50 +227,6 @@ cordova plugin add org.apache.cordova.ca -
    • 10 Jun 2015 » Tools Release: June 10, 2015 - -

      New versions of cordova tools are now live!

      - - - -

      Release highlights:

      - -
        -
      • CB-8898 Introduced a new cordova requirements command
      • - -
      • CB-8441 cordova prepare --browserify now supports 3rd party plugins to build your cordova.js at run time! Try it out!
      • - -
      • CB-9075 pinned platforms will include platform patch updates without requiring a new tools release.
      • -
      - -

      To update your tools:

      - -
        -
      • -

        If you have cordova installed:

        - -
        npm install -g cordova
        -
      • - -
      • -

        If you have plugman installed:

        - -
        npm install -g plugman
        -
      • -
      - -

      Changes include:

      - - -

    Modified: cordova/site/public/rss.xml URL: http://svn.apache.org/viewvc/cordova/site/public/rss.xml?rev=1694099&r1=1694098&r2=1694099&view=diff ============================================================================== --- cordova/site/public/rss.xml (original) +++ cordova/site/public/rss.xml Tue Aug 4 19:22:04 2015 @@ -5,8 +5,8 @@ Apache Cordova - Apache Cordova is a set of device APIs that allow a web mobile app developer to access native device function from JavaScript. http://cordova.apache.org/rss.xml - Tue, 28 Jul 2015 16:26:23 -0700 - Tue, 28 Jul 2015 16:26:23 -0700 + Tue, 04 Aug 2015 12:19:58 -0700 + Tue, 04 Aug 2015 12:19:58 -0700 1800 http://cordova.apache.org @@ -19,6 +19,83 @@ + Apache Cordova iOS 3.9.0 + +<p>We are happy to announce that <code>Cordova iOS 3.9.0</code> has been released and will be the default iOS version after next cordova-cli release.</p> + +<p><strong>UPDATE:</strong> To deploy to iOS devices, developers will have to update their ios-deploy dependency to the version 1.4.0 or greater. Run <code>npm install ios-deploy -g</code> to download the latest release.</p> + +<p>Apart from a number of bug fixes, there is now support for checking system requirements for iOS platform:</p> + +<pre><code>$&gt;cordova requirements ios + +Requirements check results for ios: +Apple OS X: installed darwin +Xcode: installed 6.3 +ios-deploy: installed 1.7.0 +ios-sim: installed 4.1.1</code></pre> + +<p>and support for <a href=" +http://cordova.apache.org/docs/en/edge/guide_platforms_ios_tools.md.html#signing-the-app">Signing the App for iOS platform</a>:</p> + +<pre><code>$&gt;/path/to/my/project/cordova/build --codeSignIdentitiy=&quot;iPhone Distribtion&quot; --provisioningProfile=&quot;926c2bd6-8de9-4c2f-8407-1016d2d12954&quot;</code></pre> + +<p>To upgrade:</p> + +<pre><code>npm install -g cordova +cd my_project +cordova platform update ios@3.9.0</code></pre> + +<p>To add it explicitly:</p> + +<pre><code>cordova platform add ios@3.9.0 --save</code></pre> + +<p>For non-CLI projects or for pre-3.0 projects, refer to the <a href="http://cordova.apache.org/docs/en/edge/guide_platforms_index.md.html">upgrade guides</a>.</p> +<!--more--> +<h2 id="whats_new_in_ios_platform">What’s new in iOS platform</h2> + +<ul> +<li><a href="https://issues.apache.org/jira/browse/CB-8586">CB-8586</a> Update ios-deploy minimum version to 1.4.0</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8485">CB-8485</a> Support for signed archive for iOS</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8197">CB-8197</a> Switch to nodejs for ios platform scripts</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-7747">CB-7747</a> Update project template with new whitelist settings</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8954">CB-8954</a> Adds <code>requirements</code> command support to check_reqs module</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8907">CB-8907</a> Cordova ios emulate –list it shows duplicates when ios simulators are present for 7.x and 8.x</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-9013">CB-9013</a> Fix listing of multiple devices in list-devices for iOS</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-3360">CB-3360</a> Set custom User-Agent</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8710">CB-8710</a> Cordova-ios jasmine tests do not clean up build products, tests can only be run once</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8785">CB-8785</a> Add try/catch for evalJS</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8948">CB-8948</a> Clipboard fix for iOS Safari copy</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8855">CB-8855</a> Fix display ios devices with –list</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8295">CB-8295</a> Update app template with fix to CSP string</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8965">CB-8965</a> Copy cordova-js-src directory to platform folder during create</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-9273">CB-9273</a> “Copy www build phase” node is not found</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-9088">CB-9088</a> Sms urls won’t open in iframe</li> + +<li><a href="https://issues.apache.org/jira/browse/CB-8621">CB-8621</a> Fix Q require in list-devices (Q -&gt; q)</li> +</ul> + + http://cordova.apache.org/announcements/2015/08/04/cordova-ios-3.9.0.html + http://cordova.apache.org/announcements/2015/08/04/cordova-ios-3.9.0 + Tue, 04 Aug 2015 + + + Apache Cordova Android 4.1.0 <p>We are happy to announce that <code>Cordova Android 4.1.0</code> has been released.</p> Added: cordova/site/www/_posts/2015-08-04-cordova-ios-3.9.0.md URL: http://svn.apache.org/viewvc/cordova/site/www/_posts/2015-08-04-cordova-ios-3.9.0.md?rev=1694099&view=auto ============================================================================== --- cordova/site/www/_posts/2015-08-04-cordova-ios-3.9.0.md (added) +++ cordova/site/www/_posts/2015-08-04-cordova-ios-3.9.0.md Tue Aug 4 19:22:04 2015 @@ -0,0 +1,64 @@ +--- +layout: post +author: + name: Sergey Grebnov + url: https://twitter.com/sgrebnov +title: "Apache Cordova iOS 3.9.0" +categories: announcements +tags: news releases +--- +We are happy to announce that `Cordova iOS 3.9.0` has been released and will be the +default iOS version after next cordova-cli release. + +**UPDATE:** To deploy to iOS devices, developers will have to update their ios-deploy +dependency to the version 1.4.0 or greater. Run `npm install ios-deploy -g` to download +the latest release. + +Apart from a number of bug fixes, there is now support for checking system +requirements for iOS platform: + + $>cordova requirements ios + + Requirements check results for ios: + Apple OS X: installed darwin + Xcode: installed 6.3 + ios-deploy: installed 1.7.0 + ios-sim: installed 4.1.1 + +and support for [Signing the App for iOS platform]( +http://cordova.apache.org/docs/en/edge/guide_platforms_ios_tools.md.html#signing-the-app): + + $>/path/to/my/project/cordova/build --codeSignIdentitiy="iPhone Distribtion" --provisioningProfile="926c2bd6-8de9-4c2f-8407-1016d2d12954" + +To upgrade: + + npm install -g cordova + cd my_project + cordova platform update ios@3.9.0 + +To add it explicitly: + + cordova platform add ios@3.9.0 --save + +For non-CLI projects or for pre-3.0 projects, refer to the [upgrade guides](http://cordova.apache.org/docs/en/edge/guide_platforms_index.md.html). + + + +## What's new in iOS platform +* [CB-8586](https://issues.apache.org/jira/browse/CB-8586) Update ios-deploy minimum version to 1.4.0 +* [CB-8485](https://issues.apache.org/jira/browse/CB-8485) Support for signed archive for iOS +* [CB-8197](https://issues.apache.org/jira/browse/CB-8197) Switch to nodejs for ios platform scripts +* [CB-7747](https://issues.apache.org/jira/browse/CB-7747) Update project template with new whitelist settings +* [CB-8954](https://issues.apache.org/jira/browse/CB-8954) Adds `requirements` command support to check_reqs module +* [CB-8907](https://issues.apache.org/jira/browse/CB-8907) Cordova ios emulate --list it shows duplicates when ios simulators are present for 7.x and 8.x +* [CB-9013](https://issues.apache.org/jira/browse/CB-9013) Fix listing of multiple devices in list-devices for iOS +* [CB-3360](https://issues.apache.org/jira/browse/CB-3360) Set custom User-Agent +* [CB-8710](https://issues.apache.org/jira/browse/CB-8710) Cordova-ios jasmine tests do not clean up build products, tests can only be run once +* [CB-8785](https://issues.apache.org/jira/browse/CB-8785) Add try/catch for evalJS +* [CB-8948](https://issues.apache.org/jira/browse/CB-8948) Clipboard fix for iOS Safari copy +* [CB-8855](https://issues.apache.org/jira/browse/CB-8855) Fix display ios devices with --list +* [CB-8295](https://issues.apache.org/jira/browse/CB-8295) Update app template with fix to CSP string +* [CB-8965](https://issues.apache.org/jira/browse/CB-8965) Copy cordova-js-src directory to platform folder during create +* [CB-9273](https://issues.apache.org/jira/browse/CB-9273) "Copy www build phase" node is not found +* [CB-9088](https://issues.apache.org/jira/browse/CB-9088) Sms urls won't open in iframe +* [CB-8621](https://issues.apache.org/jira/browse/CB-8621) Fix Q require in list-devices (Q -> q) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org