Repository: cordova-cli Updated Branches: refs/heads/master 0b86d3024 -> 8bc03dc00
CB-5875 Updated version and RELEASENOTES.md for 3.4.0-0.1.0 Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/8bc03dc0 Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/8bc03dc0 Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/8bc03dc0 Branch: refs/heads/master Commit: 8bc03dc00c7ca87d7fa0446ed364875e551db0c1 Parents: 0b86d30 Author: Steven Gill <[email protected]> Authored: Fri Feb 14 17:16:43 2014 -0800 Committer: Steven Gill <[email protected]> Committed: Fri Feb 14 17:16:43 2014 -0800 ---------------------------------------------------------------------- RELEASENOTES.md | 10 +++++++++- package.json | 2 +- platforms.js | 20 ++++++++++---------- 3 files changed, 20 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/8bc03dc0/RELEASENOTES.md ---------------------------------------------------------------------- diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 9dc72f1..f53c4c7 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,15 @@ --> # Cordova-cli Release Notes +## 3.4.0-0.1.0 (Feb 14, 2014) +* CB-5638 Clean-up: remove unreachable info case from function +* CB-5937 Add "platform check" command: Shows platforms that are out of date +* CB-5634 Minor refactoring + tests for Android's orientation preference. +* CB-5634 Set Android orientation from config.xml +* Upleveled amazon_fireos_parser. Making it at par with android_parser.js +* CB-5947 Throw when trying to create project inside custom www. +* CB-4153 Update help.txt about --source -> --copy-from + ## 3.3.1-0.3.1 (Jan 31, 2014) * CB-4153 Rename --source and --link flags to --copy-from and --link-to @@ -222,4 +231,3 @@ Important note: This version targets Cordova version 3.1.0-rc1. - Plugins are now installed serially across all installed platforms, rather than in parallel. This avoids race conditions in dependency installation. [CB-4184](https://issues.apache.org/jira/browse/CB-4184) - (WP8) All files from project www dir are now copied into the binary, not the top-level www. This means merges and plugin assets are correctly handled. - http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/8bc03dc0/package.json ---------------------------------------------------------------------- diff --git a/package.json b/package.json index 3131f49..ec48fdf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova", - "version": "3.4.0-rc.2", + "version": "3.4.0-0.1.0", "preferGlobal": "true", "description": "Cordova command line interface tool", "main": "cordova", http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/8bc03dc0/platforms.js ---------------------------------------------------------------------- diff --git a/platforms.js b/platforms.js index 2e23480..79f404a 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.4.0-rc1' + version: '3.4.0' }, 'android' : { parser : './src/metadata/android_parser', url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-android.git', - version: '3.4.0-rc1' + version: '3.4.0' }, 'ubuntu' : { parser : './src/metadata/ubuntu_parser', url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-ubuntu.git', - version: '3.4.0-rc1' + version: '3.4.0' }, 'amazon-fireos' : { parser : './src/metadata/amazon_fireos_parser', url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-amazon-fireos.git', - version: '3.4.0-rc1' + version: '3.4.0' }, 'wp7' : { parser : './src/metadata/wp7_parser', url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-wp8.git', - version: '3.4.0-rc1', + version: '3.4.0', subdirectory: 'wp7' }, 'wp8' : { parser : './src/metadata/wp8_parser', url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-wp8.git', - version: '3.4.0-rc1', + version: '3.4.0', subdirectory: 'wp8' }, 'blackberry10' : { parser : './src/metadata/blackberry10_parser', url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git', - version: '3.4.0-rc1', + version: '3.4.0', subdirectory: 'blackberry10' }, 'www':{ url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-app-hello-world.git', - version: '3.4.0-rc1' + version: '3.4.0' }, 'firefoxos':{ parser: './src/metadata/firefoxos_parser', url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-firefoxos.git', - version: '3.4.0-rc1' + version: '3.4.0' }, 'windows8':{ parser: './src/metadata/windows8_parser', url : 'https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git', - version: '3.4.0-rc1', + version: '3.4.0', subdirectory: 'windows8' } };
