<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,35 +1,50 @@
 == Description == 
 
-prototypeGrowl is an implementation of the Mac OS X Growl notification system 
-using the Prototype javascript library.
+prototypeGrowl is an implementation of the Mac OS X Growl notification system using the Prototype javascript library.
 
 
 == Authors ==
 
-Thomas Reynolds &lt;tdreyno@gmail.com - http://github.com/tdreyno&gt;
 Craig P Jolicoeur &lt;cpjolicoeur@gmail.com - http://github.com/cpjolicoeur&gt;
+Thomas Reynolds &lt;tdreyno@gmail.com - http://github.com/tdreyno&gt;
+
+
+== Version ==
+
+1.0 - Released March 13, 2009
 
 
 == Usage ==
 
-to create a new growl use the following code:
+To create a new growl use the following code:
+
+    var growl = new Growl.Smoke;
+    growl.show( {option: value} );
+
+To create a new growl with the bezel format, use the following code:
+
+    var growl = new Growl.Bezel;
+    growl.show( {option: value} );
+
+
+The following option:value pairs can be set with both Growl.Smoke and Growl.Bezel:
+
+    image: 		'path to image file to use in growl bubble' 
+    title: 		'title of growl bubble'
+    content:	'message for growl bubble'
+    autohide:	time in seconds to display the growl bubble (set to 0 to keep visible until clicked)
+    animated:	time in seconds of fade in / fade out animation (set to 0 to prevent animation)
+    opacity:	value from 0 - 1 of opacity of growl bubble
 
-var growl = new Growl.Smoke;
-growl.show({option: value});
 
-The following option:value pairs can be set:
+== Contributors ==
 
-image: 		'path to image file to use in growl bubble' 
-title: 		'title of growl bubble'
-content:	'message for growl bubble'
-autohide:	time in seconds to display the growl bubble (set to 0 to keep visible until clicked)
-animated:	time in seconds of fade in / fade out animation (set to 0 to prevent animation)
-opacity:	value from 0 - 1 of opacity of growl bubble
+Sebastian Ryszard Kruk - Growl.Bezel support
 
 
 == Misc ==
 
-Much thanks to the following javascript growl implementations for ideas and inspiration:
+Many thanks to the following javascript growl implementations for ideas and inspiration:
 
 Window.Growl (mootools) - http://icebeat.bitacoras.com/mootools/growl/
 protoGrowl (prototype)  - http://www.midgard-project.org/documentation/protogrowl</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,9 @@
 // prototypeGrowl - Growl for Prototype
 //
-// Thomas Reynolds &lt;tdreyno@gmail.com - http://github.com/tdreyno&gt;
 // Craig P Jolicoeur &lt;cpjolicoeur@gmail.com - http://github.com/cpjolicoeur&gt;
+// Thomas Reynolds &lt;tdreyno@gmail.com - http://github.com/tdreyno&gt;
+//
+// Version: 1.0
 // 
 // Copyright (c) 2008 Thomas Reynolds, Craig P Jolicoeur
 // </diff>
      <filename>growl.js</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
 &lt;html&gt;
 &lt;head&gt;
-&lt;title&gt;prototypeGrowl 0.8&lt;/title&gt;
+&lt;title&gt;prototypeGrowl 1.0&lt;/title&gt;
 &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
 &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;prototype-1.6.0.2.js&quot;&gt;&lt;/script&gt;
 &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;effects.js&quot;&gt;&lt;/script&gt;
@@ -41,23 +41,27 @@
 	&lt;ul&gt;
 		&lt;li&gt;&lt;a href=&quot;#&quot; id=&quot;smoke1&quot; title=&quot;Show msg Smoke&quot;&gt;Show Growl Smoke.&lt;/a&gt; (click to close)&lt;/li&gt;
 		&lt;li&gt;&lt;a href=&quot;#&quot; id=&quot;smoke2&quot; title=&quot;Show msg Smoke&quot;&gt;Show Growl Smoke.&lt;/a&gt; (autohide)&lt;/li&gt;
-		&lt;li&gt;&lt;a href=&quot;#&quot; id=&quot;bezel&quot; title=&quot;Show msg Bezel&quot;&gt;Show Growl Bezel.&lt;/a&gt; &lt;b&gt;(NOT WORKING YET)&lt;/b&gt;&lt;/li&gt;
-		&lt;li&gt;&lt;a href=&quot;growl.js&quot; title=&quot;Download&quot;&gt;Download js.&lt;/a&gt;&lt;/li&gt;
+		&lt;li&gt;&lt;a href=&quot;#&quot; id=&quot;bezel1&quot; title=&quot;Show msg Bezel&quot;&gt;Show Growl Bezel.&lt;/a&gt; (click to close)&lt;/li&gt;
+		&lt;li&gt;&lt;a href=&quot;#&quot; id=&quot;bezel2&quot; title=&quot;Show msg Bezel&quot;&gt;Show Growl Bezel.&lt;/a&gt; (autohide)&lt;/li&gt;
 	&lt;/ul&gt;
 	&lt;pre&gt;&lt;code&gt;
     var growl = new Growl.Smoke;
     growl.show({
       title:    &amp;apos;prototypeGrowl&amp;apos;,
-      text:     &amp;apos;http://github.com/tdreyno/prototypegrowl&amp;apos;,  
+      text:     &amp;apos;http://github.com/cpjolicoeur/prototypegrowl&amp;apos;,  
       image:    &amp;apos;growl.jpg&amp;apos;,
       autohide: 2,
       animated: 0.75,
       opacity: 0.8
     });
 	&lt;/code&gt;&lt;/pre&gt;
-	&lt;p&gt;
-		By &lt;a href=&quot;http://github.com/tdreyno&quot; title=&quot;Thomas Reynolds&quot;&gt;Thomas Reynolds&lt;/a&gt; and &lt;a href=&quot;http://github.com/cpjolicoeur&quot; title=&quot;Blog&quot;&gt;Craig P Jolicoeur&lt;/a&gt;.
-	&lt;/p&gt;
+  &lt;ul&gt;
+    &lt;li&gt;&lt;a href=&quot;http://github.com/cpjolicoeur/prototypegrowl&quot; title=&quot;Download&quot;&gt;Download the source on GitHub.&lt;/a&gt;&lt;/li&gt;
+    &lt;li&gt;&lt;a href=&quot;prototypegrowl_1.0.zip&quot; title=&quot;Download&quot;&gt;Download the latest release (version 1.0)&lt;/a&gt;&lt;/li&gt;
+  &lt;/ul&gt;
+	&lt;div class=&quot;footer&quot; style=&quot;margin-top:5em;border-top:1px solid #000;padding-top:1em;&quot;&gt;
+    &lt;p&gt;&amp;copy; 2008 &lt;a href=&quot;http://github.com/cpjolicoeur&quot; title=&quot;Blog&quot;&gt;Craig P Jolicoeur&lt;/a&gt; and &lt;a href=&quot;http://github.com/tdreyno&quot; title=&quot;Thomas Reynolds&quot;&gt;Thomas Reynolds&lt;/a&gt;.&lt;/p&gt;
+	&lt;/div&gt;
 
 	&lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;
 		var growl = new Growl.Smoke;
@@ -78,14 +82,26 @@
       });
 			event.stop();
 		});
-		
-    // $('bezel').observe('click', function(event) {
-    //  var growl = new Growl.Bezel;
-    //  growl.show({
-    //    title: 'Window.Growl&lt;br /&gt;By Daniel Mota'
-    //  });
-    //  event.stop();
-    // });
+
+    var growlb = new Growl.Bezel;
+    $('bezel1').observe('click', function(event) {
+      growlb.show({
+        image: 'http://www.gravatar.com/avatar.php?gravatar_id=a4c4bd782c415f9ec93fe11e5694bf06&amp;rating=PG&amp;size=48',
+        title: 'Click me to close',
+        text: 'Tell what is happening at the moment',
+        autohide: 0,
+    });
+    event.stop();
+    });
+    $('bezel2').observe('click', function(event) {
+      growlb.show({
+        image: 'http://www.gravatar.com/avatar.php?gravatar_id=cf8a610127d1108dfe67f673320b5fe5&amp;rating=PG&amp;size=48',
+        title: 'I will close automatically',
+        text: 'blah, blah, blah',
+        autohide: 2
+    });
+    event.stop();
+    });
 	&lt;/script&gt;
 &lt;/body&gt;
-&lt;/html&gt;
\ No newline at end of file
+&lt;/html&gt;</diff>
      <filename>test.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>5a93eb90481fa657ecffc68275caf045e56cb79a</id>
    </parent>
  </parents>
  <author>
    <name>Craig P Jolicoeur</name>
    <email>cpjolicoeur@gmail.com</email>
  </author>
  <url>http://github.com/cpjolicoeur/prototypegrowl/commit/1122b870514c91d44b1fe3596f1720317cd4c5ba</url>
  <id>1122b870514c91d44b1fe3596f1720317cd4c5ba</id>
  <committed-date>2009-03-14T18:01:49-07:00</committed-date>
  <authored-date>2009-03-14T17:56:20-07:00</authored-date>
  <message>update the test page and README files</message>
  <tree>2a32fb1c5007ff30e0261f884d0c637a79f335d0</tree>
  <committer>
    <name>Craig P Jolicoeur</name>
    <email>cpjolicoeur@gmail.com</email>
  </committer>
</commit>
