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 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
|
2008-06-06 Thomas Wood <thomas@openedhand.com>
* src/contacts-edit-pane.c: (contacts_remove_entries):
* src/contacts-gtk.c: (contacts_ui_update_groups_list):
* src/contacts-utils.c: (contacts_get_field_types):
Fix misc. compiler warnings
2008-06-06 Thomas Wood <thomas@openedhand.com>
* src/contacts-utils.c: Improve the labels for address fields.
Closes bug 306.
2008-06-06 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ui.c:
* src/contacts-callbacks-ui.h:
* src/contacts-defs.h:
* src/contacts-gtk.c: (create_chooser_dialog):
Don't add duplicate groups to contacts but instead select the first
instance. Fixes bug 338.
2008-06-06 Thomas Wood <thomas@openedhand.com>
* src/contacts-main.c: (start_query), (opened_book): Add some error
message dialog boxes.
2008-06-05 Thomas Wood <thomas@openedhand.com>
* src/contacts-defs.h:
* src/contacts-edit-pane.c: (contacts_edit_widget_new):
* src/contacts-utils.c:
Prevent Ext and Locality fields from being displayed in the address
editor. Closes bug 169.
2008-06-05 Thomas Wood <thomas@openedhand.com>
Patch by: Adrien Bustany <madcat@mymadcat.com>
* src/contacts-utils.c: Add several other IM systems to list of field
types. Fixes bug 489.
2008-06-05 Thomas Wood <thomas@openedhand.com>
* src/contacts-edit-pane.c: (contacts_type_entry_changed),
(contacts_type_edit_widget_new):
* src/contacts-ui.c: (contacts_display_summary):
* src/contacts-utils.c:
* src/contacts-utils.h:
Enable attribute type labels to be translatable and remove labels that
are probably not useful to most users. Closes bug 305.
2008-06-05 Thomas Wood <thomas@openedhand.com>
* src/contacts-edit-pane.c: (contacts_type_entry_changed),
(contacts_entry_changed):
Add N and X-EVOLUTION-FILE-AS fields to vcard. Fixes bugs 310 and 659.
2008-06-03 Thomas Wood <thomas@openedhand.com>
Based on patch by: Adrien Bustany <madcat@mymadcat.com>
* src/contacts-defs.h:
* src/contacts-gtk.c: (create_main_window):
* src/contacts-ui.c: (contacts_display_summary):
Fix unexpected triple-click behavior in Name/Groups display (bug 341)
2008-06-03 Thomas Wood <thomas@openedhand.com>
Patch by: Gilles Dartiguelongue <gdartiguelongue@comwax.com>
* configure.ac:
* src/Makefile.am:
* src/contacts-dbus.c:
* src/contacts-dbus.h:
* src/contacts-dbus.xml:
* src/contacts-main.c: (main):
* src/contacts-utils.c: (contacts_set_selected_contact),
(contacts_set_widgets_sensitive):
* src/contacts-utils.h:
Add a simple D-Bus interface to Contacts. (Bug 896).
2008-06-02 Thomas Wood <thomas@openedhand.com>
* src/bacon-message-connection.h:
* src/contacts-main.c: (main):
Ensure BaconMessageConnection is freed on exit. Closes bug 139.
2008-06-02 Thomas Wood <thomas@openedhand.com>
* src/contacts-gtk.c: (create_main_window): Load the default contact
icon at startup to prevent an extra size requests when the contact is
loaded.
2008-06-02 Thomas Wood <thomas@openedhand.com>
* src/contacts-ui.c: (contacts_display_summary): Don't display blank
fields in the summary view. Fixes bug 318.
2008-06-02 Thomas Wood <thomas@openedhand.com>
* src/contacts-utils.c:
* src/contacts-utils.h:
Remove unused function. Closes bug 774.
2008-06-02 Thomas Wood <thomas@openedhand.com>
Based on patch by: Adrien Bustany <madcat@mymadcat.com>
* src/contacts-callbacks-ui.c:
* src/contacts-utils.c: (e_util_unicode_get_utf8):
Remove use of kozo functions and fix problems when searching on
non-ascii characters. Closes bug 224.
2008-05-27 Thomas Wood <thomas@openedhand.com>
Patch by: Simon Josefsson <simon@josefsson.org>
* src/contacts-callbacks-ebook.c: (contacts_added_cb),
(contacts_changed_cb):
* src/contacts-callbacks-ui.c: (contacts_delete_cb):
* src/contacts-ui.c: (contacts_display_summary):
Display organisation name if full name is not available.
Closes bug 808.
2008-05-27 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ui.c: (contacts_delete_cb):
* src/contacts-callbacks-ui.h:
Fix multiple contact import. Closes bug 368.
2008-05-27 Thomas Wood <thomas@openedhand.com>
* src/contacts-gtk.c: (create_main_window):
Fix conflicting accelerators. Closes bug 339.
2008-05-27 Thomas Wood <thomas@openedhand.com>
* configure.ac: Enable GConf and gnome-vfs options by default
2008-05-27 Thomas Wood <thomas@openedhand.com>
* configure.ac:
* data/icons/Makefile.am:
Only installing 26x26 icons when building for Maemo platforms. Fixes
bug 492.
2008-05-23 Thomas Wood <thomas@openedhand.com>
* src/contacts-edit-pane.c: (contacts_edit_widget_new): Don't accept
tabs in text view widgets. Fixes bug 275.
2008-05-23 Thomas Wood <thomas@openedhand.com>
Based on patch by: Adrien Bustany <madcat@mymadcat.com>
* src/contacts-gtk.c: (groups_combobox_changed_cb),
(groups_compare), (contacts_ui_update_groups_list):
Sort the groups list before adding to the combobox. Fixes bug 309.
2008-05-22 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ui.c:
* src/contacts-defs.h:
* src/contacts-gtk.c: (groups_combobox_changed_cb),
(contacts_ui_update_groups_list), (create_main_window):
Add a "No Group" item to the groups combo box. Closes bug 308 - No way
to view "unfiled" contacts.
2008-05-22 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ui.c: Update website and copyright information
in the about dialog. Closes bug 866.
2008-05-22 Thomas Wood <thomas@openedhand.com>
Patch by: Gilles Dartiguelongue <gdartiguelongue@comwax.com>
* src/contacts-main.c: (main): Fix bug 888 - contacts segfaults when
provided with incomplete options on command line.
2008-05-22 Thomas Wood <thomas@openedhand.com>
Based on patch by: Gilles Dartiguelongue <gdartiguelongue@comwax.com>
* src/contacts-ui.c: (contacts_display_summary):
* src/contacts-utils.c: (contacts_compare_attributes):
Fix attribute sorting in view mode. Fixes bug 885 (and 42).
2008-05-22 Thomas Wood <thomas@openedhand.com>
Patch by: Gilles Dartiguelongue <gdartiguelongue@comwax.com>
* src/contacts-utils.c: (contacts_clean_contact):
Replace recursive function with iterative version. Fixes bug 893.
2008-05-22 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ui.c:
* src/contacts-main.c: (main):
* src/contacts-ui.c:
Fix typos and missing copyright header, based on patch from bug 890.
Fixes bug 890.
2008-02-27 Thomas Wood <thomas@openedhand.com>
* src/contacts-gtk.c: (create_main_window):
Prevent the on-screen keyboard from appearing at startup by not
placing initial focus in the search entry.
2008-02-22 Ross Burton <ross@openedhand.com>
* src/contacts-main.c:
Call g_set_application_name().
* src/contacts-callbacks-ui.c:
Don't set the "name" property, the about dialog will use the
application name.
2008-02-22 Ross Burton <ross@openedhand.com>
* src/contacts-utils.c:
Don't set INLINE on an internal function to fix compile warnings.
2007-12-18 Ross Burton <ross@openedhand.com>
* configure.ac:
* NEWS:
Version 0.8.
2007-12-18 Ross Burton <ross@openedhand.com>
* src/contacts-gtk.c:
* src/contacts-callbacks-ui.c:
* src/contacts-edit-pane.c:
* src/contacts-callbacks-ebook.c:
* src/contacts-ui.c:
Translate more strings (#650, thanks Stéphane Raimbault).
2007-11-15 Ross Burton <ross@openedhand.com>
* src/contacts-callbacks-ui.c:
Collate the contacts, don't use strcmp (#395, thanks Adrien Bustany).
2007-11-15 Ross Burton <ross@openedhand.com>
* src/contacts-gtk.c:
Add ellipsis as per HIG, thanks Michael Monreal (#535).
2007-11-14 Ross Burton <ross@openedhand.com>
* data/contacts.desktop.in:
Remove Encoding key, its deprecated. Rename SingleInstance to
X-MB-SingleInstance to comply with the spec.
2007-08-09 Ross Burton <ross@openedhand.com>
* configure.ac:
* NEWS:
Version 0.7.
2007-08-09 Rob Bradford <rob@openedhand.com>
* src/contacts-gtk.c: (groups_combobox_changed_cb):
Fix crash due to invalid iter when retrieving active item in the
group combobox. (OH Bugzilla: #441)
2007-07-12 Ross Burton <ross@openedhand.com>
* data/icons/*/Makefile.am:
Don't install the SVG files in the fixed sizes, they are source.
2007-07-11 Ross Burton <ross@openedhand.com>
* configure.ac:
* NEWS:
Version 0.6.
2007-07-11 Ross Burton <ross@openedhand.com>
* configure.ac:
* data/icons/24x24/:
* data/icons/26x26/:
Add 24px and 26px (22px with a border) icons.
* data/icons/*/Makefile.am:
Clean dist rules.
2007-07-11 Ross Burton <ross@openedhand.com>
* configure.ac:
* data/icons/*:
Add the rest of the icons that Andreas drew.
2007-07-11 Ross Burton <ross@openedhand.com>
* data/Makefile.am:
Install the SVG icon, and clean up the rules a little.
2007-07-10 Ross Burton <ross@openedhand.com>
* src/contacts-utils.c:
Add X-JABBER to the display fields.
2007-06-13 Ross Burton <ross@openedhand.com>
* src/contacts-gtk.c:
Pass an iterator to gtk_list_store_insert_with_values, because on
GTK+ < 2.10 it fails.
2007-05-01 Thomas Wood <thomas@openedhand.com>
* src/contacts-main.c: (start_query), (opened_book), (main): Standardise the
use of ContactsData.
* src/contacts-utils.c: Add ORG field
2007-04-23 Thomas Wood <thomas@openedhand.com>
* NEWS:
* configure.ac:
Updated for 0.5 release
2007-04-20 Thomas Wood <thomas@openedhand.com>
* src/contacts-ui.c: (contacts_display_summary):
* src/contacts-utils.c: (contacts_field_pretty_name):
* src/contacts-utils.h:
Don't hide any fields in view mode, and try and sort them by priority.
2007-04-20 Thomas Wood <thomas@openedhand.com>
Patch by: Diego Escalante Urrelo
* src/contacts-edit-pane.c: (contacts_edit_ok_cb),
(contacts_edit_ok_new_cb): Display a GtkMessageDialog on errores
adding/editing contacts. Closes bug 248.
2007-04-20 Thomas Wood <thomas@openedhand.com>
* src/contacts-edit-pane.c: (contacts_change_groups_cb),
(contacts_edit_pane_show): Remove the need to commit the contact after
changing the groups. Prevents the window from switching back to view mode.
2007-04-20 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ebook.c: (contacts_added_cb):
* src/contacts-callbacks-ui.c: (contacts_delete_cb):
* src/contacts-edit-pane.c: (contacts_edit_widget_new),
(contacts_edit_add_focus_events), (contacts_add_field_cb):
* src/contacts-gtk.c: (create_main_window):
* src/contacts-main.c: (main):
* src/contacts-ui.c: (contacts_display_summary):
* src/contacts-utils.c: (contacts_contact_from_tree_path),
(contacts_string_list_as_string), (contacts_chooser):
Plug a dozen memory leaks, and a few compiler warnings
2007-04-19 Thomas Wood <thomas@openedhand.com>
* src/contacts-utils.c: Add birthday field. Closes bug 201.
2007-04-16 Ross Burton <ross@openedhand.com>
* data/contacts.desktop.in:
Remove Application and PIM, they are not registered categories.
2007-04-10 Thomas Wood <thomas@openedhand.com>
* data/contacts.png:
* data/contacts.svg:
Add new contacts icon, including svg version.
2007-04-05 Thomas Wood <thomas@openedhand.com>
* src/contacts-ui.c: (contacts_setup_ui): Make sure we always have an initial
groups list.
2007-03-26 Ross Burton <ross@openedhand.com>
* src/contacts-gtk.c:
Pass the parent window to the about callback (#256).
2007-03-26 Ross Burton <ross@openedhand.com>
* src/contacts-callbacks-ui.c:
Add the license field (#257).
2007-03-21 Thomas Wood <thomas@openedhand.com>
* src/contacts-edit-pane.c: (contacts_change_groups_cb),
(contacts_add_field_cb):
* src/contacts-utils.c:
* src/contacts-utils.h:
Make sure the chooser is always multiselect when required. Fixes a problem
when adding the first ever group.
Commit the contact when closing the groups chooser so that new groups are
available when re-opening the groups chooser but before closing the contact
2007-03-19 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ebook.c: (contacts_added_cb),
(contacts_changed_cb): Move update listview and update groups to
sequence-complete callback. Fixes a bug where the groups list menu was never
initialised when there were no groups defined.
2007-03-13 Thomas Wood <thomas@openedhand.com>
* NEWS:
* configure.ac:
Updated for 0.4 release
2007-03-13 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ui.c: Add more developers to the about dialog.
2007-03-13 Thomas Wood <thomas@openedhand.com>
* data/contacts.schemas: Add information for width and height keys
* src/contacts-callbacks-ui.c:
* src/contacts-callbacks-ui.h:
* src/contacts-defs.h:
* src/contacts-gtk.c: (create_main_window):
* src/contacts-gtk.h:
Add support for saving and restoring window size on application exit
and start up. Fixes bug 240.
2007-03-13 Thomas Wood <thomas@openedhand.com>
* src/contacts-utils.c: (contacts_chooser_treeview_row_activated),
(contacts_chooser): Allow double click in the chooser window if it is
single select. Closes bug 176.
2007-03-07 Thomas Wood <thomas@openedhand.com>
* data/Makefile.am:
* data/contacts.desktop.in:
* src/contacts-callbacks-ui.c:
* src/contacts-gtk.c: (create_main_window):
Install the application icon into the hicolor icon theme and use the icon
theme within the application.
2007-03-06 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ui.c: (contacts_search_changed_cb): Prevent
the search entry selecting text on backspace (partially fixes bug 53).
(contacts_treeview_search_cb): Replace deprecated function
2007-03-06 Thomas Wood <thomas@openedhand.com>
* src/contacts-edit-pane.c: (contacts_change_groups_cb): Fix group editing/management (fixes bug 217)
* src/contacts-gtk.c: (create_main_window):
* src/contacts-main.c: (main):
Tweaks to make UI more stable and consistent
2007-03-01 Thomas Wood <thomas@openedhand.com>
* po/LINGUAS: Added new translations
* po/bg.po: New Bulgarian translation from Yavor Doganov <yavor@doganov.org> (Bug 208)
* po/da.po: New Danish translation from Kristian Poul Herkild <kristian@herkild.dk> (Bug 212)
2007-02-02 Ross Burton <ross@openedhand.com>
* configure.ac:
* NEWS:
Version 0.3.
* src/Makefile.am:
* data/Makefile.am:
Fix dist.
2007-02-02 Ross Burton <ross@openedhand.com>
* data/contacts.glade:
Actually remove the glade.
2007-01-26 Ross Burton <ross@openedhand.com>
* configure.ac
* po/LINGUAS:
Modified the intltool part to make use of a LINGUAS file (thanks
Olivier Le Thanh Duong <olivier@lethanh.be>)
2007-01-26 Thomas Wood <thomas@openedhand.com>
* contacts.doap: Added
2007-01-25 Ross Burton <ross@openedhand.com>
* data/contacts.1:
* data/Makefile.am:
Add basic manpage by Kęstutis Biliūnas.
2007-01-25 Ross Burton <ross@openedhand.com>
* src/contacts-main.c:
Pass a GError when creating the address book.
2006-12-11 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ui.c: (contacts_chooser_add_cb):
* src/contacts-edit-pane.c: (contacts_change_groups_cb),
(contacts_edit_pane_show):
* src/contacts-gtk.c: (contacts_ui_update_groups_list),
(create_main_window), (create_chooser_dialog):
* src/contacts-gtk.h:
* src/contacts-main.c: (main):
* src/contacts-ui.c:
* src/contacts-ui.h:
Fix group editing
2006-12-11 Thomas Wood <thomas@openedhand.com>
* src/contacts-callbacks-ebook.c: (contacts_added_cb),
(contacts_changed_cb):
* src/contacts-callbacks-ui.c:
* src/contacts-gtk.c: (contacts_gconf_search_cb),
(create_main_window):
* src/contacts-main.c: (main):
Fix group filtering
2006-12-08 Thomas Wood <thomas@openedhand.com>
* configure.ac:
* src/Makefile.am:
Cleanups
* src/contacts-callbacks-ebook.c: (contacts_added_cb),
(contacts_changed_cb), (contacts_removed_cb):
* src/contacts-callbacks-ebook.h:
- Remove group combobox specific code
- Add contacts_sequence_complete_cb callback
* src/contacts-callbacks-ui.c: (contacts_search_changed_cb): Remove
combobox specific code.
* src/contacts-defs.h: Remove combobox and add references to some
models.
* src/contacts-edit-pane.c: (contacts_edit_pane_hide),
(contacts_edit_pane_show): Add some safegaurds in case widgets don't
exist in the current frontend.
* src/contacts-gtk.c: (create_main_window),
(create_chooser_dialog): Clean up code (less calls to gtk_widget_show)
* src/contacts-main.c: (contacts_update_treeview):
* src/contacts-main.h:
Move UI specific code into contacts-ui.
* src/contacts-ui.c: (contacts_remove_labels_from_focus_chain),
(contacts_display_summary), (contacts_set_available_options),
(contacts_setup_ui):
* src/contacts-ui.h:
Add UI specific code from contacts-main/contacts-utils. Remove combobox
specific filter code.
* src/contacts-utils.c: (contacts_set_selected_contact):
* src/contacts-utils.h:
Move UI specific code to contacts-ui
2006-11-24 Thomas Wood <thomas@openedhand.com>
* configure.ac: Added catalan translation
* data/Makefile.am: Remove glade file
2006-11-21 Thomas Wood <thomas@openedhand.com>
* src/Makefile.am:
* src/contacts-callbacks-ui.c: (contacts_search_changed_cb):
* src/contacts-callbacks-ui.h:
* src/contacts-gtk.c: (create_main_window),
(create_chooser_dialog):
* src/contacts-main.c: (contacts_update_treeview), (main):
* src/contacts-ui.c:
* src/contacts-ui.h:
Some more refactoring of UI code
2006-11-20 Thomas Wood <thomas@openedhand.com>
* configure.ac:
* src/Makefile.am:
* src/contacts-callbacks-ebook.c: (contacts_added_cb),
(contacts_changed_cb), (contacts_removed_cb):
* src/contacts-callbacks-ui.c: (contacts_chooser_add_cb),
(contacts_search_changed_cb), (contacts_selection_cb),
(contacts_new_cb), (contacts_edit_cb), (contacts_treeview_edit_cb),
(contacts_delete_cb):
* src/contacts-callbacks-ui.h:
* src/contacts-defs.h:
* src/contacts-edit-pane.c: (contacts_edit_pane_hide),
(contacts_edit_delete_cb), (contacts_change_groups_cb),
(contacts_add_field_cb), (contacts_edit_pane_show):
* src/contacts-gtk.c:
* src/contacts-gtk.h:
* src/contacts-main.c: (contacts_update_treeview),
(contacts_display_summary), (contacts_bacon_cb),
(contacts_gconf_search_cb), (main):
* src/contacts-main.h:
* src/contacts-utils.c: (contacts_free_list_hash),
(contacts_chooser):
* src/contacts-utils.h:
Remove glade dependency
2006-11-20 Emmanuele Bassi <ebassi@openedhand.com>
* configure.ac: Add it translation.
2006-11-20 Thomas Wood <thomas@openedhand.com>
* configure.ac: Add fi, de and nl translations
* data/contacts.glade: Use stock buttons
* src/contacts-main.c: (main): Set icons to 16x16, and reduce padding
in contacts list
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 ... ).
|