You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/06/26 01:43:03 UTC

git commit: Add plugin-vibration to plugin list.

Updated Branches:
  refs/heads/master 50c780dde -> 301af039b


Add plugin-vibration to plugin list.


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

Branch: refs/heads/master
Commit: 301af039b19cd824a475a0147311276c536d6440
Parents: 50c780d
Author: Andrew Grieve <ag...@chromium.org>
Authored: Tue Jun 25 19:42:51 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Jun 25 19:42:51 2013 -0400

----------------------------------------------------------------------
 coho | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/301af039/coho
----------------------------------------------------------------------
diff --git a/coho b/coho
index 771948c..023c698 100755
--- a/coho
+++ b/coho
@@ -231,6 +231,11 @@ var pluginRepos = [
         id: 'plugin-splashscreen',
         repoName: 'cordova-plugin-splashscreen',
         inactive: false, // Not on the same release schedule as the rest of Cordova
+    }, {
+        title: 'Plugin - Vibration',
+        id: 'plugin-vibration',
+        repoName: 'cordova-plugin-vibration',
+        inactive: false, // Not on the same release schedule as the rest of Cordova
     }
 ];
 
@@ -258,7 +263,7 @@ var otherRepos = [
     }
 ];
 
-var allRepos = platformRepos.concat(nonPlatformRepos).concat(otherRepos);
+var allRepos = platformRepos.concat(nonPlatformRepos).concat(pluginRepos).concat(otherRepos);
 
 var repoGroups = {
     'all': allRepos,