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 2015/03/26 23:25:42 UTC

[1/5] cordova-wp8 git commit: Update JS snapshot to version 3.8.0 (via coho)

Repository: cordova-wp8
Updated Branches:
  refs/heads/3.8.x 23033c49e -> 6e319c982


Update JS snapshot to version 3.8.0 (via coho)


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

Branch: refs/heads/3.8.x
Commit: 682e3ae666b86362415fe53ecb90125cb52a4efa
Parents: 2879a71
Author: sgrebnov <v-...@microsoft.com>
Authored: Wed Dec 17 17:20:14 2014 +0300
Committer: Steve Gill <st...@gmail.com>
Committed: Wed Mar 25 18:36:42 2015 -0700

----------------------------------------------------------------------
 template/www/cordova.js | 25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/682e3ae6/template/www/cordova.js
----------------------------------------------------------------------
diff --git a/template/www/cordova.js b/template/www/cordova.js
index e92a31b..0d1c344 100644
--- a/template/www/cordova.js
+++ b/template/www/cordova.js
@@ -1,5 +1,5 @@
-// Platform: windowsphone
-// 91157c2e1bf3eb098c7e2ab31404e895ccb0df2a
+// Platform: wp8
+// ab3fc0f59dbba0cc402d40a26276675f05924ae1
 /*
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
@@ -19,7 +19,7 @@
  under the License.
 */
 ;(function() {
-var PLATFORM_VERSION_BUILD_LABEL = '3.8.0-dev';
+var PLATFORM_VERSION_BUILD_LABEL = '3.8.0';
 // file: src/scripts/require.js
 
 /*jshint -W079 */
@@ -464,9 +464,14 @@ function each(objects, func, context) {
 
 function clobber(obj, key, value) {
     exports.replaceHookForTesting(obj, key);
-    obj[key] = value;
+    var needsProperty = false;
+    try {
+        obj[key] = value;
+    } catch (e) {
+        needsProperty = true;
+    }
     // Getters can only be overridden by getters.
-    if (obj[key] !== value) {
+    if (needsProperty || obj[key] !== value) {
         utils.defineGetter(obj, key, function() {
             return value;
         });
@@ -804,7 +809,7 @@ module.exports = channel;
 
 });
 
-// file: src/windowsphone/exec.js
+// file: src/wp8/exec.js
 define("cordova/exec", function(require, exports, module) {
 
 var cordova = require('cordova'),
@@ -935,7 +940,7 @@ function replaceNavigator(origNavigator) {
         for (var key in origNavigator) {
             if (typeof origNavigator[key] == 'function') {
                 newNavigator[key] = origNavigator[key].bind(origNavigator);
-            } 
+            }
             else {
                 (function(k) {
                     utils.defineGetterSetter(newNavigator,key,function() {
@@ -1063,7 +1068,7 @@ function replaceNavigator(origNavigator) {
         for (var key in origNavigator) {
             if (typeof origNavigator[key] == 'function') {
                 newNavigator[key] = origNavigator[key].bind(origNavigator);
-            } 
+            }
             else {
                 (function(k) {
                     utils.defineGetterSetter(newNavigator,key,function() {
@@ -1118,7 +1123,7 @@ platform.bootstrap && platform.bootstrap();
  * Create all cordova objects once native side is ready.
  */
 channel.join(function() {
-    
+
     platform.initialize && platform.initialize();
 
     // Fire event to notify that all objects are created
@@ -1236,7 +1241,7 @@ exports.reset();
 
 });
 
-// file: src/windowsphone/platform.js
+// file: src/wp8/platform.js
 define("cordova/platform", function(require, exports, module) {
 
 module.exports = {


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


[2/5] cordova-wp8 git commit: CB-8179 updated RELEASENOTES

Posted by st...@apache.org.
CB-8179 updated RELEASENOTES


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

Branch: refs/heads/3.8.x
Commit: bc8c42fbe070cef5891932b654468bba861c276c
Parents: 9b0a048
Author: sgrebnov <v-...@microsoft.com>
Authored: Wed Dec 17 17:48:02 2014 +0300
Committer: Steve Gill <st...@gmail.com>
Committed: Wed Mar 25 18:36:43 2015 -0700

----------------------------------------------------------------------
 RELEASENOTES.md | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/bc8c42fb/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 721d5de..fc7b21e 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -21,10 +21,19 @@
 
 Release Notes for Cordova (WP8)
 
-Update these notes using: git log --pretty=format:'* %s' --topo-order --no-merges origin/2.7.x...HEAD
-
 Cordova is a static library that enables developers to include the Cordova API in their WP8 application projects easily, and also create new Cordova-based WP8 application projects through the command-line.
 
+### 3.8.0 (December 17, 2014) ###
+
+* Set VERSION to 3.8.0 (via coho)
+* Update JS snapshot to version 3.8.0 (via coho)
+* remove node_version which is breaking appveyor
+* CB-8139 WP8. Fix callback for plugins with native ui
+* CB-7892 XHR to local files poly should only load/run once
+* Fix AutoloadPlugins
+* updated description in package.json
+* CB-7923 updated release notes
+
 ### 3.7.0 (October 31, 2014) ###
 
 * Set VERSION to 3.7.0 (via coho)


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


[3/5] cordova-wp8 git commit: Set VERSION to 3.8.0 (via coho)

Posted by st...@apache.org.
Set VERSION to 3.8.0 (via coho)


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

Branch: refs/heads/3.8.x
Commit: 9b0a048d220394fb530539e18ef991ebf9f0a2d6
Parents: 682e3ae
Author: sgrebnov <v-...@microsoft.com>
Authored: Wed Dec 17 17:20:15 2014 +0300
Committer: Steve Gill <st...@gmail.com>
Committed: Wed Mar 25 18:36:43 2015 -0700

----------------------------------------------------------------------
 VERSION      | 2 +-
 package.json | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/9b0a048d/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index d4da33b..1981190 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.8.0-dev
+3.8.0

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/9b0a048d/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 5d1100f..84e49a8 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
     "name": "cordova-wp8",
-    "version": "3.8.0-dev",
+    "version": "3.8.0",
     "description": "cordova-wp8 release",
     "main": "bin/create",
     "repository": {
@@ -41,4 +41,4 @@
     },
     "author": "Apache Software Foundation",
     "license": "Apache Version 2.0"
-}
+}
\ No newline at end of file


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


[5/5] cordova-wp8 git commit: fixed merge conflicts

Posted by st...@apache.org.
fixed merge conflicts


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

Branch: refs/heads/3.8.x
Commit: 6e319c9828db2f03c9fda72028bb5b935973c5cb
Parents: 6ebc6e6 23033c4
Author: Steve Gill <st...@gmail.com>
Authored: Thu Mar 26 15:25:37 2015 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Thu Mar 26 15:25:37 2015 -0700

----------------------------------------------------------------------
 RELEASENOTES.md         | 42 +++++++++++++++++++++++++-----------------
 template/www/cordova.js | 20 ++++++++++++--------
 2 files changed, 37 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/6e319c98/RELEASENOTES.md
----------------------------------------------------------------------
diff --cc RELEASENOTES.md
index fc7b21e,44050b9..7bd0c15
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@@ -21,14 -21,30 +21,28 @@@
  
  Release Notes for Cordova (WP8)
  
 -Update these notes using: git log --pretty=format:'* %s' --topo-order --no-merges origin/2.7.x...HEAD
 -
  Cordova is a static library that enables developers to include the Cordova API in their WP8 application projects easily, and also create new Cordova-based WP8 application projects through the command-line.
  
- ### 3.8.0 (December 17, 2014) ###
- 
- * Set VERSION to 3.8.0 (via coho)
- * Update JS snapshot to version 3.8.0 (via coho)
- * remove node_version which is breaking appveyor
- * CB-8139 WP8. Fix callback for plugins with native ui
+ ### 3.8.0 (March 26, 2015)
+ * added ecosystem:cordova keyword
+ * CB-8325 minor test improvements with e2e tests
+ * CB-8412 Fix all jshint issues for WP8 platform
+ * CB-8412 Enable jshint for wp8 platform
+ * CB-8417 moved platform specific js into platform
+ * Catch possible errors with JSON.stringify()
+ * Improved console logging Previously, when using console.log facilities, only the first argument was respected by ConsoleHelper, resulting in information not being logged when cons
+ * Add comment block to explain the intent of this code.
+ * Use WP8 thread pool for each command, instead of starting new thread
+ * CB-8060 AppDeployCmd lookup: prefer original WP8.0 tools
+ * CB-8310: Fix to cordova run wp8 to attempt to deploy to device before it tries to deploy to emulator
+ * CB-8325 Implemented end-to-end and unit tests using Jasmine
+ * CB-8060 Updated AppDeployCmd lookup code
+ * Use the newer AppDeployCmd when available The old XapDeployCmd could raise "Error: The parameter is incorrect." with project files that were opened with more recent versions of Vi
+ * appveyor: show master branch status instead of latest build
+ * CB-8179 Removed CB-7028 from release notes
+ * remove destructor trace
+ * remove debug trace
+ * CB-8139 WP8. Fix callback for plugins with native ui (capture, contactPicker, BarcodeScanner, other)
  * CB-7892 XHR to local files poly should only load/run once
  * Fix AutoloadPlugins
  * updated description in package.json
@@@ -50,8 -64,8 +62,7 @@@
  * CB-7493 Adds `space-in-path` and `unicode in name` tests for `CI`
  * cleanup ignores and add missing windows cmd files, if you want to add a `bundledDependency` `node_module` use `-f`
  
--### 3.6.4 (September 30, 2014) ###
--
++### 3.6.4 (September 30, 2014)
  * Updated JS snapshot + set version to 3.6.4
  * CB-7616 partial match support for --target
  * CB-7616 Deploy on WP8 fails to run specific target
@@@ -62,8 -76,8 +73,7 @@@
  * Moves node_modules from package root to bin/ folder
  * CB-7444 Fixes XHR callback failure when requested file doesn't exists
  
--### 3.6.0 (September 2, 2014) ###
--
++### 3.6.0 (September 2, 2014)
  * updated package.json
  * Update 3.6.x branch
  * update package to 3.6.0-dev
@@@ -127,8 -141,8 +137,7 @@@
  * Apply app-hello-world update
  
  
--### 3.5.0 (201405XX) ###
--
++### 3.5.0 (201405XX)
  * Apply app-hello-world update
  * CB-6558: added package.json files for wp7 & wp8
  * CB-6491 add CONTRIBUTING.md
@@@ -156,8 -170,8 +165,7 @@@
  * Update to 3.4.0-rc1
  
  
--### 3.4.0 (201402XX) ###
--
++### 3.4.0 (201402XX)
  * Update to 3.4.0 proper
  * CB-6041 createTemplates should install them for VS-2013 as well
  * CB-5951 Added namespace to config.xml

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/6e319c98/template/www/cordova.js
----------------------------------------------------------------------
diff --cc template/www/cordova.js
index 0d1c344,54032be..bb0d061
--- a/template/www/cordova.js
+++ b/template/www/cordova.js
@@@ -19,7 -19,7 +19,7 @@@
   under the License.
  */
  ;(function() {
--var PLATFORM_VERSION_BUILD_LABEL = '3.8.0';
++var PLATFORM_VERSION_BUILD_LABEL = '3.9.0-dev';
  // file: src/scripts/require.js
  
  /*jshint -W079 */


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


[4/5] cordova-wp8 git commit: added ecosystem:cordova keyword

Posted by st...@apache.org.
added ecosystem:cordova keyword


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

Branch: refs/heads/3.8.x
Commit: 6ebc6e65e1dd09b24a22ba5a5df75ab48c9e86dd
Parents: bc8c42f
Author: Steve Gill <st...@gmail.com>
Authored: Wed Mar 25 18:30:03 2015 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Wed Mar 25 18:36:43 2015 -0700

----------------------------------------------------------------------
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/6ebc6e65/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 84e49a8..b2b8b6a 100644
--- a/package.json
+++ b/package.json
@@ -41,4 +41,4 @@
     },
     "author": "Apache Software Foundation",
     "license": "Apache Version 2.0"
-}
\ No newline at end of file
+}


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