You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2013/09/25 16:08:27 UTC

[1/3] git commit: CB-4889 renaming org.apache.cordova.core.dialogs to org.apache.cordova.dialogs

Updated Branches:
  refs/heads/dev 69e260607 -> bc1cc202a


CB-4889 renaming org.apache.cordova.core.dialogs to org.apache.cordova.dialogs


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/2ee32ab0
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/tree/2ee32ab0
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/diff/2ee32ab0

Branch: refs/heads/dev
Commit: 2ee32ab0b9e2e7fbb3a9a042e885ec8a91b5f470
Parents: 814e60e
Author: Anis Kadri <an...@apache.org>
Authored: Sat Sep 21 12:20:10 2013 +0200
Committer: Anis Kadri <an...@apache.org>
Committed: Sat Sep 21 12:20:10 2013 +0200

----------------------------------------------------------------------
 plugin.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/2ee32ab0/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 7cfabbf..51bb511 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
-           id="org.apache.cordova.core.dialogs"
-      version="0.2.1-dev">
+           id="org.apache.cordova.dialogs"
+      version="0.2.1">
 
     <name>Notification</name>
     <description>Cordova Notification Plugin</description>


[3/3] git commit: Merge branch 'dev' of https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs into dev

Posted by an...@apache.org.
Merge branch 'dev' of https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs into dev


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/bc1cc202
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/tree/bc1cc202
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/diff/bc1cc202

Branch: refs/heads/dev
Commit: bc1cc202ab97821b29e2a884a85e8db6ae0fa4c7
Parents: c027c9c 69e2606
Author: Anis Kadri <an...@apache.org>
Authored: Wed Sep 25 16:08:17 2013 +0200
Committer: Anis Kadri <an...@apache.org>
Committed: Wed Sep 25 16:08:17 2013 +0200

----------------------------------------------------------------------
 src/windows8/NotificationProxy.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[2/3] git commit: CB-4889 renaming reference in Notification.cs

Posted by an...@apache.org.
CB-4889 renaming reference in Notification.cs


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/c027c9c7
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/tree/c027c9c7
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/diff/c027c9c7

Branch: refs/heads/dev
Commit: c027c9c763f2f5e2d2dbad2113a799f338687cd5
Parents: 2ee32ab
Author: Anis Kadri <an...@apache.org>
Authored: Wed Sep 25 16:07:54 2013 +0200
Committer: Anis Kadri <an...@apache.org>
Committed: Wed Sep 25 16:07:54 2013 +0200

----------------------------------------------------------------------
 src/wp/Notification.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/c027c9c7/src/wp/Notification.cs
----------------------------------------------------------------------
diff --git a/src/wp/Notification.cs b/src/wp/Notification.cs
index 339978a..1c0c63b 100644
--- a/src/wp/Notification.cs
+++ b/src/wp/Notification.cs
@@ -252,7 +252,7 @@ namespace WPCordovaClassLib.Cordova.Commands
             string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
             int times = int.Parse(args[0]);
 
-            string resourcePath = BaseCommand.GetBaseURL() + "Plugins/org.apache.cordova.core.dialogs/notification-beep.wav";
+            string resourcePath = BaseCommand.GetBaseURL() + "Plugins/org.apache.cordova.dialogs/notification-beep.wav";
 
             StreamResourceInfo sri = Application.GetResourceStream(new Uri(resourcePath, UriKind.Relative));