You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2015/05/02 08:29:08 UTC

[1/2] cordova-windows git commit: Updating some text for win8 deprecation

Repository: cordova-windows
Updated Branches:
  refs/heads/master 973b45a72 -> 61057cf8f


Updating some text for win8 deprecation


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

Branch: refs/heads/master
Commit: a5df0775e8a18304b840e06b3da0078b4f676b07
Parents: 973b45a
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Mon Apr 13 11:27:06 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Mon Apr 13 11:27:06 2015 -0700

----------------------------------------------------------------------
 README.md                   | 4 +++-
 template/cordova/lib/run.js | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/a5df0775/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 9ebddb8..6845207 100644
--- a/README.md
+++ b/README.md
@@ -26,6 +26,8 @@ Apache Cordova for Windows
 
 Includes Windows universal app template to build [Apache Cordova](http://cordova.apache.org) applications that target Windows 8.0, Windows 8.1 and Windows Phone 8.1. An Apache Cordova based applications is, at the core, an application written with web technology: HTML, CSS and JavaScript.
 
+(Warning: Windows8 has been deprecated, please update your applications to target Windows 8.1)
+
 [Apache Cordova](http://cordova.apache.org) is a project of [The Apache Software Foundation (ASF)](http://apache.org)
 
 Requires
@@ -35,7 +37,7 @@ Requires
 
   Windows 8.1 along with [Visual Studio 2013 Express](http://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-windows-8).
 
-**To build for Windows 8.0 only**
+**To build for Windows 8.0 only (deprecated!)**
 
    Windows 8.0 or 8.1 along with [Visual Studio 2012 Express](http://www.visualstudio.com/downloads).
 

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/a5df0775/template/cordova/lib/run.js
----------------------------------------------------------------------
diff --git a/template/cordova/lib/run.js b/template/cordova/lib/run.js
index 3195793..57d2336 100644
--- a/template/cordova/lib/run.js
+++ b/template/cordova/lib/run.js
@@ -56,6 +56,7 @@ module.exports.run = function (argv) {
 
     // for win switch we should correctly handle 8.0 and 8.1 version as per configuration
     if (projectType == 'windows' && getWindowsTargetVersion() == '8.0') {
+        console.log("Warning: windows8 has been deprecated.  Please update you project to target windows8.1")
         projectType = 'windows80';
     }
 


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


[2/2] cordova-windows git commit: fixed the test I made fail

Posted by pu...@apache.org.
fixed the test I made fail


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

Branch: refs/heads/master
Commit: 61057cf8f3116d6a5a49225c70ce058caa53bdc8
Parents: a5df077
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Mon Apr 13 11:57:12 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Mon Apr 13 11:57:12 2015 -0700

----------------------------------------------------------------------
 template/cordova/lib/run.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/61057cf8/template/cordova/lib/run.js
----------------------------------------------------------------------
diff --git a/template/cordova/lib/run.js b/template/cordova/lib/run.js
index 57d2336..5445af5 100644
--- a/template/cordova/lib/run.js
+++ b/template/cordova/lib/run.js
@@ -56,7 +56,7 @@ module.exports.run = function (argv) {
 
     // for win switch we should correctly handle 8.0 and 8.1 version as per configuration
     if (projectType == 'windows' && getWindowsTargetVersion() == '8.0') {
-        console.log("Warning: windows8 has been deprecated.  Please update you project to target windows8.1")
+        console.log('Warning: windows8 has been deprecated.  Please update you project to target windows8.1');
         projectType = 'windows80';
     }
 


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