karl-growl 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.rdoc +9 -0
- data/README.rdoc +15 -14
- data/growl.gemspec +1 -1
- data/lib/growl/version.rb +1 -1
- metadata +1 -1
data/History.rdoc
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
=== 1.0.5 / 2009-07-17
|
2
|
+
|
3
|
+
* Improved README and History documentation
|
4
|
+
|
5
|
+
=== 1.0.4 / 2009-07-17
|
6
|
+
|
7
|
+
* Bundled growlnotify (so always counts as installed)
|
8
|
+
* Added support for Windows
|
9
|
+
* Wrap OSX growlnotify to avoid dropped notifications
|
1
10
|
|
2
11
|
=== 1.0.2 / 2009-04-19
|
3
12
|
|
data/README.rdoc
CHANGED
@@ -54,31 +54,32 @@ methods, this removes the need to explicitly use :appIcon, :image, etc.
|
|
54
54
|
notify 'Icns icon', :icon => 'path/to/icon.icns'
|
55
55
|
notify 'Path extname icon', :icon => 'foo.rb'
|
56
56
|
|
57
|
+
Normalised icons only work on OSX.
|
58
|
+
|
59
|
+
To support OSX and Windows always give a path to an image, e.g.
|
60
|
+
|
61
|
+
:image => 'path/to/image.png'
|
62
|
+
|
57
63
|
== Features
|
58
64
|
|
59
|
-
*
|
60
|
-
*
|
65
|
+
* Packaged with growlnotify (so notificatons always available)
|
66
|
+
* Support for Growl for Windows
|
67
|
+
* Wraps growlnotify to avoid dropped notificatons on OSX
|
61
68
|
* Use images, icon paths, application icons, or file format icons
|
62
69
|
* Sticky a notification making it appear until explicitly closed
|
63
70
|
* Set notification priority
|
64
71
|
* Convenience methods such as notify_ok, notify_warning, notify_error, and notify_info
|
65
72
|
* Etc (consult growlnotify --help)
|
66
73
|
|
67
|
-
== Installing growlnotify
|
68
|
-
|
69
|
-
Visit http://growl.info/documentation.php for installation help.
|
70
|
-
|
71
74
|
== Known Issues
|
72
75
|
|
73
|
-
|
74
|
-
of the notifications at random. To prevent this you may need to do something like
|
75
|
-
below if you are calling many in sequence:
|
76
|
+
Not all switches work on Windows. Unsupported switches are:
|
76
77
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
78
|
+
:iconpath
|
79
|
+
:appIcon
|
80
|
+
:icon
|
81
|
+
:udp
|
82
|
+
:crypt
|
82
83
|
|
83
84
|
== Contribute
|
84
85
|
|
data/growl.gemspec
CHANGED
data/lib/growl/version.rb
CHANGED