You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/12/17 18:59:13 UTC

[1/3] cordova-ubuntu git commit: CB-10119 - default framework upgraded to 15.04

Repository: cordova-ubuntu
Updated Branches:
  refs/heads/4.3.x 745697f42 -> 77872b951


CB-10119 - default framework upgraded to 15.04

(cherry picked from commit 215cfa1f289e72972790b8a0f8aa1a4a8bd5398a)


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

Branch: refs/heads/4.3.x
Commit: cabdd8f74268406b5385f65a7700e9f22482548d
Parents: 745697f
Author: David Barth <da...@canonical.com>
Authored: Fri Dec 11 17:00:12 2015 +0100
Committer: David Barth <da...@canonical.com>
Committed: Thu Dec 17 18:56:37 2015 +0100

----------------------------------------------------------------------
 RELEASENOTES.md                                | 4 ++++
 bin/templates/project/cordova/lib/constants.js | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/cabdd8f7/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 71ecdbf..5565d43 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -20,6 +20,10 @@
 -->
 ## Release Notes for Cordova Ubuntu ##
 
+### 4.3.2-pre ###
+
+* change click framework to 15.04 by default (14.10 is deprecated)
+
 ### 4.3.1 ###
 
 * default icon name `www/img/logo.png`

http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/cabdd8f7/bin/templates/project/cordova/lib/constants.js
----------------------------------------------------------------------
diff --git a/bin/templates/project/cordova/lib/constants.js b/bin/templates/project/cordova/lib/constants.js
index be1d11b..16e72ed 100644
--- a/bin/templates/project/cordova/lib/constants.js
+++ b/bin/templates/project/cordova/lib/constants.js
@@ -19,7 +19,7 @@
  */
 
 module.exports = {
-    'DEFAULT_FRAMEWORK': 'ubuntu-sdk-14.10',
+    'DEFAULT_FRAMEWORK': 'ubuntu-sdk-15.04',
     'DEFAULT_ARCH': 'armhf',
     'PLATFORM_TYPES': {
         'PHONE': 0,


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


[2/3] cordova-ubuntu git commit: Fix nodejs deps install which refers to an invalid ubuntu deps check function

Posted by db...@apache.org.
Fix nodejs deps install which refers to an invalid ubuntu deps check function

github: close #20
(cherry picked from commit 4de08bf483b7bf9f424a2e67477a897485f339ba)


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

Branch: refs/heads/4.3.x
Commit: f7d74f2ac796e4dc76241cb97bec0550f58153a0
Parents: cabdd8f
Author: Alexandre Abreu <al...@canonical.com>
Authored: Mon Dec 7 16:30:55 2015 -0500
Committer: David Barth <da...@canonical.com>
Committed: Thu Dec 17 18:56:49 2015 +0100

----------------------------------------------------------------------
 RELEASENOTES.md       | 4 +++-
 bin/lib/check_reqs.js | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/f7d74f2a/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 5565d43..559a55f 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -22,7 +22,9 @@
 
 ### 4.3.2-pre ###
 
-* change click framework to 15.04 by default (14.10 is deprecated)
+* CB-10119 - change click framework to 15.04 by default (14.10 is deprecated)
+* check_reqs only verifies node dependencies now, not ubuntu build deps which
+  are checked once trying to build
 
 ### 4.3.1 ###
 

http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/f7d74f2a/bin/lib/check_reqs.js
----------------------------------------------------------------------
diff --git a/bin/lib/check_reqs.js b/bin/lib/check_reqs.js
index 9363057..5e30807 100644
--- a/bin/lib/check_reqs.js
+++ b/bin/lib/check_reqs.js
@@ -23,7 +23,7 @@ var exec = require('child_process').exec;
 
 exports.check_reqs = function (callback) {
     if (!checkNodeDependencies()) {
-        installNodeDependencies(checkUbuntuDependencies.bind(null, callback));
+        installNodeDependencies(callback);
     } else {
 	// don't check platform dependencies yet, as they depend on the target
 	// architecture; the base cordova / node / npm install should be


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


[3/3] cordova-ubuntu git commit: CB-10210 Updated RELEASENOTES and Version for release 4.3.2

Posted by db...@apache.org.
CB-10210 Updated RELEASENOTES and Version for release 4.3.2


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

Branch: refs/heads/4.3.x
Commit: 77872b951c74a4aa06d674bb6a47a1b6bd939a11
Parents: f7d74f2
Author: David Barth <da...@canonical.com>
Authored: Thu Dec 17 18:51:35 2015 +0100
Committer: David Barth <da...@canonical.com>
Committed: Thu Dec 17 18:58:35 2015 +0100

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


http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/77872b95/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 559a55f..ce7d54c 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -20,7 +20,7 @@
 -->
 ## Release Notes for Cordova Ubuntu ##
 
-### 4.3.2-pre ###
+### 4.3.2 ###
 
 * CB-10119 - change click framework to 15.04 by default (14.10 is deprecated)
 * check_reqs only verifies node dependencies now, not ubuntu build deps which

http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/77872b95/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index aeeee78..9463ac3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
     "name": "cordova-ubuntu",
-    "version": "4.3.1",
+    "version": "4.3.2",
     "description": "Cordova tooling for the Ubuntu platform.",
     "main": "bin/create",
     "repository": {
@@ -46,4 +46,4 @@
         }
     ],
     "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