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 2013/12/10 19:47:01 UTC

[01/10] git commit: make sure the prepare step works in ia32 machines

Updated Branches:
  refs/heads/master 8b764c3c9 -> aa656e4a3


make sure the prepare step works in ia32 machines


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

Branch: refs/heads/master
Commit: 374d85650565af9d630284049462974fc4d41358
Parents: 7b8c156
Author: David Barth <da...@canonical.com>
Authored: Tue Dec 10 15:24:30 2013 +0000
Committer: David Barth <da...@canonical.com>
Committed: Tue Dec 10 15:24:30 2013 +0000

----------------------------------------------------------------------
 src/metadata/ubuntu_parser.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/374d8565/src/metadata/ubuntu_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/ubuntu_parser.js b/src/metadata/ubuntu_parser.js
index 1809ecf..1efcbff 100644
--- a/src/metadata/ubuntu_parser.js
+++ b/src/metadata/ubuntu_parser.js
@@ -84,7 +84,7 @@ module.exports.prototype = {
 
     update_manifest: function() {
         var nodearch2debarch = { 'arm': 'armhf',
-                                 'i386': 'i386',
+                                 'ia32': 'i386',
                                  'x64': 'amd64'};
         var arch;
         if (os.arch() in nodearch2debarch)


[04/10] git commit: CB-5614 Include path to file when config.xml fails to parse

Posted by st...@apache.org.
CB-5614 Include path to file when config.xml fails to parse

https://github.com/apache/cordova-cli/pull/108


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

Branch: refs/heads/master
Commit: 6d241ffb21ef3e6cbe01492bf2a41c2d33c0e8c6
Parents: 0779679
Author: Josh Soref <js...@blackberry.com>
Authored: Mon Dec 9 15:57:25 2013 -0500
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:31 2013 -0800

----------------------------------------------------------------------
 src/config_parser.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/6d241ffb/src/config_parser.js
----------------------------------------------------------------------
diff --git a/src/config_parser.js b/src/config_parser.js
index 2a506f9..b6293d8 100644
--- a/src/config_parser.js
+++ b/src/config_parser.js
@@ -22,7 +22,11 @@ var et = require('elementtree'),
 
 function config_parser(path) {
     this.path = path;
-    this.doc = xml.parseElementtreeSync(path);
+    try {
+        this.doc = xml.parseElementtreeSync(path);
+    } catch (e) {
+        throw new Error("Parsing "+path+" failed:\n"+e.message);
+    }
     this.access = new access(this);
     this.preference = new preference(this);
 }


[08/10] git commit: CB-5619 Avoid Error: Error ...

Posted by st...@apache.org.
CB-5619 Avoid Error: Error ...

Prevent errors like the following:
[Error: Error fetching plugin: Error: error: Could not fetch package information for imaginary.plugin]

https://github.com/apache/cordova-cli/pull/109


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

Branch: refs/heads/master
Commit: 923462e14a0c1bfdee38e289c917dea99c950d57
Parents: ee95ff1
Author: Josh Soref <js...@blackberry.com>
Authored: Mon Dec 9 17:00:13 2013 -0500
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:32 2013 -0800

----------------------------------------------------------------------
 src/metadata/amazon_fireos_parser.js | 2 +-
 src/metadata/blackberry10_parser.js  | 2 +-
 src/metadata/windows8_parser.js      | 2 +-
 src/metadata/wp7_parser.js           | 2 +-
 src/metadata/wp8_parser.js           | 2 +-
 src/platform.js                      | 2 +-
 src/plugin.js                        | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/923462e1/src/metadata/amazon_fireos_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/amazon_fireos_parser.js b/src/metadata/amazon_fireos_parser.js
index 4a6291f..2f1e2ab 100644
--- a/src/metadata/amazon_fireos_parser.js
+++ b/src/metadata/amazon_fireos_parser.js
@@ -71,7 +71,7 @@ module.exports.check_requirements = function(project_root) {
                 child_process.exec(cmd, function(err, output, stderr) {
                     events.emit('verbose', output + stderr);
                     if (err) {
-                        d2.reject(new Error('Error updating the Cordova library to work with your Android environment. Command run: "' + cmd + '", output: ' + output));
+                        d2.reject(new Error('Updating the Cordova library to work with your Android environment failed when running: "' + cmd + '", output: ' + output));
                     } else {
                         events.emit('log', 'Checking if ' + awv_interface + ' exists... in framework/libs folder');
                         var awv_interface_expected_path=path.join(framework_path,'libs');

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/923462e1/src/metadata/blackberry10_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/blackberry10_parser.js b/src/metadata/blackberry10_parser.js
index b5b8731..4ed280d 100644
--- a/src/metadata/blackberry10_parser.js
+++ b/src/metadata/blackberry10_parser.js
@@ -47,7 +47,7 @@ module.exports.check_requirements = function(project_root) {
     var d = Q.defer();
     child_process.exec("\"" + path.join(lib_path, 'bin', 'check_reqs') + "\"", function(err, output, stderr) {
         if (err) {
-            d.reject(new Error('Error while checking requirements: ' + output + stderr));
+            d.reject(new Error('Requirements check failed: ' + output + stderr));
         } else {
             d.resolve();
         }

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/923462e1/src/metadata/windows8_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/windows8_parser.js b/src/metadata/windows8_parser.js
index 194a654..e833d16 100644
--- a/src/metadata/windows8_parser.js
+++ b/src/metadata/windows8_parser.js
@@ -63,7 +63,7 @@ module.exports.check_requirements = function(project_root) {
     child_process.exec(command, function(err, output, stderr) {
         events.emit('verbose', output);
         if (err) {
-            d.reject(new Error('Error while checking requirements: ' + output + stderr));
+            d.reject(new Error('Requirements check failed: ' + output + stderr));
         } else {
             d.resolve();
         }

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/923462e1/src/metadata/wp7_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/wp7_parser.js b/src/metadata/wp7_parser.js
index 11a0016..2b441ed 100644
--- a/src/metadata/wp7_parser.js
+++ b/src/metadata/wp7_parser.js
@@ -59,7 +59,7 @@ module.exports.check_requirements = function(project_root) {
     child_process.exec(command, function(err, output, stderr) {
         events.emit('verbose', output+stderr);
         if (err) {
-            d.reject(new Error('Error while checking requirements: ' + output + stderr));
+            d.reject(new Error('Requirements check failed: ' + output + stderr));
         } else {
             d.resolve();
         }

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/923462e1/src/metadata/wp8_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/wp8_parser.js b/src/metadata/wp8_parser.js
index 6393759..163d56b 100644
--- a/src/metadata/wp8_parser.js
+++ b/src/metadata/wp8_parser.js
@@ -59,7 +59,7 @@ module.exports.check_requirements = function(project_root) {
     child_process.exec(command, function(err, output, stderr) {
         events.emit('verbose', output);
         if (err) {
-            d.reject(new Error('Error while checking requirements: ' + output + stderr));
+            d.reject(new Error('Requirements check failed: ' + output + stderr));
         } else {
             d.resolve();
         }

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/923462e1/src/platform.js
----------------------------------------------------------------------
diff --git a/src/platform.js b/src/platform.js
index 730e411..21a61b7 100644
--- a/src/platform.js
+++ b/src/platform.js
@@ -120,7 +120,7 @@ module.exports = function platform(command, targets) {
                     var d = Q.defer();
                     child_process.exec(script + ' "' + path.join(projectRoot, 'platforms', plat) + '"', function(err, stdout, stderr) {
                         if (err) {
-                            d.reject(new Error('Error running update script: ' + err + stderr));
+                            d.reject(new Error('Update script failed: ' + err + stderr));
                         } else {
                             events.emit('log', plat + ' updated to ' + platforms[plat].version);
                             d.resolve();

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/923462e1/src/plugin.js
----------------------------------------------------------------------
diff --git a/src/plugin.js b/src/plugin.js
index a0294d7..b1c0e4f 100644
--- a/src/plugin.js
+++ b/src/plugin.js
@@ -87,7 +87,7 @@ module.exports = function plugin(command, targets) {
                         return plugman.raw.fetch(target, pluginsDir, {})
                     })
                     .fail(function(err) {
-                        return Q.reject(new Error('Error fetching plugin: ' + err));
+                        return Q.reject(new Error('Fetching plugin failed: ' + err));
                     })
                     .then(function(dir) {
                         // Iterate (in serial!) over all platforms in the project and install the plugin.


[06/10] git commit: Document the new Ubuntu support

Posted by st...@apache.org.
Document the new Ubuntu support


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

Branch: refs/heads/master
Commit: 5c0b9152943d1e03fd9a1681d95871625f422059
Parents: 374d856
Author: David Barth <da...@canonical.com>
Authored: Fri Dec 6 16:10:22 2013 +0100
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:31 2013 -0800

----------------------------------------------------------------------
 README.md | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/5c0b9152/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index b40fe7f..16bea77 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,7 @@ Check out the [Getting Started guides](http://cordova.apache.org/docs/en/edge/gu
 - Android
 - BlackBerry 10
 - iOS
+- Ubuntu
 - Windows Phone 7 &amp; 8
 - Windows 8
 
@@ -77,6 +78,11 @@ Run the following commands:
 
 Now the `cordova` and `plugman` in your path are the local git versions. Don't forget to keep them up to date!
 
+## Installing on Ubuntu
+
+    apt-get install cordova-cli
+
+
 # Getting Started
 
 `cordova-cli` has a single global `create` command that creates new cordova projects into a specified directory. Once you create a project, `cd` into it and you can execute a variety of project-level commands. Completely inspired by git's interface.
@@ -290,3 +296,9 @@ Amazon Fire OS does not include the ability to emulate. You are still able to us
 - `prepare amazon-fireos`
 - `compile amazon-fireos`
 - `build amazon-fireos`
+
+## Ubuntu
+
+To produce a click package for a particular architecture it is necessary to run the cordova development environment on that architecture. In other words, to make a click package for an arhmf phone, the cordova toolchain needs to be installed and run on that same phone.
+
+A future release will let developers cross-compile armhf click packages directly from an x86 desktop.


[07/10] git commit: CB-5613 use throw Error to include stack information for -d

Posted by st...@apache.org.
CB-5613 use throw Error to include stack information for -d


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

Branch: refs/heads/master
Commit: c7a02e563f84b646e28fa4e811faaef76f7dd129
Parents: 6d241ff
Author: Josh Soref <js...@blackberry.com>
Authored: Mon Dec 9 15:48:46 2013 -0500
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:32 2013 -0800

----------------------------------------------------------------------
 src/config.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/c7a02e56/src/config.js
----------------------------------------------------------------------
diff --git a/src/config.js b/src/config.js
index 4f4916a..5f2836c 100644
--- a/src/config.js
+++ b/src/config.js
@@ -49,7 +49,7 @@ module.exports.read = function get_config(project_root) {
             JSHINT(data);
             var err = JSHINT.errors[0];
             if (err) {
-                throw 'Parsing "'+config_json+'" at line '+err.line+" col "+err.character+"; "+err.reason;
+                throw new Error('Parsing "'+config_json+'" at line '+err.line+" col "+err.character+"; "+err.reason);
             }
             throw e;
         }


[09/10] git commit: CB-5613 Never hide stack trace on uncaughtExceptions.

Posted by st...@apache.org.
CB-5613 Never hide stack trace on uncaughtExceptions.

Uncaught exceptions are bugs, so stack traces are always helpful.


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

Branch: refs/heads/master
Commit: ee95ff18eed1a3bc13ead6004c87c2df4e95d2bd
Parents: c7a02e5
Author: Andrew Grieve <ag...@chromium.org>
Authored: Mon Dec 9 20:45:46 2013 -0500
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:32 2013 -0800

----------------------------------------------------------------------
 src/cli.js | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/ee95ff18/src/cli.js
----------------------------------------------------------------------
diff --git a/src/cli.js b/src/cli.js
index ef3ba58..2916062 100755
--- a/src/cli.js
+++ b/src/cli.js
@@ -48,15 +48,6 @@ module.exports = function CLI(inputArgs) {
         },
         cmd;
 
-    // provide clean output on exceptions rather than dumping a stack trace
-    process.on('uncaughtException', function(err){
-        if (opts.verbose) {
-            console.error(err.stack);
-        } else {
-            console.error(err);
-        }
-        process.exit(1);
-    });
     cordova.on('results', console.log);
 
     if (!opts.silent) {


[02/10] git commit: CB-5499 added config_xml method to wp7 exports, and added tests for wp7+wp8

Posted by st...@apache.org.
CB-5499 added config_xml method to wp7 exports, and added tests for wp7+wp8


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

Branch: refs/heads/master
Commit: 0779679780639ebd2185bf5363f77df91eb2dc74
Parents: 34133e0
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Fri Dec 6 17:31:10 2013 -0800
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:31 2013 -0800

----------------------------------------------------------------------
 spec/metadata/wp7_parser.spec.js | 5 +++++
 spec/metadata/wp8_parser.spec.js | 5 +++++
 src/metadata/wp7_parser.js       | 3 +++
 3 files changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/07796797/spec/metadata/wp7_parser.spec.js
----------------------------------------------------------------------
diff --git a/spec/metadata/wp7_parser.spec.js b/spec/metadata/wp7_parser.spec.js
index bd31c03..6dc0695 100644
--- a/spec/metadata/wp7_parser.spec.js
+++ b/spec/metadata/wp7_parser.spec.js
@@ -181,6 +181,11 @@ describe('wp7 project parser', function() {
                 expect(p.staging_dir()).toEqual(path.join(wp7_proj, '.staging', 'www'));
             });
         });
+        describe('config_xml method', function() {
+            it('should return the location of the config.xml', function() {
+                expect(p.config_xml()).toEqual(path.join(wp7_proj, 'config.xml'));
+            });
+        });
         describe('update_www method', function() {
             var update_csproj;
             beforeEach(function() {

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/07796797/spec/metadata/wp8_parser.spec.js
----------------------------------------------------------------------
diff --git a/spec/metadata/wp8_parser.spec.js b/spec/metadata/wp8_parser.spec.js
index 9f50397..8cd1923 100644
--- a/spec/metadata/wp8_parser.spec.js
+++ b/spec/metadata/wp8_parser.spec.js
@@ -181,6 +181,11 @@ describe('wp8 project parser', function() {
                 expect(p.staging_dir()).toEqual(path.join(wp8_proj, '.staging', 'www'));
             });
         });
+        describe('config_xml method', function() {
+            it('should return the location of the config.xml', function() {
+                expect(p.config_xml()).toEqual(path.join(wp8_proj, 'config.xml'));
+            });
+        });
         describe('update_www method', function() {
             var update_csproj;
             beforeEach(function() {

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/07796797/src/metadata/wp7_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/wp7_parser.js b/src/metadata/wp7_parser.js
index 33fc756..11a0016 100644
--- a/src/metadata/wp7_parser.js
+++ b/src/metadata/wp7_parser.js
@@ -145,6 +145,9 @@ module.exports.prototype = {
     www_dir:function() {
         return path.join(this.wp7_proj_dir, 'www');
     },
+    config_xml:function() {
+        return this.config_path;
+    },
     // copy files from merges directory to actual www dir
     copy_merges:function(merges_sub_path) {
         var merges_path = path.join(util.appDir(util.isCordova(this.wp7_proj_dir)), 'merges', merges_sub_path);


[05/10] git commit: updated package.json to use the latest plugman

Posted by st...@apache.org.
updated package.json to use the latest plugman


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

Branch: refs/heads/master
Commit: 3c13327fc247dd3515b7eeab6d0231dfd42169f5
Parents: 5c0b915
Author: Steven Gill <st...@gmail.com>
Authored: Thu Dec 5 17:32:56 2013 -0800
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:31 2013 -0800

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


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/3c13327f/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 95af02e..62001a0 100644
--- a/package.json
+++ b/package.json
@@ -30,7 +30,7 @@
   "dependencies": {
     "colors": ">=0.6.0",
     "elementtree": "0.1.5",
-    "plugman": "0.15.x",
+    "plugman": "0.16.x",
     "plist": "0.4.x",
     "xcode": "0.6.2",
     "express": "3.0.0",


[10/10] git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/cordova-cli

Posted by st...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/cordova-cli


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

Branch: refs/heads/master
Commit: aa656e4a321deb9077cb32dd6b122b95bc469839
Parents: 923462e 8b764c3
Author: Steven Gill <st...@gmail.com>
Authored: Tue Dec 10 10:44:56 2013 -0800
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:56 2013 -0800

----------------------------------------------------------------------
 e2e/create.spec.js                      |   4 +-
 e2e/fixtures/hooks_bat/fail/fail.bat    |   2 +
 e2e/fixtures/hooks_bat/test/.dotted.bat |   2 +
 e2e/fixtures/hooks_bat/test/07.bat      |   3 +
 e2e/fixtures/hooks_bat/test/1.bat       |   5 +
 e2e/fixtures/hooks_sh/fail/fail.sh      |   1 +
 e2e/fixtures/hooks_sh/test/.dotted.sh   |   1 +
 e2e/fixtures/hooks_sh/test/07.sh        |   2 +
 e2e/fixtures/hooks_sh/test/1.sh         |   4 +
 e2e/helpers.js                          |   5 +-
 e2e/hooker.spec.js                      | 259 ++++++++++++++++++++++++++
 e2e/platform.spec.js                    |   2 +-
 e2e/plugin.spec.js                      |   4 +-
 package.json                            |   3 +-
 spec/fixtures/hooks/fail/fail.bat       |   2 -
 spec/fixtures/hooks/fail/fail.sh        |   1 -
 spec/fixtures/hooks/test/07.bat         |   2 -
 spec/fixtures/hooks/test/07.sh          |   1 -
 spec/fixtures/hooks/test/1.bat          |   2 -
 spec/fixtures/hooks/test/1.sh           |   1 -
 spec/hooker.spec.js                     | 264 ---------------------------
 src/hooker.js                           |  28 ++-
 22 files changed, 309 insertions(+), 289 deletions(-)
----------------------------------------------------------------------



[03/10] git commit: updated to 3.3.0-rc.1

Posted by st...@apache.org.
updated to 3.3.0-rc.1


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

Branch: refs/heads/master
Commit: 34133e01e25acc49fefedd4e3bde9e8b06c4df72
Parents: 3c13327
Author: Steven Gill <st...@gmail.com>
Authored: Fri Dec 6 13:18:53 2013 -0800
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Dec 10 10:44:31 2013 -0800

----------------------------------------------------------------------
 package.json |  2 +-
 platforms.js | 20 ++++++++++----------
 2 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/34133e01/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 62001a0..6c1c753 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova",
-  "version": "3.2.0-0.4.0",
+  "version": "3.3.0-rc.1",
   "preferGlobal": "true",
   "description": "Cordova command line interface tool",
   "main": "cordova",

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/34133e01/platforms.js
----------------------------------------------------------------------
diff --git a/platforms.js b/platforms.js
index be0e310..f1da782 100644
--- a/platforms.js
+++ b/platforms.js
@@ -21,54 +21,54 @@ module.exports = {
     'ios' : {
         parser : './src/metadata/ios_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git',
-        version: '3.2.0'
+        version: '3.3.0-rc1'
     }, 
     'android' : {
         parser : './src/metadata/android_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-android.git',
-        version: '3.2.0'
+        version: '3.3.0-rc1'
     }, 
     'ubuntu' : {
         parser : './src/metadata/ubuntu_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-ubuntu.git',
-        version: '3.2.0'
+        version: '3.3.0-rc1'
     }, 
      'amazon-fireos' : {
         parser : './src/metadata/amazon_fireos_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-amazon-fireos.git',
-        version: '3.2.0'
+        version: '3.3.0-rc1'
     },
     'wp7' : {
         parser : './src/metadata/wp7_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-wp8.git',
-        version: '3.2.0',
+        version: '3.3.0-rc1',
         subdirectory: 'wp7'
     },
     'wp8' : {
         parser : './src/metadata/wp8_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-wp8.git',
-        version: '3.2.0',
+        version: '3.3.0-rc1',
         subdirectory: 'wp8'
     },
     'blackberry10' : {
         parser : './src/metadata/blackberry10_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git',
-        version: '3.2.0',
+        version: '3.3.0-rc1',
         subdirectory: 'blackberry10'
     },
     'www':{
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-app-hello-world.git',
-        version: '3.2.0'
+        version: '3.3.0-rc1'
     },
     'firefoxos':{
         parser: './src/metadata/firefoxos_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-firefoxos.git',
-        version: '3.2.0'
+        version: '3.3.0-rc1'
     },
     'windows8':{
         parser: './src/metadata/windows8_parser',
         url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git',
-        version: '3.2.0',
+        version: '3.3.0-rc1',
         subdirectory: 'windows8'
     }
 };