This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ChangeLog
128 lines (89 loc) · 3.48 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
2013-02-25 Takuo Kitame <[email protected]>
* 2.2
* update for REST API 1.1
* All API requests use access_token.
* Correct 'id_str' to 'screen_name' hash into PStore.
* Removed API Limit checking.
* Add option Enable/Disable to each 'Account' in conf.
2011-09-10 Takuo Kitame <[email protected]>
* 2.1
* Added -a option to force re-OAuth.
* Added -q option to kill current active process
* Added ability to notify via Growl. (NotifyMethod: "growl")
It requires 'growl' (gem) and growlnotify command
* Handle the 'follow' event
2011-07-29 Takuo Kitame <[email protected]>
* 2.0.1
* fix unnotified issue
* threaded notify method
* won't check SSL cert (at once)
2011-07-28 Takuo Kitame <[email protected]>
* 2.0.0
* Multi Notify methods support
* ProxyURI is now global config.
* Add config value (global) 'CAPath' to specify ca file ( HTTP::ca_filei ).
* Add Notify method 'prowl', 'nma'
* Add config value 'NotifyMethod' (Array). default: [ 'prowl' ].
* Add config value 'NMA' (Hash), It should contain 'APIKey' for Notify My Android's APIKey.
2011-07-27 Takuo Kitame <[email protected]>
* 1.6.9
* use OAuth instead of XAuth to get DM permissions.
2011-06-09 Takuo Kitame <[email protected]>
* 1.6.0
* Added id->screen_name database to track removed followers.
* some bugfixes.
2011-04-20 Takuo Kitame <[email protected]>
* 1.5.0
* Adedd RegexpMatch notification.
2011-02-22 Takuo Kitame <[email protected]>
* remove unncessary Net::HTTP hack
2010-09-29 Takuo Kitame <[email protected]>
* 1.4.0
* use Released Version of Streaming API.
* Remove all check methods using normal API except 'Unfollowed'
2010-09-14 Takuo Kitame <[email protected]>
* 1.3.0
* use Streaming API to check DirectMessage.
2010-09-12 Takuo Kitame <[email protected]>
* 1.2.0
* Added ability to disable notification for event which occuered by myself. (Default: true)
* Added ability to disable notification for negative event of Membership or Favorite. (Default: false)
2010-09-06 Takuo Kitame <[email protected]>
* 1.1.0
* overhall refactoring.
* remove local oauth library.
* [WARNING] config.yml format was changed.
see README and sample config.yaml
2010-09-02 Takuo Kitame <[email protected]>
* 1.0.1
* [Streaming] Fix incorrect prowl trigger for ListMembership event.
* [Streaming] Increase recconect delay by error count.
* Fix kill process issue.
* #!/usr/bin/env ruby
* use external oauth library if possible.
2010-09-01 Takuo Kitame <[email protected]>
* 1.0.0
* Mentions, Retweets and Membership are can be checked with Streaming API.
2010-08-06 Takuo Kitame <[email protected]>
* 0.9.0
* rewrite thread structure, shout be robust more..
2010-07-21 Takuo Kitame <[email protected]>
* 0.8.0
* added notification for List Membership
2010-06-30 Takuo Kitame <[email protected]>
* 0.7.1
* remove unnecessary require 'rubygems'
2010-06-29 Takuo Kitame <[email protected]>
* 0.7.0
* Applied fabian's awsome commits. Thanks a lot.
2010-05-28 Fabián Arias <[email protected]>
* 0.6.1.1
* twiprowl: added support for retweets of me by others.
added debug messages relatives to the user polling the API.
* config.yml: added configurations for Retweets, defaults equals Mentions.
2010-03-30 Takuo Kitame <[email protected]>
* 0.6.1
* twiprowl: merge oauth branch, xAuth integration.
the access_token will be stored into ENV['HOME']/.twiprowl.pdb
* config.yml: remove Proxy{Host,Port,User,Pass}, use ProxyURL instead.
* minor fixes.