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 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981
|
2008-07-13 Marc-Olivier Barre <marco@marcochapeau.org>
* Create version 3 tree
2008-04-12 Erin Yueh <erin_yueh@openmoko.com>
* src/phone-kit/moko-network.c:
(on_imei):
* src/phone-kit/moko-dialer.c:
(moko_dialer_dial):
* src/phone-kit/moko-listener.c:
(moko_listener_on_imei):
* src/phone-kit/moko-listener.h:
(moko_listener_on_imei),(on_imei):
2008-04-10 Thomas Wood <thomas@openedhand.com>
* src/dialer/moko-history.c:
(create_new_contact_from_number): Correct dialog button order to be
consistent with other applications
(add_number_to_contact): Set the initial selected group and remove
dialog separator.
(moko_history_init): Use "contact-new" icon as in openmoko-messages
2008-04-08 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-network-dbus.xml:
* src/phone-kit/moko-network.c:
(moko_network_get_home_country_code):
* src/phone-kit/moko-network.h:
Add get_imsi method to MokoNetwork object
2008-04-08 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-talking.c: (moko_talking_init): Remove toolbar
separators to make UI consistent with other applications
2008-04-08 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: (main): Revert previous history widget
creation changes until at least after MP image.
2008-04-08 Thomas Wood <thomas@openedhand.com>
* src/common/Makefile.am: Add missing header file
* src/dialer/dialer-main.c: (program_log), (main): Create the history
widget after everything else has loaded, unless it is explicitly
requested at runtime
2008-04-07 Erin Yueh <erin_yueh@openmoko.com>
* src/phone-kit/moko-dialer.c: (moko_dialer_dial)
bug#1209: cannot dial emegency call 112 from dialer
2008-04-05 Erin Yueh <erin_yueh@openmoko.com>
* src/common/moko-contacts.c: (moko_contacts_add_contact), (moko_contacts_init)
bug#1305: cannot display Contact name in Call history
2008-03-31 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: (main):
* src/dialer/moko-keypad.c: (moko_keypad_init):
Attempt to improve performance by removing use of moko_stock
2008-03-31 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: (dial_clicked_cb), (program_log),
(main): Add profiling helper code
2008-03-27 Erin Yueh <erin_yueh@openmoko.com>
* src/phone-kit/moko-sms.c: (on_incoming_ds): display status report icon
bug#1304: cannot display status report
2008-03-26 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: (main): Name the main window for use in
theming
2008-03-26 Erin Yueh <erin_yueh@openmoko.com>
* src/phone-kit/moko-dialer.c: (moko_dialer_hung_up),
(moko_dialer_rejected), (on_call_progress):
* src/phone-kit/moko-talking.c: (moko_talking_incoming_call),
(moko_talking_outgoing_call), (on_reject_clicked),
(on_cancel_clicked), (window_delete_event_cb):
bug#1239: unable to terminate call
2008-03-26 Thomas Wood <thomas@openedhand.com>
* src/dialer/moko-history.c: (create_new_contact_from_number),
(add_number_to_contact), (on_btn_save_clicked),
(btn_save_info_weak_notify), (on_save_clicked):
Implement "Add to Contact" from call log feature
2008-03-25 Thomas Wood <thomas@openedhand.com>
* src/dialog/moko-history.c: Implement "Create New Contact" from call
log
2008-03-20 Thomas Wood <thomas@openedhand.com>
* Makefile.am:
* configure.ac:
* src/dialer/Makefile.am:
* src/dialer/moko-history.c: (on_btn_save_clicked):
Display a list of contacts when "Add to contact" is clicked
2008-03-20 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: (main): Set a widget name on the dial pad
for theming
2008-03-19 Thomas Wood <thomas@openedhand.com>
* src/dialer/moko-history.c: Add a "Save" button to the call log window
2008-03-12 Erin Yueh <erin_yueh@openmoko.com>
* src/phone-kit/moko-talking.c: bug fixed for Call Direction
2008-03-07 Chia-I Wu <olv@openmoko.com>
* src/common/moko-contacts.c (moko_contacts_init): Create addressbook
if none exists.
2008-03-06 Chia-I Wu <olv@openmoko.com>
Preliminary support for phonebook. Sync phonebook from the SIM card
on start up. This is not a "perfect" solution. See bug #1238.
* src/phone-kit/moko-listener.c, src/phone-kit/moko-listener.h
(moko_listener_on_read_phonebook): New function to listen to phonebook
messages.
* src/phone-kit/moko-pb.c, src/phone-kit/moko-pb.h: Preliminary
phonebook support, MokoPb.
* src/phone-kit/moko-network.c, src/phone-kit/moko-network.h: Listen
to GSMD_MSG_PHONEBOOK messages.
Add a new status, PK_NETWORK_POWERDOWN. MokoNetwork is initially in
this status.
(phone_msghandler): Emit status change on receiving
GSMD_PHONE_POWERUP.
* src/common/moko-contacts.c, src/common/moko-contacts.h
(moko_contacts_get_backend): New function to return the backend,
EBook.
* src/phone-kit/dialer-main.c: Sync phonebook from the SIM card on
start up.
* src/phone-kit/moko-sms-marshal.list: Renamed to ...
* src/phone-kit/moko-marshal.list: ... this.
* src/phone-kit/moko-sms.c, src/phone-kit/Makefile.am: Updated.
2008-03-05 Erin Yueh <erin_yueh@openmoko.com>
* src/dialer/moko-history.c: (on_sms_clicked):
add SMS clicked from call log history
2008-03-03 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (on_incoming_sms):
Move g_utf16_to_utf8 outside of the for loop - error inserted by
myself while integrating previous patch
2008-02-29 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (on_incoming_sms):
Decode UCS-2 messages correctly (thanks Erin Yueh)
2008-02-01 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (io_func):
Handle all IO conditions, bail on unknown conditions (noticed problems
when doing otherwise)
2008-01-31 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (stop_retrying_registration),
(on_network_registered), (on_pin_requested):
Stop the network registration retrying when a pin request is received
2008-01-31 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (retry_register),
(on_network_registered), (moko_network_init):
Add a 60-second time-out for network registration before retrying
2008-01-31 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (on_network_registered):
Register to network on unregister
2008-01-30 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (on_network_registered):
Unset operator name when unregistered from network
2008-01-21 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms-dbus.xml:
* src/phone-kit/moko-sms-marshal.list:
* src/phone-kit/moko-sms.c: (moko_sms_class_init), (on_error),
(memory_check_idle):
Separate MemoryFull signal into separate phone and sim memory signals,
to avoid custom marshaller and ease client-side usage
2008-01-21 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (memory_check_idle):
Removing free file handles check for now
2008-01-21 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (moko_sms_class_init):
Register custom marshaller for MemoryFull signal
2008-01-21 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (moko_sms_set_property),
(moko_sms_dispose), (on_error), (sms_store_opened_cb),
(stop_handling_sms), (open_sms_store), (memory_check_idle),
(moko_sms_init):
Add monitoring of free memory on the root filesystem (hopefully)
2008-01-18 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-listener.c: (moko_listener_on_network_number):
* src/phone-kit/moko-listener.h:
Add on_network_number for new lgsm_oper_n_get function
* src/phone-kit/moko-network.c: (retry_oper_get),
(retry_opern_get), (stop_retrying), (on_network_registered),
(on_network_number), (listener_interface_init), (net_msghandler),
(moko_network_init):
Use lgsm_oper_n_get to get network number instead of listing operators
2008-01-17 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-listener.c: (moko_listener_on_pin_requested):
* src/phone-kit/moko-listener.h:
Flesh out on_pin_requested a bit better
* src/phone-kit/moko-network.c: (on_pin_requested),
(gsmd_eventhandler), (pin_msghandler):
Handle PIN completely in on_pin_requested, provide custom messages for
different PIN types
* src/phone-kit/moko-pin.c: (get_pin_from_user),
(display_pin_error):
* src/phone-kit/moko-pin.h:
Allow setting a custom message for PIN entry dialog
2008-01-17 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (moko_network_dispose), (io_func),
(network_init_gsmd):
Use GIOChannel instead of GSource for polling (simplifies code)
2008-01-17 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-talking.c: (moko_talking_init):
Make the volume slider control the 'Headphone' mixer, fixes bug #394
2008-01-17 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (on_network_registered),
(moko_network_get_country_code):
Do get the operators list, but only when roaming - when not roaming,
return the home country code when asked for the local country code
2008-01-17 Chris Lord <chris@openedhand.com>
* src/moko-dialer-glue.h:
Remove, shouldn't be in version control
* src/phone-kit/moko-sms-marshal.list:
* src/phone-kit/Makefile.am:
Add custom marshaller for VOID:BOOLEAN,BOOLEAN
* src/phone-kit/moko-listener.c: (moko_listener_on_error):
* src/phone-kit/moko-listener.h:
Add on_error function
* src/phone-kit/moko-network.c: (gsmd_eventhandler),
(network_init_gsmd), (on_network_registered):
Don't retrieve operators list, takes too long and blocks other calls
* src/phone-kit/moko-sms-dbus.xml:
* src/phone-kit/moko-sms.c: (moko_sms_set_property),
(moko_sms_class_init), (on_error), (listener_interface_init),
(start_handling_sms), (sms_store_opened_cb), (moko_sms_get_status),
(moko_sms_get_memory_status):
* src/phone-kit/moko-sms.h:
Add memory full signal/query function (incomplete, needs further
support from gsmd)
2008-01-16 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-alsa-volume-scale.c: (create_widgets):
Remove rogue '.png' on the end of icon names
2008-01-16 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-alsa-volume-control.c:
(moko_alsa_volume_control_set_device_from_name):
Finish implementing (didn't realise I left this unfinished): Fix
infinite loop, get card name correctly and resolve alsa alias
2008-01-16 Chris Lord <chris@openedhand.com>
* configure.ac:
* src/phone-kit/Makefile.am:
Add alsa to dependencies and compile volume control object/widget
* src/phone-kit/moko-alsa-volume-button.c:
* src/phone-kit/moko-alsa-volume-button.h:
Remove unused MokoAlsaVolumeButton
* src/phone-kit/moko-alsa-volume-scale.[ch]:
Add new MokoAlsaVolumeScale
* src/phone-kit/moko-talking.c: (volume_changed_cb),
(moko_talking_init):
Integrate volume control widget, bug #394
2008-01-16 Chris Lord <chris@openedhand.com>
* src/dialer/moko-tips.c: (moko_tips_set_matches):
Fix not setting entry data on first contact if it has no photo (bug
#1122)
2008-01-15 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c:
Increase timeout to 60 seconds
* src/phone-kit/moko-sms.c: (moko_sms_send):
Don't try to resolve recipient number
2008-01-14 Chris Lord <chris@openedhand.com>
Patch by: Roman Moracvik <roman.moravcik@gmail.com>, bug #1157
* configure.ac:
* src/dialer/Makefile.am:
Add libjana-gtk to dependencies
* data/Makefile.am:
* src/phone-kit/moko-talking.c: (moko_talking_set_clip),
(moko_talking_incoming_call), (moko_talking_outgoing_call):
Rename unkown.png -> unknown.png
* src/dialer/moko-history.c: (history_add_entry),
(moko_history_load_entries), (moko_history_init):
Use JanaGtkCellRendererNote to display more details in the dialer
history
2008-01-14 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (retry_oper_get),
(retry_opers_get), (retry_get_imsi), (on_network_registered),
(net_msghandler), (phone_msghandler), (moko_network_init):
Only retry n amount of times before giving up on getting imsi,
subscriber number and network number
* src/phone-kit/moko-sms.c: (moko_sms_send):
Don't rely on subscriber number to send messages
2008-01-14 Chris Lord <chris@openedhand.com>
Patch by Roman Moravcik <roman.moravcik@gmail.com>, bug #1153
* src/phone-kit/moko-dialer.c: (on_call_progress):
Hide talking window when call missed or caller hung up
* src/phone-kit/moko-talking.h:
* src/phone-kit/moko-talking.c: (moko_talking_incoming_call),
(moko_talking_outgoing_call), (moko_talking_accepted_call),
(moko_talking_hide_window), (on_reject_clicked),
(on_silence_clicked), (on_cancel_clicked), (moko_talking_init):
Add function to hide talking window, be sure timer was initialised
before removal, set window title and don't stop animation when silence
button is pressed.
2008-01-11 Chris Lord <chris@openedhand.com>
* src/dialer/moko-alsa-volume-button.[ch]:
* src/dialer/moko-alsa-volume-control.[ch]:
Refactor into separate control a widget objects for flexibility
2008-01-11 Chris Lord <chris@openedhand.com>
* src/dialer/moko-alsa-volume-button.[ch]:
Add an alsa volume control widget (requires refactoring)
2008-01-09 Chris Lord <chris@openedhand.com>
* data/org.openmoko.Dialer.service.in:
Correct name
2008-01-09 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (on_network_registered),
(sms_msghandler):
Add support for reading delivery status reports from the SIM card
2008-01-07 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (stop_retrying),
(on_network_registered), (moko_network_dispose):
Fix possible infinite retrying(?), increase time-out to 15 seconds
2008-01-07 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (on_incoming_ds):
Don't check the stat of the delivery report, no need as we have the ref
anyway and I must be misinterpreting its meaning. Also switch around a
debug comment to make it more clear.
2008-01-07 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (retry_oper_get),
(retry_opers_get), (retry_get_imsi), (on_network_registered),
(moko_network_dispose), (net_msghandler), (phone_msghandler):
Retry retrieval of network details on connecting if they fail (ten
second time-out) - should help reliability of SMS sending
2008-01-07 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (on_incoming_ds):
Correct a misinterpretation of how delivery status reports are stored
2007-12-21 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (on_incoming_ds):
Delivery status types were read correctly, seems gsmd always reports
REC_UNREAD, regardless of ds type?
2007-12-21 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-network.c: (gsmd_eventhandler):
Send all delivery status events
* src/phone-kit/moko-sms-dbus.xml:
Make delivery status report optional
* src/phone-kit/moko-sms.c: (on_incoming_ds), (on_send_sms),
(moko_sms_send):
* src/phone-kit/moko-sms.h:
Filter delivery status types correctly (hopefully), make delivery status
report optional
2007-12-19 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (note_added_cb), (note_modified_cb):
Don't notify on sent messages
2007-12-19 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-sms.c: (moko_sms_dispose),
(stop_notify_timeout), (update_notification), (moko_sms_init):
Add tone/vibration notification
2007-12-19 Chris Lord <chris@openedhand.com>
* configure.ac:
Add AC_GNU_SOURCE for basename(), add libnotify
* src/phone-kit/Makefile.am:
Add libnotify
* src/phone-kit/dialer-main.c: (main):
Initialise libnotify
* src/phone-kit/moko-dialer.c: (moko_dialer_init):
Use moko_notify_get_default()
* src/phone-kit/moko-notify.c: (moko_notify_start),
(moko_notify_stop), (moko_notify_init), (moko_notify_get_default):
* src/phone-kit/moko-notify.h:
Add moko_notify_get_default() to share MokoNotify with other objects
* src/phone-kit/moko-sms.c: (update_notification), (note_added_cb),
(note_modified_cb), (note_removed_cb), (sms_store_opened_cb),
(moko_sms_init):
Add notifications with libnotify
2007-12-04 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-network.c: (on_network_registered),
(phone_msghandler), (connection_source_dispatch),
(network_init_gsmd):
Fix bug 1028 (PIN dialog appears multiple times) by using the pin and
phone power callback messages.
2007-12-04 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-pin.c:
* src/phone-kit/moko-pin.h:
Add error message function
2007-11-30 Chris Lord <chris@openedhand.com>
* src/dialer/dialer-main.c: (main):
Change object path/interface name to match re-factoring
* src/phone-kit/Makefile.am:
* src/phone-kit/dialer-main.c: (_dial_number), (main):
* src/phone-kit/moko-dialer-dbus.xml:
* src/phone-kit/moko-dialer-mcc-dc.h:
* src/phone-kit/moko-dialer.[ch]:
* src/phone-kit/moko-listener.[ch]:
* src/phone-kit/moko-network-dbus.xml:
* src/phone-kit/moko-network.[ch]:
* src/phone-kit/moko-sms-dbus.xml:
* src/phone-kit/moko-sms.[ch]:
Re-factor into three separate objects for Network, Dialer and SMS
interaction that share a common gsmd connection
2007-11-28 Thomas Wood <thomas@openedhand.com>
* data/Makefile.am:
* src/phone-kit/dialer-main.c: (main):
* src/phone-kit/moko-talking.c: (moko_talking_init):
MokoStock seems to be unreliable, so include and load images ourselves
for now
2007-11-28 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (dialer_init_gsmd):
- Add back PIN handler registration
- Correct error handling from lgsm_phone_power
2007-11-28 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (dialer_init_gsmd): Connect gsmd handlers
before setting phone power
2007-11-27 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (pb_msghandler):
Fix for change in gsmd api: GSMD_PHONEBOOK_GET_IMSI -> GSMD_PHONE_GET_IMSI
2007-11-26 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-mcc-dc.h:
Replace "+1-" with "+1"
* src/phone-kit/moko-dialer.c: (on_network_registered),
(start_handling_sms), (net_msghandler), (pb_msghandler),
(sms_store_opened_cb), (dialer_init_gsmd),
(moko_dialer_check_gsmd), (moko_dialer_send_sms):
Try to resolve local numbers (numbers beginning in '0'), make gsmd
requests in more reliable places, be a bit better with failures (all to
do with SMS code)
* src/phone-kit/moko-dialer.h:
Remove error code PK_DIALER_ERROR_NO_TOOLONG, add error code
PK_DIALER_ERROR_INVALID_NUMBER
2007-11-23 Chris Lord <chris@openedhand.com>
* src/phone-kit/Makefile.am:
* src/phone-kit/moko-dialer-mcc-dc.h:
Add a header with mappings from MCC to dialing codes
* src/phone-kit/moko-dialer-dbus.xml:
* src/phone-kit/moko-dialer.c: (on_network_registered),
(moko_dialer_finalize), (net_msghandler), (pb_msghandler),
(dialer_init_gsmd), (moko_dialer_check_gsmd),
(moko_dialer_check_registration), (moko_dialer_cc_from_mcc),
(moko_dialer_send_sms), (moko_dialer_get_provider_name),
(moko_dialer_get_subscriber_number),
(moko_dialer_get_country_code),
(moko_dialer_get_home_country_code):
* src/phone-kit/moko-dialer.h:
Add new methods to get current country code, home country code,
provider name and subscriber number
2007-11-23 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (moko_dialer_dial),
(moko_dialer_init):
Fix direction field of log entry when dialing calls (outgoing)
* src/phone-kit/moko-talking.c:
* src/phone-kit/moko-talking.h:
Remove moko-journal requirement
2007-11-23 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-talking.c: (moko_talking_set_clip),
(incoming_timeout), (moko_talking_incoming_call),
(outgoing_timeout), (moko_talking_outgoing_call),
(on_pad_user_input), (moko_talking_init):
Reset "talking" UI on new call
2007-11-23 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (on_pin_requested): Send registration
request one second after sending pin
2007-11-23 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (moko_dialer_rejected):
* src/phone-kit/moko-talking.c: (moko_talking_class_init),
(window_delete_event_cb), (on_pad_user_input), (moko_talking_init):
* src/phone-kit/moko-talking.h:
Add DTMF pad while in call
2007-11-22 Chris Lord <chris@openedhand.com>
* configure.ac:
Replace libmokogsmd2 with libgsmd
* src/dialer/moko-history.c:
Remove unnecessary include
2007-11-22 Chris Lord <chris@openedhand.com>
* src/phone-kit/Makefile.am:
* src/phone-kit/dialer-main.c: (main):
* src/phone-kit/moko-dialer-dbus.xml:
* src/phone-kit/moko-dialer-sms-dbus.xml:
* src/phone-kit/moko-dialer-sms.c:
* src/phone-kit/moko-dialer-sms.h:
* src/phone-kit/moko-dialer.c: (moko_dialer_dial),
(moko_dialer_hang_up), (moko_dialer_hung_up),
(moko_dialer_rejected), (on_talking_accept_call),
(on_talking_reject_call), (on_talking_cancel_call),
(on_network_registered), (on_incoming_call), (on_incoming_clip),
(on_pin_requested), (on_call_progress_changed),
(moko_dialer_dispose), (moko_dialer_finalize),
(status_report_added_cb), (status_report_progress_cb), (store_sms),
(gsmd_eventhandler), (sms_msghandler), (net_msghandler),
(connection_source_prepare), (connection_source_check),
(connection_source_dispatch), (sms_store_opened_cb),
(dialer_init_gsmd), (moko_dialer_init), (moko_dialer_send_sms):
* src/phone-kit/moko-dialer.h:
Remove use of libmokogsmd, integrate SMS code with the rest of the
dialer code
2007-11-21 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/Makefile.am:
* src/phone-kit/moko-dialer.c: (on_incoming_call),
(on_pin_requested), (moko_dialer_init):
* src/phone-kit/moko-pin.c:
* src/phone-kit/moko-pin.h:
Add new code to request PIN from user
2007-11-21 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-sms.c: (moko_dialer_sms_finalize),
(store_sms), (moko_dialer_sms_send):
Fix compiler warnings, check the source exists before trying to
destroy it on finalize
2007-11-20 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-sms.c: (moko_dialer_sms_class_init):
Don't forget to register introspection data
2007-11-20 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-sms.c: (moko_dialer_sms_send):
* src/phone-kit/moko-dialer-sms.h:
Return error message when trying to send an SMS after failing to
connect to gsmd
2007-11-20 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: (dial_clicked_cb), (main): Use a message box
to notify users of dialing errors
2007-11-20 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer-sms.c: (opened_cb): Don't abort if
connecting to gsmd fails
2007-11-20 Thomas Wood <thomas@openedhand.com>
* data/openmoko-dialer.desktop: Set single instance to true
2007-11-20 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (moko_dialer_get_status),
(moko_dialer_dial), (moko_dialer_class_init), (dialer_init_gsmd):
* src/phone-kit/moko-dialer.h:
- Return error messages when d-bus functions fail.
- Try to re-connect to gsmd on each d-bus function rather than only on
initialisation
2007-11-20 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-sms.c: (moko_dialer_sms_finalize),
(store_sms), (gsmd_eventhandler), (sms_msghandler),
(net_msghandler), (opened_cb), (moko_dialer_sms_send):
Add more debugging, get own phone number correctly
2007-11-19 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-sms.c: (opened_cb), (moko_dialer_sms_init):
Don't forget to open the note store before trying to do anything
2007-11-19 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-sms.c: (moko_dialer_sms_finalize),
(connection_source_prepare), (connection_source_check),
(connection_source_dispatch), (moko_dialer_sms_init):
Don't forget to actually poll for events...
2007-11-19 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-sms.c: (status_report_added_cb),
(store_sms), (gsmd_eventhandler), (sms_msghandler),
(moko_dialer_sms_init):
Handle non in-line SMS events, move all SMS's on SIM to journal on
startup, add lots of debugging statements
2007-11-14 Chris Lord <chris@openedhand.com>
* src/phone-kit/moko-dialer-sms-dbus.xml:
Remove signals, handled by the storage (jana/eds), return the UID of a
sent message
* src/phone-kit/moko-dialer-sms.c: (gsmd_eventhandler),
(sms_msghandler), (moko_dialer_sms_init), (moko_dialer_sms_new),
(moko_dialer_sms_get_default), (moko_dialer_sms_send):
* src/phone-kit/moko-dialer-sms.h:
Add status reports, sending confirmation and synchronisation with
storage
2007-11-14 Chris Lord <chris@openedhand.com>
* src/phone-kit/dialer-main.c: (main):
Register MokoDialerSMS object
* src/phone-kit/moko-dialer-sms-dbus.xml:
Remove 'ascii' parameter, autodetect instead
* src/phone-kit/moko-dialer-sms.c: (gsmd_eventhandler),
(moko_dialer_sms_init), (moko_dialer_sms_get_default),
(moko_dialer_sms_send):
* src/phone-kit/moko-dialer-sms.h:
Add SMS sending code
2007-11-13 Chris Lord <chris@openedhand.com>
* configure.ac:
* src/phone-kit/Makefile.am:
* src/phone-kit/moko-dialer-sms-dbus.xml:
* src/phone-kit/moko-dialer-sms.c: (moko_dialer_sms_get_property),
(moko_dialer_sms_set_property), (moko_dialer_sms_dispose),
(moko_dialer_sms_finalize), (moko_dialer_sms_class_init),
(gsmd_eventhandler), (moko_dialer_sms_init), (moko_dialer_sms_new),
(moko_dialer_sms_send), (moko_dialer_sms_sending),
(moko_dialer_sms_sent), (moko_dialer_sms_rejected):
* src/phone-kit/moko-dialer-sms.h:
Add beginnings of SMS part of phone-kit. May or may not work.
2007-11-12 Thomas Wood <thomas@openedhand.com>
* src/common/moko-contacts.c: (moko_contacts_get_photo),
(moko_contacts_add_contact):
* src/common/moko-dialer-panel.c: (moko_dialer_panel_pressed):
* src/common/moko-dialer-textview.c:
(moko_dialer_textview_set_color):
* src/dialer/moko-keypad.c: (on_panel_user_input),
(on_panel_user_hold):
* src/dialer/moko-tips.c: (moko_tips_set_matches):
Plug lots of memory leaks
2007-11-12 Thomas Wood <thomas@openedhand.com>
* src/common/moko-dialer-textview.c: (moko_dialer_textview_init),
(moko_dialer_textview_set_color):
* src/common/moko-dialer-textview.h:
Remove cursor indicator and always add/remove characters from the end of
the dialer display. Closes bug 940.
2007-11-12 Thomas Wood <thomas@openedhand.com>
Patch by: Milko Krachounov <exabyte@3mhz.net>
* src/common/moko-dialer-panel.c: (moko_dialer_panel_hold_timeout),
(moko_dialer_panel_pressed): Automatically free the allocated data
structure when the timeout source is destroyed. Closes bug 1004.
2007-11-05 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (moko_dialer_dial),
(moko_dialer_init):
- Remove any GTK+ dependencies
- Actually dial the requested number
* src/phone-kit/moko-talking.c: (moko_talking_incoming_call),
(moko_talking_outgoing_call), (on_silence_clicked),
(on_cancel_clicked), (moko_talking_class_init),
(moko_talking_init):
- Cancel or reject call if the main window is closed.
- Hide the window when cancel and rejecting calls
2007-11-01 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: (dial_clicked_cb), (main):
- Notify user if there was a problem connecting to dbus
- Switch to history page if dial activated with no number entered
- Clean up code
2007-11-01 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-dialer.c: (moko_dialer_class_init),
(dialer_display_error), (moko_dialer_init): Reimplement dial out function
2007-11-01 Thomas Wood <thomas@openedhand.com>
* data/org.openmoko.Dialer.service.in: Update binary name
2007-11-01 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: Use dbus service to initiate calls
2007-11-01 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-talking.c:
Revert use of GdkPixbufSimpleAnim as it does not support looping
2007-10-31 Thomas Wood <thomas@openedhand.com>
* src/phone-kit/moko-talking.c: Replace manual animation functions with
GdkPixbufSimpleAnim
2007-10-31 Thomas Wood <thos@openedhand.com>
* src/phone-kit/moko-dialer.c: (moko_dialer_hung_up),
(moko_dialer_rejected), (on_talking_reject_call),
(moko_dialer_init):
* src/phone-kit/moko-talking.c: (moko_talking_incoming_call),
(moko_talking_outgoing_call), (moko_talking_accepted_call),
(on_answer_clicked), (on_reject_clicked),
(moko_talking_class_init), (moko_talking_init):
Present a window for incoming call notification
2007-10-31 Thomas Wood <thomas@openedhand.com>
* src/dialer/dialer-main.c: Added to repository
2007-10-31 Thomas Wood <thomas@openedhand.com>
* src/dialer/Makefile.am:
* src/phone-kit/Makefile.am:
Add missing Makefile.am files to repository
2007-10-31 Thomas Wood <thomas@openedhand.com>
* configure.ac:
* src/*:
Begin seperation of dialer and phone management
2007-10-30 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer.c: (on_talking_reject_call): Stop ringing notification
if we reject an incoming call
2007-10-30 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked),
(on_keypad_pin_entry), (on_network_registered), (moko_dialer_init):
Clean up registration code (don't assume gsmd is broken!)
2007-10-29 Michael Lauer <mickey@openmoko.org>
* data/default_ringtone.ogg: REMOVED
* data/Makefile.am: remove default_ringtone.ogg,
we use pulseaudio to trigger the ringtone sample.
2007-10-26 Thomas Wood <thomas@openedhand.com>
* src/moko-talking.c: (moko_talking_init): Don't use
gtk_widget_set_no_show_all ()
2007-10-19 Thomas Wood <thomas@openedhand.com>
* src/moko-talking.c: (moko_talking_incoming_call),
(moko_talking_outgoing_call), (moko_talking_accepted_call): Use
show_all when showing the toolbars
2007-10-18 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer-textview.c: (moko_dialer_textview_set_color): Don't
try to format a blank string
2007-10-18 Thomas Wood <thomas@openedhand.com>
* src/moko-talking.c: (moko_talking_init): Use stock items for
talking/incoming/outgoing page toolbars
2007-10-18 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer-textview.c: (moko_dialer_textview_set_color): Use the
pixel size of the text to calculate font level in the number display.
Fixes bug 868 - Resizing of number display is wrong
2007-10-18 Thomas Wood <thomas@openedhand.com>
Patch by: Roman Moravcik <roman.moravcik@gmail.com>
* src/moko-dialer.c: (on_keypad_dial_clicked),
(on_talking_accepted_call), (on_talking_reject_call),
(on_incoming_call), (on_call_progress_changed):
Set value of MokoJournal properties dtstart and dtend
to indicate begin and end of call. When call was rejected
or missed dtstart will has the same value as dtend.
* src/moko-talking.c: (moko_talking_incoming_call),
(moko_talking_outgoing_call), (talking_timeout),
(moko_talking_accepted_call), (on_cancel_clicked),
(moko_init_tlking): Implemented displaying of call
duration.
Closes bug 936 - Dialer doesn't display duration of call during call
2007-10-16 Daniel Willmann <alphaone@openmoko.org>
* src/moko-sound.{c,h}: Add GSM speaker out sound profile
* src/moko-dialer.c: (on_talking_speaker_toggle):
* src/moko-talking.c: (on_speaker_toggled):
Speaker button now toggles the GSM speaker out profile
(requires recent alsa-state package)
2007-10-15 Thomas Wood <thomas@openedhand.com>
Based on patch by: Roman Moravcik <roman.moravcik@gmail.com>
* src/moko-dialer.c: (on_keypad_dial_clicked):Show dialed history when
dialing empty number.
* src/moko-history.c: (on_filter_changed): Select first item in history
list after filter was changed.
2007-10-15 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer-panel.c: (moko_dialer_panel_init),
(moko_dialer_panel_pressed):
Don't use -1 as a char value
2007-10-15 Thomas Wood <thomas@openedhand.com>
* configure.ac:
* src/Makefile.am:
Prevent CFLAGS from being obliterated
2007-10-12 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer-textview.c: (moko_dialer_textview_delete): Make sure
the last character is still bold after deleting
2007-10-12 Thomas Wood <thomas@openedhand.com>
* src/moko-keypad.c: Clear dialer display when delete button held down,
rather than only when held and released
2007-10-12 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer-panel.c: (moko_dialer_panel_init):
* src/moko-keypad.c: (on_panel_user_hold):
- Insert digits on "button down"
- Replace primary digit with secondary digit when tap-and-hold occurs
2007-10-10 Thomas Wood <thomas@openedhand.com>
Based on patch by: Roman Moravcik <roman.moravcik@gmail.com>
* src/moko-dialer.c: (on_incoming_call), (on_incoming_clip),
(on_call_progress_changed), (moko_dialer_init): Fix problem
with displaying CLIP on incoming call.
* src/moko-talking.c: (moko_talking_set_clip): Display
"Unknown number" if number is NULL (CLIR).
2007-10-10 Thomas Wood <thomas@openedhand.com>
Patch by: Roman Moravcik <roman.moravcik@gmail.com>
* moko-keypad.c: (on_panel_user_input): Emit signal DIGIT_PRESSED
when keypad digit was pressed,
* moko-dialer.c: (on_call_progress_changed): Check if status was
changed to TALKING when dialer received MOKO_GSMD_PROG_CONNECTED,
(on_keypad_digit_pressed): Implemented sending of DTMF tones
during active call. Fixes bug 53.
2007-10-06 Holger Hans Peter Freyther <zecke@selfish.org>
openmoko-dialer display isn't cleared after pin is sent
-http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=902
* src/moko-keypad.c:
(on_dial_clicked):
(on_panel_user_input):
2007-10-04 Thomas Wood <thomas@openedhand.com>
* src/moko-keypad.c: (moko_keypad_init): Remove hard coded padding from
keypad display
2007-10-04 Thomas Wood <thomas@openedhand.com>
* src/moko-contacts.c: (moko_contacts_add_contact): Fix a possible
crasher
2007-10-04 Thomas Wood <thomas@openedhand.com>
Patch by: Roman Moravcik <roman.moravcik@gmail.com>
* src/moko-contacts.c: (moko_contacts_fuzzy_lookup): Fix
for a bug 802, (add_number): Fix accessing of digits array.
2007-10-04 Thomas Wood <thomas@openedhand.com>
* src/moko-contacts.c: (moko_contacts_init):
* src/moko-keypad.c: (moko_keypad_set_display_text):
Fix compiler warnings
2007-10-02 Thomas Wood <thomas@openedhand.com>
Patch by: Roman Moravcik <roman.moravcik@gmail.com>
* src/moko-contacts.c: (moko_contacts_add_contact): Read phone number from
VCARD.
2007-10-02 Thomas Wood <thomas@openedhand.com>
Patch by: Roman Moravcik <roman.moravcik@gmail.com>
* src/moko-history.c: (moko_history_load_entries): History list wasn't
corectly filled with moko journal entries,
(on_delete_clicked), (history_add_entry): Function
moko_journal_remove_entry_by_uid need uid value instead of contact_uid,
(history_add_entry): Replace phone number with name of contact if there
is a entry in addressbook. Display "Unknown number" if phone number is
NULL.
2007-10-02 Thomas Wood <thomas@openedhand.com>
Patch by: Roman Moravcik <roman.moravcik@gmail.com>
* src/moko-dialer.c: (on_keypad_dial_clicked), (on_incoming_call),
(on_network_registered): Store network information (LocationAreaCode,
CellID) in moko journal.
2007-10-02 Thomas Wood <thomas@openedhand.com>
Patch by: Roman Moravcik <roman.moravcik@gmail.com>
* src/moko-dialer.c: (moko_dialer_init):
Fix the loading of moko journal
(on_talking_reject_call):
Write journal to storage after call is rejected
(on_keypad_dial_clicked): Outgoing call had set wrong journal
direction.
2007-10-02 Thomas Wood <thomas@openedhand.com>
* src/moko-keypad.c:
* src/moko-keypad.h: Add moko_keypad_set_display_text()
2007-09-16 Michael Lauer <mickey@openmoko.org>
* src/moko-notify.c: (moko_notify_start_ringtone): Play 'ringtone' sample.
2007-09-13 Thomas Wood <thomas@openedhand.com>
* src/dialer-main.c: (main): Delay gtk+/mokostock initialisation unless
really required
* src/moko-dialer-panel.c: (moko_dialer_panel_class_init): Remove some
extra debug messages
2007-09-13 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked): Update status string
* src/moko-keypad.c: (on_dial_clicked): Close bug 814 - Number is
cleared when unable to dial
2007-09-13 Thomas Wood <thomas@openedhand.com>
* src/moko-contacts.c: (moko_contacts_lookup): Protect against empty
number value. Should fix bug 819.
2007-09-09 Michael Lauer <mickey@openmoko.org>
* src/moko-dialer.c: Fix typo and allow dialing when
registration has been denied by the network (emergency calls)
2007-09-07 Thomas Wood <thomas@openedhand.com>
* src/moko-contacts.c: (moko_contacts_add_contact): Use fullname for
contact display name
2007-09-07 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer.c: (moko_dialer_init):
- Prevent critical warnings if the journal cannot be loaded.
- Exit if we cannot connect to gsmd
2007-09-06 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer-textview.c: (moko_dialer_textview_init): Prevent the display
from resizing when the font size is reduced
2007-09-06 Thomas Wood <thomas@openedhand.com>
* src/moko-contacts.c: (moko_contacts_add_contact),
(on_ebook_contacts_changed), (on_ebook_contacts_removed):
* src/moko-dialer-panel.c: (moko_dialer_panel_class_init):
* src/moko-dialer.c: (on_keypad_pin_entry),
(on_talking_speaker_toggle), (on_network_registered),
(on_incoming_call), (on_incoming_clip), (on_pin_requested),
(on_call_progress_changed), (register_network_cb),
(moko_dialer_init):
* src/moko-history.c: (history_add_entry),
(moko_history_load_entries):
* src/moko-keypad.c: (on_tip_selected), (on_panel_user_hold):
* src/moko-notify.c: (moko_notify_check_brightness), (play),
(play_timeout), (moko_notify_start_ringtone),
(moko_notify_stop_ringtone):
Use g_debug() rather than g_print()
2007-09-06 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked): Inform user if dialer is busy
or network is not registered when attempting to dial
2007-09-06 Thomas Wood <thomas@openedhand.com>
* src/moko-dialer.c: (moko_dialer_class_init), (moko_dialer_init):
- Add support for displaying GError messages
- Handle new GError in moko_gsmd_connection_set_antenna_power ()
2007-08-31 Thomas Wood <thomas@openedhand.com>
* src/moko-contacts.c: (moko_contacts_get_photo): Check photo before
g_object_ref. Should prevent segfault on the device when keying in a number
that belongs to a contact.
2007-08-28 Neil Jagdish Patel <njp@o-hand.com>
Patch by: Rod Whitby <rod@whitby.id.au>
* src/moko-dialer.c: (on_keypad_pin_entry),
(on_network_registered), (register_network_cb), (moko_dialer_init):
Ammend registering functions to respond correctly to the gsmd searching
event.
Change the initial timeout to connect to gsmd to 10 seconds, as gsmd takes
longer than the orignal 5 seconds to start up.
2007-08-23 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_talking_accept_call),
(on_talking_reject_call), (on_call_progress_changed):
Fixes journal crash on incoming calls.
2007-08-23 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked),
(on_talking_accept_call):
Stop crashing on second outgoing call.
Log incoming calls properly with the journal.
2007-08-23 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (moko_notify_start_ringtone):
Check playing status before starting playback.
2007-08-23 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (play), (play_timeout),
(moko_notify_start_ringtone), (moko_notify_stop_ringtone):
Add some debugging stuff.
2007-08-23 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (play), (play_timeout),
(moko_notify_start_ringtone), (moko_notify_stop_ringtone):
Some ringtone fixes, so there is a gap between playback.
2007-08-23 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_talking_accept_call), (on_incoming_call):
Make sure we don't do anything on an incmong call if we have already
accepted it.
2007-08-23 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (on_sound_finished),
(moko_notify_start_ringtone):
Remove debugging printf's as everything works!
2007-08-23 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (on_sound_finished),
(moko_notify_start_ringtone):
Add some printf's. Change the sample name to one we know is working.
2007-08-23 Neil J. Patel <njp@o-hand.com>
* configure.ac:
* src/dialer-main.c: (main):
* src/moko-notify.c: (play_timeout), (on_sound_finished),
(moko_notify_start_ringtone), (moko_notify_stop_ringtone),
(moko_notify_start), (moko_notify_stop), (moko_notify_init):
Switch ringtone backend to a simple PulseAudio set-up, as the gstreamer
backend was causing lock-ups and messed up the timing of functions.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked):
Check uid is valid before adding to the journal object.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_call_progress_changed):
* src/moko-history.c: (history_add_entry):
Update for new Journal types.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_talking_accept_call),
(on_call_progress_changed):
Set the 'talking' page when connected.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (moko_notify_start), (moko_notify_stop):
Disable ringtone, as gstreamer seems to be taking an age doing anything
useful, and at the same time, blocking the UI.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_talking_accept_call):
Fix ordering here as well.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_talking_reject_call),
(on_talking_cancel_call), (on_talking_silence):
Make sure function ordering is correct so multiple tabs do not open.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_network_registered):
Correctly format output.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_talking_silence), (moko_dialer_init):
* src/moko-talking.c: (on_silence_clicked),
(moko_talking_class_init), (moko_talking_init):
* src/moko-talking.h:
Add 'silence/ignore' capability to incoming calls i.e. stop the ringing and
vibration, but don't hangup.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-contacts.c: (moko_contacts_fuzzy_lookup):
* src/moko-notify.c: (moko_notify_check_brightness):
Remove some unnecessary printf's.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (moko_notify_check_brightness):
More notification fixes.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (moko_notify_check_brightness):
Some fixes to the brightness manipulation.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_incoming_clip):
* src/moko-notify.c: (moko_notify_check_brightness):
Use the right device to set brightness.
2007-08-22 Neil J. Patel <njp@o-hand.com>
* src/moko-contacts.c: (moko_contacts_fuzzy_lookup),
(moko_contacts_init):
Properly initialise private variables.
* src/moko-tips.c: (moko_tips_init):
Don't load a default image.
2007-08-21 Neil J. Patel <njp@o-hand.com>
* src/dialer-main.c: (_dial_number), (main):
* src/moko-dialer.c: (moko_dialer_dial):
* src/moko-dialer.h:
Fix bugs #649 (commandline option to dial)
#456 (popup when pin requested).
2007-08-21 Neil J. Patel <njp@o-hand.com>
* src/moko-talking.c: (moko_talking_init):
Fixed bug #730 (panel menu and 'hang up' are too close).
* src/moko-tips.c: (moko_tips_set_matches):
Check gdkpixbuf is valid before using it.
2007-08-21 Neil J. Patel <njp@o-hand.com>
* src/Makefile.am:
* src/moko-contacts.c: (new_digit), (add_number),
(moko_contacts_fuzzy_lookup), (moko_contacts_get_photo),
(moko_contacts_add_contact), (free_digit),
(moko_contacts_finalize), (moko_contacts_init):
* src/moko-contacts.h:
* src/moko-keypad.c: (on_tip_selected), (on_delete_event),
(on_panel_user_input), (moko_keypad_init), (moko_keypad_new):
* src/moko-tips.c: (moko_tips_set_matches), (on_tip_selected),
(moko_tips_dispose), (moko_tips_finalize), (moko_tips_class_init),
(moko_tips_init), (moko_tips_new):
* src/moko-tips.h:
Merge autocompletion work.
Fix segfault while loading photo for contact.
2007-08-19 Daniel Willmann <daniel@totalueberwachung.de>
* src/moko-sound.{c,h}: Created functions to switch the audio profiles
* src/Makefile.am, src/moko-talking.c: Switch audio profiles when
accepting/initiating or cancelling a call
2007-08-16 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_pin_entry),
(on_network_registered):
Remove some unused printf's, keep copy of PIN while interfacing with
libgsmd.
* src/moko-keypad.c: (on_dial_clicked):
Clear the PIN once 'OK' is pressed.
2007-08-16 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_network_registered):
Fix a typo.
* src/moko-keypad.c: (on_panel_user_input):
Make '#' the same as 'OK' when inputting a PIN (Bug #708)
2007-08-16 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_network_registered), (on_pin_requested):
Be smarter when searching for a network, don't keep pinging gsmd.
2007-08-15 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_network_registered):
Fix a typo.
2007-08-15 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_network_registered):
Remove the registration timeout out on registration.
2007-08-15 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_pin_entry),
(on_network_registered), (moko_dialer_init):
Check for registration type, and take the right action.
2007-08-15 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_network_registered):
Print the type of registration information.
2007-08-14 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_pin_entry), (moko_dialer_dispose):
Reset variables for registration.
Remove some old code.
2007-08-14 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_pin_entry):
Set the reg_request and registered variables as FALSE before requesting
reg again.
2007-08-14 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_pin_entry), (on_pin_requested):
Set the correct UI options when the pin is requested.
After sending the pin out, re-request registration.
2007-08-14 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (moko_notify_check_brightness):
Set the brightness to highest when receiving a call.
2007-08-13 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (moko_dialer_init):
Warn when unable to load journal.
2007-08-13 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked),
(on_talking_accept_call), (on_incoming_call), (on_incoming_clip),
(on_call_progress_changed), (moko_dialer_dispose),
(moko_dialer_init):
Check if moko_journal_load_from_storage () worked, otherwise don't create
journal objects.
2007-08-10 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_pin_entry),
(on_keypad_digit_pressed), (on_pin_requested), (moko_dialer_init):
Set the keypad to 'pin mode' when a pin is requested.
* src/moko-keypad.c: (_get_window), (moko_keypad_set_pin_mode),
(on_dial_clicked), (on_delete_event), (moko_keypad_class_init),
(moko_keypad_init):
* src/moko-keypad.h:
Implement a 'pin mode' for entering a pin.
2007-08-08 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer-panel.c: (moko_dialer_panel_init),
(moko_dialer_panel_pressed):
Implement tap-and-hold events for the keys, so you can enter w, + and p.
* src/moko-keypad.c: (on_delete_event), (moko_keypad_init):
Implement tap-and-hold for the delete button, so the holf event will cause
the texview to 'empty'.
* src/moko-notify.c:
Some spacing fixes.
2007-08-07 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked):
Make sure new entry's are written to the journal.
* src/moko-notify.c: (moko_notify_check_brightness),
(moko_notify_start):
Check the LCD brightness, if it is under 5000, set it to 5000.
2007-08-07 Neil J. Patel <njp@o-hand.com>
* src/dialer-main.c: (main):
* src/moko-dialer.c: (on_call_progress_changed),
(moko_dialer_init):
Make sure the dialer window hides on delete, instead of calling
gtk_main_quit ().
* src/moko-talking.c: (moko_talking_init):
Fix the loading of the incmong and outgoing call images, so there is not a
gap between them during animation.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (on_bus_eos), (moko_notify_start_ringtone):
More loop deugging.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (on_bus_message):
Connect to the right signals!
2007-08-06 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (on_bus_message),
(moko_notify_start_ringtone):
Some more looping fixes.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (on_bin_eos), (moko_notify_start_ringtone):
Added intial support for looping the ringtone.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* src/moko-notify.c: (moko_notify_start_ringtone):
Try and use the simple commandline gst parser.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* data/Makefile.am:
Added a default ringtone (until sound themes are finished).
* src/moko-notify.c: (on_filesrc_eos),
(moko_notify_start_ringtone), (moko_notify_stop_ringtone),
(moko_notify_start), (moko_notify_stop):
Added some basic support for playing the default ringtone when there is an
incoming call.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_call_progress_changed):
* src/moko-notify.c: (moko_notify_start), (moko_notify_stop),
(moko_notify_init):
Added state support for notify object.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* src/moko-contacts.c:
Fix typo.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* src/moko-contacts.c: (moko_contacts_lookup):
Check entry is valid before performing operations on it.
2007-08-06 Neil J. Patel <njp@o-hand.com>
* configure.ac:
* src/Makefile.am:
* src/dialer-main.c: (main):
* src/moko-contacts.c: (moko_contacts_lookup):
* src/moko-dialer.c: (moko_dialer_rejected),
(on_talking_accept_call), (on_incoming_call), (on_incoming_clip),
(register_network_cb), (moko_dialer_init):
* src/moko-notify.c: (moko_notify_start_vibrate),
(moko_notify_stop_vibrate), (moko_notify_start),
(moko_notify_stop), (moko_notify_dispose), (moko_notify_finalize),
(moko_notify_class_init), (moko_notify_init), (moko_notify_new):
* src/moko-notify.h:
Added a MokoNotify object, which will deal with user notification of
incoming calls.
Implemented a simple vibration notifcation for incoming calls.
2007-08-03 Neil J. Patel <njp@o-hand.com>
* src/moko-contacts.c: (moko_contacts_lookup):
Check entry is valid before performing operations on it.
* src/moko-dialer.c: (on_incoming_clip), (moko_dialer_dispose):
Make sure to write to the journal on dispose.
2007-08-03 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked),
(on_talking_accept_call), (on_talking_reject_call),
(on_incoming_call), (on_incoming_clip), (on_call_progress_changed):
Create MokoJournalEntry's for all events.
2007-08-03 Neil J. Patel <njp@o-hand.com>
* src/moko-contacts.c: (moko_contacts_finalize):
Free lists/structs properly.
2007-08-03 Neil J. Patel <njp@o-hand.com>
* src/moko-contacts.c: (moko_contacts_get_photo),
(moko_contacts_lookup), (moko_contacts_add_contact),
(moko_contacts_init):
When searching for a contact, it it doesn't have a photo, look for it.
* src/moko-dialer.c: (on_incoming_call), (on_incoming_clip),
(register_network_cb):
Set the incoming clip on the 'talking' widget.
* src/moko-talking.c: (moko_talking_set_clip),
(moko_talking_outgoing_call), (moko_talking_accepted_call):
* src/moko-talking.h:
Add a method to update the UI with an incomig clip.
2007-08-02 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_incoming_call), (on_pin_requested),
(on_call_progress_changed):
Correct the debugging statements, add more to the incoming code path.
2007-08-02 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_incoming_call):
Double check for incoming status as new tabs keep appearing.
2007-08-02 Neil J. Patel <njp@o-hand.com>
* data/openmoko-dialer.desktop:
Execute openmoko-dialer -s, so the dialer always shows.
2007-08-02 Thomas Wood <thomas@openedhand.com>
* src/Makefile.am: Stop being pedantic
* src/moko-dialer-declares.h: Removed
* src/moko-dialer-textview.c: (moko_dialer_textview_class_init),
(moko_dialer_textview_init), (moko_dialer_textview_set_color),
(moko_dialer_textview_insert):
* src/moko-dialer-textview.h:
- Add style properties for small, medium and large font sizes
- Remove hardcoding of font sizes and colours
2007-08-02 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_incoming_call):
Check if we have already set the incoming call status, otherwise each
ring causes MokoGsmdConnection to emit a incoming call, and we keep
creating talking widgets.
2007-08-01 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_pin_requested),
(on_call_progress_changed), (register_network_cb):
More debugging.
2007-08-01 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (moko_dialer_init):
Init some variables properly.
2007-08-01 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (register_network_cb):
Added some more debug statements.
2007-07-31 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_call_progress_changed):
Add a bunch of debug statements to find out what gsmd is doing.
2007-07-31 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked):
Some fixes to dialing function.
2007-07-31 Neil J. Patel <njp@o-hand.com>
* src/dialer-main.c: (main):
* src/moko-digit-button.c: (moko_digit_button_new_with_labels):
Do not force gsmd restart (for debugging purposes).
2007-07-30 Thomas Wood <thomas@openedhand.com>
* src/dialer-main.c:
* src/moko-dialer.c:
* src/moko-history.c:
* src/moko-history.h:
* src/moko-keypad.c:
* src/moko-talking.c:
Fix includes not to use directory names
2007-07-30 Thomas Wood <thomas@openedhand.com>
* configure.ac: Update for OM 2007.2 library names
2007-07-27 Neil J. Patel <njp@o-hand.com>
* src/moko-history.c: (on_delete_clicked), (history_add_entry),
(on_entry_added_cb), (moko_history_load_entries):
Update to use the new mokojournal api.
2007-07-23 Neil J. Patel <njp@o-hand.com>
* src/dialer-main.c: (main):
Instead of calling /etc/init.d/gpsd restart, do stop and then start, as
gpsd startup script calls killall gpsd (Duh!).
* src/moko-dialer.c: (moko_dialer_hung_up),
(on_keypad_dial_clicked), (on_talking_accept_call),
(on_talking_reject_call), (on_talking_cancel_call),
(on_pin_requested):
* src/moko-talking.c: (moko_talking_init):
Hide the delete/dial buttons when in a call.
2007-07-13 Neil J. Patel <njp@o-hand.com>
* src/dialer-defines.h:
Some global dialer variables.
2007-07-12 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (moko_dialer_show_missed_calls),
(on_keypad_dial_clicked), (on_talking_accept_call),
(on_incoming_call):
If there is a match from mokocontacts, pass that match into the outgoing
call.
* src/moko-talking.c: (incoming_timeout),
(moko_talking_incoming_call), (outgoing_timeout),
(moko_talking_outgoing_call), (talking_timeout),
(moko_talking_accepted_call), (on_reject_clicked),
(on_cancel_clicked), (moko_talking_init):
* src/moko-talking.h:
Add a MokoContactEntry variable into each function, allowing for contact
data to be displayed.
Load the animation icons and display (animate) them for each status.
2007-07-12 Neil J. Patel <njp@o-hand.com>
* src/dialer-main.c: (main):
Don't crash when dbus isn't present. Just return after printing the error.
* src/moko-history.c: (moko_history_init):
Use the blingy new moko-finger-scroll
2007-07-12 Neil J. Patel <njp@o-hand.com>
* src/Makefile.am:
* src/moko-contacts.c: (moko_contacts_lookup),
(moko_contacts_fuzzy_lookup), (normalize),
(moko_contacts_add_contact), (on_ebook_contacts_added),
(on_ebook_contacts_changed), (on_ebook_contacts_removed),
(moko_contacts_init):
* src/moko-contacts.h:
Added simple contacts hashtable for looking up contacts.
* src/moko-dialer.c: (moko_dialer_show_missed_calls),
(on_keypad_dial_clicked), (moko_dialer_init):
Added a test case for looking up contacts.
2007-07-10 Neil J. Patel <njp@o-hand.com>
* src/moko-contacts.c: (moko_contacts_add_contact),
(on_ebook_contact_added), (moko_contacts_init),
(moko_contacts_get_default):
* src/moko-contacts.h:
Create the EBook and populate the contacts and entries list.
Connect to the 'contacts-added' signal and add new contacts to the list.
2007-07-09 Neil J. Patel <njp@o-hand.com>
* configure.ac:
* src/Makefile.am:
* src/moko-contacts.c: (moko_contacts_dispose),
(moko_contacts_finalize), (moko_contacts_class_init),
(moko_contacts_init), (moko_contacts_get_default):
* src/moko-contacts.h:
Added stubs for a contacts backend (for number matching and autocomplete)
2007-07-09 Neil J. Patel <njp@o-hand.com>
* configure.ac:
Update to use the new split-out openmoko-libs
2007-07-09 Neil J. Patel <njp@o-hand.com>
* configure.ac:
Added an option to sepcify the location of the dbus tools, using
--with-dbusbindir=DIR.
2007-07-06 Neil J. Patel <njp@o-hand.com>
* src/dialer-main.c: (main):
* src/moko-dialer.c: (moko_dialer_show_dialer),
(moko_dialer_show_missed_calls), (moko_dialer_init):
Don't show dialer unless -s is used.
The dbus functions ShowDialer/ShowMissedCalls/DialerDial work now.
2007-07-06 Neil J. Patel <njp@o-hand.com>
* src/dialer-main.c: (main):
Issue a "/etc/init.d/gsmd restart" before starting the dialer, to make sure
we have a running gsmd. Yes its hacky, but its the only way gsmd will learn.
2007-07-06 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (moko_dialer_outgoing_call),
(moko_dialer_hung_up), (moko_dialer_rejected),
(on_keypad_dial_clicked), (on_talking_accept_call),
(on_talking_reject_call), (on_talking_cancel_call),
(on_history_dial_number), (on_incoming_call), (on_incoming_clip),
(on_call_progress_changed), (register_network_cb),
(moko_dialer_init):
* src/moko-dialer.h:
Hooked up most of the Gsmd functions, apart from the PIN stuff.
Changed the registering timeout to keep going until the dialer has
registered, otherwise it will keep asked gsm to connect.
* src/moko-keypad.c: (moko_keypad_set_talking), (moko_keypad_init):
* src/moko-keypad.h:
Added a state for when your in a call, which hides the 'delete' and 'dial'
keys.
* src/moko-talking.c: (on_speaker_toggled):
Don't unnecessaryly emit a signal, for now.
2007-07-06 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_keypad_dial_clicked),
(on_talking_accept_call), (on_talking_reject_call),
(on_talking_cancel_call), (on_talking_speaker_toggle),
(on_keypad_digit_pressed), (moko_dialer_init):
Connected to the remaining signals from the main objects.
* src/moko-keypad.c: (moko_keypad_class_init):
* src/moko-keypad.h:
Added a "digit_pressed" signal, which will be used for dtmf.
2007-07-06 Neil J. Patel <njp@o-hand.com>
* src/moko-history.c: (history_add_entry), (moko_history_init):
Fixed bug where history entries were not showing.
2007-07-05 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (moko_dialer_init):
Added the talkign apge on _init () for testing.
* src/moko-talking.c: (moko_talking_incoming_call),
(moko_talking_outgoing_call), (moko_talking_accepted_call),
(moko_talking_init):
* src/moko-talking.h:
Added the functions for changing the ui for the current status.
2007-07-05 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (moko_dialer_init):
Updated for new moko_talking_new signature.
* src/moko-talking.c: (on_answer_clicked), (on_reject_clicked),
(on_cancel_clicked), (on_speaker_toggled),
(moko_talking_class_init), (moko_talking_init), (moko_talking_new):
* src/moko-talking.h:
Added the skeleton for the integrated talking/incoming/outgoing widgets.
Added the signals and callbacks for the MokoDialer application to connect
to.
2007-07-05 Neil J. Patel <njp@o-hand.com>
* src/moko-history.c: (on_delete_clicked):
Implemented the 'delete' action.
2007-07-04 Neil J. Patel <njp@o-hand.com>
* src/moko-dialer.c: (on_history_dial_number), (moko_dialer_init):
Connect to new "dial_number" signal in MokoHistory
* src/moko-history.c: (on_dial_clicked), (moko_history_class_init):
* src/moko-history.h:
Add a "dial_number" signal to alert the MokoDialer object that the user
wants to dial a number.
2007-07-04 Neil J. Patel <njp@o-hand.com>
* src/moko-history.c: (on_dial_clicked), (on_sms_clicked),
(on_delete_clicked), (history_add_entry), (on_entry_added_cb),
(moko_history_filter_visible_func), (on_filter_changed),
(sort_by_date), (moko_history_load_entries), (moko_history_init):
Added in nearly all of the remaining functionality of the history view, only
dial/sms/delete buttons are not working.
Swapped custom header for a combobox, added the toolbar at the top.
2007-07-04 Neil J. Patel <njp@o-hand.com>
* src/moko-history.c: (moko_history_init):
Fixed icons in the toolbar.
Added the rest of the filter options, with correct icons.
* src/moko-history.h:
Replaced OUTGOING/INCOMING with DIALED/RECEIVED to match with the text of
the combobox.
2007-07-04 Neil J. Patel <njp@o-hand.com>
* src/Makefile.am:
* src/moko-dialer.c: (moko_dialer_hang_up),
(on_keypad_dial_clicked), (moko_dialer_init):
* src/moko-history.c: (moko_history_load_entries),
(moko_history_dispose), (moko_history_finalize),
(moko_history_set_property), (moko_history_get_property),
(moko_history_class_init), (moko_history_init), (moko_history_new):
* src/moko-history.h:
Started to convert history from old dialer.
Added a toolbar, converted custom menu to GtkComboBox.
* src/moko-talking.c: (moko_talking_dispose),
(moko_talking_finalize), (moko_talking_class_init),
(moko_talking_init), (moko_talking_new):
* src/moko-talking.h:
A stub for a talking tab.
2007-07-03 Neil J. Patel <njp@o-hand.com>
* src/Makefile.am:
* src/moko-dialer-declares.h:
* src/moko-dialer-panel.c: (moko_dialer_panel_class_init),
(moko_dialer_panel_init), (moko_dialer_panel_pressed),
(moko_dialer_panel_new):
* src/moko-dialer-panel.h:
* src/moko-dialer-textview.c: (moko_dialer_textview_class_init),
(moko_dialer_textview_init), (moko_dialer_textview_new),
(moko_dialer_textview_set_color), (moko_dialer_textview_insert),
(moko_dialer_textview_get_input), (moko_dialer_textview_empty),
(moko_dialer_textview_delete), (moko_dialer_textview_fill_it),
(moko_dialer_textview_confirm_it):
* src/moko-dialer-textview.h:
* src/moko-digit-button.c: (moko_digit_button_new),
(moko_digit_button_new_with_labels),
(moko_digit_button_set_numbers), (moko_digit_button_class_init),
(moko_digit_button_init), (moko_digit_button_get_left),
(moko_digit_button_get_right):
* src/moko-digit-button.h:
* src/moko-keypad.c: (on_dial_clicked), (on_delete_clicked),
(on_panel_user_input), (on_panel_user_hold), (moko_keypad_dispose),
(moko_keypad_class_init), (moko_keypad_init), (moko_keypad_new):
* src/moko-keypad.h:
Added the MokoDigitButton, MokoDialerPanel and MokoDialerTextview classes
from the orignal dialer, and added them into the new MokoKeypad object.
2007-07-03 Neil J. Patel <njp@o-hand.com>
* src/Makefile.am:
* src/moko-dialer.c: (moko_dialer_dispose), (moko_dialer_init):
Init the connection with gsmd through MokoGsmdConnection.
Init MokoJournal.
Create the initial window (and present straight away for now).
Create the notebook, and pack in the keypad.
* src/moko-keypad.c: (moko_keypad_dispose), (moko_keypad_finalize),
(moko_keypad_class_init), (moko_keypad_init), (moko_keypad_new):
* src/moko-keypad.h:
Added the beginiings of a keypad.
2007-07-03 Neil J. Patel <njp@o-hand.com>
* AUTHORS:
* INSTALL:
* Makefile.am:
* README:
* autogen.sh:
* configure.ac:
* data/Makefile.am:
* data/openmoko-dialer.desktop:
* data/org.openmoko.Dialer.service.in:
* src/Makefile.am:
* src/dialer-main.c: (_show_dialer), (_show_missed), (main):
* src/moko-dialer-dbus.xml:
* src/moko-dialer-glue.h:
* src/moko-dialer.c: (moko_dialer_show_dialer),
(moko_dialer_show_missed_calls), (moko_dialer_get_status),
(moko_dialer_dial), (moko_dialer_hang_up),
(moko_dialer_outgoing_call), (moko_dialer_talking),
(moko_dialer_hung_up), (moko_dialer_rejected),
(on_network_registered), (on_incoming_call), (on_pin_requested),
(on_call_progress_changed), (register_network_cb),
(moko_dialer_dispose), (moko_dialer_finalize),
(moko_dialer_class_init), (moko_dialer_init),
(moko_dialer_get_default):
* src/moko-dialer.h:
Intial Import
/* vi: set noexpandtab sw=8 sts=8 ts=8: */
|