You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/10/26 17:44:17 UTC

[1/2] docs commit: CB-12031 Add windows@4.4.3 release blog post

Repository: cordova-docs
Updated Branches:
  refs/heads/master cd16bb4b5 -> 92bc36005


CB-12031 Add windows@4.4.3 release blog post

 This closes #652


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

Branch: refs/heads/master
Commit: 3e95909114ecfe9651bd3ee8bf4ad75fbe042d69
Parents: cd16bb4
Author: daserge <v-...@microsoft.com>
Authored: Mon Oct 24 14:09:54 2016 +0300
Committer: Steve Gill <st...@gmail.com>
Committed: Wed Oct 26 10:43:36 2016 -0700

----------------------------------------------------------------------
 www/_posts/2016-10-24-cordova-windows-4.4.3.md | 45 +++++++++++++++++++++
 1 file changed, 45 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3e959091/www/_posts/2016-10-24-cordova-windows-4.4.3.md
----------------------------------------------------------------------
diff --git a/www/_posts/2016-10-24-cordova-windows-4.4.3.md b/www/_posts/2016-10-24-cordova-windows-4.4.3.md
new file mode 100644
index 0000000..fdf9763
--- /dev/null
+++ b/www/_posts/2016-10-24-cordova-windows-4.4.3.md
@@ -0,0 +1,45 @@
+---
+layout: post
+author:
+    name: Sergey Shakhnazarov
+    url: https://github.com/daserge
+title:  "Apache Cordova Windows 4.4.3"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that `Cordova Windows 4.4.3` has been released!
+
+This release fixes some major issues with application activation, splashscreen and VS project generation.  
+See release notes below for more detals and the rest of the changes.
+
+Cordova CLI starting from version 6.3.0 will automatically start using this version of **cordova-windows** when creating new projects.
+
+To upgrade:
+
+    npm install -g cordova
+    cd my_project
+    cordova platform update windows@4.4.3
+
+To add it explicitly:
+
+    cordova platform add windows@4.4.3
+
+<!--more-->
+## What's new in Windows platform
+
+* [CB-12044](https://issues.apache.org/jira/browse/CB-12044) Fix splashscreen image path for ms-appx on Windows
+* [CB-12042](https://issues.apache.org/jira/browse/CB-12042) Copy base.js to www directory at create
+* [CB-11933](https://issues.apache.org/jira/browse/CB-11933) Add uap prefixes for capabilities at plugin install
+* [CB-11933](https://issues.apache.org/jira/browse/CB-11933) Remove capabilities from manifest
+* [CB-11825](https://issues.apache.org/jira/browse/CB-11825) Windows dll file won't be copied as resource while adding custom plugin to a UWP project
+* output message, catch exception if require fails, change eventEmitter to events to be consistent with ios+android
+* [CB-11522](https://issues.apache.org/jira/browse/CB-11522) [windows] Make cordova-js handle 'unknown' type
+* [CB-11857](https://issues.apache.org/jira/browse/CB-11857) Fixed VS 2015 detection on Windows 10 Anniversary
+* [CB-10738](https://issues.apache.org/jira/browse/CB-10738) Use hardcoded Id attribute in Win10 manifest
+* Update bundled cordova-common dependency to 1.4.1
+* [CB-11658](https://issues.apache.org/jira/browse/CB-11658) activated event is not fired on Windows 10 RS1
+* [CB-11657](https://issues.apache.org/jira/browse/CB-11657) Add bom to www after plugin operations
+* [CB-11478](https://issues.apache.org/jira/browse/CB-11478) Parse --archs option consistently
+* [CB-11558](https://issues.apache.org/jira/browse/CB-11558) Make windows plugin rm remove ProjectReference items
+* [CB-11579](https://issues.apache.org/jira/browse/CB-11579) windows: fix bug with 'cordova clean windows'


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


[2/2] docs commit: Added some gulp commands as npm scripts

Posted by st...@apache.org.
Added some gulp commands as npm scripts


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

Branch: refs/heads/master
Commit: 92bc36005c28ba8742ca51badbcc2c80e3f4cd21
Parents: 3e95909
Author: Steve Gill <st...@gmail.com>
Authored: Wed Oct 26 10:44:15 2016 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Wed Oct 26 10:44:15 2016 -0700

----------------------------------------------------------------------
 package.json | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/92bc3600/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index eb90f47..54968c8 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,9 @@
   "scripts": {
     "jshint": "node node_modules/jshint/bin/jshint lib spec",
     "test": "npm run jshint && npm run mocha",
-    "mocha": "./node_modules/.bin/mocha --recursive ./spec"
+    "mocha": "./node_modules/.bin/mocha --recursive ./spec",
+    "serve": "gulp serve --prod",
+    "clean": "gulp clean"
   },
   "author": "Apache Software Foundation",
   "license": "Apache Version 2.0",


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