[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2015-07-14 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14626318#comment-14626318
 ] 

ASF GitHub Bot commented on CB-6976:


Github user TimBarham commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/259#discussion_r34565570
  
--- Diff: cordova-lib/src/cordova/prepare.js ---
@@ -106,28 +106,29 @@ function prepare(options) {
 if (options.browserify) {
 plugman.prepare = require('../plugman/prepare-browserify');
 }
-plugman.prepare(platformPath, platform, plugins_dir, null, 
true, pluginInfoProvider);
-
-// Make sure that config changes for each existing plugin is 
in place
-var platformJson = PlatformJson.load(plugins_dir, platform);
-var munger = new PlatformMunger(platform, platformPath, 
plugins_dir, platformJson, pluginInfoProvider);
-munger.reapply_global_munge();
-munger.save_all();
-
-// Update platform config.xml based on top level config.xml
-var cfg = new ConfigParser(xml);
-var platform_cfg = new ConfigParser(parser.config_xml());
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), platform, true);
-
-// CB-6976 Windows Universal Apps. For smooth transition and 
to prevent mass api failures
-// we allow using windows8 tag for new windows platform
-if (platform == 'windows') {
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), 'windows8', true);
-}
-
-platform_cfg.write();
-
-return parser.update_project(cfg);
+var preparePromise =  plugman.prepare(platformPath, platform, 
plugins_dir, null, true, pluginInfoProvider);
+return Q(preparePromise).then(function () {   
--- End diff --

Yep, realized that eventually - sorry about that :smile:.

However, because ultimately the goal will be to replace the current prepare 
with browserify prepare , I'd prefer to keep this code simple and consistent 
with how browserify prepare works, and modify the `plugman.prepare` to return a 
promise. Then when the regular prepare goes away, we won't be left with 
unnecessary complexity here.


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2015-07-14 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14626205#comment-14626205
 ] 

ASF GitHub Bot commented on CB-6976:


Github user giuseppelt commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/259#discussion_r34558047
  
--- Diff: cordova-lib/src/cordova/prepare.js ---
@@ -106,28 +106,29 @@ function prepare(options) {
 if (options.browserify) {
 plugman.prepare = require('../plugman/prepare-browserify');
 }
-plugman.prepare(platformPath, platform, plugins_dir, null, 
true, pluginInfoProvider);
-
-// Make sure that config changes for each existing plugin is 
in place
-var platformJson = PlatformJson.load(plugins_dir, platform);
-var munger = new PlatformMunger(platform, platformPath, 
plugins_dir, platformJson, pluginInfoProvider);
-munger.reapply_global_munge();
-munger.save_all();
-
-// Update platform config.xml based on top level config.xml
-var cfg = new ConfigParser(xml);
-var platform_cfg = new ConfigParser(parser.config_xml());
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), platform, true);
-
-// CB-6976 Windows Universal Apps. For smooth transition and 
to prevent mass api failures
-// we allow using windows8 tag for new windows platform
-if (platform == 'windows') {
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), 'windows8', true);
-}
-
-platform_cfg.write();
-
-return parser.update_project(cfg);
+var preparePromise =  plugman.prepare(platformPath, platform, 
plugins_dir, null, true, pluginInfoProvider);
+return Q(preparePromise).then(function () {   
--- End diff --

I used Q, because I checked the standard plugman prepare, and it doesn't 
return a promise. Instead browserify prepare returns a promise. 
So, to avoid the edit of the standard prepare to add a last line of 'return 
q.resolve', I decided to wrap with Q to handle "to promise or to not promise" 
business.


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2015-07-14 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14626203#comment-14626203
 ] 

ASF GitHub Bot commented on CB-6976:


Github user TimBarham commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/259#discussion_r34557772
  
--- Diff: cordova-lib/src/cordova/prepare.js ---
@@ -106,28 +106,29 @@ function prepare(options) {
 if (options.browserify) {
 plugman.prepare = require('../plugman/prepare-browserify');
 }
-plugman.prepare(platformPath, platform, plugins_dir, null, 
true, pluginInfoProvider);
-
-// Make sure that config changes for each existing plugin is 
in place
-var platformJson = PlatformJson.load(plugins_dir, platform);
-var munger = new PlatformMunger(platform, platformPath, 
plugins_dir, platformJson, pluginInfoProvider);
-munger.reapply_global_munge();
-munger.save_all();
-
-// Update platform config.xml based on top level config.xml
-var cfg = new ConfigParser(xml);
-var platform_cfg = new ConfigParser(parser.config_xml());
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), platform, true);
-
-// CB-6976 Windows Universal Apps. For smooth transition and 
to prevent mass api failures
-// we allow using windows8 tag for new windows platform
-if (platform == 'windows') {
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), 'windows8', true);
-}
-
-platform_cfg.write();
-
-return parser.update_project(cfg);
+var preparePromise =  plugman.prepare(platformPath, platform, 
plugins_dir, null, true, pluginInfoProvider);
+return Q(preparePromise).then(function () {   
--- End diff --

Oh, that's right. My bad. I had looked at this previously and forgot that I 
had updated `plugman.prepare()` to `return Q()` so I could use the simpler 
logic here.


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2015-07-14 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14626199#comment-14626199
 ] 

ASF GitHub Bot commented on CB-6976:


Github user vladimir-kotikov commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/259#discussion_r34557461
  
--- Diff: cordova-lib/src/cordova/prepare.js ---
@@ -106,28 +106,29 @@ function prepare(options) {
 if (options.browserify) {
 plugman.prepare = require('../plugman/prepare-browserify');
 }
-plugman.prepare(platformPath, platform, plugins_dir, null, 
true, pluginInfoProvider);
-
-// Make sure that config changes for each existing plugin is 
in place
-var platformJson = PlatformJson.load(plugins_dir, platform);
-var munger = new PlatformMunger(platform, platformPath, 
plugins_dir, platformJson, pluginInfoProvider);
-munger.reapply_global_munge();
-munger.save_all();
-
-// Update platform config.xml based on top level config.xml
-var cfg = new ConfigParser(xml);
-var platform_cfg = new ConfigParser(parser.config_xml());
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), platform, true);
-
-// CB-6976 Windows Universal Apps. For smooth transition and 
to prevent mass api failures
-// we allow using windows8 tag for new windows platform
-if (platform == 'windows') {
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), 'windows8', true);
-}
-
-platform_cfg.write();
-
-return parser.update_project(cfg);
+var preparePromise =  plugman.prepare(platformPath, platform, 
plugins_dir, null, true, pluginInfoProvider);
+return Q(preparePromise).then(function () {   
--- End diff --

Actually `plugman.prepare` doesn't return promise, but `prepare-browserify` 
does. To handle both of them we need to wrap call into promise forcibly.


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2015-07-14 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14626191#comment-14626191
 ] 

ASF GitHub Bot commented on CB-6976:


Github user TimBarham commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/259#discussion_r34556418
  
--- Diff: cordova-lib/src/cordova/prepare.js ---
@@ -106,28 +106,29 @@ function prepare(options) {
 if (options.browserify) {
 plugman.prepare = require('../plugman/prepare-browserify');
 }
-plugman.prepare(platformPath, platform, plugins_dir, null, 
true, pluginInfoProvider);
-
-// Make sure that config changes for each existing plugin is 
in place
-var platformJson = PlatformJson.load(plugins_dir, platform);
-var munger = new PlatformMunger(platform, platformPath, 
plugins_dir, platformJson, pluginInfoProvider);
-munger.reapply_global_munge();
-munger.save_all();
-
-// Update platform config.xml based on top level config.xml
-var cfg = new ConfigParser(xml);
-var platform_cfg = new ConfigParser(parser.config_xml());
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), platform, true);
-
-// CB-6976 Windows Universal Apps. For smooth transition and 
to prevent mass api failures
-// we allow using windows8 tag for new windows platform
-if (platform == 'windows') {
-exports._mergeXml(cfg.doc.getroot(), 
platform_cfg.doc.getroot(), 'windows8', true);
-}
-
-platform_cfg.write();
-
-return parser.update_project(cfg);
+var preparePromise =  plugman.prepare(platformPath, platform, 
plugins_dir, null, true, pluginInfoProvider);
+return Q(preparePromise).then(function () {   
--- End diff --

Since plugman.prepare() returns a promise, you should just be able to do 
this:

```js
return plugman.prepare(platformPath, platform, plugins_dir, null, true, 
pluginInfoProvider)
.then(function () {
```




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-09-02 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14119150#comment-14119150
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 59f7fc36138dc6995fdeb3841ea19912d722e092 in cordova-docs's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=59f7fc3 ]

CB-6976 Windows Universal apps


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-09-02 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14119151#comment-14119151
 ] 

ASF GitHub Bot commented on CB-6976:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-docs/pull/229


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-08-29 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14115029#comment-14115029
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

https://github.com/apache/cordova-docs/pull/229

CB-6976 Windows Universal apps

Updates documentation as per introducing new universal windows platform.

https://issues.apache.org/jira/browse/CB-6976

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-docs CB-6976-win81

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-docs/pull/229.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #229


commit 59f7fc36138dc6995fdeb3841ea19912d722e092
Author: sgrebnov 
Date:   2014-08-19T13:47:25Z

CB-6976 Windows Universal apps




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-08-15 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14098996#comment-14098996
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 735f92970431ffca015518611cd8c6b37fe09385 in cordova-windows's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=735f929 ]

CB-6976 Changes switch name from '--store' to '--win'


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-08-15 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14098997#comment-14098997
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit bdc4af329c02658ed989b3e9b4013f81c3626cd6 in cordova-windows's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=bdc4af3 ]

CB-6976 Reflect new switch name to project structure

For consistence reason.

1. Produce correct artefact names: Windows instead of Store
before: CordovaApp.Store_0.0.1.0_anycpu_debug
after: CordovaApp.Windows_0.0.1.0_anycpu_debug

2. Use  instead of  suffix for file names to be consistent with 
terminology used in config.xml and command line switch and be more 
understanable for developers


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-16 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14063946#comment-14063946
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov closed the pull request at:

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


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-16 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14063945#comment-14063945
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov commented on the pull request:

https://github.com/apache/cordova-cli/pull/183#issuecomment-49213003
  
Not actual anymore, closing...


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-16 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14063935#comment-14063935
 ] 

ASF GitHub Bot commented on CB-6976:


Github user purplecabbage commented on the pull request:

https://github.com/apache/cordova-cli/pull/183#issuecomment-49211973
  
Is this still relevant? Was this just reverted in the 3.5.0 branch?


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-15 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14062743#comment-14062743
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit bbfeb73052f98ab1be3d9b4ebaeb9001c21c05b2 in cordova-js's branch 
refs/heads/master from [~purplecabbage]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-js.git;h=bbfeb73 ]

Merge branch 'CB-6976-win-universal-apps' of 
https://github.com/MSOpenTech/cordova-js


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-15 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14062746#comment-14062746
 ] 

ASF GitHub Bot commented on CB-6976:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-js/pull/74


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-15 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14062742#comment-14062742
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit cd084de7fdf514b554a841be83f15579363fce18 in cordova-js's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-js.git;h=cd084de ]

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-14 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14060417#comment-14060417
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

https://github.com/apache/cordova-js/pull/74

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

https://github.com/apache/cordova-lib/pull/39

* The following two definitions are duplicated for 'windows' platform for 
backward compatibility with current plugins which could rely on old mechanism 
based on windows8/commandProxy

"cordova/windows8/commandProxy"
"cordova/windows/commandProxy"

* windows8 folder and corresponding gruntfile setting must be removed after 
3.6.0 release

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-js 
CB-6976-win-universal-apps

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-js/pull/74.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #74


commit cd084de7fdf514b554a841be83f15579363fce18
Author: sgrebnov 
Date:   2014-07-14T07:50:36Z

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-09 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14055940#comment-14055940
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov commented on the pull request:

https://github.com/apache/cordova-lib/pull/43#issuecomment-48437032
  
It was cherry picked to rb_0.21.6 so is not required to be in master 
anymore. Closing...


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-09 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14055941#comment-14055941
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov closed the pull request at:

https://github.com/apache/cordova-lib/pull/43


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-08 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14055710#comment-14055710
 ] 

ASF GitHub Bot commented on CB-6976:


Github user purplecabbage commented on the pull request:

https://github.com/apache/cordova-lib/pull/43#issuecomment-48417048
  
Is this still valid Sergey? @sgrebnov 


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-07-04 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14052540#comment-14052540
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 9fc79fd5f9d3d2f03493880de336bd00694edaaa in cordova-windows's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=9fc79fd ]

CB-6976 support for new splash screen and icon images


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-27 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14046047#comment-14046047
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 17c7465f19a37902cce44ea63b8595d12bdab2bc in cordova-lib's branch 
refs/heads/rb_0.21.6 from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=17c7465 ]

Reverted commit e6923ac CB-6976 Add support for Windows Universal apps (Windows 
8.1 and WP 8.1)


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-27 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14046044#comment-14046044
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 9ec93efb57c884cb721eadd5608be7e7bbd02edf in cordova-cli's branch 
refs/heads/rb_3.5.0-0.2.6 from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=9ec93ef ]

Reverted commit 4de816d CB-6976 Add support for Windows Universal apps (Windows 
8.1 and WP 8.1)


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-27 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14045828#comment-14045828
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

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

Reverts CB-6976 Add support for Windows Universal apps

Requires to not break upcoming CLI and LIB release. This will be added back 
and released along with of 3.6.0.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-cli master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-cli/pull/183.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #183


commit 6f814335ae086b6f18cdf3a419217684ec4d7db1
Author: sgrebnov 
Date:   2014-06-27T06:33:40Z

Reverted commit 4de816d CB-6976 Add support for Windows Universal apps 
(Windows 8.1 and WP 8.1)




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-27 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14045826#comment-14045826
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

https://github.com/apache/cordova-lib/pull/43

Reverts CB-6976 Add support for Windows Universal apps



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-lib master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-lib/pull/43.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #43


commit 2ec9eb343f1a9cecfcdbd13ac6f5cead01df87d0
Author: sgrebnov 
Date:   2014-06-27T07:30:19Z

Reverted commit e6923ac CB-6976 Add support for Windows Universal apps 
(Windows 8.1 and WP 8.1)




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-27 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14045723#comment-14045723
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit b3a9d0824a7a7c018ffe60b2192ff090a74e5f17 in cordova-windows's branch 
refs/heads/master from [~vladimir.kotikov]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=b3a9d08 ]

CB-6976 fixes deploy error when --nobuild option specified


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-26 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14045599#comment-14045599
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov closed the pull request at:

https://github.com/apache/cordova-lib/pull/41


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-26 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14045600#comment-14045600
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov closed the pull request at:

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


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-26 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14044510#comment-14044510
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

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

disables CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 
8.1)

We should not include this functionality until new Windows platform is 
released. It is better to enable this for 3.6.0 release. This also guaranties 
nothing is broken with Windows8 platform after this Tools Release.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-cli patch-3.5.0-0.2.6

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-cli/pull/182.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #182


commit b3a0028b737733d5316210289c05c132d6955b2c
Author: sgrebnov 
Date:   2014-06-26T09:14:37Z

disables CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 
8.1)




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-26 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14044509#comment-14044509
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

https://github.com/apache/cordova-lib/pull/41

disables CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 
8.1)

We should not include this functionality until new Windows platform is 
released. It is better to enable this for 3.6.0 release. This also guaranties 
nothing is broken with Windows8 platform after this Tools Release.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-lib patch-3.5.0-0.2.6

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-lib/pull/41.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #41


commit c6e624938420580cca9765e8b7f1a25c6b25ef13
Author: sgrebnov 
Date:   2014-06-26T09:11:50Z

disables CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 
8.1)




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-26 Thread Sergey Grebnov (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14044421#comment-14044421
 ] 

Sergey Grebnov commented on CB-6976:


I see exactly the same error if I use Windows Phone Application Deployment tool.

This happens if there is already installed app with the same Identity/Name (we 
take this from config.xml), but different PhoneProductId (guid, generated 
dynamically when adding windows platform).






> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-26 Thread Sergey Grebnov (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14044420#comment-14044420
 ] 

Sergey Grebnov commented on CB-6976:


New issue found when deploying WP8.1 target on rreal device

Use latest cordova from git

deploy to a wp8.1 device with "cordova run windows -- --phone --device"

I get the following error each time.

Error message:
Deploying to device ...
Appropriate package found at 
E:\temp\350\phone2\platforms\windows\AppPackages\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug_Test
"C:\Program Files (x86)\Microsoft SDKs\Windows 
Phone\v8.1\Tools\AppDeploy\AppDeployCmd.exe" /install 
"E:\temp\350\phone2\platforms\windows\AppPackages\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug_Test\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug.appx"
 /targetdevice:de

Error: Install failed. Please contact your software vendor.


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-25 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14044076#comment-14044076
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 69a2c2f231c07f34a3d6a295fda84375bf18c381 in cordova-windows's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=69a2c2f ]

CB-6976 replaces new template icons and splash screens


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-25 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14044004#comment-14044004
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 78c28f5cad5f346ffa605ddfc69a78fae6717885 in cordova-windows's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=78c28f5 ]

CB-6976 fixes deploy error on WP8.1 emulator


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-25 Thread Sergey Grebnov (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14043995#comment-14043995
 ] 

Sergey Grebnov commented on CB-6976:


The following issue was found when running on Windows Phone emulator if it is 
not started

I am getting an error now when I try to deploy to the windowsphone 8.1 emulator 
though, the emulator starts, but the app doesn’t launch

cordova run windows -- --phone

If I copy/paste the highlighted text below and run it directly in the command 
prompt the app launches as expected.

error info:

  Your package has been successfully created.
  CordovaApp.Phone -> 
E:\temp\edge\wintest7\platforms\windows\AppPackages\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug_Test\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug.appx
  CordovaApp.Phone -> 
E:\temp\edge\wintest7\platforms\windows\AppPackages\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug.appxupload

SUCCESS

WARNING: [ --target= | --emulator | --device ] not specified, defaulting to
--emulator
Deploying to emulator ...
### project type: phone
Appropriate package found at 
E:\temp\edge\wintest7\platforms\windows\AppPackages\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug_Test
"C:\Program Files (x86)\Microsoft SDKs\Windows 
Phone\v8.1\Tools\AppDeploy\AppDeployCmd.exe" /installlaunch 
"E:\temp\edge\wintest7\platforms\windows\AppPackages\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug_Test\CordovaApp.Phone_0.0.1.0_AnyCPU_Debug.appx"
 /targetdevice:xd

AppDeployCmd - Help

Syntax:
AppDeployCmd.exe   


   - Specifies the command to be executed (one of the following)
/install  - installs the application on the device.
(requires package filename)

/installlaunch- installs and launches the application on the device.
(requires package filename)
/update   - updates the application already installed on device.
(requires package filename)
/updatelaunch - updates and launches the application already installed o
n device.
(requires package filename)
/launch   - launches the application already installed on the device
.
(requires product-id)
/uninstall- uninstalls the application from the device.
(requires product-id)
/EnumerateDevices - lists the valid device targets along with the
   device index for each device.

   - Specifies the GUID of the product. This is located in
 AppxManifest.xml for APPX projects
 or WMAppManifest.xml for XAP projects.

   - Specifies the full path of the app to be installed or updated
.

   - Specifies the target device (one of the following):
xd- default emulator
de- Windows Phone device connected to the desktop
n - device listed at index n. To get the list of devices
use the following command:
"AppDeployCmd.exe /EnumerateDevices"

   - forces an install to internal storage or to SD ca
rd storage.
   Only valid with /install and /installlaunch.

Examples: (assuming product id is f8ce6878-0aeb-497f-bcf4-65be961d4bba
  and FilePath is D:\PhoneApp1.xap or D:\PhoneApp2.appx)

AppDeployCmd.exe  /install D:\PhoneApp2.appx /targetdevice:xd
  - installs PhoneApp1 on the default emulator.

AppDeployCmd.exe  /installlaunch D:\PhoneApp1.xap /targetdevice:xd
  - installs PhoneApp1 on the default emulator and then launches it.

AppDeployCmd.exe  /launch f8ce6878-0aeb-497f-bcf4-65be961d4bba /targetdevice:de

  - launches the app with specified product id on the device.

AppDeployCmd.exe  /update D:\PhoneApp1.xap /targetdevice:2
  - updates PhoneApp1 already installed on the device
specified by device index 2. To get the list of valid indices use
the EnumerateDevices command.

AppDeployCmd.exe  /updatelaunch D:\PhoneApp2.appx /targetdevice:de
 - updates PhoneApp1 already installed on the device and then launches it.

AppDeployCmd.exe  /uninstall f8ce6878-0aeb-497f-bcf4-65be961d4bba /targetdevice:
xd
  - uninstalls the app with specified product id from the default emulator.

AppDeployCmd.exe  /EnumerateDevices
  - enumerates the list of valid device targets along with the
corresponding device index for each device.


Error: The parameter is incorrect.


Error: E:\temp\edge\wintest7\platforms\windows\cordova\run.bat: Command failed 
with exit code 2
at ChildProcess.whenDone 
(e:\cordova\cordova-lib\cordova-lib\src\cordova\superspawn.js:135:23)
at ChildProcess.EventEmitter.emit (events.js:98:17)
at maybeClose (child_process.js:753:16)
at Process.ChildProcess._handle.onexit (child_process.js:820:5)

E:\temp\edge\wintest7>


The deploy error to windows emulator is only happening when the emulator is 

[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-25 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14043220#comment-14043220
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit bfe1f0e2a0f9855e7b57746095f68deceec56619 in cordova-windows's branch 
refs/heads/master from [~vladimir.kotikov]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=bfe1f0e ]

CB-6976 fixes run/emulate error when it runs for the first time


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-24 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14042583#comment-14042583
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 7419a098388b1c8be02d56ffc238c6db50d9a3bb in cordova-windows's branch 
refs/heads/master from an-selm
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=7419a09 ]

CB-6976 fixes deploy when target type is not specified

We currently support --phone, --store and --store80, for example 'cordova 
emulate windows -- --phone'


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-23 Thread Sergey Grebnov (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14041253#comment-14041253
 ] 

Sergey Grebnov commented on CB-6976:


The following steps could be used for testing

1.  Build/run/emulate of old windows8 template
cordova platform add windows8
npm update cordova
cordova build/run/emulate windows8
cordova build/run/emulate windows <- new alias is available

2.  Cordova build in functionality to upgrade platform
cordova platform update windows8
cordova build/run/emulate windows <- windows8 alias could be used as well
cordova emulate windows -- --phone <- windows8 alias could be used as well

3.  Creating new windows platform from scratch
cordova platform rm windows8 <- delete if already exists
cordova platform add window
cordova emulate windows -- --store80


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-23 Thread Sergey Grebnov (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14040757#comment-14040757
 ] 

Sergey Grebnov commented on CB-6976:


TODO: update documentation

> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14040647#comment-14040647
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 63c6b350c5eedd2779761c2bf2227323e6cb4f60 in cordova-lib's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=63c6b35 ]

CB-6976 Corrected snapshot urls for windows


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-22 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14040198#comment-14040198
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/39#discussion_r14055725
  
--- Diff: cordova-lib/src/cordova/platforms.js ---
@@ -69,10 +69,17 @@ module.exports = {
 },
 'windows8':{
 hostos : ['win32'],
-parser: './metadata/windows8_parser',
-url: 
'https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git',
-version: '3.5.0',
-subdirectory: 'windows8'
+parser: './metadata/windows_parser',
+url: 
'http://github.com/MSOpenTech/cordova-windows/archive/win81.tar.gz',
--- End diff --

TODO: must be updated with correct url


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-22 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14040199#comment-14040199
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/39#discussion_r14055726
  
--- Diff: cordova-lib/src/cordova/platforms.js ---
@@ -69,10 +69,17 @@ module.exports = {
 },
 'windows8':{
 hostos : ['win32'],
-parser: './metadata/windows8_parser',
-url: 
'https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git',
-version: '3.5.0',
-subdirectory: 'windows8'
+parser: './metadata/windows_parser',
+url: 
'http://github.com/MSOpenTech/cordova-windows/archive/win81.tar.gz',
+version: '3.6.0',
+subdirectory: 'windows'
+},
+'windows':{
+hostos : ['win32'],
+parser: './metadata/windows_parser',
+url: 
'http://github.com/MSOpenTech/cordova-windows/archive/win81.tar.gz',
--- End diff --

TODO: must be updated with correct url


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-22 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14040197#comment-14040197
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/39#discussion_r14055722
  
--- Diff: cordova-lib/src/cordova/lazy_load.js ---
@@ -75,6 +75,10 @@ function cordova_git(platform) {
 }
 
 var url = platforms[platform].url + ';a=snapshot;h=' + 
platforms[platform].version + ';sf=tgz';
+var url = platforms[platform].url + ';a=snapshot;h=' + 
platforms[platform].version + ';sf=tgz';
+if (platform == 'windows' || platform == 'windows8') {
--- End diff --

TODO: remove this since the code has landed  to apache repo


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-22 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14040196#comment-14040196
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov commented on the pull request:

https://github.com/apache/cordova-cli/pull/181#issuecomment-46787820
  
@kamrik, @purplecabbage thx for review and notes


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-22 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14040195#comment-14040195
 ] 

ASF GitHub Bot commented on CB-6976:


Github user sgrebnov commented on a diff in the pull request:

https://github.com/apache/cordova-cli/pull/181#discussion_r14055705
  
--- Diff: src/cli.js ---
@@ -165,6 +165,20 @@ function cli(inputArgs) {
 throw new CordovaError(msg)
 }
 
+// CB-6976 Windows Universal Apps. Allow mixing windows and 
windows8 aliases
+opts.platforms = opts.platforms.map(function(platform) {
+// allow using old windows8 alias for new unified windows 
platform
+if (platform == 'windows8' && 
require('fs').existsSync('platforms/windows')) {
--- End diff --

Will be updated, thx @kamrik! 


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039622#comment-14039622
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 4de816dd5f9454f35ea75b8667fe55c4b8868483 in cordova-cli's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=4de816d ]

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039623#comment-14039623
 ] 

ASF GitHub Bot commented on CB-6976:


Github user asfgit closed the pull request at:

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


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039607#comment-14039607
 ] 

ASF GitHub Bot commented on CB-6976:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-lib/pull/39


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039605#comment-14039605
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 7ed25a53a793a2af3ff3bc51799ef65fa302a643 in cordova-lib's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=7ed25a5 ]

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039089#comment-14039089
 ] 

ASF subversion and git services commented on CB-6976:
-

Commit 29d15d6ef847d430747a7abdd9ed7c95d0289f85 in cordova-windows's branch 
refs/heads/master from sgrebnov
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=29d15d6 ]

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039091#comment-14039091
 ] 

ASF GitHub Bot commented on CB-6976:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-windows/pull/35


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039050#comment-14039050
 ] 

ASF GitHub Bot commented on CB-6976:


Github user purplecabbage commented on a diff in the pull request:

https://github.com/apache/cordova-cli/pull/181#discussion_r14030680
  
--- Diff: src/cli.js ---
@@ -165,6 +165,20 @@ function cli(inputArgs) {
 throw new CordovaError(msg)
 }
 
+// CB-6976 Windows Universal Apps. Allow mixing windows and 
windows8 aliases
+opts.platforms = opts.platforms.map(function(platform) {
+// allow using old windows8 alias for new unified windows 
platform
+if (platform == 'windows8' && 
require('fs').existsSync('platforms/windows')) {
+return 'windows';
+} 
+// allow using new windows alias for old windows8 platform
+if (platform == 'windows' && 
!require('fs').existsSync('platforms/windows') 
+&& require('fs').existsSync('platforms/windows8')) {
+return 'windows8';
--- End diff --

Discussion is here.
http://markmail.org/message/v5pul7xqzp5ndnto


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039034#comment-14039034
 ] 

ASF GitHub Bot commented on CB-6976:


Github user purplecabbage commented on a diff in the pull request:

https://github.com/apache/cordova-cli/pull/181#discussion_r14030140
  
--- Diff: src/cli.js ---
@@ -165,6 +165,20 @@ function cli(inputArgs) {
 throw new CordovaError(msg)
 }
 
+// CB-6976 Windows Universal Apps. Allow mixing windows and 
windows8 aliases
+opts.platforms = opts.platforms.map(function(platform) {
+// allow using old windows8 alias for new unified windows 
platform
--- End diff --

That is fine, and already discussed and decided. 


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039022#comment-14039022
 ] 

ASF GitHub Bot commented on CB-6976:


Github user kamrik commented on a diff in the pull request:

https://github.com/apache/cordova-cli/pull/181#discussion_r14029634
  
--- Diff: src/cli.js ---
@@ -165,6 +165,20 @@ function cli(inputArgs) {
 throw new CordovaError(msg)
 }
 
+// CB-6976 Windows Universal Apps. Allow mixing windows and 
windows8 aliases
+opts.platforms = opts.platforms.map(function(platform) {
+// allow using old windows8 alias for new unified windows 
platform
--- End diff --

Do we really want to allow that? Sounds like it's better to warn here and 
ask to stop using the windows8 alias. If they already know about the unified 
platform and even added it, why would they use the windows8 alias? And if they 
do out of habit, why would we encourage that?


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039017#comment-14039017
 ] 

ASF GitHub Bot commented on CB-6976:


Github user kamrik commented on a diff in the pull request:

https://github.com/apache/cordova-cli/pull/181#discussion_r14029489
  
--- Diff: src/cli.js ---
@@ -165,6 +165,20 @@ function cli(inputArgs) {
 throw new CordovaError(msg)
 }
 
+// CB-6976 Windows Universal Apps. Allow mixing windows and 
windows8 aliases
+opts.platforms = opts.platforms.map(function(platform) {
+// allow using old windows8 alias for new unified windows 
platform
+if (platform == 'windows8' && 
require('fs').existsSync('platforms/windows')) {
+return 'windows';
+} 
+// allow using new windows alias for old windows8 platform
+if (platform == 'windows' && 
!require('fs').existsSync('platforms/windows') 
+&& require('fs').existsSync('platforms/windows8')) {
+return 'windows8';
--- End diff --

Looks like this makes it impossible to use whatever is in platforms/windows.
Both widows and windows8 platforms passed to the cli will refer to 
platforms/windows8
Is this the intent?


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039015#comment-14039015
 ] 

ASF GitHub Bot commented on CB-6976:


Github user kamrik commented on a diff in the pull request:

https://github.com/apache/cordova-cli/pull/181#discussion_r14029357
  
--- Diff: src/cli.js ---
@@ -165,6 +165,20 @@ function cli(inputArgs) {
 throw new CordovaError(msg)
 }
 
+// CB-6976 Windows Universal Apps. Allow mixing windows and 
windows8 aliases
+opts.platforms = opts.platforms.map(function(platform) {
+// allow using old windows8 alias for new unified windows 
platform
+if (platform == 'windows8' && 
require('fs').existsSync('platforms/windows')) {
--- End diff --

please, require('fs') at the top of the file.


> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14038769#comment-14038769
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

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

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

https://issues.apache.org/jira/browse/CB-6976

* Allow using new windows alias to work with old windows8 platform
* Allow using old windows8 alias to work with new windows universal apps

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-cli win81

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-cli/pull/181.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #181


commit 4de816dd5f9454f35ea75b8667fe55c4b8868483
Author: sgrebnov 
Date:   2014-06-20T13:17:45Z

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14038762#comment-14038762
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

https://github.com/apache/cordova-lib/pull/39

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

https://issues.apache.org/jira/browse/CB-6976

* Added new windows platform
* New platform can detect and correctly build both old Windows8 and new 
Windows project templates
* To have existing plugins working and for smooth transition added logic to 
re-use windows8 configuration settings (plugin.xml, config.xml).

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-lib win81

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-lib/pull/39.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #39


commit 7ed25a53a793a2af3ff3bc51799ef65fa302a643
Author: sgrebnov 
Date:   2014-06-20T12:53:45Z

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6976) Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

2014-06-20 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14038717#comment-14038717
 ] 

ASF GitHub Bot commented on CB-6976:


GitHub user sgrebnov opened a pull request:

https://github.com/apache/cordova-windows/pull/35

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)

https://issues.apache.org/jira/browse/CB-6976

* Renamed windows8 platform to windows. 
* Windows platform can build apps for Windows 8, Windows 8.1 and Windows 
Phone 8.1 (project is now based on Windows Universal app template).
* There is separate solution just for Windows 8.0 to be able to build 
platform using Visual Studio 2012 (build script automatically handles this 
case).
* Update script can update existing windows8 template a new one (cordova 
platform update windows8).

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-windows win81

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-windows/pull/35.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #35


commit 29d15d6ef847d430747a7abdd9ed7c95d0289f85
Author: sgrebnov 
Date:   2014-06-20T11:38:19Z

CB-6976 Add support for Windows Universal apps (Windows 8.1 and WP 8.1)




> Add support for Windows Universal apps (Windows 8.1 and WP 8.1)
> ---
>
> Key: CB-6976
> URL: https://issues.apache.org/jira/browse/CB-6976
> Project: Apache Cordova
>  Issue Type: New Feature
>Reporter: Sergey Grebnov
>Assignee: Sergey Grebnov
>
> Creating this as a new JIRA feature since this is different from previously 
> proposed adding support for Windows 8.1 only.
> This feature proposes transforming 'windows8' to 'windows' platform which is 
> based on Windows Universal apps and which allows building apps for Windows 8, 
> Windows 8.1 and Windows Phone 8.1. Window Phone 8 (wp8) stays as a platform. 
> Original info from dev mail thread:
> With Windows 8.1 and Windows Phone 8.1 platforms released, it would be great 
> to get Cordova support building apps for those platforms too. A lot of people 
> on this list have also been talking about how to adapt existing apps to the 
> new 8.1 platforms. Here is an initial proposal and prototype of how it may 
> look. 
> TL;DR; - Rename windows8 platform to be called windows. This platform can 
> build apps for Windows 8, Windows 8.1 and Windows Phone 8.1. Window Phone 8 
> (wp8) stays as a platform. 
> Link to the document - 
> https://onedrive.live.com/redir?resid=DEA20E6DC28C96DD!2781&authkey=!APz1za6lnJhsaaQ&ithint=file%2c.docx
> For more details, see "Support for Windows Universal apps (Windows 8.1 and 
> Windows Phone 8.1)" dev email thread
> TODO: add Windows 8.1 and WP8.1 components.



--
This message was sent by Atlassian JIRA
(v6.2#6252)