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 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
- * Check availability with Growl.installed?
60
- * Check dependencies with Growl.version
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
- It seems that growlnotify will essentially ignore or block excessive usage
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
- notify 'Something'; sleep 0.2
78
- notify_ok 'Updated'; sleep 0.2
79
- notify_info 'You have new mail'; sleep 0.2
80
- notify_warning 'Merged required'; sleep 0.2
81
- notify_error 'Oh Noes!'; sleep 0.2
78
+ :iconpath
79
+ :appIcon
80
+ :icon
81
+ :udp
82
+ :crypt
82
83
 
83
84
  == Contribute
84
85
 
data/growl.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{growl}
5
- s.version = "1.0.4"
5
+ s.version = "1.0.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["TJ Holowaychuk, Karl O'Keeffe"]
data/lib/growl/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Growl
3
- VERSION = '1.0.4'
3
+ VERSION = '1.0.5'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: karl-growl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk, Karl O'Keeffe