File: ChangeLog

package info (click to toggle)
gpe-contacts 0.47-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,408 kB
  • ctags: 281
  • sloc: sh: 8,852; ansic: 6,006; xml: 345; makefile: 89
file content (1491 lines) | stat: -rw-r--r-- 52,129 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
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
2007-06-08  Florian Boor  <florian.boor@kernelconcepts.de>

    * Release version 0.47
    * configure.ac: Update contact and version.
    * POTFILES.in: Add more files.

2007-03-15  Graham Cobb  <g+gpe@cobb.uk.net>

    * debian/control: add gpe-icons to dependencies

2007-03-13  Graham Cobb  <g+gpe@cobb.uk.net>

    * debian/control: fix Depends to use shlibs

2006-08-30  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Allow entering dates before 1970 in maemo.

2006-08-11  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Fix category display.

2006-08-05  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c (show_details): Fix memory leak.
    
2006-08-04  Florian Boor  <florian.boor@kernelconcepts.de>

    * Release version 0.46
    * main-hildon.c: Some minor ui fixes.
    * editing.c (build_categories_string): Coloured underline for categories.
    * main.c: Categories display for small screens.
    * main-hildon.c (create_app_menu), (create_main): Upgrade to new Hildon API.
    (toggle_fullscreen): New function
    (window_key_press_event): Toggle fullscreen on F6.

2006-08-03  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: Some improvement.
    * main.c: Initial category colour display support.
    * editing.c: Make (get_categories_list) public.

2006-07-03  Florian Boor  <florian.boor@kernelconcepts.de>

	* Release version 0.45.
	* Makefile.am: Some tweaks to pass distcheck and remove obsolete stuff.
	* po/Makefile.in.in: Remove from cvs, needs to be generated.
	* po/POTFILES.in: Update to meet latest file structure.
	* autogen.sh: Enforce updated i18n support files.
	* gpe-dist.am: Create new gpe-contacts.pot file before distribution.

2006-04-26  Jan Arne Petersen  <jpetersen@jpetersen.org>

	Use some special maemo widgets in the edit dialog:
	* configure.ac: Add hildon-libs to DEP_MODULES.
	* editing.c (on_date_set_toggled), (pop_singles), (edit_window),
	(edit_person), (update_edit), (create_edit), (build_children),
	(on_edit_save_clicked): Use HildonCaption with a GtkVBox instead of
	GtkTable, use HildonDateEditor.

	* editing.c (add_tag): use g_object_set_data_full to add destroy
	notifier.

	Use ISO date in contacts database:
	* main.c (build_children): Interpret the database value as ISO date.
	* main-hildon.c (build_children): Likewise.
	* editing.c (edit_person), (update_edit), (on_edit_save_clicked):
	Convert	ISO date to GtkDateCombo format and reverse.

2006-03-07  Florian Boor  <florian.boor@kernelconcepts.de>

	* Makefile.am: Do not ship debian package support in the
                       distribution because of conflicting package types.

2006-03-02  Florian Boor  <florian.boor@kernelconcepts.de>

	* Makefile.am: Make sure all important files go to the distribution
                       tarball. 

2006-02-07  Florian Boor  <florian.boor@kernelconcepts.de>

	* Release version 0.44

2006-02-06  Phil Blundell  <pb@reciva.com>

	* editing.c (build_children): Tweak packing of widgets into table.
	(pop_singles): Likewise.
	(edit_window): Likewise.

2006-02-05  Phil Blundell  <pb@reciva.com>

	* export.c (menu_do_send_bluetooth): Correct marshalling of OBEX
	request with DBUS 0.60.
	(menu_do_send_irda): Likewise.

2006-02-03  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c, main-hildon.c (do_find), (do_search):
    Display company field in list if name is empty. Fixes #1477.
    * main.c (create_main): Increase default size to get an unfolded toolbar
    on large screens.

2006-02-03  Florian Boor  <florian.boor@kernelconcepts.de>

    * categories.c (is_in_category), editing.c (update_categories_list):
    Use uppercase tag to avoid compatibility issues. Fixes bug #1453.

2006-02-02  Phil Blundell  <pb@reciva.com>

	* mkinstalldirs: New file.

	* main.c (main): Put focus in main window, not search entry field.
	(on_main_focus): Don't grab focus into search entry, just leave it
	in the window.

2006-01-14  Phil Blundell  <pb@reciva.com>

	* structure.c (load_structure): Use GLib functions rather than
	manual string hackery.

2006-01-24  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c (store_name_fields): Fix segfault parsing names separated by comma.

2006-01-10  Florian Boor  <florian.boor@kernelconcepts.de>

    * pimc-ui.c (build_pim_categories_list): Reset useless Hildon GTK 
      modification.

2006-01-01  Florian Boor  <florian.boor@kernelconcepts.de>

    * configure.ac: Release Version 0.43.
    * familiar/control1: Update dependencies: add libgpecontacts.
    
2005-12-31  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Change packing of GtkTextViews to fix size problem in hildon env.
    * main-hildon.c: Modify likewise, new import_vcard() parameters, comments.

2005-12-29  Florian Boor  <florian.boor@kernelconcepts.de>

    * import-vcard.* main.c: Apply patch by Olivier Berger to make import of 
                             multiple vcards in one file possible.

2005-12-21  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Apply patch by Olivier Berger to fix segfault opening
                 name detail dialog.

2005-12-16  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Apply patch to clean up name order logic and make it more 
                 friendly to use. Soem general code cleanups and improved 
                 comments. Contributed by Olivier Berger.
                 
2005-12-13  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Apply another patch by Olivier Berger to fix name prefix/suffix 
                 translation.

2005-12-06  Florian Boor  <florian.boor@kernelconcepts.de>

    * export.c, configure.ac: Apply patch to support new DBus API
                              contributed by Philipp Zabel. 

2005-12-05  Pat Deegan  <linuxipaq@psychogenic.com>

    * db.c/db.h:  Removed these files, which control contacts db access,
                    from project in order to separate this aspect into
                    its own independent library.
    * Makefile.am: Made changes to reflect deleted db.* files
    * configure.ac: Modified DEP_MODULES to include libcontactsdb
    * *.c/*.h: Changed all db related structs and calls to db functions
                 to add the 'contacts_' prefix used by libcontactsdb.

2005-12-01  Florian Boor  <florian.boor@kernelconcepts.de>

    * namedetail.c: Apply patch by Olivier Berger to fix name prefix/suffix 
                    translation.

2005-10-19  Florian Boor  <florian.boor@kernelconcepts.de>

    * hildon/*.in: Rename service and service file.

2005-10-14  Florian Boor  <florian.boor@kernelconcepts.de>

    * debian/*: Change some locations to fit maemo installer needs.
    * main-hildon.c: Set some hardcoded locations, necessary for maemo.

2005-08-15  Florian Boor  <florian.boor@kernelconcepts.de>

    * main-hildon.c, debian/rules: Change path to icons and package prefix to 
                                   make application work in 770 production images.

2005-08-04  Rene Wagner  <rw@handhelds.org>

    * Release 0.41
    * export.c: Include config.h. Add #ifdef USE_DBUS guards around D-Bus code.
    * configure.ac: Add --disable-dbus configure option. Generate config.h.
    * autogen.sh: Run autoheader.

2005-08-02  Florian Boor  <florian.boor@kernelconcepts.de>

    * import-vcard.c: Update import stuff to new database layout.

2005-07-29  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: Change packing of deatil table in bigscreen + portrait mode.

2005-07-25  Florian Boor  <florian.boor@kernelconcepts.de>

    * main-hildon.c: Use hidon method to connect toolbar.

2005-07-24  Florian Boor  <florian.boor@kernelconcepts.de>

    * hildon/org.gpe.gpe-contacts.service.in: Correct path to installed 
                                              executable.
    * debian/control: Tune dependencies for Maemo integration a little bit.
    * debian/links: Fix link to support package installer.
    * debian/changelog: Add new release.
    * hildon/gpe-contacts.desktop.in.in: Change path to executable.

2005-06-27  Florian Boor  <florian.boor@kernelconcepts.de>

    * Release Version 0.40
    * editing.c: Improve code for widget placement, fixing bugs on large screens.
    * main.c: Increase default window size to make all buttons fit.
    * db.c: Fix creating of new contacts.
    * Makefile.am: I should test my fixes from time to time.. 

2005-06-22  Florian Boor  <florian.boor@kernelconcepts.de>

    * Makefile.am: Fix icon installation.

2005-06-21  Florian Boor  <florian.boor@kernelconcepts.de>

    * Released Version 0.39
    * Update translations.
    * configure.ac, debian/changelog: Add some missing files and improve 
                                      file list in configure.ac.
    * editing.c, default-layout.xml: Fix editor layout on PDA screens.

2005-06-11  Florian Boor  <florian.boor@kernelconcepts.de>

    * autogen.sh: Don't run configure.
    * editing.c: Hotfix to improve behaviour on small screens.

2005-06-08  Florian Boor  <florian.boor@kernelconcepts.de>

    * configure.ac, main.h: Some fixes for bugs introduced with the hildon
                            UI support.

2005-06-04  Florian Boor  <florian.boor@kernelconcepts.de>

    * configure.ac: Version to 0.39. New switch: --enable-hildon
    * Merge in support for maemo/hildon environment.
    * main.c: Removed obsolete #defines.
    * debian/*: New files to build Debian packages for maemo environment.
    * hildon/*: Support files for maemo environment.
    
2005-05-20  Florian Boor <florian.boor@kernelconcepts.de>

    * Makefile.am, main.c: Fix icon path.
    * Released Version 0.38

2005-05-10  Florian Boor <florian.boor@kernelconcepts.de>

    * main.c: Remove unused icons.

2005-05-08  Florian Boor <florian.boor@kernelconcepts.de>

    * configure.ac: Changed dependecy to GTK 2.6 instead of 2.2 because
                    of GTK_STOCK_EDIT.
    * editing.c (edit_window): Change size a little bit, remove ugly shadow.
    * main.c (create_main): Rewrite toolbar section to use new toolbar API.
                            Add some comments. Improve default window size.
    * configure.ac: Version to 0.38.
    * finddlg.c: Formating change.
    * main.c (do_search): Fix memory leak.
    * main.c (do_find): Handle cancel action properly.
    * db.c (db_get_entries_finddlg): Fix query which resulted in multiple 
                                     results for a single contact.

2005-05-07  Florian Boor <florian.boor@kernelconcepts.de>

    * db.c: Major structure changes: We move some data to the contacts_urn
            table to avoid the need of multiple nested queries to get a list
            of names only.
    * db.c: Add some comments.
    * db.c (check_table_update): New function to check if table is in new 
                                 format and convert if necessary.
    * db.c: Reordered some functions.
    * db.c (check_table_update): Create some additional indexes on database 
                                 update.
    * db.c: Some formating updates.
    * configure.ac: Some commented out bits to enable gprof support.


2005-05-04  Phil Blundell  <pb@reciva.com>

	* Makefile.am (clean-local): Include gpe-tp.am.
	* po/cs.po, po/de.po, po/es.po, po/fr.po, po/hu.po, po/nl.po,
	po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po,
	po/sr.po. po/sv.po, po/vi.po, po/zh_CN.po, po/zh_TW.po: Import
	latest files from Translation Project.

2005-05-03  Florian Boor <florian.boor@kernelconcepts.de>

    * db.c (db_open), main.c (main): Move categories stuff to main.c.
    * main.c (main): Add some comments, sort initialising stuff.
    * db.*, structure.*: Move load_structure() to structure.c.
    * db.c, db.h (load_structure): Move scheme selection to main.c, add 
                                   parameter to pass scheme file.
    * main.c (main): see above.

2005-04-30  Florian Boor <florian.boor@kernelconcepts.de>

    * Released Version 0.37
    * configure.ac: Version to 0.37

2005-04-25  Florian Boor <florian.boor@kernelconcepts.de>

    * Makefile.am: Fixed creating and removing of edit-vcard.desktop.

2005-04-22  Florian Boor <florian.boor@kernelconcepts.de>

    * db.c: Minor speedup.
    
2005-04-21  Florian Boor <florian.boor@kernelconcepts.de>

    * configure.ac: Add linguas and missing dependencies.
    * main.c, db.*: Removed unused variables and comparisons.
    * .cvsignore: Add Makefile.

2005-04-18  Florian Boor <florian.boor@kernelconcepts.de>

    * Add support for autotools.
    * main.c, edit.c, categories.c, configure.c: Removed use of obsolete
                                                 libdiplaymigration.
    * main.c: Changed locations of some files.
    * Renamed xml files.

2005-04-15  Moray Allan  <moray@debian.org>

    * Fix desktop entry files to almost validate.

2005-03-19  Phil Blundell  <pb@reciva.com>

	* Version 0.36 released.

2005-03-19  Phil Blundell  <pb@reciva.com>

	* Makefile: Use Makefile.translation-auto-linguas.
	* po/vi.po: New file, courtesy Clytie Siddall.

2005-03-16  Florian Boor <florian.boor@kernelconcepts.de>

    * main.c: Fix segfault in detail display code. Add some sanity checks.

2005-03-12  Florian Boor <florian.boor@kernelconcepts.de>

    * db.c (sort_entries): Add sanity check to avoid segfault if names are 
                           undefined.

2005-03-11  Florian Boor <florian.boor@kernelconcepts.de>

    * structure.c: Removed inclusion of render.h

2005-02-16  Florian Boor <florian.boor@kernelconcepts.de>

	* Version 0.35 released.
    * db.c (db_open): Close database if it is already open.
    * main.c (on_import_vcard): Ensure database is refreshed.
    * editing.c (create_edit): Mark edit window for migration.

2005-02-15  Florian Boor <florian.boor@kernelconcepts.de>

    * db.c (db_check_tags): Speedup and fix, only write data if necessary.
    * editing.c (create_edit): Removed unused and buggy tooltips code.
    * main.c (build_children): Add basic support for displaying images.
                               Some formating fixes.

2005-02-14  Florian Boor <florian.boor@kernelconcepts.de>

    * db.c (sort_entries): Sort by family name.
    * db.c (read_one_entry): Removed obsolete queries.
    * main.c: Minor cleanups.

2005-02-08  Florian Boor <florian.boor@kernelconcepts.de>

	* main.c: Show contact details on doubleclick on the contact list
                  in portrait mode. 

2005-01-01  Luc Pionchon  <luc@handhelds.org>

	* configure.c (create_pageSetup): remove markup from i18n'ed strings

2005-01-01  Phil Blundell  <philb@gnu.org>

	* Version 0.34 released.

2005-01-01  Phil Blundell  <philb@gnu.org>

	Rewrite layout parser to use GMarkup rather than libxml2 DOM API:
	* structure.c (new_element): New.
	(xml_parser_start_element): Likewise.
	(xml_parser_end_element): Likewise.
	(xml_parser_text): Likewise.
	(free_ctx): Likewise.
	(read_structure): Reimplement using GMarkupParser and above
	functions.
	(structure_parse_xml_item): Deleted.
	(structure_parse_xml_group): Likewise.
	(structure_parse_xml_page): Likewise.
	(structure_parse_xml): Likewise.
	* Makefile (PACKAGE_CFLAGS): Remove libxml2 flags.
	(PACKAGE_LDFLAGS): Likewise.

2004-11-25  Florian Boor <florian.boor@kernelconcepts.de>

    * structure.c (load_well_known_tags): Make sure all tags are uppercase.
    * db.c: New functions (db_check_tags, check_one_tag) to make sure all
            tags are upercase.
    * finddlg.c, finddlg.h, db.c, db.h, main.c: Applied patch to speed up 
                                                search using SQL. Thanks
                                                to Christian Gillot for this.
            
2004-11-18  Phil Blundell  <philb@gnu.org>

	* Version 0.33 released.

2004-11-14  Phil Blundell  <pb@nexus.co.uk>

	* editing.c (pop_singles): Set expand=FALSE when packing table
	into vbox.

	* db.c (db_get_config_tag): Avoid segfault if query returns no data.

2004-11-07  Phil Blundell  <pb@nexus.co.uk>

	* Makefile (LINGUAS): Add fr, zh_CN.
	* po/ru.po: Updated, courtesy Pavel Maryanov.
	* po/zh_CN.po: New file, courtesy Meng Jie.
	* po/fr.po: New file, courtesy Luc Pionchon.

2004-10-25  Florian Boor <florian.boor@kernelconcepts.de>

    * main.c (create_main): Changed tree selection mode to make sure that a
                            contact is selected all the time.

2004-10-24  Florian Boor <florian.boor@kernelconcepts.de>

    * editing.c: New function on_phone_insert_text() introduces a cleverer 
                 way to filter text in phone entries.
    * editing.c (pop_singles): Use on_phone_insert_text() instead of 
                               phone_key_press_event().  

2004-10-20  Florian Boor <florian.boor@kernelconcepts.de>

	* editing.c: Fixed name label position.
	* contacts-layout.xml: Removed second name label causing trouble.

2004-10-19  Florian Boor <florian.boor@kernelconcepts.de>

	* editing.c: Applied patch to fix diabled button if window is closed.
	             Courtesy by Philippe De Swert - many thanks.
				 Fixed another bug causing the same effect.

2004-10-16  Florian Boor <florian.boor@kernelconcepts.de>

    * Released Version 0.32
    * main.c: Moved screen layout detection.
    * edit-vcard.desktop.in, edit-vcard.png: New files
    * export.* (save_to_file): New function to save vcards.
    * editing.c: Change behaviour if running standalone.
    * proto.h, editing.c, main.c: Made edit window title free selectable.
    * main.c: Added switch to edit personal vcard only.
    * db.* (db_open): Open alternate database.

2004-10-16  Florian Boor <florian.boor@kernelconcepts.de>

    * editing.c (phone_key_press_event): Fixed copy and paste hotkeys.
    
2004-10-13  Florian Boor <florian.boor@kernelconcepts.de>

    * export.*, main.c: Added support for irda transfer via dbus.

2004-10-12  Florian Boor <florian.boor@kernelconcepts.de>
    
    * Released Version 0.31
    * main.c: Using of find dialog, Ctrl+f, button (landscape)
    * finddlg.[c/h]: New files for find dialog.
    * Makefile: Added new files, changed version number.
    * db.c, db.h (db_get_entries_filtered): New search function to return
                                            contacts that contain a given 
                                            string.

2004-10-11  Florian Boor <florian.boor@kernelconcepts.de>

    * main.c: Reduced effect of "-n" switch to hide structure edit.
    * configure.c: Added database tab provides database compacting and info.
    * db.*: Added functions for database cleanup (db_compress) and database
            size info (db_size);
    * main.c, configure.c: Implemented landscape mode list position config.
    * configure.c: Config values for portrait mode only shown if portrait
                   is active.
    * db.*: Removed obsolete db_get_entries_alpha() and friends;
            Added function to update a config value. (db_update_config_values)
    * main.c (delete_contact): Fixed cursor positioning after delete. 

2004-10-09  Florian Boor  <florian.boor@kernelconcepts.de>

    * Released Version 0.30
    * main.c: Minor changes to detail window layout.
    * editing.c: Changed declaration to fix compile error with gcc 2.95. 
    * editing.c: Removed redundant delete button in edit window for small 
                 screens.
    * main.c: Implemented details window.
              Fixed activation of details button.    

2004-10-06  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: New button to show details in small portrait mode.
              Fixed button help texts to make sure the long help text is
              shown at all.
    
2004-10-05  Florian Boor  <florian.boor@kernelconcepts.de>

    * Makefile: Version is 0.30 now.
    * main.c (pop_singles): Increased spacing between widgets.
    * editing.c: Changed some packing to improve image display.
    * proto.h, editing.c: Made build_categories_string() public available.
    * main.c (show_details): Added message if no contact selected.
                             Shows categories now.

2004-10-04  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c (window_key_press_event): Delete key deletes entry if not used for
                                       search entry. 
    * main.c (show_details, build_children, pop_singles):
             Major changes to detail display: Uses structure similar to 
             database layout now.
    * main.c (create_main): Moved details table to scrolled window.
    * main.c (window_key_press_event): Jump to search box if chars are typed.
    * editing.c (store_name_fields): Fixed source of a segfault.
    * namedetail.c (do_edit_name_detail): Minor formating fixes.
                                          Window transient to edit dialog.
    * namedetail.c: Ordered titles/suffixes and addded missing ones.

2004-09-27  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: Some minor bugfixes and speed improvements.
              Minor formating fixes, removed some old cruft.
    * editing.c: Fixed two bugs causing segfaults in store_filename() and
                 store_name_fields().

2004-09-20  Florian Boor  <florian.boor@kernelconcepts.de>

    * Released V 0.29
    * editing.c: Fixed segfault on short name.

2004-09-16  Florian Boor  <florian.boor@kernelconcepts.de>
    
    * editing.c: Fixed bug causing name update to fail.
                 Changed layout of name editing widgets.
                 Fixed growing whitespace in some names.
                 Doubleclick on contacts opens editing window.
                 
    * main.c: Added position status display for large screens.
              Limited size of list in large screen mode.

2004-09-15  Florian Boor  <florian.boor@kernelconcepts.de>
    
    * main.c: Wrap around if up key is pressed and we are at first item.
              Added Ctrl+d as shortcut for delete.
              Added short scroll delays before wrap around.
    * main.c: Clear display if nothing to select in search list.
    * main.c: Set list to first contact on application start.
    * db.*, main.c: Added middle name and company to search.
    * namedetail.c: Fixed minor bug causing wrong defaults and warnings.
    * editing.c: Make name detail dialog work with new contacts. 
                 Moved name splitter to separate function.
    * namedetail.c: Removed debug code and old name splitter.
    * *.xml: Some more design tweaks and naming changes.
    * editing.c: Implemented new name splitter.
    * namedetail.*: Implemented selection lists for titles and suffixes.
    * editing.c: Improved widget packing.
    * *.xml: Some design changes in tab layout, some names changed.
	* main.c: Some middle-name fixes. Disable edit and new buttons
	          while edit window is open.
	
2004-09-14  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c, main.c: Added parameter to edit_person() to set different 
                         window titles if editing or adding a contact.
    * Makefile: Version update.
    * namedetail.c, editing.c: Added middle name.
    * *.xml: Some reordering and new fields.
    * Removed contacts-tab.conf.de, it is not used anymore.
    
2004-09-04  Florian Boor  <florian.boor@kernelconcepts.de>

    * namedetail.c: Changed packing.

2004-08-25  Florian Boor  <florian.boor@kernelconcepts.de>

    Released Version 0.28
    * Makefile: Updated version number.
    * main.c: Support of some standard hotkeys (Ctrl+q, Ctrl+n...)
    * db.c: We support contacts without name now.
    * main.c: Added exception list of fields not to show in overview.
    * editing.c: Update categories list on abort, categories might have changed.
    * *.xml: Added company name.
    * main.c: get_tag_name(): Worked only on first page, fixed it.

2004-08-24  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Added missing population of categories display.
    * db.c: Fixed warning.

2004-08-23  Florian Boor  <florian.boor@kernelconcepts.de>
    
    * main.c: Fixed category update.
    * Released V 0.27
    * contacts-alternate-bigscreen.xml: New file.
    * Makefile: Added method to install alternate contact layout with broken 
                down address field.
    * Makefile: V 0.27
    * db.c: Fixed "MODIFIED" tag multiplication.
    * editing.c: Removed obsolete store_special_fields(), retrieve_special_fields()
    * main.c, editing.c, db.c: Several major bugfixes in category handling.
    * main.c: Automatic update of display after edit and deleting.

2004-08-20  Florian Boor  <florian.boor@kernelconcepts.de>

    * Released V 0.26
    * Makefile: New version.
    * editing.c: Implemented setting of name detail fields from name field.
    
2004-08-17  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Implemented filter to allow not to enter everythign in 
                 number fields.
	* editing.c, namedetail.c: Fixed name setup for new contacts.
    * editing.c: Make name field activated per default.
    * Released Version 0.25

2004-08-10  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: Finished vcard import, disabled broken dialog.
    * main.c: Made tag search case insensitive, imported contacts are 
              displayed correctly now.    
    
2004-08-08  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: match_for_search() Fixed fieldname.
	* import-vcard*: New files (code taken from gpe-bluetooth).
	* main.c: Implemented import of vcard files (-i switch).
	* main.c: match_for_search() Added missing name field to look at.

2004-08-05  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Fixed unclean creation of date combos.

2004-08-04  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: Fixed special handling of name.
    * editing.c: Layout fixed, labels aligned rigth now, corrected spacing.
    * contacts-layout-bigscreen.xml: Added ":" to labels, we have enough
                                     space here.

2004-08-04  Florian Boor  <florian.boor@kernelconcepts.de>

    * Released Version 0.24
    
    * editing.c, *.xml, structure.c: Support for name detail fields hidden in 
                                     main window.
    * contacts-layout.xml: Fixed name field.
    * editing.c: Support for multiple name fields.
    * main.c: Run editor if return key is pressed.    

2004-07-30  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: match_for_search(): Implemeted improved search algorithm.
    * db.c: Load given name and family name into person struct (for search).
    * main.c: Some formating fixes.
    * editing.c: Automatic update of name field.
    * editing.c, proto.h: Added update routine.
    * namedetail.c: Finished implementing detail editor.
    * Makefile: Updated version number to 0.24.

2004-07-29  Florian Boor  <florian.boor@kernelconcepts.de>

    * contacts-layout-bigscreen.xml: Added fields for name details.
    * namedetail.c: New file, started implementing name detail editor.

2004-07-28  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: Several changes to keyboard control, escape clears search.
    * editing.c: Improved setting of default window size.
    * editing.c: Keyboard control: Enter saves, escape discards changes.

2004-07-24  Florian Boor  <florian.boor@kernelconcepts.de>

	* editing.c: Some improvement in dialog layout.
	* contacts-layout.xml: Optimisations for small screens, split up in "home"
	                       and "work" address page. 

2004-07-23  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: Fixed bug in screen size detection.

2004-07-16  Florian Boor  <florian.boor@kernelconcepts.de>

    * Version 0.23 released

2004-07-14  Florian Boor  <florian.boor@kernelconcepts.de>
    
    * main.c: Activate search field whenever main window is activated.
    * main.c: Added command line switch "-n" to turn off configuration dialog.
    * editing.c: on_edit_bt_image_clicked(): Dialog is now modal.
    * po/es.po: Added file to avoid build error.
    * editing.c: Improved date settings.
    * control1: Changed version number of libgpewidget we depend on to 0.86.
    * main.c: Format date according to current locale settings.

2004-07-13  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Finished handling of direction keys.
    * editing.c: Implementation for dynamic built images.
    * editing.c: Fixed image handling.
    * editing.c: Several minor fixes.
    * editing.c: Started experimental keyboard navigation improvement.
    * *xml: Changed order and minor fixes.

2004-07-12  Florian Boor  <florian.boor@kernelconcepts.de>

    * editing.c: Improved keyboard navigation in edit dialog.
    * editing.c: Fixed image selection.
    * editing.c: Some formating changes. 
    * main.c, main.h: Detect and publish information flags about screen.
    * editing.c: edit_window() Removed old cruft.
    * editing.c, structure.c, Makefile: Added alternate layout for larger 
                                        screens.
    * contacts-layout-bigscreen.xml: New file.
    * structure.*: New item types: Images and dates.
    * editing.c: several changes for a more flexible layout.

2004-07-09  Florian Boor  <florian.boor@kernelconcepts.de>

    * main.c: Removed toolbar style setting, we use Xsettings for this now.
    * main.c: Implemented landscape screen layout for main window.
    * main.c: Improved default window size for systems not using matchbox.
    * main.c: Implemented field name lookup for landscape layout.
    * main.c: Up/Down keys select contact now.
    * main.c: Improved keyboard control in main window.

2004-06-21  Philip Blundell  <philb@gnu.org>

	* Version 0.22 released.
	
2004-06-21  Philip Blundell  <philb@gnu.org>

	* Makefile (LINGUAS): Add es.

2004-06-01  Philip Blundell  <philb@gnu.org>

	* Version 0.21 released.
	
2004-06-01  Philip Blundell  <philb@gnu.org>

	* Makefile (install-program): Correct install path for application
	pixmaps.

2004-05-04  Philip Blundell  <philb@gnu.org>

	* Makefile (VERSION): Version 0.20 released.

2004-03-08  Philip Blundell  <philb@gnu.org>

	* old-db.c: Include <gpe/errorbox.h> to fix warning.
	* Makefile (PACKAGE_CPPFLAGS, PACKAGE_CFLAGS, PACKAGE_LDFLAGS):
	Define and use instead of CPPFLAGS, CFLAGS and LDFLAGS.

2004-03-07  Moray Allan  <moray@sermisy.org>

	* main.c: Use themeable names when loading application pixmaps.

2004-02-29  Phil Blundell  <pb@nexus.co.uk>

	* Version 0.19 released.
	
2004-02-29  Phil Blundell  <pb@nexus.co.uk>

	* familiar/control1 (Depends): Add libgpevtype0, libmimedir0,
	dbus-glib-1.

	* main.c (list_button_press_event): Only show menu item for
	bluetooth export if gpe-bluetooth service is available.
	(popup_init): Save pointer to this item.
	(main): Call export_init.
	* export.c (export_init): New.
	(menu_do_send_bluetooth): Fill in implementation.
	* export.h (export_init): New.

2004-02-29  Phil Blundell  <pb@nexus.co.uk>

	* Makefile (LDFLAGS, CFLAGS): Add libgpevtype and libmimedir.
	(MEMBERS): Add export.

	* export.c, export.h: New files.
	
	* main.h: New.
	* editing.c, main.c: Include main.h.
	* proto.h (update_display): Moved to main.h.

	* main.c (menu_do_edit, menu_do_delete): New.
	(export_contact): Deleted.
	(delete_contact): Swap position of buttons in confirmation dialog.
	(selection_made): Remove handling of export button.
	(list_button_press_event, list_button_release_event): New.
	(create_popup): New.
	(create_main): Don't create export button.  Install signal
	handlers for list view.
	(main): Call create_popup.
	
	* support.h (get_widget, add_pixmap_directory, create_pixmap):
	Delete old cruft.

2004-02-25  Phil Blundell  <pb@nexus.co.uk>

	* Version 0.18 released.

2004-02-23  Phil Blundell  <pb@nexus.co.uk>

	* po/cs.po, po/hu.po, po/nl.po, po/ro.po, po/ru.po, po/sk.po,
	po/sr.po: New files.

	* main.c (t_tabdef, load_tab_config): Deleted.
	(create_main): Remove notebook handling.  Clear CAN_FOCUS flag on
	tree view widget.
	(main_view_switch_page): Deleted.
	(main): Don't call update_display.
	(update_display): Use do_search.

2004-02-22  Phil Blundell  <pb@nexus.co.uk>

	* Version 0.17 released.

2004-02-22  Phil Blundell  <pb@nexus.co.uk>

	* familiar/control1 (Depends): Add libgpepimc0.

	* main.c (panel_config_has_changed): Delete.
	(load_panel_config): Rewrite.
	(new_contact): Create new person struct here.

	* editing.c (build_categories_string): Use libgpepimc.
	(get_categories_list): New.
	(update_categories_list): Likewise.
	(store_special_fields): Don't handle p==NULL.

	* db.c (db_open): Don't create categories table.
	(db_get_config_values): Use g_strdup_printf.

	* configure.c (on_bDetAdd_clicked): Rewrite with GtkListStore and GtkTreeView.
	(on_bDetRemove_clicked): Likewise.
	(create_pageSetup): Likewise.
	(on_clist8_select_row, on_clist8_unselect_row): Deleted.
	(on_setup_destroy): Deleted.
	(configure_ok_clicked): New.
	(configure): Add Cancel button.

2004-02-22  Phil Blundell  <pb@nexus.co.uk>

	* old-db.c: New.
	* Makefile (MEMBERS): Add old-db.

	* db.c (db_open): Don't create categories table.  Initialize
	libgpepimc.  Call migrate_old_categories().
	(load_one_attribute): Deleted.
	(db_get_categories): Deleted.
	(db_free_categories): Deleted.
	(db_get_category_name): Deleted.
	* db.h (struct category): Deleted.
	(db_get_categories): Deleted.
	(db_free_categories): Deleted.
	(db_get_category_name): Deleted.
	(db_insert_category, db_delete_category): Deleted.

2004-02-17  Philip Blundell  <philb@gnu.org>

	* callbacks.c: Deleted.
	(retrieve_special_fields, on_edit_save_clicked,
	on_categories_clicked, store_filename, on_edit_cancel_clicked):
	Move to editing.c.
	(on_bDetAdd_clicked, on_bDetRemove_clicked, on_clist8_select_row,
	on_clist8_unselect_row, on_setup_destroy): Move to new file
	configure.c.
	* callbacks.h: Deleted.
	* main.c: Remove #include callbacks.h.
	(create_pageSetup, configure): Move to configure.c.
	(build_categories_string, store_special_fields, edit_person): Move
	to editing.c.
	* Makefile (MEMBERS): Delete callbacks.  Add configure.
	* proto.h (configure, edit_person, update_display,
	load_panel_config): Add prototypes.
	* editing.c: Add forward decls for signal handlers.  Remove
	#include callbacks.h.
	* structure.c, configure.c: Remove #include callbacks.h.
	* support.c: Remove unused code.

2004-02-16  Philip Blundell  <philb@gnu.org>

	* db.c (db_free_categories): New function.
	* db.h (db_free_categories): Prototype it.
	* main.c (update_categories): Use it.
	(do_search): Likewise.

2004-02-16  Philip Blundell  <philb@gnu.org>

	* main.c (config_categories_box): Deleted.
	(new_category, delete_category): Likewise.
	(configure): Remove "Categories" tab.

2004-02-16  Philip Blundell  <philb@gnu.org>

	* adb.glade: Deleted.

	* Makefile (MEMBERS): Remove interface.
	* interface.c: Deleted.
	* interface.h: Likewise.
	* callbacks.c: Remove #include of interface.h.
	* structure.c: Likewise.
	* main.c: Likewise.
	* categories.c: Likewise.
	* editing.c: Likewise.

	* db.c: Remove usqld cruft.

2004-02-16  Philip Blundell  <philb@gnu.org>

	* Makefile (MEMBERS): Add categories.
	* categories.c: New file.
	* categories.h: Likewise.
	* db.c (db_get_category_name): New function.
	* db.h (db_get_category_name): New prototype.
	* main.c (store_special_fields): Revamp category list handling.
	(build_categories_string): New.
	* callbacks.c (on_categories_clicked): New.
	(retrieve_special_fields): Use GObject.
	(edit_bt_image_clicked): Likewise.
	* callbacks.h: Delete outdated prototypes.
	(on_categories_clicked): Added.
	* editing.c (add_tag): Use GObject.
	(destroy_category_widgets): Deleted.
	(create_edit): Use GObject.  Revamp category list handling.

2004-02-15  Philip Blundell  <philb@gnu.org>

	* main.c (create_main): Re-run search when selection made from
	category menu.
	(do_search): Fix warning.

2004-02-15  Philip Blundell  <philb@gnu.org>

	* editing.c (edit_window): Tweak packing of action buttons.  Add
	"delete" button (currently inoperative).  Set sensible default
	size on window.

	* main.c (create_main): Stash pointers to edit, delete and export
	buttons as properties on main window.  Make all three insensitive.
	(selection_made): Toggle sensitivity on all three buttons.

2004-02-15  Philip Blundell  <philb@gnu.org>

	* main.c (create_main): Remove "go" button from search panel;
	replaced with interactive search-as-you-type.
	(schedule_search): New.
	(search_timer_func): Likewise.
	(do_search): Fix warning.

	* callbacks.c: Fix warnings.

	* db.c (read_name): Remove commented-out code.
	(read_one_entry): Uncomment SQL queries.
	(read_one_entry_alpha): New.
	(db_get_entries_alpha): Use read_one_entry_alpha.

2004-02-15  Philip Blundell  <philb@gnu.org>

	* Version 0.16 released.

2004-02-15  Philip Blundell  <philb@gnu.org>

	* Makefile (LINGUAS): Add cs, nl, hu, ro, ru, sr, sk

2004-02-13  Phil Blundell  <pb@nexus.co.uk>

	* db.c (commit_person): Write out MODIFIED tag.

2003-10-11  Andrey Tatarinov <elephantum@dezcom.mephi.ru>
	
	* db.c: add utf-8 support for tabs
	* db.c: add sorting by name
	* editing.c: add scrolled_window to "personal" tab in edit contact window
	* main.c: enlarged length of symbols string in tab reading

2003-10-09  Philip Blundell  <philb@gnu.org>

	* Makefile (LINGUAS): Add cs.

2003-10-09  Florian Boor <florian.boor@kernelconcepts.de>
	
	* Makefile: Replaced "install -s" to make crosscompiling work.

2003-08-19  Florian Boor <florian.boor@kernelconcepts.de>

	* main.c: Added basic vcard export.
	* Removed obsolete comments from main.c
	* Makefile: Added new icon, changed installation path to allow icon themes.
	* control1: Added "Source" description field.

2003-07-29  Philip Blundell  <philb@gnu.org>

	* Makefile (CPPFLAGS): Add -DENABLE_NLS.
	* main.c (main): Add calls to setlocale and bindtextdomain_codeset.

2003-07-27  Phil Blundell  <pb@nexus.co.uk>

	* db.c: Make schema decls acceptable to GCC 3.3.

2003-07-06  Philip Blundell  <philb@gnu.org>

	* Makefile (LINGUAS): Add sv.
	* po/sv.po: New file, courtesy Christian Rose.	

2003-07-06  Moray Allan  <moray@ascendit.sermisy.org>

	* Makefile (install_program): Install .desktop file with .desktop 
	filename extension.

2003-05-29  Philip Blundell  <philb@gnu.org>

	* Version 0.14 released.

2003-05-29  Philip Blundell  <philb@gnu.org>

	* Makefile (LINGUAS): Add de.

2003-05-28  Florian Boor <florian.boor@kernelconcepts.de>
	* main.c Removed obsolete var definition.
			 Made tabbed notebook scrollable to support more tabs.

2003-04-28  Florian Boor <florian.boor@kernelconcepts.de>
	* db.c, a speedup for read_one_entry - should be treated as a test

2003-04-28  Florian Boor <florian.boor@kernelconcepts.de>
	* db.c (db_get_entries_alpha): SQL code bugfixes, speedup.
	  Supports inverse char lists now. (first char='!')
	* main.c, contacts-tab.conf.de: new defaults.

2003-04-27  Philip Blundell  <philb@gnu.org>

	* main.c (load_tab_config): Reformat.  Avoid
	uninitialised-variable crash if tab file is missing.

2003-04-25	Florian Boor	<florian.boor@kernelconcepts.de>

	* main.c, some fixes for new tab handling, some cleanups
	* db.c, db_get_entries_alpha some bugfixes in sql generating code
	* contacts-tab.conf.de, new: example tab configuration for german language setting
	
2003-04-24	Florian Boor	<florian.boor@kernelconcepts.de>

	* main.c, some code for improved tab handling and configuration
	* db.c, db_get_entries_alpha speedup - needs testing

2003-04-12  Philip Blundell  <philb@gnu.org>

	* Version 0.13 released.
	
2003-04-12  Philip Blundell  <philb@gnu.org>

	* db.h (sort_entries): Add prototype.
	* main.c (do_search): Sort the returned list.

	* db.c (db_get_entries_alpha): Use g_slist_insert_sorted.
	(read_one_entry): Use g_slist_prepend.
	(load_one_attribute): Likewise.
	(db_set_data): Likewise.
	(db_set_multi_data): Likewise.

2003-04-11  Philip Blundell  <philb@gnu.org>

	* editing.c (create_edit): Don't use GtkDialog.

2003-03-23  Phil Blundell  <pb@nexus.co.uk>

	* callbacks.c (on_edit_save_clicked): Put decl in right place.

2003-03-22  Colin Marquardt  <colin@marquardt-home.de>

	* Makefile (install-program): New name for 'install' ('install' is
	now provided by Makefile.dpkg_ipkg).  

2003-03-17  Philip Blundell  <philb@gnu.org>

	* Version 0.12 released

2003-03-17  Philip Blundell  <philb@gnu.org>

	* editing.c: Include stdlib.h to fix warning.
	(edit_window): Remove spurious gtk_widget_show.
	(create_edit): Likewise.
	(build_children): Don't make a frame for groups, just put a label
	above the members.

	* callbacks.c (on_edit_save_clicked): Cope with GtkTextView
	elements.

2003-03-15  Philip Blundell  <philb@gnu.org>

	* Makefile (install): Depend on .desktop file.

2003-03-15  Philip Blundell  <philb@gnu.org>

	* Version 0.11 released.

2003-03-15  Philip Blundell  <philb@gnu.org>

	* familiar/control1 (Depends): Require libdm0.

	* main.c (do_search): New function.
	(match_for_search): Likewise.
	(create_main): Wire up "search" functionality.

2003-03-15  Philip Blundell  <philb@gnu.org>

	* familiar/control1 (Depends): Require libgpewidget1 0.53.

	* Makefile: Remove GTK1 compatibility.
	(LDFLAGS, CFLAGS): Set depending on $(DEBUG).  Add libdm.

	* structure.c (edit_structure): Remove GTK1 compatibility.  Use
	stock items.  Remove redundant calls to gtk_widget_show.  Set
	policy on scrolled window to AUTOMATIC, AUTOMATIC.

	* editing.c (create_edit): Use GtkDialog.  Remove unnecessary
	Glade remnants.  Use GObject functions.
	(edit_window): Remove redundant gtk_widget_show calls.

	* main.c (my_icons): Remove new, save, properties.
	(edit_person): Use gtk_widget_show_all.
	(edit_contact): Use GtkTreeSelection.
	(delete_contact): Likewise.
	(config_categories_box): Remove GTK1 compatibility code.  Use
	stock items.
	(configure): Use GtkDialog.  Replace many gtk_widget_show calls
	with one gtk_widget_show_all.  Only set size hints, not actual
	window dimensions.  Mark window for migration.  Use GObject signal
	functions. 
	(show_details): Remove check for clist.
	(selection_made): Use GtkTreeSelection.  Don't attempt to handle
	double clicks.
	(update_display): Use GtkListView, etc.
	(main_view_switch_page): New.
	(create_main): Likewise.
	(main): Call libdm_init.  Create list store, etc.  Delete widget
	initialisation now done in create_main.  Use gtk_widget_show_all.

	* adb.glade: Remove "main" window.
	* interface.c (create_main): Delete.
	* interface.h (create_main): Likewise.

	* callbacks.c (on_nbList_switch_page): Delete.
	* callbacks.h (selection_made): Likewise.

2003-03-12  Philip Blundell  <philb@gnu.org>

	* Makefile: Version 0.10 released.

2003-03-12  Philip Blundell  <philb@gnu.org>

	* db.c (db_delete_tag): Use strcasecmp for tags.
	(db_find_tag): Likewise.
	* main.c (store_special_fields): Likewise.

	* db.c (db_get_entries_alpha): Implement in terms of
	db_get_entries.
	(read_name): New.
	(read_one_entry): Look name up with a separate query.
	(db_get_entries): Add error trapping.  Just search the URN table,
	don't assume anything about the tags.

2003-03-09  Philip Blundell  <philb@gnu.org>

	* gpe-contacts.desktop.in: New file.
	* gpe-contacts.desktop: Deleted.

	* callbacks.c, db.c, editing.c, interface.c, main.c, structure.c,
	support.c, callbacks.h, db.h, interface.h, proto.h, structure.h,
	support.h: Moved here from src subdirectory.
	* Makefile: Adjust appropriately.

2003-01-18  Philip Blundell  <philb@gnu.org>

	* Version 0.09 released.

2003-01-11  Philip Blundell  <philb@gnu.org>

	* src/main.c (edit_person): Cope with GtkTextView widgets.
	(config_categories_box): Improve tooltips.

	* src/editing.c (create_edit): Use stock buttons.
	(build_children): Replace GtkText with GtkTextView.  Set vertical
	size to 64.

	* Makefile (GTKCFLAGS): Remove GTK_ENABLE_BROKEN.

2003-01-01  Philip Blundell  <philb@gnu.org>

	* Version 0.08 released.
	
2003-01-01  Philip Blundell  <philb@gnu.org>

	* gpe-contacts.desktop (SingleInstance): Set to true.

	* src/main.c (main): Set icon on main window.
	(configure): Set icon and title on config window.
	* src/editing.c (create_edit): Set icon on editing window.

2002-12-15  Philip Blundell  <philb@gnu.org>

	* gpe-contacts.desktop: New file.
	* Makefile (install): Install it.

2002-12-15  Philip Blundell  <philb@gnu.org>

	* Version 0.07 released.

2002-12-15  Philip Blundell  <philb@gnu.org>

	* src/structure.c (edit_structure): Fix warnings.
	* src/db.c (db_open): Likewise.
	* src/main.c (load_panel_config): Likewise.
	* src/callbacks.c (on_edit_save_clicked): Likewise.
	(retrieve_special_fields): Likewise.

	* adb.glade: Delete unused "detailview" window.

	* src/editing.c (create_edit): Remove unimplemented "Clear"
	button.
	* src/callbacks.c (on_edit_clear_clicked): Delete.
	(structure_add_clicked): Likewise.
	(structure_edit_clicked): Likewise.
	(structure_delete_clicked): Likewise.
	* src/callbacks.h (on_edit_clear_clicked): Likewise.
	(structure_add_clicked): Likewise.
	(structure_edit_clicked): Likewise.
	(structure_delete_clicked): Likewise.
	(on_structure_test): Likewise.
	(on_structure_save_clicked): Likewise.
	
	* contacts-layout.xml: Delete "Photo" page.

2002-12-09  Florian Boor <florian.boor@kernelconcepts.de>

	* adb.glade: Undocumented changes.

	* src/callbacks.c: (on_bDetAdd_clicked): New Function.
	(on_bDetRemove_clicked): New Function.
	(on_clist8_select_row): New Function.
	(on_clist8_unselect_row): New Function.
	(on_setup_destroy): New Function.

	* src/callbacks.h: (on_bDetAdd_clicked): Prototype.
	(on_bDetRemove_clicked): Prototype.
	(on_clist8_select_row): Prototype.
	(on_clist8_unselect_row): Prototype.
	(on_setup_destroy): Prototype.

	* src/db.c (db_get_tag_list): New Function.                        
	(db_get_config_values): New Function.
	(db_add_config_values): New Function.
	(db_delete_config_values): New Function.
	(db_get_config_tag): New Function.
	(db_free_result): New Function.
	(db_open): Added creation and initialisatzion for config table.

	* src/db.h (db_get_tag_list): New Prototype.                       
	(db_get_config_values): New Prototype.
	(db_add_config_values): New Prototype.
	(db_delete_config_values): New Prototype.
	(db_get_config_tag): New Prototype.
	(db_free_result): New Prototype.

	* src/main.c (mainw): Make global.
	(load_panel_config): New Function.
	(create_pageSetup): New Function.
	(update_categories): Added some casts.
	(configure): Added code for new page creation.
	(show_details): Changed for changing content.
	(selection_made): Added code for panel update and fix for some
	warnings).

2002-12-01  Philip Blundell  <philb@gnu.org>

	* src/editing.c (create_edit): Mark "Schedule" button insensitive,
	to discourage further bug reports about it not working.

	* src/main.c (edit_contact): New function.
	(my_icons): Add edit.
	(main): Add "edit" icon to toolbar.
	(selection_made): Remove redundant code.
	
	* icons/entry.xpm, icons/frame.xpm, icons/notebook.xpm: Deleted.
	* icons/entry.png, icons/frame.png, icons/notebook.png: New.
	* src/main.c (my_icons): Adjust filenames accordingly.
	* Makefile (install): Likewise.

2002-12-01  Philip Blundell  <philb@gnu.org>

	* Version 0.06 released.
	
2002-12-01  Philip Blundell  <philb@gnu.org>

	* src/main.c (delete_category): Implement.

	* src/db.c (db_delete_category): New function.
	* src/db.h (db_delete_category): Prototype.

	* src/structure.c (structure_delete_item): Add "are you sure" dialog.

	* familiar/control, familiar/control1: Require libgpewidget 0.30.

	* src/structure.c (edit_structure): Just one column in the CTree.

	* src/main.c (selection_made): Make linkage global.
	* src/callbacks.c (selection_made): Delete.

	* src/Makefile (DIR_PO): Define.
	* src/Makefile.in, src/Makefile.am: Delete autotools cruft.

	* src/main.c (show_details): New function.
	(selection_made): Use it.
	(main): Clear details at startup.

	* src/main.c (update_categories_combo): Delete.
	(update_categories): New function.
	(delete_category): Adjust accordingly.
	(new_category): Likewise.
	(main): Likewise.  Make the GtkSimpleMenu and pack it in place.

	* src/db.c (db_detail_by_uid): Delete.
	(read_detail_data): Likewise.
	(read_detail_fields): Likewise.
	(db_get_categories): Reformat.
	(db_get_entries_alpha): Likewise.

	* adb.glade (main): Delete toolbar.  Add new hbox below main clist
	containing category selector and search filter box.
	(detail_view): Delete image.
	* src/main.c (main): Create a toolbar here and splice it into the
	main window.

2002-12-01  Philip Blundell  <philb@gnu.org>

	Patch from Florian Boor:

	* adb.glade: updated gui

	* src/callbacks.c:
	- added active_chars to hold active selection
	- added some externals
	- on_nbList_switch_page is new handler for page/selection change
	- selection_made now handles editing via doubleclick here
	
	* src/db.c
	- added definition of USE_USQLD to switch
	- usqld usage
	- db_get_entries_alpha selects only entys starting with listed chars
	- read_detail_fields / read detail / db_detail_by_uid data to
	update some details shown in the main form

	* src/db.h
	- db_get_entries_alpha

	* src/interface.c
	- some interface changes, use glade...

	* src/main.c
	- some changes in startup behaviour to use features of changed interface
	- update_display changed call/added freeze for speedup

	* src/structure.c
	- added some . :-)

2002-10-02  gettextize  <bug-gnu-gettext@gnu.org>

	* Makefile.am (SUBDIRS): Add m4.
	(ACLOCAL_AMFLAGS): New variable.
	(EXTRA_DIST): Add config.rpath.
	* configure.in (AC_OUTPUT): Add m4/Makefile.

2002-09-23  Colin Marquardt  <colin@marquardt-home.de>

	* src/main.c: Small spelling fixes. Add copyright info to top of
	file.

2002-08-25  Philip Blundell  <philb@gnu.org>

	* Version 0.04 released.

2002-08-25  Philip Blundell  <philb@gnu.org>

	* src/main.c (store_special_fields): Avoid crash when NULL passed
	in or no category widgets exist.

	* evo2gpe.py: New file, courtesy Robert Mibus.

2002-08-24  Philip Blundell  <philb@gnu.org>

	* src/Makefile.am (gpe_contacts_LDADD): Reinstate -L../../libgpewidget.

	* src/editing.c (destroy_category_widgets): New function.
	(create_edit): Store list of category checkboxes.
	* src/db.c (db_set_multi_data): New function.
	(read_entry_data): Use it.
	(db_delete_tag): New function.
	* src/db.h (db_set_multi_data): New prototype.
	(db_delete_tag): Likewise.
	* src/main.c (store_special_fields): New function.
	(edit_person): Call it.
	* src/callbacks.c (retrieve_special_fields): New function.
	(on_edit_save_clicked): Call it.
	
	* src/proto.h: New file.
	* src/main.c: Include it.
	* src/callbacks.c: Likewise.

2002-08-15  Philip Blundell  <philb@gnu.org>

	* src/editing.c: Change path to libgpewidget headers.
	* src/db.c: Likewise.
	* src/main.c: Likewise.
	* src/callbacks.c: Likewise.
	* src/structure.c: Likewise.
	
	* src/editing.c (build_children): Fix typo.

2002-08-12  Colin Marquardt  <colin@marquardt-home.de>

	* po/de.po: New file.
	* configure.in: Added de to ALL_LINGUAS.

2002-08-11  Philip Blundell  <philb@gnu.org>

	* src/structure.c (structure_new_field): Offer list of possible
	tags in a combo box.
	
	* src/structure.c (load_well_known_tags): New function.
	* src/structure.h (load_well_known_tags): Add prototype.
	* src/main.c (main): Call load_well_known_tags.

	* src/structure.c (print_structure_1): Use correct format when
	printing tag.
	
	* well-known-tags: New file.
	* Makefile.am (install-data-local): Install it.

	* src/editing.c (edit_window): Put contents of tab in a scrolled window.

2002-07-31  Colin Marquardt  <colin@marquardt-home.de>

	* familiar/control (Version):  Bump up to version 0.02-1.

	* Makefile.am (install-data-local): Copy pixmap to the right place.

	* familiar/postinst, familiar/postrm: New files.1

	* familiar/control (Version): Bump up to version 0.02.

	* icons/gpe-contacts.png: New file.

	* Makefile.am: Copy the menu, add the Makefile snippet for the
	ipkg/dpkg targets.

	* gpe-contacts.menu: New file.

	* contacts-layout.xml: New structure.