This repository was archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
651 lines (442 loc) · 21.1 KB
/
ChangeLog
File metadata and controls
651 lines (442 loc) · 21.1 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
2009-03-20 Ankit Jain <jankit@novell.com>
Fix bug #12.
* src/PreferencesDialog.cs: Add option to specify a port number to
listen on.
* src/Preferences.cs (PortNumber): New.
* src/GiverService.cs: Handle user specified port numbers. Also, handle
the case when port might not be available.
* src/Application.cs (InitializeIdle): Fix error message.
2009-03-20 Ankit Jain <jankit@novell.com>
* Logger.cs (FileLogger): Set AutoFlush to true. Remove finalizer.
Fixes a crash on exit on windows.
2009-03-20 Ankit Jain <jankit@novell.com>
* src/TargetService.cs (OnSendFolder): Enable sending folders.
2009-03-20 Ankit Jain <jankit@novell.com>
Fix bug #18.
* src/Protocol.cs (TimeStamp): New.
* src/SendingHandler.cs: Send LastWriteTime as the timestamp
for files.
* src/RequestHandler.cs: Set LastWriteTime if timestamp is found.
2009-03-20 Ankit Jain <jankit@novell.com>
* src/Application.cs: Add a --quiet option to start with
no visible window.
2009-03-20 Ankit Jain <jankit@novell.com>
* giver.sln, giver.csproj: Add msbuild project files.
This has a 'Windows' configuration also. It needs
Mono.Zeroconf.dll and Mono.Zeroconf.Providers.Bonjour.dll.
* src/Defines.WIN32.cs: New.
* winbin/Mono.Zeroconf.dll, winbin/Mono.Zeroconf.Providers.Bonjour.dll:
Add for windows build.
2009-01-24 Ankit Jain <radical@gmail.com>
* src/GnomePlatformService.cs (AskYesNoQuestion):
* src/WindowsPlatformService.cs (AskYesNoQuestion):
Reverse the order of the buttons, make the 'yes' button
the default. Handle 'Close' event.
2009-01-23 Ankit Jain <radical@gmail.com>
* src/Application.cs (QuitMainLoop): Rename to ..
(Quit): .. this. Move to here from ..
(OnQuit): .. here.
* src/TargetWindow.cs (WindowDeleted): Call Application.Quit
2009-01-22 Ankit Jain <radical@gmail.com>
* src/WindowsPlatformService.cs (ShowMessage):
(AskYesNoQuestion): Use the @icon also.
2009-01-22 Ankit Jain <radical@gmail.com>
* src/RequestHandler.cs (HandlePayload): 'relativePath' can be null.
2009-01-22 Ankit Jain <radical@gmail.com>
* src/GiverService.cs (.ctor): Set authentication to Anonymous instead
of None. None actually translates to forbid (http 403)!
2009-01-19 Ankit Jain <radical@gmail.com>
* src/Application.cs (ShowAppNotification): Remove.
* src/PlatformService.cs (ShowMessage): New.
(AskYesNoQuestion): New.
* src/GnomePlatformService.cs: Implement the new methods with
notify-sharp.
* src/WindowsPlatformService.cs: Implement the new methods with
Gtk.Dialog, for now.
* src/RequestHandler.cs:
* src/SendingHandler.cs: Use the new PlatformService api instead of
using notify-sharp directly.
2009-01-19 Ankit Jain <radical@gmail.com>
* src/Logger.cs: Use SpecialFolder.Personal instead of $(HOME),
more cross-platform.
2009-01-19 Ankit Jain <radical@gmail.com>
* configure.ac: Add a '--enable-windows' option
* src/Makefile.am: Update for ENABLE_WIN.
2009-01-19 Ankit Jain <radical@gmail.com>
* src/PlatformService (PlaySoundFile): New.
(GetString): New.
* src/GnomePlatformService.cs:
* src/WindowsPlatformService.cs: Implement the new methods.
* src/Application.cs:
* src/RequestHandler.cs:
* src/SendingHandler.cs:
* src/TargetService.cs:
Replace Mono.Unix.Catalog.GetString calls with
PlatformService.GetString, and same for Gnome.Sound.Play
* src/PreferencesDialog.cs:
* src/TargetWindow.cs:
* src/UriList.cs: Remove unused 'using Mono.Unix*'
2009-01-19 Ankit Jain <radical@gmail.com>
* Application.cs: Use Gtk.StatusIcon instead of Egg.TrayIcon .
This should be more cross-platform.
Remove unused (related) old code.
2009-01-19 Ankit Jain <radical@gmail.com>
Abstract out platform specific bits.
* src/IDesktopApplication.cs: New.
* src/PlatformService.cs: New.
* src/Services.cs: New.
* src/GnomeApplication.cs: New. Implement IDesktopApplication.
* src/GtkApplication.cs: New. Likewise.
(SetProcessName): Move here from ..
* src/Utilities.cs (SetProcessName): .. here.
* src/GnomePlatformService.cs: New. Implement PlatformService.
* src/WindowsPlatformService.cs: New. Likewise.
* src/Application.cs: Track api changes.
* Makefile.am: Add the new files.
* giver.mdp: Likewise.
2008-03-20 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs, src/RequestHandler.cs, src/TargetService.cs: Fixed
up the tasque integration for drag and drop
2008-03-19 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs, src/RequestHandler.cs, src/Protocol.cs: Added more
hackish code to support Tasque Tasks much like Tomboy notes
2008-02-13 Andrew Jorgensen <andrew.jorgensen@gmail.com>
* src/ServiceLocator.cs, src/GiverService.cs: Replaced avahi-sharp code with
Mono.Zeroconf
* src/Makefile.am, giver.mdp, configure.ac: Depends on Mono.Zeroconf instead
of avahi-sharp
2007-08-02 Calvin Gaisford <calvinrg@gmail.com>
* configure.ac: updated to 0.1.9
2007-08-02 Calvin Gaisford <calvinrg@gmail.com>
* NEWS: Updated for Release 0.1.8
2007-08-02 Calvin Gaisford <calvinrg@gmail.com>
* AUTHORS, MAINTAINERS: Fixed email address
* src/PreferencesDialog.cs: fixed email address
* src/Application.cs: Fixed about
2007-08-02 Calvin Gaisford <calvinrg@gmail.com>
* AUTHORS: Updated to contain Calvin and Scott
* src/Utilities.cs, src/ServiceInfo.cs, src/TargetWindow.cs,
src/Logger.cs, src/GiverMenuItem.cs, src/PreferencesDialog.cs,
src/Defines.cs.in, src/ServiceLocator.cs, src/SendingHandler.cs,
src/RequestHandler.cs, src/UriList.cs, src/GiverService.cs,
src/Preferences.cs, src/Protocol.cs, src/Application.cs,
src/TransferStatusArgs.cs, src/TrayLib.cs, src/TargetService.cs,
src/PhotoService.cs: Changed header to MIT License
* COPYING: Modified to MIT License
* MAINTAINERS: Updated to contain everyone
* NEWS: minor
2007-07-18 Calvin Gaisford <calvinrg@gmail.com>
* configure.ac: updated for next iteration
2007-07-18 Calvin Gaisford <calvinrg@gmail.com>
* configure.ac: updated to release version 0.1.7
* NEWS: updated for release
2007-07-18 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs: updated to quickly load all people on the
network
2007-07-16 Brady Anderson <brady.anderson@gmail.com>
* src/PhotoService.cs: added code to requeue the avatar update if it
fails
2007-07-16 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs, src/RequestHandler.cs: changed buffer to 8K
* src/Application.cs: removed notification window that was broken
* src/TargetService.cs: changed progress notification to be time based
2007-07-15 Brady Anderson <brady.anderson@gmail.com>
* src/ServiceLocator.cs: used a different constructor when newing up
the service class. asking specifically for IP4 addresses
2007-07-15 Calvin Gaisford <calvinrg@gmail.com>
* src/giver.in: fixed up the process name
* src/ServiceLocator.cs: Added support for web avatars
* src/SendingHandler.cs: changed the status messages
* src/RequestHandler.cs: Added social message
* configure.ac: changed the version after new release
2007-07-15 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs: Updated to not cache the stream on a send
* src/RequestHandler.cs: Updated request handler to flush on write
2007-07-03 Boyd Timothy <btimothy@gmail.com>
* configure.ac: Bump the version to 0.1.5 now that
0.1.4 has been released.
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* configure.ac, NEWS: Update the version
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs, src/Makefile.am, data/images/blankphoto.png,
data/images/Makefile.am: added blank photo
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/TargetWindow.cs, src/SendingHandler.cs, src/TargetService.cs,
giver.mdp: Added Bitch'n events
2007-06-29 Brady Anderson <brady.anderson@gmail.com>
updated the image
2007-06-29 Brady Anderson <brady.anderson@gmail.com>
changes for PhotoService
2007-06-29 Brady Anderson <brady.anderson@gmail.com>
added AvatarUpdated event
2007-06-29 Brady Anderson <brady.anderson@gmail.com>
removed debug messages
2007-06-29 Brady Anderson <brady.anderson@gmail.com>
started and stopped the PhotoService
2007-06-29 Brady Anderson <brady.anderson@gmail.com>
added PhotoService
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs, src/Application.cs, src/TransferStatusArgs.cs:
Events
2007-06-29 Brady Anderson <brady.anderson@gmail.com>
added PhotoService to the project
2007-06-29 Scott Reeves <sreeves@novell.com>
* src/TrayPopupWindow.cs: Add initial popup widow
2007-06-29 Boyd Timothy <btimothy@gmail.com>
* src/TargetService.cs: Stubbed out a ProgressBar and ProgressLabel.
Commented-out the handlers.
2007-06-29 Scott Reeves <sreeves@novell.com>
* src/Application.cs, src/Makefile.am: add start of popup status
message. Patch from Travis Hansen
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs, src/Makefile.am, src/TransferStatusArgs.cs,
giver.mdp: Added TransferStatusArgs
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs: ReadOnly file transfers
* src/RequestHandler.cs: Fixed the readonly file stuff
* configure.ac: Bumped the version
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/RequestHandler.cs: Fixed up the root folder transfer conflicter
thingy
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs, src/Application.cs, src/Makefile.am: debug
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* configure.ac, data/images/gravatar.png: Added gravatar.png
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/PreferencesDialog.cs: polished the preferences
* src/Application.cs: fixed hiding prefs dialog
* src/Makefile.am: Added gravatar image to exe
* giver.mdp: removed glade
* configure.ac, data/glade, data/glade/giver-prefs.glade,
data/glade/Makefile.am, data/glade/gravatar.gif: removed glade
(sorry Scott)
* data/images/Makefile.am, data/Makefile.am: Added gravatar image
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs, src/SendingHandler.cs, src/RequestHandler.cs,
src/Protocol.cs, src/TargetService.cs: Added TomBoy Hack
* data/glade/giver-prefs.glade: Fixed up spacing
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs, src/RequestHandler.cs: Added new prompts
* src/Application.cs: Added About dialog
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* configure.ac: bumped version
* NEWS: updated for release
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/TargetWindow.cs: changed window name
* src/TargetService.cs: renamed menu item
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs: Removed local computers from view
2007-06-29 Calvin Gaisford <calvinrg@gmail.com>
* src/TargetWindow.cs: debug
* src/SendingHandler.cs: multiple files and folders
* src/RequestHandler.cs: Multiple files and folders
* src/UriList.cs: new class for drag and drop
* src/GiverService.cs: Debug
* src/Protocol.cs: Support for multiple files and folders
* src/Application.cs, src/Makefile.am, src/TargetService.cs, giver.mdp:
Updated drag and drop support
2007-06-28 Calvin Gaisford <calvinrg@gmail.com>
* src/TargetWindow.cs, src/Application.cs, src/TargetService.cs:
Updated to save window and hide it
2007-06-28 Scott Reeves <sreeves@novell.com>
* src/PreferencesDialog.cs: store name, location, partial type
2007-06-28 Scott Reeves <sreeves@novell.com>
* src/PreferencesDialog.cs, data/glade/giver-prefs.glade: Finish
loading preferences
2007-06-28 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceInfo.cs: Added ID
* src/TargetWindow.cs: New Window to choose targets
* src/ServiceLocator.cs: Modified Event names to make sense
* src/Application.cs: Modified events and removed menu that shows
targets
* src/Makefile.am: Added new widgets to build
* src/TargetService.cs: New Widget to show services
* giver.mdp: Added TargetService and TargetWindow Widgets
2007-06-28 Scott Reeves <sreeves@novell.com>
* src/PreferencesDialog.cs, src/Preferences.cs,
data/glade/giver-prefs.glade, data/glade/Makefile.am,
data/glade/gravatar.gif: updated prefs dialog, read values
2007-06-28 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceInfo.cs, src/GiverMenuItem.cs, src/SendingHandler.cs:
Renamed Service to ServiceInfo
* src/ServiceLocator.cs: Renamed Service to ServiceInfo and threaded
the resolver to get icons on a thread
* src/Application.cs: Added stock quit menu item
* src/Makefile.am: Added ServiceInfo
* giver.mdp: Added ServiceInfo class
2007-06-28 Calvin Gaisford <calvinrg@gmail.com>
* src/RequestHandler.cs: updated to use save location
* src/GiverService.cs: added full name publish if the preference is set
* src/Preferences.cs: added full name and save location
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/Utilities.cs, src/ServiceLocator.cs, src/RequestHandler.cs,
src/GiverService.cs: Added uri and gravatar support
* src/Preferences.cs: updated to use XML and saves it
* giver.mdp: Added XML for preferences
* src/PreferencesDialog.cs: debug
2007-06-27 Scott Reeves <sreeves@novell.com>
* src/PreferencesDialog.cs, src/Application.cs: preferences update
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/Makefile.am, giver.mdp, configure.ac: removed evolution-sharp
dependency
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/Application.cs: Fixed another anoying gui threading problem
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs: Added protection for services
* src/Application.cs: Removed Gtk.App stuff for Gnome.App stuff
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs: added username and threaded the sending of
files
* src/RequestHandler.cs, src/Protocol.cs: added username
* src/Application.cs: Fixed some startup issues
* src/Makefile.am: Fixed makefile issue with giver 256 icon
2007-06-27 Scott Reeves <sreeves@novell.com>
* src/PreferencesDialog.cs, src/Defines.cs.in, src/Application.cs,
giver.mdp, data/glade/giver-prefs.glade: preferences update
2007-06-27 Scott Reeves <sreeves@novell.com>
* src/PreferencesDialog.cs, src/Preferences.cs, src/Makefile.am,
giver.mdp, configure.ac, data/Makefile.am, data/glade,
data/glade/giver-prefs.glade, data/glade/Makefile.am: start of
preferences
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/Defines.cs.in, configure.ac, data/Makefile.am, data/sounds,
data/sounds/notify.wav, data/sounds/Makefile.am: Added sounds
* src/RequestHandler.cs, src/Application.cs: Added notification
* src/Protocol.cs: Added declined message
* giver.mdp: Added notify-sharp
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs: Fixed up the shutdown and photo handling
* src/RequestHandler.cs: Updated photo requests
* src/GiverService.cs: Fixed up requesting photos
* src/Preferences.cs: Added photo prefs
* src/Application.cs: Fixed up the startup routine and the shutdown
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverMenuItem.cs: Uses the photo in the service if available
* src/ServiceLocator.cs: Added code to get the photo when discovering
services
* src/SendingHandler.cs: Added GetPhoto method
* src/RequestHandler.cs: Handles requests for photos
* src/Protocol.cs: ADded a photo headder tag
* src/Preferences.cs: Added a debug photo
* src/Application.cs: Added the preference object
2007-06-27 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs, src/RequestHandler.cs: updated to use Protocol
class and real HTTP headers
* src/Protocol.cs: Class to hold defines for headers and such
* src/Preferences.cs: New class to store app prefs
* src/Makefile.am, giver.mdp: Added new files
2007-06-26 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs: Sends files
* src/RequestHandler.cs: Receives files
* src/GiverService.cs: removed unneeded string
* src/Application.cs: Added new handlers for new classes
* src/Makefile.am: new files
* src/PayloadInfo.cs: no longer needed
* src/ReceivingHandler.cs: renamed to Request Handler
* giver.mdp: Changed around some files
2007-06-26 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverService.cs, src/Application.cs, src/ServiceLocator.cs,
src/SendingHandler.cs, src/ReceivingHandler.cs: Moved the socket
communication over to http
2007-06-26 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverService.cs: Changed the service name so two instances can
run on a box
* src/GiverMenuItem.cs: Switched the graphic size to one that fits
* src/Application.cs: Debug
* src/ServiceLocator.cs: Turned on the show locals for debugging
* giver.mdp: truned on gdk.sharp
2007-06-26 Calvin Gaisford <calvinrg@gmail.com>
* data/images/giver-48.png: added correct size
2007-06-26 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverService.cs: debug
* src/Application.cs: Added wrappers of Avahi isn't running
* src/Makefile.am, data/images/giver-22.png, data/images/giver-32.png,
data/images/giver-24.png, data/images/giver-16.png,
data/images/giver-44.png, data/images/Makefile.am,
data/images/giver-256.png, data/images/giveroff-24.png: Updated
icons from jimmac
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/SendingHandler.cs: debug
* src/ReceivingHandler.cs: changed the encoding and it fixed a problems
getting the file name
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverMenuItem.cs: Added parameters to get the service from the
menu item
* src/Application.cs: Added handlers to send files (well, test it)
* src/Makefile.am: Added SendingHandler
* src/PayloadInfo.cs: Added public property to get name
* src/SendingHandler.cs: new class for sending files
* src/ReceivingHandler.cs: debug message
* giver.mdp: Added SendingHandlerClass
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverService.cs: Removed sample code
* src/GiverMenuItem.cs: Comment correction
* src/Application.cs: Updated application to handle incoming
connections
* src/Makefile.am: ADded new files
* src/PayloadInfo.cs: new class to hold payload info on a transfer
* src/ReceivingHandler.cs: new class to handle incoming giver requests
and handle the transfer
* giver.mdp: Added new files
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverService.cs: Added TcpListener for transferring files
* src/Application.cs: Changed the stop order
* giver.mdp: Added needed references
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverMenuItem.cs: Fixed the banter-44 icon to be giver-44
* src/Application.cs: Fixed up icon so it's off if nobody is there
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverMenuItem.cs: Updated the alignment of the menu items
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/ComplexMenuItem.cs: code to handle cool new complex menu items
* src/GiverMenuItem.cs: New menu item to handle graphics and such
* src/Defines.cs.in: removed unneeded definitions
* src/Application.cs: Added new menu support with graphics
* src/ServiceLocator.cs: Updated to provide a count of current services
found
* src/Makefile.am: Added new files
* giver.mdp: Updated for new files
* data/images/Makefile.am: Addded new back and white image
* data/images/giveroff-24.png: new "off" image
2007-06-25 Scott Reeves <sreeves@novell.com>
* TODO: add todo item
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/Application.cs: Updated menu with more information
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/ServiceLocator.cs: Added code to correctly remove a service when
it goes down
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverService.cs: New service to advertize service
* src/Application.cs: Added Service Locator
* src/ServiceLocator.cs: Giver Service Locator to find giver instances
* src/Makefile.am: ADded files that needed to be built
* giver.mdp: Updated to mono 2.0
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverService.cs: new service to advertise and transfer files
* src/Application.cs: Started Giver Service
* src/Makefile.am: Added service to build
* giver.mdp: Added Avahi Dependency
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/GiverService.cs, src/Makefile.am, src/TrayLib.cs, giver.mdp,
configure.ac: Added GiverService and TRayLib.cs
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/Application.cs, src/Makefile.am, giver.mdp: Fixed up graphics in
project
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* configure.ac, Makefile.am, data, data/images,
data/images/giver-22.png, data/images/giver-32.png,
data/images/giver-24.png, data/images/giver-16.png,
data/images/giver-44.png, data/images/Makefile.am,
data/Makefile.am, data/giver.desktop.in: Added image files to
project
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* po/POTFILES.in: updated to use the correct file
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* src/Utilities.cs, src/Logger.cs, src/Defines.cs.in, src/Makefile.am,
configure.ac, Makefile.am, autogen.sh: Updated template to work
with giver
* src/giver.in: created standard startup script
* src/Application.cs: updated to work with giver
* giver.mdp: added files
2007-06-25 Calvin Gaisford <calvinrg@gmail.com>
* AUTHORS: Initial checkin of code