rscm 0.1.0.1338 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +13 -28
- data/Rakefile +25 -24
- data/lib/rscm.rb +1 -6
- data/lib/rscm/abstract_scm.rb +36 -10
- data/lib/rscm/annotations.rb +50 -0
- data/lib/rscm/changes.rb +2 -5
- data/lib/rscm/logging.rb +1 -0
- data/lib/rscm/path_converter.rb +3 -2
- data/lib/rscm/{cvs → scm}/cvs.rb +16 -9
- data/lib/rscm/{cvs → scm}/cvs_log_parser.rb +4 -4
- data/lib/rscm/{darcs → scm}/darcs.rb +6 -3
- data/lib/rscm/scm/monotone.rb +162 -0
- data/lib/rscm/scm/monotone_log_parser.rb +95 -0
- data/lib/rscm/scm/mooky.rb +21 -0
- data/lib/rscm/{perforce → scm}/perforce.rb +7 -4
- data/lib/rscm/{starteam/starteam.rb → scm/star_team.rb} +23 -3
- data/lib/rscm/{svn/svn.rb → scm/subversion.rb} +17 -10
- data/lib/rscm/{svn/svn_log_parser.rb → scm/subversion_log_parser.rb} +8 -7
- data/test/rscm/abstract_scm_test.rb +21 -0
- data/test/rscm/annotations_test.rb +57 -0
- data/test/rscm/changes_fixture.rb +7 -7
- data/test/rscm/changes_test.rb +3 -3
- data/test/rscm/generic_scm_tests.rb +2 -2
- data/test/rscm/{cvs → scm}/cvs-dataforge.log +0 -0
- data/test/rscm/{cvs → scm}/cvs-test.log +0 -0
- data/test/rscm/{cvs → scm}/cvs_log_parser_test.rb +12 -13
- data/test/rscm/{cvs → scm}/cvs_test.rb +7 -7
- data/test/rscm/{darcs → scm}/darcs_test.rb +1 -1
- data/test/rscm/{monotone → scm}/keys +0 -0
- data/test/rscm/scm/monotone_log_parser_test.rb +109 -0
- data/test/rscm/{monotone → scm}/monotone_test.rb +1 -1
- data/test/rscm/{mooky → scm}/mooky_test.rb +1 -1
- data/test/rscm/{perforce → scm}/perforce_test.rb +1 -1
- data/test/rscm/{starteam/starteam_test.rb → scm/star_team.rb} +1 -1
- data/test/rscm/{svn/svn_log_parser_test.rb → scm/subversion_log_parser_test.rb} +25 -10
- data/test/rscm/{svn/svn_test.rb → scm/subversion_test.rb} +4 -5
- data/test/rscm/{svn/cargo-svn.log → scm/svn-cargo.log} +0 -0
- data/test/rscm/scm/svn-growl.log +875 -0
- data/test/rscm/scm/svn-growl2.log +30 -0
- data/test/rscm/{svn/proxytoys-svn.log → scm/svn-proxytoys.log} +0 -0
- metadata +35 -44
- data/lib/rscm/attr_attr.rb +0 -36
- data/lib/rscm/monotone/monotone.rb +0 -107
- data/lib/rscm/mooky/mooky.rb +0 -13
- data/test/actual +0 -3
- data/test/expected +0 -3
- data/test/rscm/attr_attr_test.rb +0 -32
@@ -1,11 +1,9 @@
|
|
1
1
|
require 'test/unit'
|
2
2
|
require 'stringio'
|
3
|
-
require 'rscm
|
3
|
+
require 'rscm'
|
4
4
|
|
5
5
|
module RSCM
|
6
|
-
class
|
7
|
-
|
8
|
-
# include FileUtils
|
6
|
+
class SubversionLogParserTest < Test::Unit::TestCase
|
9
7
|
|
10
8
|
SIMPLE_LOG_ENTRY = <<EOF
|
11
9
|
r2 | ahelleso | 2004-07-11 14:29:35 +0100 (Sun, 11 Jul 2004) | 1 line
|
@@ -30,7 +28,7 @@ else
|
|
30
28
|
EOF
|
31
29
|
|
32
30
|
def test_can_parse_SIMPLE_LOG_ENTRIES
|
33
|
-
parser =
|
31
|
+
parser = SubversionLogEntryParser.new("damagecontrolled", "damagecontrolled")
|
34
32
|
can_parse_simple_log_entry(parser, SIMPLE_LOG_ENTRY)
|
35
33
|
can_parse_simple_log_entry(parser, SIMPLE_LOG_ENTRY_WITH_BACKSLASHES)
|
36
34
|
end
|
@@ -52,8 +50,8 @@ EOF
|
|
52
50
|
end
|
53
51
|
|
54
52
|
def test_parses_entire_log_into_changesets
|
55
|
-
File.open(File.dirname(__FILE__) + "/proxytoys
|
56
|
-
parser =
|
53
|
+
File.open(File.dirname(__FILE__) + "/svn-proxytoys.log") do |io|
|
54
|
+
parser = SubversionLogParser.new(io, "trunk/proxytoys", nil)
|
57
55
|
|
58
56
|
changesets = parser.parse_changesets
|
59
57
|
|
@@ -87,13 +85,30 @@ EOF
|
|
87
85
|
end
|
88
86
|
|
89
87
|
def test_parses_entire_log_into_changesets
|
90
|
-
File.open(File.dirname(__FILE__) + "/cargo
|
91
|
-
parser =
|
88
|
+
File.open(File.dirname(__FILE__) + "/svn-cargo.log") do |io|
|
89
|
+
parser = SubversionLogParser.new(io, "trunk/proxytoys", nil)
|
92
90
|
changesets = parser.parse_changesets
|
93
91
|
assert_equal(16, changesets.length)
|
94
92
|
end
|
95
93
|
end
|
96
94
|
|
95
|
+
def test_parses_another_tricky_log
|
96
|
+
File.open(File.dirname(__FILE__) + "/svn-growl.log") do |io|
|
97
|
+
parser = SubversionLogParser.new(io, "trunk", nil)
|
98
|
+
changesets = parser.parse_changesets
|
99
|
+
assert_equal(82, changesets.length)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
def test_parses_log_with_spaces_in_file_names
|
104
|
+
File.open(File.dirname(__FILE__) + "/svn-growl2.log") do |io|
|
105
|
+
parser = SubversionLogParser.new(io, "trunk", nil)
|
106
|
+
changesets = parser.parse_changesets
|
107
|
+
change = changesets[1][0]
|
108
|
+
assert_equal("Display Plugins/Bezel/English.lproj/GrowlBezelPrefs.nib/classes.nib", change.path)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
97
112
|
SVN_R_LOG_HEAD_DATA = <<-EOF
|
98
113
|
------------------------------------------------------------------------
|
99
114
|
r48 | rinkrank | 2004-10-16 20:07:29 -0500 (Sat, 16 Oct 2004) | 1 line
|
@@ -103,7 +118,7 @@ nothing
|
|
103
118
|
EOF
|
104
119
|
|
105
120
|
def test_should_retrieve_head_revision
|
106
|
-
parser =
|
121
|
+
parser = SubversionLogParser.new(StringIO.new(SVN_R_LOG_HEAD_DATA), "blah", nil)
|
107
122
|
changesets = parser.parse_changesets
|
108
123
|
assert_equal(48, changesets[0].revision)
|
109
124
|
end
|
@@ -1,20 +1,19 @@
|
|
1
1
|
require 'test/unit'
|
2
|
-
require 'rscm
|
2
|
+
require 'rscm'
|
3
3
|
require 'rscm/generic_scm_tests'
|
4
|
-
require 'rscm/path_converter'
|
5
4
|
|
6
5
|
module RSCM
|
7
|
-
class
|
6
|
+
class SubversionTest < Test::Unit::TestCase
|
8
7
|
|
9
8
|
include GenericSCMTests
|
10
9
|
include LabelTest
|
11
10
|
|
12
11
|
def create_scm(repository_root_dir, path)
|
13
|
-
|
12
|
+
Subversion.new(PathConverter.filepath_to_nativeurl("#{repository_root_dir}/#{path}"), path)
|
14
13
|
end
|
15
14
|
|
16
15
|
def test_repourl
|
17
|
-
svn =
|
16
|
+
svn = Subversion.new("svn+ssh://mooky/bazooka/baluba", "bazooka/baluba")
|
18
17
|
assert_equal("svn+ssh://mooky", svn.repourl)
|
19
18
|
|
20
19
|
svn.path = nil
|
File without changes
|
@@ -0,0 +1,875 @@
|
|
1
|
+
------------------------------------------------------------------------
|
2
|
+
r1501 | toby | 2005-03-01 00:49:55 -0600 (Tue, 01 Mar 2005) | 2 lines
|
3
|
+
Changed paths:
|
4
|
+
M /trunk/Bindings/tcl/Makefile
|
5
|
+
M /trunk/Bindings/tcl/TclGrowler.h
|
6
|
+
M /trunk/Bindings/tcl/TclGrowler.m
|
7
|
+
M /trunk/Bindings/tcl/growl.m
|
8
|
+
|
9
|
+
Style fixes, header cleanup, and minor build speedups.
|
10
|
+
|
11
|
+
------------------------------------------------------------------------
|
12
|
+
r1502 | tick | 2005-03-01 00:53:33 -0600 (Tue, 01 Mar 2005) | 2 lines
|
13
|
+
Changed paths:
|
14
|
+
M /trunk/changes.txt
|
15
|
+
|
16
|
+
So we're going to be putting out a .6.1
|
17
|
+
|
18
|
+
------------------------------------------------------------------------
|
19
|
+
r1503 | toby | 2005-03-01 01:02:18 -0600 (Tue, 01 Mar 2005) | 2 lines
|
20
|
+
Changed paths:
|
21
|
+
D /trunk/bugs.txt
|
22
|
+
|
23
|
+
Use trac!
|
24
|
+
|
25
|
+
------------------------------------------------------------------------
|
26
|
+
r1504 | toby | 2005-03-01 01:06:36 -0600 (Tue, 01 Mar 2005) | 2 lines
|
27
|
+
Changed paths:
|
28
|
+
D /trunk/Docs/For Developers and Scripters/GrowlDefinesCarbon
|
29
|
+
|
30
|
+
Obsolete documentation.
|
31
|
+
|
32
|
+
------------------------------------------------------------------------
|
33
|
+
r1505 | toby | 2005-03-01 01:09:36 -0600 (Tue, 01 Mar 2005) | 2 lines
|
34
|
+
Changed paths:
|
35
|
+
M /trunk/Examples/Beep-Carbon/Beep-Carbon.xcode/project.pbxproj
|
36
|
+
M /trunk/Growl.xcode/project.pbxproj
|
37
|
+
D /trunk/GrowlDefinesCarbon.h
|
38
|
+
|
39
|
+
GrowlDefinesCarbon.h is gone. Forever.
|
40
|
+
|
41
|
+
------------------------------------------------------------------------
|
42
|
+
r1506 | toby | 2005-03-01 01:12:26 -0600 (Tue, 01 Mar 2005) | 2 lines
|
43
|
+
Changed paths:
|
44
|
+
M /trunk/todo.txt
|
45
|
+
|
46
|
+
Tcl todo stuff isn't true anymore.
|
47
|
+
|
48
|
+
------------------------------------------------------------------------
|
49
|
+
r1507 | toby | 2005-03-01 01:14:23 -0600 (Tue, 01 Mar 2005) | 2 lines
|
50
|
+
Changed paths:
|
51
|
+
M /trunk/todo.txt
|
52
|
+
|
53
|
+
Python todo items have been taken care of.
|
54
|
+
|
55
|
+
------------------------------------------------------------------------
|
56
|
+
r1508 | toby | 2005-03-01 01:36:19 -0600 (Tue, 01 Mar 2005) | 2 lines
|
57
|
+
Changed paths:
|
58
|
+
M /trunk/todo.txt
|
59
|
+
|
60
|
+
Remove items that I've pushed into trac. Clean up a bit.
|
61
|
+
|
62
|
+
------------------------------------------------------------------------
|
63
|
+
r1509 | toby | 2005-03-01 02:54:07 -0600 (Tue, 01 Mar 2005) | 2 lines
|
64
|
+
Changed paths:
|
65
|
+
D /trunk/Scripts/todo.txt
|
66
|
+
|
67
|
+
This is obsolete.
|
68
|
+
|
69
|
+
------------------------------------------------------------------------
|
70
|
+
r1510 | toby | 2005-03-01 03:05:11 -0600 (Tue, 01 Mar 2005) | 2 lines
|
71
|
+
Changed paths:
|
72
|
+
R /trunk/Bindings/RBGrowl/GrowlDefines.h
|
73
|
+
|
74
|
+
Replace this copy with a symlink.
|
75
|
+
|
76
|
+
------------------------------------------------------------------------
|
77
|
+
r1511 | toby | 2005-03-01 03:29:35 -0600 (Tue, 01 Mar 2005) | 2 lines
|
78
|
+
Changed paths:
|
79
|
+
D /trunk/Installers
|
80
|
+
A /trunk/Release
|
81
|
+
A /trunk/Release/Growl.packproj (from /trunk/Installers/Growl.packproj:1510)
|
82
|
+
|
83
|
+
Move Growl.packproj into the new 'Release' directory.
|
84
|
+
|
85
|
+
------------------------------------------------------------------------
|
86
|
+
r1512 | toby | 2005-03-01 03:31:05 -0600 (Tue, 01 Mar 2005) | 2 lines
|
87
|
+
Changed paths:
|
88
|
+
D /trunk/Other/Growl-Frameworks.fsproj
|
89
|
+
D /trunk/Other/growl.fsproj
|
90
|
+
A /trunk/Release/Growl-Frameworks.fsproj (from /trunk/Other/Growl-Frameworks.fsproj:1510)
|
91
|
+
A /trunk/Release/growl.fsproj (from /trunk/Other/growl.fsproj:1510)
|
92
|
+
|
93
|
+
Move the .fsproj bundles into the 'Release' directory.
|
94
|
+
|
95
|
+
------------------------------------------------------------------------
|
96
|
+
r1513 | toby | 2005-03-01 03:31:42 -0600 (Tue, 01 Mar 2005) | 2 lines
|
97
|
+
Changed paths:
|
98
|
+
M /trunk/todo.txt
|
99
|
+
|
100
|
+
Update todo
|
101
|
+
|
102
|
+
------------------------------------------------------------------------
|
103
|
+
r1514 | toby | 2005-03-01 03:40:29 -0600 (Tue, 01 Mar 2005) | 2 lines
|
104
|
+
Changed paths:
|
105
|
+
M /trunk/Makefile
|
106
|
+
D /trunk/uninstaller.command
|
107
|
+
|
108
|
+
Add an uninstall target to the makefile, get rid of uninstaller.command
|
109
|
+
|
110
|
+
------------------------------------------------------------------------
|
111
|
+
r1515 | ingmarstein | 2005-03-01 04:10:40 -0600 (Tue, 01 Mar 2005) | 2 lines
|
112
|
+
Changed paths:
|
113
|
+
M /trunk/Source/GrowlPref.h
|
114
|
+
M /trunk/Source/GrowlPref.m
|
115
|
+
|
116
|
+
Fixed trac ticket #8: Check for updates crashes system prefs
|
117
|
+
|
118
|
+
------------------------------------------------------------------------
|
119
|
+
r1516 | toby | 2005-03-01 04:24:02 -0600 (Tue, 01 Mar 2005) | 2 lines
|
120
|
+
Changed paths:
|
121
|
+
M /trunk/GrowlApplicationBridge.m
|
122
|
+
|
123
|
+
Fix warning.
|
124
|
+
|
125
|
+
------------------------------------------------------------------------
|
126
|
+
r1517 | toby | 2005-03-01 04:32:33 -0600 (Tue, 01 Mar 2005) | 2 lines
|
127
|
+
Changed paths:
|
128
|
+
M /trunk/GrowlApplicationBridge.m
|
129
|
+
|
130
|
+
Nuke deprecated methods. Hurray!
|
131
|
+
|
132
|
+
------------------------------------------------------------------------
|
133
|
+
r1518 | toby | 2005-03-01 04:34:53 -0600 (Tue, 01 Mar 2005) | 2 lines
|
134
|
+
Changed paths:
|
135
|
+
M /trunk/GrowlApplicationBridge.m
|
136
|
+
|
137
|
+
Should probably really, really get rid of _deprecatedNotifyTargetsGrowlIsReady.
|
138
|
+
|
139
|
+
------------------------------------------------------------------------
|
140
|
+
r1519 | toby | 2005-03-01 04:38:34 -0600 (Tue, 01 Mar 2005) | 2 lines
|
141
|
+
Changed paths:
|
142
|
+
M /trunk/Extras/GrowlTunes/GrowlTunesController.h
|
143
|
+
M /trunk/Extras/GrowlTunes/GrowlTunesController.m
|
144
|
+
|
145
|
+
Delete code using the old API.
|
146
|
+
|
147
|
+
------------------------------------------------------------------------
|
148
|
+
r1520 | toby | 2005-03-01 04:42:15 -0600 (Tue, 01 Mar 2005) | 2 lines
|
149
|
+
Changed paths:
|
150
|
+
M /trunk/GrowlApplicationBridge-Carbon.c
|
151
|
+
M /trunk/GrowlApplicationBridge-Carbon.h
|
152
|
+
|
153
|
+
LaunchGrowlIfInstalled was deprecated, and now it's gone.
|
154
|
+
|
155
|
+
------------------------------------------------------------------------
|
156
|
+
r1521 | toby | 2005-03-01 04:48:56 -0600 (Tue, 01 Mar 2005) | 2 lines
|
157
|
+
Changed paths:
|
158
|
+
M /trunk/Extras/macyac/Makefile
|
159
|
+
M /trunk/Extras/macyac/macyac.m
|
160
|
+
|
161
|
+
Quick hack to make this compile. Also, fix some warnings.
|
162
|
+
|
163
|
+
------------------------------------------------------------------------
|
164
|
+
r1522 | proton | 2005-03-01 04:59:48 -0600 (Tue, 01 Mar 2005) | 2 lines
|
165
|
+
Changed paths:
|
166
|
+
M /trunk/Extras/macyac/macyac.m
|
167
|
+
|
168
|
+
Nuke warning with -Wall on format string
|
169
|
+
|
170
|
+
------------------------------------------------------------------------
|
171
|
+
r1523 | diggory | 2005-03-01 12:14:26 -0600 (Tue, 01 Mar 2005) | 1 line
|
172
|
+
Changed paths:
|
173
|
+
M /trunk/Bindings/perl/Mac-Growl/lib/Mac/Growl.pm
|
174
|
+
|
175
|
+
Fixed broken AppleScript Command reference in growl.pm (AppleScript dictionary changed slightly when referring to images in 0.6)
|
176
|
+
------------------------------------------------------------------------
|
177
|
+
r1526 | ingmarstein | 2005-03-01 15:29:06 -0600 (Tue, 01 Mar 2005) | 2 lines
|
178
|
+
Changed paths:
|
179
|
+
M /trunk/Display Plugins/Speech/English.lproj/GrowlSpeechPrefs.nib/keyedobjects.nib
|
180
|
+
M /trunk/Display Plugins/Speech/German.lproj/GrowlSpeechPrefs.nib/info.nib
|
181
|
+
M /trunk/Display Plugins/Speech/German.lproj/GrowlSpeechPrefs.nib/keyedobjects.nib
|
182
|
+
M /trunk/Display Plugins/Speech/GrowlSpeechPrefs.m
|
183
|
+
M /trunk/Growl.xcode/project.pbxproj
|
184
|
+
|
185
|
+
Fix scrollbars not appearing in speech prefs
|
186
|
+
|
187
|
+
------------------------------------------------------------------------
|
188
|
+
r1529 | tick | 2005-03-02 02:06:07 -0600 (Wed, 02 Mar 2005) | 2 lines
|
189
|
+
Changed paths:
|
190
|
+
M /trunk/Scripts/Email/Entourage Advanced.scpt
|
191
|
+
|
192
|
+
Same script as commit 1528.
|
193
|
+
|
194
|
+
------------------------------------------------------------------------
|
195
|
+
r1534 | tick | 2005-03-02 02:55:11 -0600 (Wed, 02 Mar 2005) | 3 lines
|
196
|
+
Changed paths:
|
197
|
+
M /trunk/Growl.xcode/project.pbxproj
|
198
|
+
|
199
|
+
The shell script to remove the .DS_Store and other madness which XCode decides is a great idea to build into EVERYTHING wasn't wrapped in "", so when they expanded and the path had a nice space, well builds would fail apparently. Thanks to jkp for finding this.
|
200
|
+
Fixed for the prefpane target, and the frameworks as well.
|
201
|
+
|
202
|
+
------------------------------------------------------------------------
|
203
|
+
r1538 | boredzo | 2005-03-02 03:06:10 -0600 (Wed, 02 Mar 2005) | 7 lines
|
204
|
+
Changed paths:
|
205
|
+
M /trunk/GrowlApplicationBridge.m
|
206
|
+
M /trunk/GrowlInstallationPrompt.m
|
207
|
+
|
208
|
+
In GrowlInstallationPrompt:
|
209
|
+
- We no longer display the prompt on versions of Mac OS X earlier than 10.3.
|
210
|
+
- We now consider the result of [super initWithWindowNibName:nibName].
|
211
|
+
In GrowlApplicationBridge:
|
212
|
+
- Fixed bundle-ID comparisons. The result of the existing call to compare: was not compared against NSOrderedSame; changed the call to isEqualToString: above it to an identical call to compare:.
|
213
|
+
- Minor code clean-up on one and a half (average) lines.
|
214
|
+
|
215
|
+
------------------------------------------------------------------------
|
216
|
+
r1539 | tick | 2005-03-02 03:06:16 -0600 (Wed, 02 Mar 2005) | 2 lines
|
217
|
+
Changed paths:
|
218
|
+
M /trunk/todo.txt
|
219
|
+
|
220
|
+
Removing some stuff converted to trac.
|
221
|
+
|
222
|
+
------------------------------------------------------------------------
|
223
|
+
r1542 | ingmarstein | 2005-03-02 13:10:58 -0600 (Wed, 02 Mar 2005) | 3 lines
|
224
|
+
Changed paths:
|
225
|
+
M /trunk/Extras/HardwareGrowler/AppController.h
|
226
|
+
M /trunk/Extras/HardwareGrowler/AppController.m
|
227
|
+
M /trunk/Extras/HardwareGrowler/BluetoothNotifier.m
|
228
|
+
M /trunk/Extras/HardwareGrowler/FireWireNotifier.m
|
229
|
+
M /trunk/Extras/HardwareGrowler/HardwareGrowler.xcode/project.pbxproj
|
230
|
+
M /trunk/Extras/HardwareGrowler/NetworkNotifier.m
|
231
|
+
M /trunk/Extras/HardwareGrowler/USBNotifier.m
|
232
|
+
M /trunk/Extras/HardwareGrowler/VolumeNotifier.m
|
233
|
+
|
234
|
+
Suppress notifications which occur during sleep
|
235
|
+
Correctly remove observer in dealloc
|
236
|
+
|
237
|
+
------------------------------------------------------------------------
|
238
|
+
r1543 | toby | 2005-03-02 22:55:36 -0600 (Wed, 02 Mar 2005) | 2 lines
|
239
|
+
Changed paths:
|
240
|
+
D /trunk/Bindings/RBGrowl
|
241
|
+
A /trunk/Bindings/realbasic (from /trunk/Bindings/RBGrowl:1542)
|
242
|
+
|
243
|
+
Rename RBGrowl directory to realbasic, for consistency.
|
244
|
+
|
245
|
+
------------------------------------------------------------------------
|
246
|
+
r1544 | toby | 2005-03-02 23:00:22 -0600 (Wed, 02 Mar 2005) | 2 lines
|
247
|
+
Changed paths:
|
248
|
+
M /trunk/Bindings/tcl/TclGrowler.h
|
249
|
+
M /trunk/Bindings/tcl/TclGrowler.m
|
250
|
+
M /trunk/Bindings/tcl/growl.m
|
251
|
+
|
252
|
+
Update/add copyright headers.
|
253
|
+
|
254
|
+
------------------------------------------------------------------------
|
255
|
+
r1547 | boredzo | 2005-03-03 00:47:05 -0600 (Thu, 03 Mar 2005) | 3 lines
|
256
|
+
Changed paths:
|
257
|
+
M /trunk/Growl.xcode/project.pbxproj
|
258
|
+
|
259
|
+
Enquoted all shell script environment variable references. Fixes #52.
|
260
|
+
Removed shell commands to create compatibility symlinks so that Growl.framework can be renamed or symlinked to GrowlAppBridge.framework. Fixes #51.
|
261
|
+
|
262
|
+
------------------------------------------------------------------------
|
263
|
+
r1548 | tick | 2005-03-03 00:52:28 -0600 (Thu, 03 Mar 2005) | 2 lines
|
264
|
+
Changed paths:
|
265
|
+
M /trunk/todo.txt
|
266
|
+
|
267
|
+
More killing of the todo.txt. It's starting to stumble, and shall soon fall.
|
268
|
+
|
269
|
+
------------------------------------------------------------------------
|
270
|
+
r1549 | boredzo | 2005-03-03 01:42:07 -0600 (Thu, 03 Mar 2005) | 7 lines
|
271
|
+
Changed paths:
|
272
|
+
M /trunk/Growl.xcode/project.pbxproj
|
273
|
+
M /trunk/Source/GrowlController.m
|
274
|
+
|
275
|
+
Added a shell script phase to GHA which runs perl over svn info and puts the output into a 'SVNRevision.h' file.
|
276
|
+
Added that file to the project.
|
277
|
+
GrowlController's -versionDictionary method now uses the value defined in SVNRevision.h, rather than the borken $Revision$ tag it had in [1498]. (I know that's the revision because that's what the line said. Apparently svn updates the line on checkin, not checkout.)
|
278
|
+
GrowlController's -stringWithVersionDictionary: method now calls -versionDictionary instead of assuming that versionInfo had already been generated. This means that you can now simply pass nil to -stringWithVersionDictionary: instead of calling -versionDictionary first.
|
279
|
+
Added a comment documenting the immediately previous.
|
280
|
+
Added a default named PrintVersionAndExit which, when true, washes your car. No, that's not it... ah yes, it prints the version and exits. This means that you can now type /Path/To/GrowlHelperApp.app/Contents/MacOS/GrowlHelperApp -PrintVersionAndExit 1 into a Terminal, and GrowlHelperApp will wash your car. And then print its version and exit.
|
281
|
+
|
282
|
+
------------------------------------------------------------------------
|
283
|
+
r1550 | tick | 2005-03-03 03:35:39 -0600 (Thu, 03 Mar 2005) | 2 lines
|
284
|
+
Changed paths:
|
285
|
+
M /trunk/todo.txt
|
286
|
+
|
287
|
+
This is empty now.
|
288
|
+
|
289
|
+
------------------------------------------------------------------------
|
290
|
+
r1551 | tick | 2005-03-03 03:36:32 -0600 (Thu, 03 Mar 2005) | 2 lines
|
291
|
+
Changed paths:
|
292
|
+
D /trunk/todo.txt
|
293
|
+
|
294
|
+
Now I can even remove this from the trunk. Hurray for trac.
|
295
|
+
|
296
|
+
------------------------------------------------------------------------
|
297
|
+
r1552 | toby | 2005-03-03 03:41:42 -0600 (Thu, 03 Mar 2005) | 2 lines
|
298
|
+
Changed paths:
|
299
|
+
D /trunk/images/icons/growl-icon
|
300
|
+
|
301
|
+
Removing empty file.
|
302
|
+
|
303
|
+
------------------------------------------------------------------------
|
304
|
+
r1553 | toby | 2005-03-03 03:42:51 -0600 (Thu, 03 Mar 2005) | 2 lines
|
305
|
+
Changed paths:
|
306
|
+
D /trunk/images/icons/License-for-whistle.psd.txt
|
307
|
+
A /trunk/images/icons/whistle.psd-license.txt (from /trunk/images/icons/License-for-whistle.psd.txt:1551)
|
308
|
+
|
309
|
+
Renaming whistle.psd license so that it sorts better.
|
310
|
+
|
311
|
+
------------------------------------------------------------------------
|
312
|
+
r1554 | toby | 2005-03-03 03:45:49 -0600 (Thu, 03 Mar 2005) | 2 lines
|
313
|
+
Changed paths:
|
314
|
+
M /trunk/Examples/Index.rtf
|
315
|
+
A /trunk/images/icons/whistle.psd-readme.txt
|
316
|
+
|
317
|
+
Move whistle.psd info out of the Examples index, since the file isn't there.
|
318
|
+
|
319
|
+
------------------------------------------------------------------------
|
320
|
+
r1555 | pudge | 2005-03-03 11:56:21 -0600 (Thu, 03 Mar 2005) | 4 lines
|
321
|
+
Changed paths:
|
322
|
+
M /trunk/Bindings/perl/Mac-Growl/Changes
|
323
|
+
M /trunk/Bindings/perl/Mac-Growl/Makefile.PL
|
324
|
+
M /trunk/Bindings/perl/Mac-Growl/README
|
325
|
+
M /trunk/Bindings/perl/Mac-Growl/lib/Mac/Growl.pm
|
326
|
+
M /trunk/Bindings/perl/Mac-Growl/t/Mac-Growl.t
|
327
|
+
|
328
|
+
Updated to Growl 0.6, Mac OS X 10.4
|
329
|
+
Made images work with Foundation again
|
330
|
+
|
331
|
+
|
332
|
+
------------------------------------------------------------------------
|
333
|
+
r1556 | diggory | 2005-03-03 15:40:22 -0600 (Thu, 03 Mar 2005) | 5 lines
|
334
|
+
Changed paths:
|
335
|
+
M /trunk/Extras/GrowlTunes/GrowlTunes.xcode/project.pbxproj
|
336
|
+
M /trunk/Extras/GrowlTunes/Plugins/Examples/Amazon/GrowlTunes-Amazon.h
|
337
|
+
M /trunk/Extras/GrowlTunes/Plugins/Examples/Amazon/GrowlTunes-Amazon.m
|
338
|
+
M /trunk/Extras/GrowlTunes/Plugins/Examples/Amazon/GrowlTunes-Amazon.xcode/project.pbxproj
|
339
|
+
M /trunk/Extras/GrowlTunes/Plugins/TestHarness/AppDelegate.h
|
340
|
+
M /trunk/Extras/GrowlTunes/Plugins/TestHarness/AppDelegate.m
|
341
|
+
M /trunk/Extras/GrowlTunes/Plugins/TestHarness/TestHarness.xcode/project.pbxproj
|
342
|
+
|
343
|
+
Added a log to the GrowlTunes TestHarness so that you know where it's pulling the Plug-ins from.
|
344
|
+
Converted GrowlTunes to use Amazons v4 API - This requires the DOMFramework (which is [http://sourceforge.net/projects/iconaradom available from sourcefourge]) - Thanks to Fjolnir
|
345
|
+
Asgeirsson for the code. (Apologies for stripping the accents from your name - svn didn't like them.) This should solve #28
|
346
|
+
|
347
|
+
|
348
|
+
------------------------------------------------------------------------
|
349
|
+
r1560 | aranor | 2005-03-04 10:22:17 -0600 (Fri, 04 Mar 2005) | 4 lines
|
350
|
+
Changed paths:
|
351
|
+
M /trunk/Growl.xcode/project.pbxproj
|
352
|
+
|
353
|
+
Fix SVNRevision shell script phase
|
354
|
+
It now uses /bin/sh instead of /bin/zsh
|
355
|
+
It uses awk instead of perl
|
356
|
+
And it actually builds now
|
357
|
+
------------------------------------------------------------------------
|
358
|
+
r1561 | aranor | 2005-03-04 10:54:10 -0600 (Fri, 04 Mar 2005) | 1 line
|
359
|
+
Changed paths:
|
360
|
+
M /trunk
|
361
|
+
|
362
|
+
Put SVNRevision.h into svn:ignore - we don't need it in svn since it's auto-generated on build
|
363
|
+
------------------------------------------------------------------------
|
364
|
+
r1562 | toby | 2005-03-04 11:36:20 -0600 (Fri, 04 Mar 2005) | 2 lines
|
365
|
+
Changed paths:
|
366
|
+
M /trunk/Bindings/tcl
|
367
|
+
|
368
|
+
Don't need to ignore this anymore.
|
369
|
+
|
370
|
+
------------------------------------------------------------------------
|
371
|
+
r1563 | toby | 2005-03-04 11:55:11 -0600 (Fri, 04 Mar 2005) | 2 lines
|
372
|
+
Changed paths:
|
373
|
+
M /trunk/Growl.xcode/project.pbxproj
|
374
|
+
|
375
|
+
Create SVNRevision.h in the buildroot, don't dirty the source.
|
376
|
+
|
377
|
+
------------------------------------------------------------------------
|
378
|
+
r1564 | toby | 2005-03-04 11:56:36 -0600 (Fri, 04 Mar 2005) | 2 lines
|
379
|
+
Changed paths:
|
380
|
+
M /trunk
|
381
|
+
|
382
|
+
Don't ignore SVNRevision.h
|
383
|
+
|
384
|
+
------------------------------------------------------------------------
|
385
|
+
r1565 | Machina | 2005-03-04 16:39:41 -0600 (Fri, 04 Mar 2005) | 2 lines
|
386
|
+
Changed paths:
|
387
|
+
M /trunk/Docs/For Developers and Scripters/GrowlAppBridge/Classes/GrowlAppBridge/CompositePage.html
|
388
|
+
M /trunk/Docs/For Developers and Scripters/GrowlAppBridge/Classes/GrowlAppBridge/Methods/Methods.html
|
389
|
+
M /trunk/Docs/For Developers and Scripters/GrowlAppBridge/CompositePage.html
|
390
|
+
M /trunk/Docs/For Developers and Scripters/GrowlAppBridge/GrowlAppBridge.html
|
391
|
+
M /trunk/Docs/For Developers and Scripters/GrowlAppBridge/index.html
|
392
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/Categories/NSObject_GrowlApplicationBridgeDelegate_InformalProtocol_/CompositePage.html
|
393
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/Categories/NSObject_GrowlApplicationBridgeDelegate_InformalProtocol_/Methods/Methods.html
|
394
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/Categories/NSObject_GrowlApplicationBridgeDelegate_Installation_InformalProtocol_/CompositePage.html
|
395
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/Categories/NSObject_GrowlApplicationBridgeDelegate_Installation_InformalProtocol_/Methods/Methods.html
|
396
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/Classes/GrowlApplicationBridge/CompositePage.html
|
397
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/Classes/GrowlApplicationBridge/Methods/Methods.html
|
398
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/CompositePage.html
|
399
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/GrowlApplicationBridge.html
|
400
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/PDefines/PDefines.html
|
401
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/Protocols/GrowlApplicationBridgeDelegate/CompositePage.html
|
402
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/Protocols/GrowlApplicationBridgeDelegate/Methods/Methods.html
|
403
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge/index.html
|
404
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge-Carbon/CompositePage.html
|
405
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge-Carbon/Functions/Functions.html
|
406
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge-Carbon/GrowlApplicationBridge_Carbon.html
|
407
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge-Carbon/index.html
|
408
|
+
M /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge-Carbon/toc.html
|
409
|
+
A /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge.m
|
410
|
+
A /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge.m/CompositePage.html
|
411
|
+
A /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge.m/Functions
|
412
|
+
A /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge.m/Functions/Functions.html
|
413
|
+
A /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge.m/GrowlApplicationBridge.m.html
|
414
|
+
A /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge.m/index.html
|
415
|
+
A /trunk/Docs/For Developers and Scripters/GrowlApplicationBridge.m/toc.html
|
416
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefines/CompositePage.html
|
417
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefines/GrowlDefines.html
|
418
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefines/PDefines/PDefines.html
|
419
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefines/index.html
|
420
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefines/toc.html
|
421
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefinesInternal/CompositePage.html
|
422
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefinesInternal/Functions/Functions.html
|
423
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefinesInternal/GrowlDefinesInternal.html
|
424
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefinesInternal/PDefines/PDefines.html
|
425
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefinesInternal/Structs/Structs.html
|
426
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefinesInternal/index.html
|
427
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDefinesInternal/toc.html
|
428
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDisplayProtocol/CompositePage.html
|
429
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDisplayProtocol/GrowlDisplayProtocol.html
|
430
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDisplayProtocol/Protocols/GrowlDisplayPlugin/CompositePage.html
|
431
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDisplayProtocol/Protocols/GrowlDisplayPlugin/Methods/Methods.html
|
432
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDisplayProtocol/Protocols/GrowlFunctionalPlugin/CompositePage.html
|
433
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDisplayProtocol/Protocols/GrowlPlugin/CompositePage.html
|
434
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDisplayProtocol/Protocols/GrowlPlugin/Methods/Methods.html
|
435
|
+
M /trunk/Docs/For Developers and Scripters/GrowlDisplayProtocol/index.html
|
436
|
+
|
437
|
+
take 2: fixed headerdocs
|
438
|
+
|
439
|
+
------------------------------------------------------------------------
|
440
|
+
r1566 | boredzo | 2005-03-04 16:43:54 -0600 (Fri, 04 Mar 2005) | 2 lines
|
441
|
+
Changed paths:
|
442
|
+
M /trunk/GrowlDefines.h
|
443
|
+
|
444
|
+
Added a STRING macro which expands to NSString *or CFStringRef.
|
445
|
+
|
446
|
+
------------------------------------------------------------------------
|
447
|
+
r1570 | boredzo | 2005-03-04 18:20:22 -0600 (Fri, 04 Mar 2005) | 2 lines
|
448
|
+
Changed paths:
|
449
|
+
M /trunk/Source/GrowlPreferences.m
|
450
|
+
|
451
|
+
GrowlPreferences now calls up to [super init].
|
452
|
+
|
453
|
+
------------------------------------------------------------------------
|
454
|
+
r1571 | boredzo | 2005-03-04 18:30:39 -0600 (Fri, 04 Mar 2005) | 6 lines
|
455
|
+
Changed paths:
|
456
|
+
M /trunk
|
457
|
+
A /trunk/Common code
|
458
|
+
A /trunk/Common code/GrowlDefines.h (from /trunk/GrowlDefines.h:1566)
|
459
|
+
A /trunk/Common code/GrowlDefinesInternal.h (from /trunk/GrowlDefinesInternal.h:1566)
|
460
|
+
A /trunk/Common code/GrowlVersionUtilities.c
|
461
|
+
A /trunk/Common code/GrowlVersionUtilities.h
|
462
|
+
A /trunk/Common code/README
|
463
|
+
M /trunk/Growl.xcode/project.pbxproj
|
464
|
+
M /trunk/GrowlApplicationBridge.m
|
465
|
+
D /trunk/GrowlDefines.h
|
466
|
+
D /trunk/GrowlDefinesInternal.h
|
467
|
+
M /trunk/Source/GrowlController.m
|
468
|
+
M /trunk/Source/GrowlPref.m
|
469
|
+
|
470
|
+
Adding a new 'Common code' folder, for source files shared between any two of the frameworks, the prefpane, and GHA.
|
471
|
+
Adding GrowlVersionUtilities, containing C functions for parsing, unparsing, and comparing versions. Used by both the WithInstaller framework and the prefpane. (Should also be used by GHA for auto-discovery.)
|
472
|
+
Removed version-related declarations from GrowlController.m, as they have moved to GrowlVersionUtilities.h.
|
473
|
+
Moved GrowlDefines{,Internal}.h into the 'Common code' folder.
|
474
|
+
Added SVNRevision.h to the top-level svn:ignore.
|
475
|
+
|
476
|
+
------------------------------------------------------------------------
|
477
|
+
r1572 | boredzo | 2005-03-04 19:09:10 -0600 (Fri, 04 Mar 2005) | 3 lines
|
478
|
+
Changed paths:
|
479
|
+
M /trunk/Common code/GrowlVersionUtilities.c
|
480
|
+
M /trunk/Common code/GrowlVersionUtilities.h
|
481
|
+
M /trunk/Growl.xcode/project.pbxproj
|
482
|
+
M /trunk/Source/GrowlController.m
|
483
|
+
|
484
|
+
It builds now! Yay!
|
485
|
+
Also, we no longer copy headers into the GHA and Growl.prefpane bundles.
|
486
|
+
|
487
|
+
------------------------------------------------------------------------
|
488
|
+
r1573 | boredzo | 2005-03-05 00:15:11 -0600 (Sat, 05 Mar 2005) | 2 lines
|
489
|
+
Changed paths:
|
490
|
+
M /trunk/Scripts/iPod/iPod Checker.scpt
|
491
|
+
|
492
|
+
Register whether or not an iPod is found.
|
493
|
+
|
494
|
+
------------------------------------------------------------------------
|
495
|
+
r1574 | boredzo | 2005-03-05 00:15:57 -0600 (Sat, 05 Mar 2005) | 2 lines
|
496
|
+
Changed paths:
|
497
|
+
M /trunk/Scripts/iPod/iPod Checker.scpt
|
498
|
+
|
499
|
+
Terminating newline.
|
500
|
+
|
501
|
+
------------------------------------------------------------------------
|
502
|
+
r1575 | boredzo | 2005-03-05 00:18:33 -0600 (Sat, 05 Mar 2005) | 4 lines
|
503
|
+
Changed paths:
|
504
|
+
M /trunk/Scripts/iPod/iPod Checker.scpt
|
505
|
+
|
506
|
+
Added missing arguments to the second notify command.
|
507
|
+
Moved 'application name' up in the first notify command.
|
508
|
+
Corrected file: URLs.
|
509
|
+
|
510
|
+
------------------------------------------------------------------------
|
511
|
+
r1576 | boredzo | 2005-03-05 00:19:24 -0600 (Sat, 05 Mar 2005) | 2 lines
|
512
|
+
Changed paths:
|
513
|
+
M /trunk/Scripts/iPod/iPod Checker.scpt
|
514
|
+
|
515
|
+
Save before committing!
|
516
|
+
|
517
|
+
------------------------------------------------------------------------
|
518
|
+
r1578 | boredzo | 2005-03-05 01:07:25 -0600 (Sat, 05 Mar 2005) | 2 lines
|
519
|
+
Changed paths:
|
520
|
+
A /trunk/Common
|
521
|
+
A /trunk/Common/Source
|
522
|
+
A /trunk/Common/Source/GrowlDefines.h
|
523
|
+
A /trunk/Common/Source/GrowlDefinesInternal.h
|
524
|
+
A /trunk/Common/Source/GrowlVersionUtilities.c
|
525
|
+
A /trunk/Common/Source/GrowlVersionUtilities.h
|
526
|
+
A /trunk/Common/Source/README
|
527
|
+
D /trunk/Common code
|
528
|
+
A /trunk/Core
|
529
|
+
A /trunk/Core/Source
|
530
|
+
A /trunk/Core/Source/ACImageAndTextCell.h
|
531
|
+
A /trunk/Core/Source/ACImageAndTextCell.m
|
532
|
+
A /trunk/Core/Source/CoreGraphicsServices.h
|
533
|
+
A /trunk/Core/Source/FadingWindowController.h
|
534
|
+
A /trunk/Core/Source/FadingWindowController.m
|
535
|
+
A /trunk/Core/Source/GrowlApplicationNotification.h
|
536
|
+
A /trunk/Core/Source/GrowlApplicationNotification.m
|
537
|
+
A /trunk/Core/Source/GrowlApplicationTicket.h
|
538
|
+
A /trunk/Core/Source/GrowlApplicationTicket.m
|
539
|
+
A /trunk/Core/Source/GrowlBezierPathAdditions.h
|
540
|
+
A /trunk/Core/Source/GrowlBezierPathAdditions.m
|
541
|
+
A /trunk/Core/Source/GrowlController.h
|
542
|
+
A /trunk/Core/Source/GrowlController.m
|
543
|
+
A /trunk/Core/Source/GrowlImageAdditions.h
|
544
|
+
A /trunk/Core/Source/GrowlImageAdditions.m
|
545
|
+
A /trunk/Core/Source/GrowlNotificationServer.h
|
546
|
+
A /trunk/Core/Source/GrowlNotificationServer.m
|
547
|
+
A /trunk/Core/Source/GrowlPluginController.h
|
548
|
+
A /trunk/Core/Source/GrowlPluginController.m
|
549
|
+
A /trunk/Core/Source/GrowlPref.h
|
550
|
+
A /trunk/Core/Source/GrowlPref.m
|
551
|
+
A /trunk/Core/Source/GrowlPreferences.h
|
552
|
+
A /trunk/Core/Source/GrowlPreferences.m
|
553
|
+
A /trunk/Core/Source/GrowlUDPServer.h
|
554
|
+
A /trunk/Core/Source/GrowlUDPServer.m
|
555
|
+
A /trunk/Core/Source/GrowlUDPUtils.h
|
556
|
+
A /trunk/Core/Source/GrowlUDPUtils.m
|
557
|
+
A /trunk/Core/Source/Growl_Prefix.pch
|
558
|
+
A /trunk/Core/Source/HelperMain.m
|
559
|
+
A /trunk/Core/Source/NSGrowlAdditions.h
|
560
|
+
A /trunk/Core/Source/NSGrowlAdditions.m
|
561
|
+
A /trunk/Core/Source/NSWindow+Transforms.h
|
562
|
+
A /trunk/Core/Source/NSWindow+Transforms.m
|
563
|
+
A /trunk/Core/Source/README
|
564
|
+
A /trunk/Core/Source/RRTableView.h
|
565
|
+
A /trunk/Core/Source/RRTableView.m
|
566
|
+
A /trunk/Framework
|
567
|
+
A /trunk/Framework/Source
|
568
|
+
A /trunk/Framework/Source/Growl.h
|
569
|
+
A /trunk/Framework/Source/GrowlAppBridge-Carbon.h
|
570
|
+
A /trunk/Framework/Source/GrowlAppBridge.h
|
571
|
+
A /trunk/Framework/Source/GrowlAppBridge.m
|
572
|
+
A /trunk/Framework/Source/GrowlAppBridge_Prefix.pch
|
573
|
+
A /trunk/Framework/Source/GrowlApplicationBridge-Carbon.c
|
574
|
+
A /trunk/Framework/Source/GrowlApplicationBridge-Carbon.h
|
575
|
+
A /trunk/Framework/Source/GrowlApplicationBridge.h
|
576
|
+
A /trunk/Framework/Source/GrowlApplicationBridge.m
|
577
|
+
A /trunk/Framework/Source/GrowlFramework_Prefix.pch
|
578
|
+
A /trunk/Framework/Source/GrowlInstallationPrompt.h
|
579
|
+
A /trunk/Framework/Source/GrowlInstallationPrompt.m
|
580
|
+
A /trunk/Framework/Source/README
|
581
|
+
D /trunk/Growl.h
|
582
|
+
M /trunk/Growl.xcode/project.pbxproj
|
583
|
+
D /trunk/GrowlAppBridge-Carbon.h
|
584
|
+
D /trunk/GrowlAppBridge.h
|
585
|
+
D /trunk/GrowlAppBridge.m
|
586
|
+
D /trunk/GrowlAppBridge_Prefix.pch
|
587
|
+
D /trunk/GrowlApplicationBridge-Carbon.c
|
588
|
+
D /trunk/GrowlApplicationBridge-Carbon.h
|
589
|
+
D /trunk/GrowlApplicationBridge.h
|
590
|
+
D /trunk/GrowlApplicationBridge.m
|
591
|
+
D /trunk/GrowlFramework_Prefix.pch
|
592
|
+
D /trunk/GrowlInstallationPrompt.h
|
593
|
+
D /trunk/GrowlInstallationPrompt.m
|
594
|
+
D /trunk/Source
|
595
|
+
|
596
|
+
Hugemongous reorg. All source files for the prefpane and GHA are now in Core/Source; all source files for the frameworks are now in Framework/Source; all source files between any two or more of the three are in Common/Source.
|
597
|
+
|
598
|
+
------------------------------------------------------------------------
|
599
|
+
r1579 | boredzo | 2005-03-05 02:28:01 -0600 (Sat, 05 Mar 2005) | 2 lines
|
600
|
+
Changed paths:
|
601
|
+
A /trunk/Common/Resources
|
602
|
+
A /trunk/Core/Resources
|
603
|
+
A /trunk/Core/Resources/English.lproj
|
604
|
+
A /trunk/Core/Resources/English.lproj/GrowlPref.nib (from /trunk/Resources/English.lproj/GrowlPref.nib:1570)
|
605
|
+
A /trunk/Core/Resources/English.lproj/InfoPlist.strings (from /trunk/Resources/English.lproj/InfoPlist.strings:1570)
|
606
|
+
A /trunk/Core/Resources/English.lproj/Localizable.strings (from /trunk/Resources/English.lproj/Localizable.strings:1570)
|
607
|
+
A /trunk/Core/Resources/German.lproj
|
608
|
+
A /trunk/Core/Resources/German.lproj/GrowlPref.nib (from /trunk/Resources/German.lproj/GrowlPref.nib:1570)
|
609
|
+
A /trunk/Core/Resources/German.lproj/InfoPlist.strings (from /trunk/Resources/German.lproj/InfoPlist.strings:1570)
|
610
|
+
A /trunk/Core/Resources/German.lproj/Localizable.strings (from /trunk/Resources/German.lproj/Localizable.strings:1570)
|
611
|
+
A /trunk/Core/Resources/GrowlDefaults.plist (from /trunk/Resources/GrowlDefaults.plist:1570)
|
612
|
+
A /trunk/Core/Resources/GrowlHelperApp-Info.plist (from /trunk/Resources/GrowlHelperApp-Info.plist:1570)
|
613
|
+
A /trunk/Core/Resources/GrowlPref.tiff (from /trunk/Resources/GrowlPref.tiff:1570)
|
614
|
+
A /trunk/Core/Resources/Info.plist (from /trunk/Resources/Info.plist:1570)
|
615
|
+
A /trunk/Core/Resources/version.plist (from /trunk/Resources/version.plist:1570)
|
616
|
+
A /trunk/Framework/Resources
|
617
|
+
A /trunk/Framework/Resources/English.lproj
|
618
|
+
A /trunk/Framework/Resources/English.lproj/GrowlInstallation.strings (from /trunk/Resources/English.lproj/GrowlInstallation.strings:1570)
|
619
|
+
A /trunk/Framework/Resources/English.lproj/GrowlInstallationPrompt.nib (from /trunk/Resources/English.lproj/GrowlInstallationPrompt.nib:1578)
|
620
|
+
A /trunk/Framework/Resources/German.lproj
|
621
|
+
A /trunk/Framework/Resources/German.lproj/GrowlInstallation.strings (from /trunk/Resources/German.lproj/GrowlInstallation.strings:1570)
|
622
|
+
A /trunk/Framework/Resources/German.lproj/GrowlInstallationPrompt.nib (from /trunk/Resources/German.lproj/GrowlInstallationPrompt.nib:1570)
|
623
|
+
A /trunk/Framework/Resources/Growl-WithInstaller.framework-Info.plist (from /trunk/Resources/Growl-WithInstaller.framework-Info.plist:1570)
|
624
|
+
A /trunk/Framework/Resources/Growl.framework-Info.plist (from /trunk/Resources/Growl.framework-Info.plist:1570)
|
625
|
+
D /trunk/Resources/English.lproj/GrowlInstallation.strings
|
626
|
+
D /trunk/Resources/English.lproj/GrowlInstallationPrompt.nib
|
627
|
+
D /trunk/Resources/English.lproj/GrowlPref.nib
|
628
|
+
D /trunk/Resources/English.lproj/InfoPlist.strings
|
629
|
+
D /trunk/Resources/English.lproj/Localizable.strings
|
630
|
+
D /trunk/Resources/German.lproj/GrowlInstallation.strings
|
631
|
+
D /trunk/Resources/German.lproj/GrowlInstallationPrompt.nib
|
632
|
+
D /trunk/Resources/German.lproj/GrowlPref.nib
|
633
|
+
D /trunk/Resources/German.lproj/InfoPlist.strings
|
634
|
+
D /trunk/Resources/German.lproj/Localizable.strings
|
635
|
+
D /trunk/Resources/Growl-WithInstaller.framework-Info.plist
|
636
|
+
D /trunk/Resources/Growl.framework-Info.plist
|
637
|
+
D /trunk/Resources/GrowlDefaults.plist
|
638
|
+
D /trunk/Resources/GrowlHelperApp-Info.plist
|
639
|
+
D /trunk/Resources/GrowlPref.tiff
|
640
|
+
D /trunk/Resources/Info.plist
|
641
|
+
D /trunk/Resources/version.plist
|
642
|
+
|
643
|
+
Reorg part deux. Now the resources have been moved over as well.
|
644
|
+
|
645
|
+
------------------------------------------------------------------------
|
646
|
+
r1580 | boredzo | 2005-03-05 02:40:59 -0600 (Sat, 05 Mar 2005) | 2 lines
|
647
|
+
Changed paths:
|
648
|
+
M /trunk/Framework/Source/GrowlInstallationPrompt.m
|
649
|
+
|
650
|
+
Typo fix.
|
651
|
+
|
652
|
+
------------------------------------------------------------------------
|
653
|
+
r1581 | boredzo | 2005-03-05 02:43:14 -0600 (Sat, 05 Mar 2005) | 2 lines
|
654
|
+
Changed paths:
|
655
|
+
D /trunk/Resources
|
656
|
+
|
657
|
+
Removing the old, dead Resources directory.
|
658
|
+
|
659
|
+
------------------------------------------------------------------------
|
660
|
+
r1582 | boredzo | 2005-03-05 02:44:06 -0600 (Sat, 05 Mar 2005) | 2 lines
|
661
|
+
Changed paths:
|
662
|
+
M /trunk/Growl.xcode/project.pbxproj
|
663
|
+
|
664
|
+
Corrected prefix-header references for the two framework targets.
|
665
|
+
|
666
|
+
------------------------------------------------------------------------
|
667
|
+
r1583 | toby | 2005-03-05 02:57:52 -0600 (Sat, 05 Mar 2005) | 2 lines
|
668
|
+
Changed paths:
|
669
|
+
A /trunk/Extras/GrowlTunes/images (from /trunk/images/docs:1582)
|
670
|
+
D /trunk/images/docs
|
671
|
+
|
672
|
+
images/docs -> Extras/GrowlTunes/images
|
673
|
+
|
674
|
+
------------------------------------------------------------------------
|
675
|
+
r1584 | toby | 2005-03-05 02:59:49 -0600 (Sat, 05 Mar 2005) | 2 lines
|
676
|
+
Changed paths:
|
677
|
+
A /trunk/Release/Artwork (from /trunk/images/dmg:1583)
|
678
|
+
D /trunk/images/dmg
|
679
|
+
|
680
|
+
images/dmg -> Release/Artwork
|
681
|
+
|
682
|
+
------------------------------------------------------------------------
|
683
|
+
r1585 | toby | 2005-03-05 03:04:25 -0600 (Sat, 05 Mar 2005) | 2 lines
|
684
|
+
Changed paths:
|
685
|
+
D /trunk/Other/Ideas
|
686
|
+
A /trunk/images/mockups (from /trunk/Other/Ideas:1583)
|
687
|
+
|
688
|
+
Other/Ideas -> images/mockups
|
689
|
+
|
690
|
+
------------------------------------------------------------------------
|
691
|
+
r1586 | toby | 2005-03-05 03:07:05 -0600 (Sat, 05 Mar 2005) | 2 lines
|
692
|
+
Changed paths:
|
693
|
+
A /trunk/Docs/Notification Display Process.graffle (from /trunk/Other/Notification Display Process.graffle:1583)
|
694
|
+
A /trunk/Docs/Registration Process.graffle (from /trunk/Other/Registration Process.graffle:1583)
|
695
|
+
D /trunk/Other
|
696
|
+
|
697
|
+
Move graffles to the same location as corresponding PDFs.
|
698
|
+
|
699
|
+
------------------------------------------------------------------------
|
700
|
+
r1587 | boredzo | 2005-03-05 03:17:02 -0600 (Sat, 05 Mar 2005) | 4 lines
|
701
|
+
Changed paths:
|
702
|
+
M /trunk/Extras/GrowlDict/GrowlDict.xcode/project.pbxproj
|
703
|
+
M /trunk/Extras/GrowlDict/GrowlDict_main.m
|
704
|
+
M /trunk/Extras/GrowlDict/Prefix.h
|
705
|
+
M /trunk/Extras/GrowlDict/ServiceAction.h
|
706
|
+
|
707
|
+
Instead of Foundation and AppKit, we now use Cocoa.
|
708
|
+
Centralised include of Cocoa.h to the prefix header; removed all other includes of {Cocoa,Foundation,AppKit}.h.
|
709
|
+
Organised the files in the project's group tree into groups.
|
710
|
+
|
711
|
+
------------------------------------------------------------------------
|
712
|
+
r1588 | boredzo | 2005-03-05 03:18:56 -0600 (Sat, 05 Mar 2005) | 2 lines
|
713
|
+
Changed paths:
|
714
|
+
M /trunk/Examples/Beep-Carbon/Beep-Carbon.xcode/project.pbxproj
|
715
|
+
|
716
|
+
No need to link in GAB-Carbon statically when we're using the framework.
|
717
|
+
|
718
|
+
------------------------------------------------------------------------
|
719
|
+
r1589 | boredzo | 2005-03-05 03:38:17 -0600 (Sat, 05 Mar 2005) | 2 lines
|
720
|
+
Changed paths:
|
721
|
+
A /trunk/Common/Source/NSGrowlAdditions.h (from /trunk/Core/Source/NSGrowlAdditions.h:1578)
|
722
|
+
A /trunk/Common/Source/NSGrowlAdditions.m (from /trunk/Core/Source/NSGrowlAdditions.m:1578)
|
723
|
+
A /trunk/Common/Source/NSWindow+Transforms.h (from /trunk/Core/Source/NSWindow+Transforms.h:1578)
|
724
|
+
A /trunk/Common/Source/NSWindow+Transforms.m (from /trunk/Core/Source/NSWindow+Transforms.m:1578)
|
725
|
+
D /trunk/Core/Source/NSGrowlAdditions.h
|
726
|
+
D /trunk/Core/Source/NSGrowlAdditions.m
|
727
|
+
D /trunk/Core/Source/NSWindow+Transforms.h
|
728
|
+
D /trunk/Core/Source/NSWindow+Transforms.m
|
729
|
+
|
730
|
+
Moved additions to Common.
|
731
|
+
|
732
|
+
------------------------------------------------------------------------
|
733
|
+
r1590 | boredzo | 2005-03-05 03:41:52 -0600 (Sat, 05 Mar 2005) | 2 lines
|
734
|
+
Changed paths:
|
735
|
+
M /trunk/Common/Source/NSGrowlAdditions.m
|
736
|
+
|
737
|
+
Stupid TextWrangler, putting that comment at the end whenever the encoding is changed.
|
738
|
+
|
739
|
+
------------------------------------------------------------------------
|
740
|
+
r1591 | boredzo | 2005-03-05 03:45:24 -0600 (Sat, 05 Mar 2005) | 2 lines
|
741
|
+
Changed paths:
|
742
|
+
M /trunk/Examples/Beep-Cocoa/Beep-Cocoa.xcode/project.pbxproj
|
743
|
+
|
744
|
+
Removed GrowlDefines.h from Beep-Cocoa's project, since it uses the framework.
|
745
|
+
|
746
|
+
------------------------------------------------------------------------
|
747
|
+
r1592 | boredzo | 2005-03-05 04:03:12 -0600 (Sat, 05 Mar 2005) | 2 lines
|
748
|
+
Changed paths:
|
749
|
+
M /trunk/Common/Source/GrowlDefinesInternal.h
|
750
|
+
|
751
|
+
Corrected behaviour of each macro to the documented behaviour, which is to leave the value at result unchanged if the key is not found. This fixes prefs being set to 0 initially instead of their defaults (especially annoying in Smoke).
|
752
|
+
|
753
|
+
------------------------------------------------------------------------
|
754
|
+
r1595 | tick | 2005-03-05 04:06:45 -0600 (Sat, 05 Mar 2005) | 2 lines
|
755
|
+
Changed paths:
|
756
|
+
M /trunk/Display Plugins/Smoke/GrowlSmokeDefines.h
|
757
|
+
|
758
|
+
60% seems to work better here.
|
759
|
+
|
760
|
+
------------------------------------------------------------------------
|
761
|
+
r1596 | tick | 2005-03-05 04:15:12 -0600 (Sat, 05 Mar 2005) | 2 lines
|
762
|
+
Changed paths:
|
763
|
+
M /trunk/Display Plugins/Smoke/GrowlSmokeDefines.h
|
764
|
+
|
765
|
+
Bah, 75%
|
766
|
+
|
767
|
+
------------------------------------------------------------------------
|
768
|
+
r1598 | boredzo | 2005-03-05 04:32:25 -0600 (Sat, 05 Mar 2005) | 5 lines
|
769
|
+
Changed paths:
|
770
|
+
M /trunk/Extras/GrowlSafari/GrowlSafari.xcode/project.pbxproj
|
771
|
+
M /trunk/Extras/GrowlTunes/GrowlTunes.xcode/project.pbxproj
|
772
|
+
M /trunk/Extras/GrowlTunes/Plugins/Examples/Amazon/GrowlTunes-Amazon.xcode/project.pbxproj
|
773
|
+
M /trunk/Extras/growlnotify/growlnotify.xcode/project.pbxproj
|
774
|
+
|
775
|
+
Removed GrowlDefines.h from all projects. It's in the framework, so we use it there.
|
776
|
+
Updated paths for the new top-level organisation pattern.
|
777
|
+
Enabled Obj-C exceptions in GrowlTunes and the Amazon plug-in. Also changed the deployment target from 10.2 to 10.3.
|
778
|
+
Removed Diggory Laycock's absolute paths.
|
779
|
+
|
780
|
+
------------------------------------------------------------------------
|
781
|
+
r1599 | boredzo | 2005-03-05 06:05:32 -0600 (Sat, 05 Mar 2005) | 16 lines
|
782
|
+
Changed paths:
|
783
|
+
M /trunk/Extras/GrowlTunes/Plugins/Examples/Amazon/GrowlTunes-Amazon.m
|
784
|
+
|
785
|
+
Removed far too many redundant method calls.
|
786
|
+
Remember the CARN rule: When you get an object from a Copy, Alloc, Retain, or New method, you must release it. Methods not so named should autorelease their return value if it's an object.
|
787
|
+
Changed objectAtIndex: loops to NSEnumerator loops.
|
788
|
+
Now using convenience constructors (e.g. +array) instead of +alloc/-init. Since these arrays never get released anywhere, this also fixes memory leaks.
|
789
|
+
There is no need to call UTF8String and pass it to stringWithFormat in a %s format. Just use %@.
|
790
|
+
Mutable objects are now created with a capacity when possible.
|
791
|
+
+[NSDictionary dictionaryWithObjectsAndKeys:] is your friend.
|
792
|
+
Removed redundant +[NSFoo fooWithFoo:] calls.
|
793
|
+
Clarified variable names in -getAlbum:byArtist:.
|
794
|
+
HACKING conformance: unsigned instead of unsigned int; 0U instead of 0; test truth of pointers rather than comparing to nil/NULL; braces on same line; columnarisation; eliminated random indentation; be more specific than simply 'for' when adding a comment to the ending brace of a long block.
|
795
|
+
Don't put stuph (e.g. comments) between a brace and the thing it binds to (e.g. right before an 'else').
|
796
|
+
Removed/spiffed up overenthusiastic comments.
|
797
|
+
Spelling fixes.
|
798
|
+
STOP YELLING IN PRAGMA MARKS!
|
799
|
+
Don't insult the reader. The reader is probably a programmer, and programmers tend to be smart people.
|
800
|
+
|
801
|
+
------------------------------------------------------------------------
|
802
|
+
r1600 | boredzo | 2005-03-05 06:20:34 -0600 (Sat, 05 Mar 2005) | 2 lines
|
803
|
+
Changed paths:
|
804
|
+
M /trunk/Extras/GrowlTunes/Plugins/Examples/Amazon/GrowlTunes-Amazon.m
|
805
|
+
|
806
|
+
HACKING conformance: Added missing 0 to '10.'.
|
807
|
+
|
808
|
+
------------------------------------------------------------------------
|
809
|
+
r1601 | ingmarstein | 2005-03-05 07:04:12 -0600 (Sat, 05 Mar 2005) | 3 lines
|
810
|
+
Changed paths:
|
811
|
+
M /trunk/Display Plugins/Speech/GrowlSpeechDisplay.m
|
812
|
+
M /trunk/Display Plugins/Speech/GrowlSpeechPrefs.m
|
813
|
+
|
814
|
+
Warnings--
|
815
|
+
Show the currently active voice when opening the pane
|
816
|
+
|
817
|
+
------------------------------------------------------------------------
|
818
|
+
r1602 | ingmarstein | 2005-03-05 07:16:49 -0600 (Sat, 05 Mar 2005) | 2 lines
|
819
|
+
Changed paths:
|
820
|
+
M /trunk/Extras/growlnotify/growlnotify.xcode/project.pbxproj
|
821
|
+
|
822
|
+
Growlnotify needs GrowlDefines.h as it does not use the framework
|
823
|
+
|
824
|
+
------------------------------------------------------------------------
|
825
|
+
r1603 | ingmarstein | 2005-03-05 07:32:46 -0600 (Sat, 05 Mar 2005) | 2 lines
|
826
|
+
Changed paths:
|
827
|
+
M /trunk/Core/Source/GrowlPref.m
|
828
|
+
|
829
|
+
Use pathForResource instead of resourcePath+stringByAppendingPathComponent to find GrowlHelperApp
|
830
|
+
|
831
|
+
------------------------------------------------------------------------
|
832
|
+
r1604 | ingmarstein | 2005-03-05 07:35:05 -0600 (Sat, 05 Mar 2005) | 2 lines
|
833
|
+
Changed paths:
|
834
|
+
M /trunk/Common/Source/GrowlVersionUtilities.c
|
835
|
+
|
836
|
+
HACKING: add spaces after if and while keywords
|
837
|
+
|
838
|
+
------------------------------------------------------------------------
|
839
|
+
r1605 | ingmarstein | 2005-03-05 07:38:07 -0600 (Sat, 05 Mar 2005) | 2 lines
|
840
|
+
Changed paths:
|
841
|
+
M /trunk/Growl.xcode/project.pbxproj
|
842
|
+
|
843
|
+
Corrected paths to NSWindow+Transforms and NSGrowlAdditions
|
844
|
+
|
845
|
+
------------------------------------------------------------------------
|
846
|
+
r1606 | ingmarstein | 2005-03-05 09:28:49 -0600 (Sat, 05 Mar 2005) | 2 lines
|
847
|
+
Changed paths:
|
848
|
+
M /trunk/Display Plugins/Bezel/English.lproj/GrowlBezelPrefs.nib/classes.nib
|
849
|
+
M /trunk/Display Plugins/Bezel/English.lproj/GrowlBezelPrefs.nib/info.nib
|
850
|
+
M /trunk/Display Plugins/Bezel/English.lproj/GrowlBezelPrefs.nib/keyedobjects.nib
|
851
|
+
M /trunk/Display Plugins/Bezel/German.lproj/GrowlBezelPrefs.nib/classes.nib
|
852
|
+
M /trunk/Display Plugins/Bezel/German.lproj/GrowlBezelPrefs.nib/info.nib
|
853
|
+
M /trunk/Display Plugins/Bezel/German.lproj/GrowlBezelPrefs.nib/keyedobjects.nib
|
854
|
+
M /trunk/Display Plugins/Bezel/GrowlBezelPrefs.m
|
855
|
+
M /trunk/Display Plugins/Bubbles/English.lproj/BubblesPrefs.nib/classes.nib
|
856
|
+
M /trunk/Display Plugins/Bubbles/English.lproj/BubblesPrefs.nib/keyedobjects.nib
|
857
|
+
M /trunk/Display Plugins/Bubbles/German.lproj/BubblesPrefs.nib/classes.nib
|
858
|
+
M /trunk/Display Plugins/Bubbles/German.lproj/BubblesPrefs.nib/keyedobjects.nib
|
859
|
+
M /trunk/Display Plugins/Bubbles/GrowlBubblesDefines.h
|
860
|
+
M /trunk/Display Plugins/Bubbles/GrowlBubblesPrefsController.h
|
861
|
+
M /trunk/Display Plugins/Bubbles/GrowlBubblesPrefsController.m
|
862
|
+
M /trunk/Display Plugins/Bubbles/GrowlBubblesWindowView.m
|
863
|
+
M /trunk/Display Plugins/Smoke/GrowlSmokePrefsController.m
|
864
|
+
M /trunk/Display Plugins/Smoke/GrowlSmokeWindowView.m
|
865
|
+
|
866
|
+
Added opacity slider to bubbles
|
867
|
+
|
868
|
+
------------------------------------------------------------------------
|
869
|
+
r1607 | tick | 2005-03-05 13:59:10 -0600 (Sat, 05 Mar 2005) | 2 lines
|
870
|
+
Changed paths:
|
871
|
+
M /trunk/changes.txt
|
872
|
+
|
873
|
+
Starting to update the changes file.
|
874
|
+
|
875
|
+
------------------------------------------------------------------------
|