Repository: cordova-plugin-dialogs
Updated Branches:
  refs/heads/master 6256967a1 -> d6a11bd06


CB-12519 Updated version and RELEASENOTES.md for release 1.3.2


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

Branch: refs/heads/master
Commit: 65667985d71f5b5818914078a4fee5c85d3d6832
Parents: 6256967
Author: Steve Gill <[email protected]>
Authored: Tue Feb 28 17:41:26 2017 -0800
Committer: Steve Gill <[email protected]>
Committed: Tue Feb 28 17:41:26 2017 -0800

----------------------------------------------------------------------
 RELEASENOTES.md  |   6 ++
 package.json     |   2 +-
 plugin.xml       | 284 ++++++++++++++++++++------------------------------
 tests/plugin.xml |  33 +-----
 4 files changed, 125 insertions(+), 200 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/65667985/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 982cd96..9dbc861 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -20,6 +20,12 @@
 -->
 # Release Notes
 
+### 1.3.2 (Feb 28, 2017)
+* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped`
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0**
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
 ### 1.3.1 (Dec 07, 2016)
 * [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.3.1
 * [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"

http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/65667985/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index bbf3a3f..e1d0ea7 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-dialogs",
-  "version": "1.3.2-dev",
+  "version": "1.3.2",
   "description": "Cordova Notification Plugin",
   "types": "./types/index.d.ts",
   "cordova": {

http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/65667985/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 3495471..d825133 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -1,173 +1,115 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing,
-  software distributed under the License is distributed on an
-  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  KIND, either express or implied.  See the License for the
-  specific language governing permissions and limitations
-  under the License.
--->
-
-<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0";
-           id="cordova-plugin-dialogs"
-      version="1.3.2-dev">
-
-    <name>Notification</name>
-    <description>Cordova Notification Plugin</description>
-    <license>Apache 2.0</license>
-    <keywords>cordova,notification</keywords>
-    
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git</repo>
-    <issue>https://issues.apache.org/jira/browse/CB/component/12320642</issue>
-
-    <js-module src="www/notification.js" name="notification">
-        <merges target="navigator.notification" />
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"; 
id="cordova-plugin-dialogs" version="1.3.2">
+  <name>Notification</name>
+  <description>Cordova Notification Plugin</description>
+  <license>Apache 2.0</license>
+  <keywords>cordova,notification</keywords>
+  
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git</repo>
+  <issue>https://issues.apache.org/jira/browse/CB/component/12320642</issue>
+  <js-module src="www/notification.js" name="notification">
+    <merges target="navigator.notification"/>
+  </js-module>
+  <platform name="firefoxos">
+    <config-file target="config.xml" parent="/*">
+      <feature name="Notification">
+        <param name="firefoxos-package" value="Notification"/>
+      </feature>
+    </config-file>
+    <asset src="www/firefoxos/notification.css" target="css/notification.css"/>
+    <asset src="www/firefoxos/danger-press.png" target="img/danger-press.png"/>
+    <asset src="www/firefoxos/danger.png" target="img/danger.png"/>
+    <asset src="www/firefoxos/default.png" target="img/default.png"/>
+    <asset src="www/firefoxos/gradient.png" target="img/gradient.png"/>
+    <asset src="www/firefoxos/pattern.png" target="img/pattern.png"/>
+    <asset src="www/firefoxos/recommend.png" target="img/recommend.png"/>
+    <js-module src="src/firefoxos/notification.js" name="dialogs-impl">
+      <runs/>
     </js-module>
-
-    <!-- firefoxos -->
-    <platform name="firefoxos">
-        <config-file target="config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="firefoxos-package" value="Notification" />
-            </feature>
-        </config-file>                                         
-        
-        <asset src="www/firefoxos/notification.css" 
target="css/notification.css" />
-        <asset src="www/firefoxos/danger-press.png" 
target="img/danger-press.png" />
-        <asset src="www/firefoxos/danger.png" target="img/danger.png" />
-        <asset src="www/firefoxos/default.png" target="img/default.png" />
-        <asset src="www/firefoxos/gradient.png" target="img/gradient.png" />
-        <asset src="www/firefoxos/pattern.png" target="img/pattern.png" />
-        <asset src="www/firefoxos/recommend.png" target="img/recommend.png" />
-        <js-module src="src/firefoxos/notification.js" name="dialogs-impl">
-          <runs />
-        </js-module>
-    </platform>
-
-    <!-- android -->
-    <platform name="android">
-        <config-file target="res/xml/config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="android-package" 
value="org.apache.cordova.dialogs.Notification"/>
-            </feature>
-        </config-file>
-
-        <source-file src="src/android/Notification.java" 
target-dir="src/org/apache/cordova/dialogs" />
-
-        <!-- android specific notification apis -->
-        <js-module src="www/android/notification.js" 
name="notification_android">
-            <merges target="navigator.notification" />
-        </js-module>
-
-    </platform>
-
-    <!-- browser -->
-    <platform name="browser">
-        <js-module src="www/browser/notification.js" 
name="notification_browser">
-            <merges target="navigator.notification" />
-        </js-module>
-
-    </platform>
-    
-     <!-- amazon-fireos -->
-    <platform name="amazon-fireos">
-        <config-file target="res/xml/config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="android-package" 
value="org.apache.cordova.dialogs.Notification"/>
-            </feature>
-        </config-file>
-
-        <source-file src="src/android/Notification.java" 
target-dir="src/org/apache/cordova/dialogs" />
-
-        <!-- android specific notification apis -->
-        <js-module src="www/android/notification.js" 
name="notification_android">
-            <merges target="navigator.notification" />
-        </js-module>
-
-    </platform>
-
-    <!-- ubuntu -->
-    <platform name="ubuntu">
-        <header-file src="src/ubuntu/notification.h" />
-        <source-file src="src/ubuntu/notification.cpp" />
-        <resource-file src="src/ubuntu/notification.qml" />
-    </platform>
-
-    <!-- ios -->
-    <platform name="ios">
-        <config-file target="config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="ios-package" value="CDVNotification"/>
-            </feature>
-        </config-file>
-        <header-file src="src/ios/CDVNotification.h" />
-        <source-file src="src/ios/CDVNotification.m" />
-        <resource-file src="src/ios/CDVNotification.bundle" />
-        <framework src="AudioToolbox.framework" weak="true" />
-    </platform>
-
-    <!-- blackberry10 -->
-    <platform name="blackberry10">
-        <source-file src="src/blackberry10/index.js" target-dir="Notification" 
/>
-        <config-file target="www/config.xml" parent="/widget">
-            <feature name="Notification" value="Notification"/>
-        </config-file>
-        <js-module src="www/blackberry10/beep.js" name="beep">
-            <clobbers target="window.navigator.notification.beep" />
-        </js-module>
-        <source-file src="www/blackberry10/notification-beep.wav" />
-    </platform>
-
-    <!-- wp7 -->
-    <platform name="wp7">
-        <config-file target="config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="wp-package" value="Notification"/>
-            </feature>
-        </config-file>
-
-        <source-file src="src/wp/Notification.cs" />
-        <source-file src="src/wp/NotificationBox.xaml.cs" />
-        <source-file src="src/wp/NotificationBox.xaml" />
-        <source-file src="src/wp/notification-beep.wav" />
-    </platform>
-
-    <!-- wp8 -->
-    <platform name="wp8">
-        <config-file target="config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="wp-package" value="Notification"/>
-            </feature>
-        </config-file>
-
-        <source-file src="src/wp/Notification.cs" />
-        <source-file src="src/wp/NotificationBox.xaml.cs" />
-        <source-file src="src/wp/NotificationBox.xaml" />
-        <source-file src="src/wp/notification-beep.wav" />
-    </platform>
-
-    <!-- windows8 -->
-    <platform name="windows8">
-        <js-module src="src/windows/NotificationProxy.js" 
name="NotificationProxy">
-            <runs />
-        </js-module>
-    </platform>
-
-    <!-- windows -->
-    <platform name="windows">
-        <js-module src="src/windows/NotificationProxy.js" 
name="NotificationProxy">
-            <runs />
-        </js-module>
-
-        <asset src="www/windows/notification.css" 
target="css/notification.css" />
-    </platform>
+  </platform>
+  <platform name="android">
+    <config-file target="res/xml/config.xml" parent="/*">
+      <feature name="Notification">
+        <param name="android-package" 
value="org.apache.cordova.dialogs.Notification"/>
+      </feature>
+    </config-file>
+    <source-file src="src/android/Notification.java" 
target-dir="src/org/apache/cordova/dialogs"/>
+    <js-module src="www/android/notification.js" name="notification_android">
+      <merges target="navigator.notification"/>
+    </js-module>
+  </platform>
+  <platform name="browser">
+    <js-module src="www/browser/notification.js" name="notification_browser">
+      <merges target="navigator.notification"/>
+    </js-module>
+  </platform>
+  <platform name="amazon-fireos">
+    <config-file target="res/xml/config.xml" parent="/*">
+      <feature name="Notification">
+        <param name="android-package" 
value="org.apache.cordova.dialogs.Notification"/>
+      </feature>
+    </config-file>
+    <source-file src="src/android/Notification.java" 
target-dir="src/org/apache/cordova/dialogs"/>
+    <js-module src="www/android/notification.js" name="notification_android">
+      <merges target="navigator.notification"/>
+    </js-module>
+  </platform>
+  <platform name="ubuntu">
+    <header-file src="src/ubuntu/notification.h"/>
+    <source-file src="src/ubuntu/notification.cpp"/>
+    <resource-file src="src/ubuntu/notification.qml"/>
+  </platform>
+  <platform name="ios">
+    <config-file target="config.xml" parent="/*">
+      <feature name="Notification">
+        <param name="ios-package" value="CDVNotification"/>
+      </feature>
+    </config-file>
+    <header-file src="src/ios/CDVNotification.h"/>
+    <source-file src="src/ios/CDVNotification.m"/>
+    <resource-file src="src/ios/CDVNotification.bundle"/>
+    <framework src="AudioToolbox.framework" weak="true"/>
+  </platform>
+  <platform name="blackberry10">
+    <source-file src="src/blackberry10/index.js" target-dir="Notification"/>
+    <source-file src="www/blackberry10/notification-beep.wav"/>
+    <config-file target="www/config.xml" parent="/widget">
+      <feature name="Notification" value="Notification"/>
+    </config-file>
+    <js-module src="www/blackberry10/beep.js" name="beep">
+      <clobbers target="window.navigator.notification.beep"/>
+    </js-module>
+  </platform>
+  <platform name="wp7">
+    <config-file target="config.xml" parent="/*">
+      <feature name="Notification">
+        <param name="wp-package" value="Notification"/>
+      </feature>
+    </config-file>
+    <source-file src="src/wp/Notification.cs"/>
+    <source-file src="src/wp/NotificationBox.xaml.cs"/>
+    <source-file src="src/wp/NotificationBox.xaml"/>
+    <source-file src="src/wp/notification-beep.wav"/>
+  </platform>
+  <platform name="wp8">
+    <config-file target="config.xml" parent="/*">
+      <feature name="Notification">
+        <param name="wp-package" value="Notification"/>
+      </feature>
+    </config-file>
+    <source-file src="src/wp/Notification.cs"/>
+    <source-file src="src/wp/NotificationBox.xaml.cs"/>
+    <source-file src="src/wp/NotificationBox.xaml"/>
+    <source-file src="src/wp/notification-beep.wav"/>
+  </platform>
+  <platform name="windows8">
+    <js-module src="src/windows/NotificationProxy.js" name="NotificationProxy">
+      <runs/>
+    </js-module>
+  </platform>
+  <platform name="windows">
+    <js-module src="src/windows/NotificationProxy.js" name="NotificationProxy">
+      <runs/>
+    </js-module>
+    <asset src="www/windows/notification.css" target="css/notification.css"/>
+  </platform>
 </plugin>

http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/65667985/tests/plugin.xml
----------------------------------------------------------------------
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 03a9325..96185f9 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -1,29 +1,6 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing,
-  software distributed under the License is distributed on an
-  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  KIND, either express or implied.  See the License for the
-  specific language governing permissions and limitations
-  under the License.
--->
-
-<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0";
-    id="cordova-plugin-dialogs-tests"
-    version="1.3.2-dev">
-    <name>Cordova Notification Plugin Tests</name>
-    <license>Apache 2.0</license>
-
-    <js-module src="tests.js" name="tests">
-    </js-module>
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"; 
id="cordova-plugin-dialogs-tests" version="1.3.2">
+  <name>Cordova Notification Plugin Tests</name>
+  <license>Apache 2.0</license>
+  <js-module src="tests.js" name="tests"/>
 </plugin>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to