File: ChangeLog

package info (click to toggle)
contacts 0.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,884 kB
  • ctags: 196
  • sloc: sh: 8,867; ansic: 3,225; makefile: 53
file content (872 lines) | stat: -rw-r--r-- 27,257 bytes parent folder | download
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
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
2006-11-17  Thomas Wood  <thomas@openedhand.com>

	* NEWS:
	* configure.ac:

	Updated for 0.2 release

2006-11-16  Thomas Wood  <thomas@openedhand.com>

	* src/contacts-callbacks-ui.c:
	* src/contacts-callbacks-ui.h:
	* src/contacts-main.c:

	- Ellipsize long names in the contacts list
	- Enable/disable cut, copy and paste items

2006-11-16  Thomas Wood  <thomas@openedhand.com>

	* src/contacts-callbacks-ui.c:
	* src/contacts-main.c:
	* src/contacts-utils.c:
	* src/contacts-utils.h:

	Implement multiple import and delete

2006-11-14  Thomas Wood  <thomas@openedhand.com>

	* src/contacts-utils.c:
	* src/contacts-edit-pane.c:

	Fix compiler warnings

2006-11-13  Thomas Wood  <thomas@openedhand.com>

	* data/contacts.glade: Clean up padding and remove about dialog
	* src/contacts-callbacks-ui.c: Use gtk_show_about_dialog instead of glade
	* src/contacts-main.c: (main): Added a size group for a nicer UI

2006-10-18  Ross Burton  <ross@openedhand.com>

	* INSTALL:
	* COPYING:
	* data/Makefile.am:
	* Makefile.am:
	* autogen.sh:
	Switch to automake 1.8, fix dist, fix clean targets.

2006-10-18  Ross Burton  <ross@openedhand.com>

	* configure.ac:
	* data/Makefile.am:
	Don't try and install GConf schemas if GConf isn't being used.

2006-10-18  Ross Burton  <ross@openedhand.com>

	* src/contacts-callbacks-ebook.c:
	Fix the order of hash creation and store population, fixing
	chronic breakage on GTK+ 2.10.

2006-07-12  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-callbacks-ui.c: (contacts_delete_cb):
	Check if name text is NULL before g_utf8_strlen on delete dialog
	
	* src/contacts-main.c: (contacts_display_summary):
	Escape name text before displaying in the preview pane

2006-07-09  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-main.c: (main):
	Hide the menubar when embedding

2006-07-09  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	- Make main window not initially visible
	
	* src/contacts-main.c: (main):
	- Add GOption support
	- Add XEmbed support (-p/--plug <socket id>)

2006-06-21  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-utils.c: (contacts_load_photo):
	Adapt to change in EContactPhotoType

2006-04-23  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-callbacks-ui.c: (contacts_edit_cb):
	Fix crash when the contacts treeview sends an activated signal with no
	contact	selected.

2006-04-23  Olivier Lê Thanh Duong  <olivier@lethanh.be>

	* src/contacts-edit-pane.c:
	* src/contacts-utils.c:
	Mark 'choose groups' as translatable, allow to translate fields in
	contacts_fields and contacts_sfields.
	* po/fr.po:
	Updated French translation

2006-04-21  Olivier Lê Thanh Duong  <olivier@lethanh.be>

	* configure.ac:
	* po/fr.po:
	New French translation

2006-04-10  Chris Lord,,,  <chris@openedhand.com>

	* Makefile.am:
	* autogen.sh:
	* configure.ac:
	* data/Makefile.am:
	* data/contacts.desktop:
	* data/contacts.glade:
	* src/Makefile.am:
	* src/contacts-callbacks-ui.c: (contacts_delete_cb):
	* src/contacts-edit-pane.c: (contacts_edit_pane_hide),
	(contacts_edit_delete_cb), (contacts_type_edit_widget_new),
	(contacts_edit_widget_new), (contacts_change_groups_cb),
	(contacts_add_field_cb), (contacts_edit_pane_show):
	* src/contacts-main.c: (contacts_display_summary), (main):
	* src/contacts-main.h:
	* src/contacts-utils.c: (contacts_choose_photo):
	- Add i18n support, thanks to patch from Priit Laes

2006-03-20  Ross Burton  <ross@openedhand.com>

	* src/contacts-callbacks-ui.c:
	Fix printf format.

2006-03-20  Ross Burton  <ross@openedhand.com>

	* src/contacts-callbacks-ui.c:
	Delete contacts async to avoid deadlocks with DBus EDS.

2006-02-06  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-callbacks-ui.c:
	Remove dependency gtk+-2.0 >= 2.8.0 (don't use
	gtk_file_chooser_set_do_overwrite_confirmation)

2005-12-29  Chris Lord,,,  <chris@openedhand.com>

	* autogen.sh:
	* configure.ac:
	* data/Makefile.am:
	* data/contacts.glade:
	* data/contacts.schemas:
	* src/contacts-callbacks-ui.c:
	* src/contacts-main.c: (contacts_bacon_cb),
	(contacts_gconf_search_cb), (main):
	Add gconf support for specifying search UI (fixes bug #57). Needs work

2005-12-24  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-edit-pane.c: (contacts_edit_widget_new),
	(contacts_edit_focus_in), (contacts_edit_focus_out),
	(contacts_edit_add_focus_events), (contacts_append_to_edit_table),
	(contacts_change_groups_cb), (contacts_find_widget_cb),
	(contacts_add_field_cb), (contacts_remove_entries),
	(contacts_widget_is_label), (contacts_edit_set_focus_cb),
	(contacts_remove_field_cb), (contacts_widgets_list_sort),
	(contacts_widgets_list_find), (contacts_edit_choose_photo),
	(contacts_edit_pane_show):
	* src/contacts-edit-pane.h:
	* src/contacts-main.c: (contacts_display_summary):
	* src/contacts-utils.c: (contacts_set_widget_desensitive_recurse):
	Highlight currently selected field in edit pane. When the user clicks
	remove, just remove the selected field. Fixed, as suggested by Jorn
	Baayen, bug #58

2005-12-22  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	Typo (GNOMEVFS -> HAVE_GNOMEVFS)
	
	* data/contacts.desktop:
	Add vCard mimetype
	
	* src/Makefile.am:
	Add libbacon files
	
	* src/contacts-callbacks-ui.c:
	* src/contacts-main.c: (contacts_import_from_param),
	(contacts_bacon_cb), (main):
	Fix gnome-vfs code, use libbacon to maintain only one instance

2005-12-22  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	Add --enable-gnome-vfs switch for vCard import/export using gnome-vfs
	
	* src/contacts-callbacks-ebook.c: (contacts_added_cb):
	Allow manual triggering of the contact-added signal
	
	* src/contacts-callbacks-ui.c: (contacts_edit_cb),
	(contacts_treeview_edit_cb):
	* src/contacts-callbacks-ui.h:
	- Separate import/export UI and function
	- Add confirmation option for contact import (bug #47)
	- Select a contact after importing, if contact is imported into db
	
	* src/contacts-defs.h:
	Add new var for importing contacts from the command-line (bug #47)
	
	* src/contacts-edit-pane.c: (contacts_edit_ok_new_cb):
	Move export to contacts-callbacks-ui
	
	* src/contacts-main.c: (open_book), (main):
	Allow import of contacts from command-line (bug #47)
	
	* src/contacts-utils.c: (contacts_get_selected_contact):
	* src/contacts-utils.h:
	New function contacts_set_selected_contact to select a contact by UID

2005-12-21  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-main.c: (contacts_search_changed_cb),
	(contacts_display_summary), (main):
	Remove labels from focus chain - bug #36

2005-12-21  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-callbacks-ui.c: (contacts_about_cb):
	* src/contacts-callbacks-ui.h:
	* src/contacts-main.c:
	- Fix oddness with starting search from treeview

2005-12-21  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	Change 'OK' button in edit pane to 'Close' - bug #55
	
	* src/contacts-callbacks-ui.c: (contacts_edit_cb),
	(contacts_paste_cb), (contacts_about_cb),
	(contacts_treeview_keypress_cb):
	* src/contacts-callbacks-ui.h:
	* src/contacts-main.c: (main):
	- Change delete dialogue to include descriptive buttons and contact
	  name - bug #55
	- Add a callback for double-clicking a contact to open/edit - bug #52
	
2005-12-18  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	- Set can_focus to true on contact list treeview
	- Add a callback on treeview keypress
	- Restore object property in cut/copy/paste signal handlers, fixes bug
	  #50
	
	* src/contacts-callbacks-ui.c:
	* src/contacts-callbacks-ui.h:
	Add a keypress handler that passes key-presses from the treeview to
	the search entry and focuses it

	* src/contacts-main.c:
	Stop setting can-focus to false for selectable labels - breaks
	cut/copy/paste, see bug #36

2005-12-14  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	* src/contacts-callbacks-ebook.c:
	* src/contacts-callbacks-ebook.h:
	* src/contacts-callbacks-ui.c:
	* src/contacts-callbacks-ui.h:
	* src/contacts-defs.h:
	* src/contacts-edit-pane.c: (contacts_edit_pane_show):
	* src/contacts-edit-pane.h:
	* src/contacts-main.c:
	* src/contacts-main.h:
	* src/contacts-utils.c:
	* src/contacts-utils.h:
	- Add copyright notice
	- Mark v0.1
	- Fix a few uncommon bugs with contact field-order

2005-11-25  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-edit-pane.c: (contacts_widgets_list_find),
	(contacts_edit_pane_show):
	Changing contact photo counts as a change against the contact
	
	* src/contacts-utils.c: (contacts_choose_photo):
	Set mime-type to NULL when adding contact photo (fixes bug #35)

2005-11-24  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	Set can_focus to FALSE for some widgets in the main window
	
	* src/contacts-edit-pane.c: (contacts_edit_pane_hide),
	(contacts_edit_pane_show):
	Set window focus and default for main and edit panes on switching

2005-11-09  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-main.c: (main):
	Completely fix bug #36

2005-11-09  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	Change name label can_focus to FALSE (bug #36)
	
	* src/contacts-main.c: (contacts_display_summary):
	Make sure summary details are selectable, but not focusable (bug #36)

2005-11-09  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-callbacks-ui.c: (contacts_edit_cb):
	* src/contacts-defs.h:
	* src/contacts-edit-pane.c:
	Add a new 'changed' variable to data structures, fix bug #33 (Don't
	commit a contact when there are no changes)

2005-11-09  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-main.c: (contacts_display_summary):
	* src/contacts-callbacks-ebook.c: (contacts_added_cb),
	(contacts_changed_cb):
	If a contact has an empty name, label it as 'Unnamed' (bug #41)
	
	* src/contacts-edit-pane.c:
	Don't add empty contacts (bug #41)
	
	* src/contacts-utils.c: (contacts_clean_contact):
	* src/contacts-utils.h:
	Add a function to see if a contact is empty (bug #41)

2005-11-07  Ross Burton  <ross@burtonini.com>

	* src/contacts-main.c:
	* src/contacts-edit-pane.c:
	Remove redundant <span> elements.

2005-10-31  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-callbacks-ui.c: (contacts_import_cb):
	Finish off contacts import and plug a leak in it

2005-10-31  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.desktop:
	Add 'Office' category
	
	* src/contacts-utils.c: (contacts_load_photo),
	(contacts_choose_photo), (contacts_set_widget_desensitive_recurse):
	- Only recurse into GtkTable, GtkHBox and GtkVBox when setting widgets
	  insensitive.
	- Free photo data after changing contact photos

2005-10-25  Ross Burton  <ross@openedhand.com>

	* src/contacts-utils.c:
	Set the MIME type on new photos, as required by latest EDS.

2005-10-20  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-callbacks-ui.c:
	Don't add a new contact twice, add it after editing is finished
	
	* src/contacts-main.c: (contacts_display_summary),
	(chooser_toggle_cb), (opened_book), (open_book):
	g_object_ref book_view to fix working under eds-corba

2005-10-11  Ross Burton  <ross@openedhand.com>

	* data/oh-contacts.png:
	Replace with stock_contact, to match window icon.

2005-10-11  Ross Burton  <ross@openedhand.com>

	* src/contacts-main.c:
	* src/contacts-defs.h:
	Open the book and view in an idle handler, asynchronously.

2005-10-11  Ross Burton  <ross@openedhand.com>

	* src/contacts-main.c:
	* src/contacts-edit-pane.c:
	Use g_ascii_strcasecmp when comparing types are they have to be
	ASCII.

2005-10-11  Ross Burton  <ross@openedhand.com>

	* src/contacts-utils.c:
	Constify some structures.

2005-10-11  Ross Burton  <ross@openedhand.com>

	* src/contacts-edit-pane.c:
	Handle adding new contacts as well as editing existing contacts.

2005-10-07  Ross Burton  <ross@openedhand.com>

	* data/contacts.desktop:
	Remove duplicate SingleInstance field.

2005-10-04  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.desktop:
	Add SingleInstance=true (again?)
	
	* data/contacts.glade:
	Add ellipses to name label

2005-10-03  mallum  <mallum@openedhand.com>

	* data/contacts.desktop:
	Add SingleInstance=true to desktop file

2005-09-30  mallum  <mallum@openedhand.com>

	* data/Makefile.am:
	Put icon in /usr/share/pixmaps ( for now )
	* data/contacts.desktop:
	Add PIM category.

2005-09-30  Ross Burton  <ross@openedhand.com>

	* data/Makefile.am:
	* data/contacts.desktop:
	* data/oh-contacts.png:
	Add desktop file and icon.

2005-09-30  Ross Burton  <ross@openedhand.com>

	* src/contacts-utils.c:
	Include config.h to get the EContactPhoto define.

2005-09-01  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-callbacks-ui.c: (contacts_delete_cb):
	* src/contacts-callbacks-ui.h:
	* src/contacts-edit-pane.c: (contacts_remove_edit_widgets_cb),
	(contacts_edit_pane_hide), (contacts_edit_pane_show):
	* src/contacts-main.c: (main):
	* src/contacts-utils.c: (contacts_get_type_strings),
	(contacts_choose_photo), (contacts_chooser),
	(contacts_set_widget_desensitive_recurse):
	* src/contacts-utils.h:
	o All modal dialogs use contacts_set_widget_desensitive
	o Reorganise menus
	o Add delete option to edit pane
	o Add import and export ability

2005-08-31  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-main.c: (main):
	* src/contacts-utils.c: (contacts_set_widget_desensitive_recurse):
	o Free a forgotten GList
	o Set chooser dialog transient for main window

2005-08-31  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-utils.c: (contacts_chooser):
	* src/contacts-utils.h:
	Set main window widgets insensitive when opening modal dialogs

2005-08-31  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	o Tweak spacings
	o Remove focus-set signal on main_window
	
	* src/contacts-callbacks-ui.c: (contacts_new_cb),
	(contacts_edit_cb):
	* src/contacts-defs.h:
	* src/contacts-edit-pane.c: (contacts_edit_widget_new),
	(contacts_edit_pane_show):
	* src/contacts-edit-pane.h:
	o Remove field now brings up a dialog, similarly to add field
	o Add unique identifier to fields (e.g. FN and NICKNAME)
	o Don't omit photo when displaying contacts with only 1 or 2 fields
	o Empty high-priority fields are only shown on new contacts

	* src/contacts-main.c: (contacts_display_summary):
	Fix type display in contact summary
	
	* src/contacts-utils.c: (contacts_get_selected_contact),
	(contacts_set_available_options), (contact_photo_size),
	(contacts_load_photo), (contacts_clean_contact),
	(contacts_entries_get_values), (contacts_chooser_add_cb),
	(contacts_chooser):
	* src/contacts-utils.h:
	o Move functions from contacts-edit-pane to contacts-utils
	o Fix contacts_chooser when selection is empty
	o contacts_string_list_as_string can exclude empty strings

2005-08-31  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-callbacks-ui.c: (contacts_selection_cb),
	(contacts_copy_cb), (contacts_cut_cb), (contacts_paste_cb):
	* src/contacts-edit-pane.c: (contacts_edit_pane_hide),
	(contacts_change_groups_cb), (contacts_edit_pane_show):
	* src/contacts-main.c: (contacts_display_summary):
	* src/contacts-utils.c:
	* src/contacts-utils.h:
	o Make menu-bar visible on main and edit pane
	o Move groups editing to menubar
	o Cut/copy/paste menu option works in GtkTextView

2005-08-30  mallum  <mallum@openedhand.com>

	* src/contacts-main.c: (contacts_display_summary):
	Fix a small segv when freeing non dynamic alloc string. 

2005-08-30  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-edit-pane.c: (contacts_get_field_types),
	(contacts_add_attr), (contacts_entry_changed),
	(contacts_type_edit_widget_new), (contacts_label_widget_new),
	(contacts_edit_widget_new), (contacts_append_to_edit_table),
	(contacts_add_field_cb):
	* src/contacts-edit-pane.h:
	o Fix remove field to work correctly in all cases (hopefully)
	o Dynamically size multi-line fields

2005-08-27  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-edit-pane.c: (contacts_get_structured_field_size),
	(contacts_get_contacts_field), (contacts_add_attr):
	* src/contacts-edit-pane.h:
	* src/contacts-main.c: (contacts_update_treeview),
	(contacts_display_summary):
	* src/contacts-utils.c: (contacts_get_types):
	* src/contacts-utils.h:
	o Rewrite summary display

2005-08-26  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-callbacks-ebook.c: (contacts_changed_cb):
	* src/contacts-edit-pane.c: (contacts_append_to_edit_table),
	(contacts_remove_field_cb), (contacts_widgets_list_sort),
	(contacts_widgets_list_find), (contacts_edit_pane_show):
	* src/contacts-main.c: (chooser_toggle_cb):
	* src/contacts-utils.c: (contacts_entries_get_values),
	(contacts_chooser):
	* src/contacts-utils.h:
	o Add group editing
	o New groups are reflected in the contact list group drop-down

2005-08-26  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-edit-pane.c: (contacts_add_attr),
	(contacts_edit_widget_new), (contacts_add_field_cb),
	(contacts_remove_field_cb), (contacts_widgets_list_sort),
	(contacts_widgets_list_find), (contacts_edit_pane_show):
	* src/contacts-edit-pane.h:
	* src/contacts-main.c:
	* src/contacts-main.h:
	* src/contacts-utils.c: (contacts_entries_get_values),
	(contacts_chooser):
	o Finish field addition
	o Add field removal (needs work)
	o Begin work on groups editing

2005-08-26  mallum <mallum@openedhand.com>

	* Makefile.am:
	* data/Makefile.am:
	* src/Makefile.am:
	Fixes for make dist etc

2005-08-25  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/contacts-defs.h:
	* src/contacts-edit-pane.c: (contacts_get_contacts_field),
	(contacts_field_pretty_name), (contacts_widgets_list_find),
	(contacts_edit_pane_show):
	* src/contacts-main.c: (contacts_display_summary), (main):
	* src/contacts-utils.c: (contacts_entries_get_values):
	* src/contacts-utils.h:
	o Add new 'chooser' dialog (unfinished)
	o Begin work on field addition (unfinished)

2005-08-24  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-defs.h:
	* src/contacts-edit-pane.c: (contacts_get_field_types),
	(contacts_get_structured_field_name),
	(contacts_get_structured_field_size),
	(contacts_get_contacts_field),
	(contacts_get_contacts_field_pretty_name),
	(contacts_remove_edit_widgets_cb), (contacts_edit_pane_hide),
	(contacts_type_entry_changed), (contacts_entry_changed),
	(contacts_type_edit_widget_new), (contacts_label_widget_new),
	(contacts_edit_widget_new), (contacts_widgets_list_sort),
	(contacts_widgets_list_find), (contacts_edit_pane_show):
	* src/contacts-utils.c: (contacts_load_photo),
	(contacts_string_list_as_string):
	* src/contacts-utils.h:
	o Fix edit-pane layout oddities, somewhat
	o Add TYPE parameter editing, including custom types (conforms to
	  spec)

2005-08-23  Chris Lord,,,  <chris@openedhand.com>

	reviewed by: <delete if not using a buddy>

	* data/contacts.glade:
	* src/contacts-edit-pane.c: (contacts_edit_widget_new),
	(contacts_edit_pane_show):
	* src/contacts-utils.c: (contacts_choose_photo):
	o Fix photo chooser
	o Change photo layout in edit pane

2005-08-23  Chris Lord,,,  <chris@openedhand.com>

	* src/contacts-defs.h:
	* src/contacts-edit-pane.c:
	(contacts_get_contacts_field_pretty_name),
	(contacts_remove_edit_widgets_cb), (contacts_edit_pane_hide),
	(contacts_label_widget_new), (contacts_edit_widget_new),
	(contacts_widgets_list_sort), (contacts_widgets_list_find),
	(contacts_edit_pane_show):
	* src/contacts-utils.c: (contacts_free_list_hash):
	* src/contacts-utils.h:
	o Add structured field editing

2005-08-22  Ross Burton  <ross@openedhand.com>

	* configure.ac:
	Fix location of source files.

2005-08-22  Chris Lord,,,  <chris@openedhand.com>

	* old/Makefile:
	* src/Makefile.am:
	* src/contacts-callbacks-ebook.c:
	* src/contacts-callbacks-ebook.h:
	* src/contacts-callbacks-ui.c:
	* src/contacts-callbacks-ui.h:
	* src/contacts-defs.h:
	* src/contacts-edit-pane.c:
	* src/contacts-edit-pane.h:
	* src/contacts-main.c:
	* src/contacts-main.h:
	* src/contacts-utils.c:
	* src/contacts-utils.h:
	o Finish refactoring
	o ADR editing regression (due to lost source)

2005-08-22  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/callbacks-ebook.c: (contacts_added_cb),
	(contacts_changed_cb):
	* src/callbacks-ebook.h:
	* src/callbacks-ui.c: (contacts_delete_cb),
	(contacts_is_row_visible_cb):
	* src/callbacks-ui.h:
	* src/defs.h:
	* src/main.c: (contacts_display_summary), (main):
	* src/main.h:
	* src/utils.c: (contacts_contact_from_selection),
	(contacts_get_selected_contact), (contacts_choose_photo),
	(contacts_free_list_hash):
	* src/utils.h:
	o Remove all globals
	o Namespace all functions

2005-08-21  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/callbacks-ebook.c: (contacts_added_cb),
	(contacts_changed_cb), (contacts_removed_cb):
	* src/callbacks-ebook.h:
	* src/callbacks-ui.c:
	* src/callbacks-ui.h:
	* src/defs.h:
	* src/globals.h:
	* src/main.c:
	* src/main.h:
	* src/utils.c: (e_util_unicode_get_utf8),
	(get_contact_from_selection):
	* src/utils.h:
	o Begin code refactoring

2005-08-19  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	o Edit the edit pane for adding/removing fields and groups
	o Make group(/type?) editing dialog
	
	* src/callbacks-ui.c: (edit_done):
	* src/main.c: (change_photo), (contacts_widget_free_data),
	(contacts_widget_free_list), (contacts_multiple_choice_chooser),
	(contacts_entry_changed_cb), (contacts_buffer_changed_cb),
	(contacts_edit_focus_out_cb), (contacts_add_focus_events),
	(contacts_get_text), (contacts_adr_changed_cb),
	(contacts_label_widget_new), (contacts_edit_widget_new),
	(contacts_widgets_list_sort_cb), (contacts_widgets_list_find_cb),
	(do_edit):
	* src/utils.c: (load_contact_photo):
	* src/utils.h:
	o Add ADR field editing (needs tidying)
	o Turn edit labels into buttons for type editing
	o Change edit button relief on entry focus
	o Display group information under contact photo

2005-08-17  Chris Lord,,,  <chris@openedhand.com>

	* src/main.c: (free_list_hash), (contacts_get_contacts_field),
	(free_change_data), (contacts_get_type_string),
	(contacts_edit_widget_new), (contacts_widgets_list_sort),
	(contacts_widgets_list_find), (do_edit):
	o Add priority to field display order
	o Add support for more fields
	o Add editing support for fields that may span multiple lines

2005-08-15  Chris Lord,,,  <chris@openedhand.com>

	* src/callbacks-ui.c: (contact_selected):
	* src/callbacks-ui.h:
	* src/defs.h:
	* src/main.c: (change_photo), (free_change_data),
	(contacts_get_type_string), (do_edit):
	Use EVCard for all editing instead of EContact - Allows usage of the
	TYPE field to add semi-custom fields (unfinished)

2005-08-15  Chris Lord,,,  <chris@openedhand.com>

	* src/Makefile.am:
	Forgot to commit in last update (needed for file split)
	
	* src/main.c: (static_field_contact_edit_add), (do_edit):
	Begin on change EContact->EVCard to ease usage of TYPE field

2005-08-15  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/Makefile.am:
	* src/callbacks-ebook.c:
	* src/callbacks-ebook.h:
	* src/callbacks-ui.c:
	* src/callbacks-ui.h:
	* src/defs.h:
	* src/globals.h:
	* src/main.c:
	* src/utils.c:
	* src/utils.h:
	o Split source into multiple files
	o Add TYPE support (unfinished)

2005-08-12  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	o Pass main_window in cut/copy/paste
	o Add an about dialog
	o Change spacing on name label, so as not to be on sizer
	
	* src/main.c: (delete_contact), (copy), (cut), (paste), (about),
	(main):
	o Add cut/copy/paste
	o Add about dialog

2005-08-12  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	Remove signals on photo and close button on edit panel, fix some
	spacings.
	
	* src/main.c: (is_row_visible), (sort_treeview_func),
	(load_contact_photo), (display_contact_summary), (contacts_added),
	(contacts_changed), (contacts_removed), (contact_selected),
	(change_photo), (text_entry_changed), (free_change_data),
	(static_field_contact_edit_add), (do_edit), (new_contact),
	(edit_contact):
	o Add new_contact and delete_contact, fix do_edit to not use
	  get_current_contact.
	o When a search results in one contact, select it - Also works when
	  other applications add contacts.

2005-08-11  Chris Lord,,,  <chris@openedhand.com>

	* src/main.c: (quit), (contacts_changed), (main):
	Respond to the 'contacts_removed' signal.

2005-08-11  Chris Lord,,,  <chris@openedhand.com>

	* src/main.c: (kozo_utf8_strcasestrip), (is_row_visible),
	(contact_selected), (change_photo), (text_entry_changed),
	(free_change_data), (static_field_contact_edit_add), (do_edit),
	(new_contact), (edit_contact), (remove_edit_components_cb),
	(edit_done), (delete_contact), (main):
	Big changes, contacts now responds to the 'contacts_changed' signal
	correctly.

2005-08-10  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	Put edit_table in GtkViewport
	
	* src/main.c: (kozo_utf8_strcasestrip), (free_econtact_list_hash),
	(free_object_list), (quit), (is_row_visible), (sort_treeview_func),
	(update_treeview), (contact_selected_sensitive),
	(get_current_contact), (contact_photo_size), (load_contact_photo),
	(contact_selected), (text_entry_changed), (free_change_data),
	(change_photo), (static_field_contact_edit_add), (do_edit),
	(new_contact), (edit_contact), (remove_edit_components_cb),
	(edit_done), (delete_contact), (main):
	Use EBookView to get contacts and listen for changes.

2005-08-10  Ross Burton  <ross@openedhand.com>

        * data/Makefile.am:
        Don't need to EXTRA_DIST the glade.

        * src/Makefile.am:
        Pass $(pkgdatadir) to CC.

        * src/main.c:
        Use PKGDATADIR

        * src/Makefile:
        Really remove.

2005-08-09  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade: Two widgets had 'Have focus'

2005-08-09  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/main.c: (contact_selected_sensitive), (load_contact_photo),
	(text_entry_changed), (free_change_data),
	(static_field_contact_edit_add), (do_edit), (new_contact):

2005-08-09  Chris Lord,,,  <chris@openedhand.com>

	* data/contacts.glade:
	* src/main.c: (kozo_utf8_strcasestrip), (free_object_list),
	(update_treeview), (fill_treeview), (set_label),
	(contact_selected_sensitive), (load_contact_photo),
	(contact_selected), (text_entry_changed), (free_change_data),
	(static_field_contact_edit_add), (do_edit), (new_contact),
	(edit_contact), (remove_edit_components_cb), (edit_done),
	(delete_contact):

2005-08-08  mallum,,,  <mallum@openedhand.com>

	* contacts/ChangeLog:
	* contacts/Makefile.am:
	* contacts/autogen.sh:
	* contacts/configure.ac:
	* contacts/data/Makefile.am:
	* contacts/data/contacts.glade:
	* contacts/old/contacts.glade.bak:
	* contacts/old/contacts.gladep:
	* contacts/old/contacts.gladep.bak:
	* contacts/src/Makefile.am:
	* contacts/src/main.c:
	Get rid of extra uneeded contacts dir.

2005-08-08  mallum  <mallum@openedhand.com>

	* src/Makefile:
	Remove. Add required autotool files ( NEWS, README ... ).