terminal-notifier 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: df54c916daa2fd90c76fa0801d0053f301c70b71
|
4
|
+
data.tar.gz: 9df4279db02aa1923acb0a2d13c5067fff803259
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1cb1bd4ad3e9010a7b9e51446658a3a8c71209b08edc0611307959b0c12401fcb3af5c756c57ecbc547bb36ab538353f9af7648e40eb381a05bec80d754c51ca
|
7
|
+
data.tar.gz: 78090121c50d0fda6dae2187509b2bfc5996b345fc18d23cd7ca6806adb6cdd29b3d1cd67fda1d3eebc4dac2efadbb27f15a1d4f0301750ac009939fab56153e
|
@@ -1,26 +1,24 @@
|
|
1
1
|
# terminal-notifier
|
2
2
|
|
3
3
|
terminal-notifier is a command-line tool to send Mac OS X User Notifications,
|
4
|
-
which are available in Mac OS X 10.8
|
4
|
+
which are available in Mac OS X 10.8.
|
5
5
|
|
6
|
+
It is currently packaged as an application bundle, because `NSUserNotification`
|
7
|
+
does not work from a ‘Foundation tool’. [radar://11956694](radar://11956694)
|
6
8
|
|
7
|
-
|
9
|
+
The Notification Center _always_ uses the application’s own icon, there’s
|
10
|
+
currently no way to specify a custom icon for a notification. The only way to
|
11
|
+
use this tool with your own icon is to include a build of terminal-notifier
|
12
|
+
with your icon instead.
|
8
13
|
|
9
|
-
|
10
|
-
|
11
|
-
use this tool with your own icon is to use the `-sender` option or include a
|
12
|
-
build of terminal-notifier with your icon and bundle identifier instead.
|
13
|
-
|
14
|
-
However, you _can_ use unicode symbols and emojis. See the examples.
|
15
|
-
|
16
|
-
* It is currently packaged as an application bundle, because `NSUserNotification`
|
17
|
-
does not work from a ‘Foundation tool’. [radar://11956694](radar://11956694)
|
14
|
+
This tool will be used by [Kicker](https://github.com/alloy/kicker) to show the
|
15
|
+
status of commands which are executed due to filesystem changes. (v3.0.0)
|
18
16
|
|
19
17
|
|
20
18
|
## Download
|
21
19
|
|
22
|
-
Prebuilt binaries are available from
|
23
|
-
[
|
20
|
+
Prebuilt binaries, which are code-signed and ready to use, are available from
|
21
|
+
the [downloads section](https://github.com/alloy/terminal-notifier/downloads).
|
24
22
|
|
25
23
|
Or if you want to use this from
|
26
24
|
[Ruby](https://github.com/alloy/terminal-notifier/tree/master/Ruby), you can
|
@@ -49,14 +47,6 @@ $ terminal-notifier -[message|group|list] [VALUE|ID|ID] [options]
|
|
49
47
|
|
50
48
|
This will obviously be a bit slower than using the tool without the wrapper.
|
51
49
|
|
52
|
-
Some examples are:
|
53
|
-
|
54
|
-
```
|
55
|
-
$ echo 'Piped Message Data!' | terminal-notifier -sound default
|
56
|
-
$ terminal-notifier -title '💰' -message 'Check your Apple stock!' -open 'http://finance.yahoo.com/q?s=AAPL'
|
57
|
-
$ terminal-notifier -group 'address-book-sync' -title 'Address Book Sync' -subtitle 'Finished' -message 'Imported 42 contacts.' -activate 'com.apple.AddressBook'
|
58
|
-
```
|
59
|
-
|
60
50
|
|
61
51
|
#### Options
|
62
52
|
|
@@ -69,9 +59,6 @@ option or the `-list` option.
|
|
69
59
|
|
70
60
|
The message body of the notification.
|
71
61
|
|
72
|
-
Note that if this option is omitted and data is piped to the application, that
|
73
|
-
data will be used instead.
|
74
|
-
|
75
62
|
-------------------------------------------------------------------------------
|
76
63
|
|
77
64
|
`-title VALUE`
|
@@ -133,15 +120,6 @@ Examples are:
|
|
133
120
|
|
134
121
|
-------------------------------------------------------------------------------
|
135
122
|
|
136
|
-
`-sender ID`
|
137
|
-
|
138
|
-
Specifying this will make it appear as if the notification was send by that
|
139
|
-
application instead, including using its icon.
|
140
|
-
|
141
|
-
For information on the `ID` see the `-activate` option.
|
142
|
-
|
143
|
-
-------------------------------------------------------------------------------
|
144
|
-
|
145
123
|
`-open URL`
|
146
124
|
|
147
125
|
Specifies a resource to be opened when the user clicks the notification. This
|
@@ -160,7 +138,7 @@ All the works are available under the MIT license. **Except** for
|
|
160
138
|
‘Terminal.icns’, which is a copy of Apple’s Terminal.app icon and as such is
|
161
139
|
copyright of Apple.
|
162
140
|
|
163
|
-
Copyright (C) 2012
|
141
|
+
Copyright (C) 2012 Eloy Durán <eloy.de.enige@gmail.com>
|
164
142
|
|
165
143
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
166
144
|
this software and associated documentation files (the "Software"), to deal in
|
@@ -19,31 +19,31 @@
|
|
19
19
|
<key>CFBundlePackageType</key>
|
20
20
|
<string>APPL</string>
|
21
21
|
<key>CFBundleShortVersionString</key>
|
22
|
-
<string>1.5.
|
22
|
+
<string>1.5.1</string>
|
23
23
|
<key>CFBundleSignature</key>
|
24
24
|
<string>????</string>
|
25
25
|
<key>CFBundleVersion</key>
|
26
|
-
<string>
|
26
|
+
<string>9</string>
|
27
27
|
<key>DTCompiler</key>
|
28
|
-
<string
|
28
|
+
<string></string>
|
29
29
|
<key>DTPlatformBuild</key>
|
30
|
-
<string>
|
30
|
+
<string>4H1503</string>
|
31
31
|
<key>DTPlatformVersion</key>
|
32
32
|
<string>GM</string>
|
33
33
|
<key>DTSDKBuild</key>
|
34
|
-
<string>
|
34
|
+
<string>12D75</string>
|
35
35
|
<key>DTSDKName</key>
|
36
|
-
<string>macosx10.
|
36
|
+
<string>macosx10.8</string>
|
37
37
|
<key>DTXcode</key>
|
38
|
-
<string>
|
38
|
+
<string>0463</string>
|
39
39
|
<key>DTXcodeBuild</key>
|
40
|
-
<string>
|
40
|
+
<string>4H1503</string>
|
41
41
|
<key>LSMinimumSystemVersion</key>
|
42
42
|
<string>10.8</string>
|
43
43
|
<key>LSUIElement</key>
|
44
44
|
<true/>
|
45
45
|
<key>NSHumanReadableCopyright</key>
|
46
|
-
<string>Copyright © 2012 Eloy
|
46
|
+
<string>Copyright © 2012 Eloy Durán. All rights reserved.</string>
|
47
47
|
<key>NSMainNibFile</key>
|
48
48
|
<string>MainMenu</string>
|
49
49
|
<key>NSPrincipalClass</key>
|
Binary file
|
metadata
CHANGED
@@ -1,74 +1,66 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: terminal-notifier
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 5
|
9
|
-
- 0
|
10
|
-
version: 1.5.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.5.1
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Eloy Duran
|
14
8
|
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2013-08-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
21
14
|
name: bacon
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
hash: 3
|
29
|
-
segments:
|
30
|
-
- 0
|
31
|
-
version: "0"
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
32
20
|
type: :development
|
33
|
-
version_requirements: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: mocha
|
36
21
|
prerelease: false
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: mocha
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
46
34
|
type: :development
|
47
|
-
version_requirements: *id002
|
48
|
-
- !ruby/object:Gem::Dependency
|
49
|
-
name: mocha-on-bacon
|
50
35
|
prerelease: false
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: mocha-on-bacon
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
60
48
|
type: :development
|
61
|
-
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
62
55
|
description:
|
63
|
-
email:
|
56
|
+
email:
|
64
57
|
- eloy.de.enige@gmail.com
|
65
|
-
executables:
|
58
|
+
executables:
|
66
59
|
- terminal-notifier
|
67
60
|
extensions: []
|
68
|
-
|
69
|
-
extra_rdoc_files:
|
61
|
+
extra_rdoc_files:
|
70
62
|
- README.markdown
|
71
|
-
files:
|
63
|
+
files:
|
72
64
|
- bin/terminal-notifier
|
73
65
|
- lib/terminal-notifier.rb
|
74
66
|
- vendor/terminal-notifier/README.markdown
|
@@ -81,38 +73,28 @@ files:
|
|
81
73
|
- vendor/terminal-notifier/terminal-notifier.app/Contents/Resources/Terminal.icns
|
82
74
|
- README.markdown
|
83
75
|
homepage: https://github.com/alloy/terminal-notifier
|
84
|
-
licenses:
|
85
|
-
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
86
79
|
post_install_message:
|
87
80
|
rdoc_options: []
|
88
|
-
|
89
|
-
require_paths:
|
81
|
+
require_paths:
|
90
82
|
- lib
|
91
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
none: false
|
102
|
-
requirements:
|
103
|
-
- - ">="
|
104
|
-
- !ruby/object:Gem::Version
|
105
|
-
hash: 3
|
106
|
-
segments:
|
107
|
-
- 0
|
108
|
-
version: "0"
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - '>='
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - '>='
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
109
93
|
requirements: []
|
110
|
-
|
111
94
|
rubyforge_project:
|
112
|
-
rubygems_version:
|
95
|
+
rubygems_version: 2.0.3
|
113
96
|
signing_key:
|
114
|
-
specification_version:
|
97
|
+
specification_version: 4
|
115
98
|
summary: Send User Notifications on Mac OS X 10.8 or higher.
|
116
99
|
test_files: []
|
117
|
-
|
118
100
|
has_rdoc:
|