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 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092
|
2012-06-12 gregoa
* NEWS: Add release date in NEWS.
* TODO: remove TODO item (expand/collapse)
* NEWS: Add more items to NEWS.
* NEWS: Add items to NEWS.
* src/alarm/alarm.cpp, src/alarm/alarm.h, src/app/alarmdbus.cpp,
src/app/alarmdbus.h, src/app/alarmdbusadaptor.cpp,
src/app/alarmdbusadaptorp.h, src/app/application.cpp,
src/app/application.h, src/app/appsettings.cpp,
src/app/appsettings.h, src/app/main.cpp,
src/gui/conferenceeditor.cpp, src/gui/conferenceeditor.h,
src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/conflictsdialog.cpp,
src/gui/conflictsdialog.h, src/gui/daynavigatorwidget.cpp,
src/gui/daynavigatorwidget.h, src/gui/dayviewtabcontainer.cpp,
src/gui/dayviewtabcontainer.h, src/gui/errormessage.cpp,
src/gui/errormessage.h, src/gui/eventdialog.cpp,
src/gui/eventdialog.h, src/gui/favtabcontainer.cpp,
src/gui/favtabcontainer.h, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/roomstabcontainer.cpp,
src/gui/roomstabcontainer.h, src/gui/searchhead.cpp,
src/gui/searchhead.h, src/gui/searchtabcontainer.cpp,
src/gui/searchtabcontainer.h, src/gui/settingsdialog.cpp,
src/gui/settingsdialog.h, src/gui/tabcontainer.cpp,
src/gui/tabcontainer.h, src/gui/trackstabcontainer.cpp,
src/gui/trackstabcontainer.h, src/gui/urlinputdialog.cpp,
src/gui/urlinputdialog.h, src/mvc/conference.cpp,
src/mvc/conference.h, src/mvc/conferencemodel.cpp,
src/mvc/conferencemodel.h, src/mvc/delegate.cpp,
src/mvc/delegate.h, src/mvc/event.cpp, src/mvc/event.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h, src/mvc/room.cpp,
src/mvc/room.h, src/mvc/track.cpp, src/mvc/track.h,
src/mvc/treeview.cpp, src/mvc/treeview.h, src/orm/ormrecord.h,
src/sql/schedulexmlparser.cpp, src/sql/schedulexmlparser.h,
src/sql/sqlengine.cpp, src/sql/sqlengine.h, src/test/main.cpp,
src/test/mvc/eventtest.cpp, src/test/mvc/eventtest.h: Add Stefan
as a copyright holder to source files, too.
* README, data/confclerk.pod: sync copyright notices between README
and confclerk.pod
2012-06-12 philipp
* src/gui/mainwindow.cpp: Implemented expand/collapse of the event
groups. Resolves ticket #31.
* src/mvc/eventmodel.cpp: The groups starts at full hours again.
* src/mvc/eventmodel.cpp: Philipp's comments to r1444.
* README, src/gui/mainwindow.ui, src/icons.qrc,
src/icons/collapse.png, src/icons/collapse.svg,
src/icons/expand.png, src/icons/expand.svg: Created icons
collapse and expand.
2012-05-03 gregoa
* src/mvc/eventmodel.cpp: createTimeGroups(): use QDateTime instead
of QTime to avoid "midnight overflow". Cf. #42
2012-05-02 philipp
* src/orm/ormrecord.h: This at least partly fixes #42 ("fun with
time zones").
2012-05-02 stefan
* src/icons/favourite-off.png, src/icons/favourite.blend: Changed
inactive favourite icon to match alarm icon style
2012-04-22 gregoa
* src/mvc/delegate.cpp: Show the AlarmOff icon in the timegroup
header when the group has no alarms set.
2012-04-19 gregoa
* README: Update copyright information in README for new icons.
2012-04-19 philipp
* src/gui/eventdialog.cpp, src/gui/eventdialog.ui, src/icons.qrc,
src/icons/alarm-off.png, src/icons/alarm-on.png,
src/icons/alarm.blend, src/icons/appointment-soon-off.png,
src/icons/appointment-soon.png, src/mvc/delegate.cpp: Changed the
alarm icon due to ticket #40. I haven't tried it because I don't
have an N900 device.
2012-04-19 gregoa
* NEWS: Update NEWS with recent bug fixes.
* README: Update copyright in README for changed icons.
2012-04-19 philipp
* src/gui/eventdialog.cpp, src/gui/eventdialog.ui, src/icons,
src/icons.qrc, src/icons/add.png,
src/icons/appointment-soon-off.png,
src/icons/appointment-soon.png, src/icons/dialog-warning.png,
src/icons/emblem-new-off.png, src/icons/emblem-new.blend,
src/icons/emblem-new.png, src/icons/favourite-off.png,
src/icons/favourite-on.png, src/icons/favourite.blend,
src/icons/reload.png, src/icons/remove.png, src/icons/search.png,
src/icons/today.png, src/mvc/delegate.cpp: Changed favourite
icons as a response to ticket #40.
2012-04-18 gregoa
* src/gui/mainwindow.cpp: Handle redirects when importing schedules
over the network.
Fixes: #39
2012-04-06 gregoa
* src/sql/schedulexmlparser.cpp: More output on errors.
2012-04-05 gregoa
* README, data/confclerk.pod, src/gui/about.ui: Fix typo in docs.
* README: Update exmple URLs in README.
2012-03-21 gregoa
* README, data/confclerk.pod, src/alarm/alarm.cpp,
src/alarm/alarm.h, src/app/alarmdbus.cpp, src/app/alarmdbus.h,
src/app/alarmdbusadaptor.cpp, src/app/alarmdbusadaptorp.h,
src/app/application.cpp, src/app/application.h,
src/app/appsettings.cpp, src/app/appsettings.h, src/app/main.cpp,
src/gui/about.ui, src/gui/conferenceeditor.cpp,
src/gui/conferenceeditor.h, src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/conflictsdialog.cpp,
src/gui/conflictsdialog.h, src/gui/daynavigatorwidget.cpp,
src/gui/daynavigatorwidget.h, src/gui/dayviewtabcontainer.cpp,
src/gui/dayviewtabcontainer.h, src/gui/errormessage.cpp,
src/gui/errormessage.h, src/gui/eventdialog.cpp,
src/gui/eventdialog.h, src/gui/favtabcontainer.cpp,
src/gui/favtabcontainer.h, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/roomstabcontainer.cpp,
src/gui/roomstabcontainer.h, src/gui/searchhead.cpp,
src/gui/searchhead.h, src/gui/searchtabcontainer.cpp,
src/gui/searchtabcontainer.h, src/gui/settingsdialog.cpp,
src/gui/settingsdialog.h, src/gui/tabcontainer.cpp,
src/gui/tabcontainer.h, src/gui/trackstabcontainer.cpp,
src/gui/trackstabcontainer.h, src/gui/urlinputdialog.cpp,
src/gui/urlinputdialog.h, src/mvc/conference.cpp,
src/mvc/conference.h, src/mvc/conferencemodel.cpp,
src/mvc/conferencemodel.h, src/mvc/delegate.cpp,
src/mvc/delegate.h, src/mvc/event.cpp, src/mvc/event.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h, src/mvc/room.cpp,
src/mvc/room.h, src/mvc/track.cpp, src/mvc/track.h,
src/mvc/treeview.cpp, src/mvc/treeview.h, src/orm/ormrecord.h,
src/sql/schedulexmlparser.cpp, src/sql/schedulexmlparser.h,
src/sql/sqlengine.cpp, src/sql/sqlengine.h, src/test/main.cpp,
src/test/mvc/eventtest.cpp, src/test/mvc/eventtest.h: Update
copyright years.
* NEWS: Add note about fixed bug to NEWS.
2012-03-21 philipp
* src/alarm/alarm.cpp, src/alarm/alarm.h,
src/gui/conflictdialogcontainer.cpp, src/gui/eventdialog.cpp,
src/mvc/treeview.cpp: Hopefully fixed bug #38: As the alarm
message was used to identify the event by setting it to the
eventId and in r1359 the alarm message was changed to show the
event title, alarms could not be deleted anymore. Therefore, two
alarm attributes (int values) were introduced with this commit:
"conferenceId" and "eventId" to identify the event and therefore,
deleting alarms should work again. Additionally a second (not
reported) bug was fixed: Activating an alarm in the treeview set
the alarm to the current time plus 10 seconds.
However, I don't know for sure whether this commit fixed bug #38
becaus I don't have a maemo device to test it.
2012-03-20 gregoa
* src/gui/gui.pro: Removed commented out reference to removed
files.
2012-03-20 philipp
* src/alarm/calendar.cpp, src/alarm/calendar.h: Deleted calendar.h
and calendar.cpp as they are not used.
* src/gui/alarmdialog.cpp, src/gui/alarmdialog.h,
src/gui/alarmdialog.ui: Deleted files that don't seem to be used.
2012-03-10 gregoa
* README, data/confclerk.pod: typo in docs
2011-12-12 philipp
* TODO: Updated the TODO list.
* src/gui/mainwindow.cpp, src/gui/searchtabcontainer.cpp,
src/gui/searchtabcontainer.h: When the search toolbox button is
clicked when the search dialog is already open, it is closed.
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui: Implemented stub for expand/collape all.
* src/gui/daynavigatorwidget.ui: Another layout study.
* src/gui/daynavigatorwidget.ui: Changed layout details to study
the effect in Maemo.
* src/gui/daynavigatorwidget.cpp: Better calculation of the day
navigator date position.
* src/sql/sqlengine.cpp: Fixed by gregoa: Searching for titles
where the events had no person did not find anything.
* src/gui/daynavigatorwidget.h, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/searchtabcontainer.cpp,
src/gui/searchtabcontainer.h: The search result is now synced
with the daynavigator. When the search result is not on the
current date, the date is changed.
2011-11-27 gregoa
* README: Update URL list in README.
2011-10-17 philipp
* src/gui/searchtabcontainer.cpp, src/mvc/event.cpp,
src/mvc/eventmodel.cpp: Sorted by duration additionally to start.
* src/create_tables.sql, src/gui/daynavigatorwidget.cpp,
src/gui/daynavigatorwidget.h, src/gui/daynavigatorwidget.ui,
src/gui/dayviewtabcontainer.cpp, src/gui/dayviewtabcontainer.h,
src/gui/mainwindow.cpp, src/mvc/event.h: Implemented "now" action
and removed the "now" button from the day navigator.
* src/mvc/event.cpp, src/mvc/event.h, src/mvc/eventmodel.cpp,
src/mvc/eventmodel.h: Removed unused nowEvent functions.
* src/gui/mainwindow.cpp, src/gui/mainwindow.ui: Implemented the
reload button functionality. Closes: #34
* src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/conflictsdialog.cpp,
src/gui/conflictsdialog.h, src/gui/eventdialog.cpp,
src/gui/eventdialog.h, src/gui/tabcontainer.cpp: The conflict
editor works again.
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/tabcontainer.cpp, src/gui/tabcontainer.h,
src/mvc/treeview.cpp, src/mvc/treeview.h: The favorite tab gets
updated again after changing the favorite state.
2011-10-04 philipp
* src/gui/conflictdialogcontainer.cpp, src/gui/conflictsdialog.cpp,
src/gui/gui.pro, src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/gui/nowtabcontainer.cpp,
src/gui/nowtabcontainer.h, src/gui/searchtabcontainer.cpp,
src/gui/searchtabcontainer.h, src/gui/tabcontainer.cpp,
src/gui/tabcontainer.h, src/gui/tabcontainer.ui: Removed the
"Now" tab. Removed the day navigator inside tabs. Added a search
button in the button bar.
Right now, at least the following does not work: * update of
favorites * conflict editor * setting favorite in the event
dialog
2011-09-21 gregoa
* src/gui/searchhead.ui: Search dialog: less width, more lines.
* src/gui/mainwindow.ui: Tabs: elide tabtexts.
2011-09-21 philipp
* src/gui/daynavigatorwidget.cpp, src/gui/daynavigatorwidget.h,
src/gui/mainwindow.cpp, src/gui/tabcontainer.cpp: Implemented
"unset dates" in the date navigator.
* src/gui/daynavigatorwidget.cpp, src/gui/mainwindow.cpp,
src/gui/tabcontainer.cpp, src/gui/tabcontainer.h: The dateChanged
signal is transmitted to the tabcontainers now.
* src/gui/mainwindow.ui: Introduced a toobar. Added a new global
date navigator instance (the "old" ones are not removed yet).
* src/gui/daynavigatorwidget.cpp, src/gui/daynavigatorwidget.h:
Cleanup daynavigatorwidget.
2011-09-14 gregoa
* NEWS: Fix typo in NEWS.
* NEWS, src/global.pri: bump version after release
* NEWS: Add date to NEWS before release.
2011-09-12 gregoa
* NEWS: Add NEWS items for upcoming 0.5.4 release.
* NEWS: Add dates to all releases in NEWS.
* src/gui/daynavigatorwidget.cpp: Day navigator widget: setDates()
- change logic of setting mCurDate: if it's outside the
conference range, set it to mStartDate (and not to mEndDate when
it's "greater") -- when going to an earlier conference, starting
on the last day doesn't really make sense - update() the widget
after changing dates. this might be a bit expensive but it ensure
that the displayed date is what we want, and since there are many
day navigator widgets there's probably no single other place
Hopefully closes #36.
* src/gui/mainwindow.cpp: Replace some tabs with the usual spaces.
2011-09-06 philipp
* src/gui/mainwindow.ui: Assigned confclerk icon to main window.
* src/gui/conferenceeditor.cpp: Now the progress bar is shown
immediately after clicking the refresh conference button. Closes
ticket #25.
* src/gui/daynavigatorwidget.cpp, src/gui/daynavigatorwidget.h,
src/gui/tabcontainer.cpp, src/mvc/treeview.cpp: Fixed ticket #26
(empty tabs after some actions).
2011-09-06 stefan
* src/gui/mainwindow.cpp, src/sql/sqlengine.cpp: Fixed ticket #20
2011-09-06 philipp
* src/orm/ormrecord.h: Removed one comment and fixed typos.
2011-09-06 gregoa
* README, data/confclerk.pod: Mention frab (FrOSCon penta clone)
and Grazer Linuxtage (fixes #33).
2011-08-23 philipp
* src/mvc/eventmodel.cpp, src/mvc/eventmodel.h: Rewrote code to
group events together with gregoa. Closes bug #22.
* src/mvc/delegate.cpp: This should close ticket #35 ([maemo]
conflict icon overlaps alarm icon).
* src/gui/tabcontainer.ui, src/mvc/delegate.cpp,
src/mvc/delegate.h: Changed the drawing of events to make use of
system colors and styles, at least partially.
2011-08-16 gregoa
* NEWS, src/global.pri: bump version after release
* NEWS: Remove "TODO" from NEWS, a.k.a. prepare for release
2011-08-15 gregoa
* NEWS: Update NEWS.
* src/gui/daynavigatorwidget.cpp, src/gui/daynavigatorwidget.ui:
Improve day navigator widget.
(Still black magic, now even with #ifdefs :/)
* src/sql/sqlengine.cpp: .isEmpty() feels more Qtish then == ""
* src/gui/conferenceeditor.cpp: Only add ", $venue" to conference
location when $venue is not empty.
* src/gui/conferenceeditor.cpp: ISO formatting of conference dates
in conferenceeditor.
* src/sql/sqlengine.cpp: Quick fix for ticket: #32: if the schedule
XML doesn't contain a city, we put "n/a" there.
In the long run we might want to find a system for changing the
database scheme; too bad sqlite has only limited ALTER TABLE
support.
* src/sql/schedulexmlparser.cpp: emit the parsingScheduleBegin()
signal earlier, so we get the progressbar a bit earlier (cf.
ticket #25)
* README, data/confclerk.pod, src/gui/about.ui: mention FrOSCon as
an example (although it's not working at the moment, cf. #32)
2011-07-24 gregoa
* src/gui/conferenceeditor.cpp: Use "-" in start-end. Closes: #30
* src/gui/daynavigatorwidget.cpp: Shift date text up by icon/2 in
order to re-center the text. More or less at least.
* NEWS, src/gui/daynavigatorwidget.cpp,
src/gui/daynavigatorwidget.h, src/gui/daynavigatorwidget.ui,
src/icons.qrc, src/icons/today.png: Add today button to date
navigator. TODO: date is not centered between prev/next arrows
anymore.
Cf. #29
2011-07-23 gregoa
* src/alarm/alarm.pro: Make sure to remove src/bin/libqalarm.a on
make clean.
* NEWS, src/global.pri: bump version after release
* NEWS: Prepare NEWS before release of 0.5.2.
* src/sql/sqlengine.cpp: Remove conference/room records
unconditionally from EVENT_ROOMS
2011-07-22 gregoa
* src/sql/sqlengine.cpp: SqlEngine::addRoomToDB: remove
event/conference combinations from EVENT_ROOM that are already
there. Should avoid duplicates on updates where the room name
changes. Hopefully fixes ticket #24.
* data/confclerk.pod: manpage: s/Desafinado/ConfClerk/
2011-07-19 philipp
* src/gui/conferenceeditor.ui: Fixed ticket #23: No close button in
conference dialog when no confernces are in the list.
2011-07-14 gregoa
* confclerk.pro: Don't include tarballs in release tarballs ...
* src/mvc/delegate.cpp: Distinguish "Presenter" and "Presenters"
(instead of "Presenter(s)"). Closes: Ticket #17
* src/alarm/alarm.cpp, src/alarm/alarm.h, src/gui/eventdialog.cpp,
src/mvc/treeview.cpp: Show event title instead of id in alarms.
* confclerk.pro: Don't remove generated files in DISTCLEAN;
otherwise they are gone during package builds :/
* TODO: Add a TODO item.
* confclerk.pro, src/gui/gui.pro, src/mvc/mvc.pro, src/orm/orm.pro,
src/sql/sql.pro: Reorganize CLEAN and DISTCLEAN targets.
* NEWS, src/global.pri: Bump VERSION after release.
* ChangeLog, confclerk.pro: Remove ChangeLog from svn (it's created
via svn2cl, so this is circular). Add generated files to
distclean target.
2011-07-13 gregoa
* ChangeLog: Update ChangeLog before release.
* NEWS: NEWS entry for 0.5.1 release.
2011-07-13 philipp
* src/mvc/delegate.cpp: This is just a quick-and-dirty workaround
commit to aviod a drawing problem on maemo. This commit might be
reverted ...
* src/gui/searchhead.ui: The speaker is preselected in the search
dialog now.
* src/mvc/delegate.cpp: First try to improve the colors (ticket
#13).
* src/gui/mainwindow.cpp, src/gui/settingsdialog.cpp,
src/gui/settingsdialog.h, src/gui/settingsdialog.ui: The cancel
button on the settings dialog works now (ticket #14) and the
layout of the settings dialog is stable now (ticket #15).
* src/gui/mainwindow.ui: Changed the menu to be non-hierarchical.
Closes ticket #16.
* src/gui/daynavigatorwidget.cpp: Changed the placement of the date
label again. Changed the date format to show the day-of-week.
* src/gui/daynavigatorwidget.cpp: Replaced "130" by s.width() when
centering the date.
2011-07-12 philipp
* src/sql/sqlengine.cpp: This commit closes ticket #12. The search
terms are ANDed now and a call to trimmed() before splitting the
search string avoids problems with leading/trailing spaces.
2011-07-11 philipp
* src/mvc/event.cpp: Before querying the SEARCH_EVENT table, its
existence is checked. Therefore a command line debug error
message is avoided.
This commit partly fixes ticket #10.
* src/gui/errormessage.cpp: Error messages reported with the
function error_essage are no longer writted to std:error because
they are shown to the user anyway. This commit partly resolves
ticket #10.
* src/gui/eventdialog.ui: The description and person list of the
event dialog is now selectable so that copy&paste is possible.
2011-07-10 philipp
* src/gui/about.ui, src/gui/mainwindow.cpp: Tuned the about dialog.
* src/gui/conferenceeditor.ui: Minor tuning of the conference
editor. The reload button now has a text on it.
* src/sql/sqlengine.cpp: Fixed bug (related to ticket #12): Only
the last search term is used.
* src/sql/sqlengine.cpp: Undid changes to sqlengine.cpp I committed
accidentally in r1318.
2011-07-08 gregoa
* src/sql/sqlengine.cpp: Split search keyword string on whitespace.
* src/sql/sqlengine.cpp: Avoid duplicate search results by using
SELECT DISTINCT when filling the SEARCH_EVENT table.
2011-07-05 gregoa
* README: Add DebConf11 URL to README.
2011-07-04 philipp
* src/gui/conferenceeditor.ui: Cleaning of the conferenceeditor
dialog.
* src/create_tables.sql, src/gui/conferenceeditor.cpp,
src/gui/conferenceeditor.h, src/gui/conferenceeditor.ui,
src/gui/gui.pro, src/gui/mapwindow.cpp, src/gui/mapwindow.h,
src/gui/mapwindow.ui, src/gui/tabcontainer.cpp,
src/gui/tabcontainer.h, src/icons.qrc,
src/icons/applications-internet.png, src/mvc/conference.cpp,
src/mvc/conference.h, src/mvc/delegate.cpp, src/mvc/delegate.h,
src/mvc/room.cpp, src/mvc/room.h, src/mvc/treeview.cpp,
src/mvc/treeview.h, src/sql/schedulexmlparser.cpp,
src/sql/sqlengine.cpp, src/sql/sqlengine.h: Removed the ability
to show "pictures" (maps) of rooms and maps of conferences. The
XML file does not contain picture/map/image information of
conferences or rooms. We left the room.picture definition in the
database SQL because there is no "drop column" in sqlite.
* src/gui/mainwindow.ui: Removed the unused status bar.
2011-06-29 gregoa
* src/app/app.pro, src/gui/gui.pro, src/mvc/mvc.pro,
src/test/test.pro: Some more s;TARGETDEPS;POST_TARGETDEPS;
* data/confclerk.desktop, data/confclerk.pod: s;scheduler;schedule
application;
* ChangeLog, NEWS, src/global.pri: Bump version
* ChangeLog: Update changelog.
2011-06-28 philipp
* src/gui/conferenceeditor.cpp, src/gui/daynavigatorwidget.cpp,
src/gui/eventdialog.cpp, src/gui/mainwindow.cpp,
src/gui/searchhead.cpp, src/mvc/eventmodel.cpp,
src/mvc/treeview.cpp, src/orm/ormrecord.h, src/sql/sqlengine.cpp:
Removed many of the qDebug() output lines (see ticket #10).
2011-06-28 gregoa
* README, data/confclerk.pod: add copyright/license for exchanged
icons
2011-06-28 philipp
* src/icons/emblem-new-off.png, src/icons/emblem-new.blend,
src/icons/emblem-new.png: Replaced the star icons with self-made
versions (Blender 2.57b) that are better distinguishable. Closes
ticket #8.
2011-06-27 philipp
* confclerk.pro, src/app/main.cpp, src/global.pri,
src/gui/about.ui, src/gui/mainwindow.cpp: Included application
version in the about dialog. This closes ticket #9.
2011-06-26 philipp
* src/gui/eventdialog.cpp, src/gui/eventdialog.ui: Links in events
are now clickable (resolves ticket #4).
* src/gui/searchtabcontainer.cpp, src/mvc/conference.h: Searching
without active conference doesn't give an error message anymore
(resolves ticket #7).
* src/gui/searchtabcontainer.cpp, src/sql/sqlengine.cpp: The '%'
character doesn't have to be escaped anymore.
* src/gui/mainwindow.ui: The window title was still "FOSDEM
Schedule".
2011-06-25 gregoa
* ChangeLog, NEWS: Add entries to NEWS file.
* TODO: Shorten TODO.
* ChangeLog, confclerk.pro, data/confclerk.pod: Create a simple man
page.
* README, TODO: Add URLs for FOSDEM 2011, DebConf 2010, and 27C3 to
README instead of TODO.
* TODO, src/fosdem.sql, src/schedule.en.xml: Remove the remaining
last two fosdem files.
* ChangeLog, README, TODO: Update contact info.
2011-06-25 philipp
* BUGS: Bugs are now reported in the trac system.
2011-06-24 gregoa
* BUGS, ChangeLog: Mark bug 3 as fixed.
2011-06-24 philipp
* src/gui/searchhead.cpp: Enter or return triggers the search now
when the focus is at the searchEdit or at one of the checkboxes.
* BUGS: Filed bug 7: Error message when searching without having
conferences
2011-06-24 gregoa
* BUGS: Add another wishlist (more: design discussion) bug
2011-06-24 philipp
* src/gui/tabcontainer.h, src/mvc/eventmodel.cpp: Removed
unnecessary debug output and code.
* BUGS, src/mvc/event.cpp: Fixed bug reported by gregor: Too many
authors are shown (form other conferences as well).
2011-06-24 gregoa
* ChangeLog, TODO, confclerk.pro: Improve release target in .pro
2011-06-24 philipp
* src/gui/daynavigatorwidget.cpp, src/mvc/treeview.cpp: Removed two
unused variables to avoid compiler warnings.
2011-06-24 gregoa
* src/gui/alarmdialog.cpp, src/sql/sqlengine.cpp,
src/test/mvc/eventtest.cpp: Somewhere a slash was missing ...
* TODO: Updated TODO.
2011-06-23 gregoa
* README: Add contact info to README.
* src/gui/about.ui: Update 'About' dialog.
* TODO, src/app/app.pro, src/app/main.cpp, src/maps, src/maps.qrc,
src/sql/sqlengine.cpp: Remove ULB, Campus Solbosch maps.
* ., ChangeLog, TODO, confclerk.pro, data/fosdem-schedule.svg,
fosdem-schedule.pro, src/app/app.pro: The big rename. Which was
not so big after all ...
* data/26x26, data/40x40, data/48x48, data/64x64, data/Makefile,
data/confclerk.desktop, data/maemo: De-maemofy: make .desktop
file generic, remove resized (old) icons and Makefile for
installing them.
* src/app/app.pro: Add new resource file to app.pro
* data/data.qrc, src/app/main.cpp, src/gui/about.ui,
src/gui/alarmdialog.ui, src/gui/conferenceeditor.ui,
src/icons.qrc, src/icons/brain-alone.png, src/icons/fosdem.png:
Icons, part 2: replace fosdem/brain icons with ConfClerk logo
* README, TODO, src/gui/conferenceeditor.ui,
src/gui/eventdialog.cpp, src/gui/eventdialog.ui, src/icons.qrc,
src/icons/add.png, src/icons/alarm-offBig.png,
src/icons/alarm-onBig.png, src/icons/applications-internet.png,
src/icons/appointment-soon-off.png,
src/icons/appointment-soon.png, src/icons/compassBig.png,
src/icons/dialog-warning.png, src/icons/emblem-new-off.png,
src/icons/emblem-new.png, src/icons/exclamation.png,
src/icons/favourite-offBig.png, src/icons/favourite-onBig.png,
src/icons/reload.png, src/icons/remove.png, src/icons/search.png,
src/mvc/delegate.cpp: Icons part 1: replace all icons (except the
FOSDEM ones) with icons from current gnome-icon-theme
* src/gui/mainwindow.ui, src/icons.qrc, src/icons/collapse.png,
src/icons/expand.png, src/icons/info.png, src/icons/settings.png:
Remove unused icons.
* src/gui/alarmdialog.cpp: Another instance of the databasename.
(NOTE: untested, this codepath is only used on maemo)
* TODO, src/app/appsettings.cpp, src/app/main.cpp,
src/sql/sqlengine.cpp: Move config and sqlite database. They are
both at the xdg-specified locations now:
~/.local/share/data/Toastfreeware/ConfClerk/ConfClerk.sqlite
~/.config/Toastfreeware/ConfClerk.conf
* src/alarm/alarm.cpp, src/app/alarmdbus.h,
src/app/alarmdbusadaptorp.h, src/app/main.cpp: Rename DBus
service. Hopefully successful.
* TODO: Add some conference URLs to TODO
* BUGS: New bug noted.
* BUGS: New bug noted.
* src/app/app.pro, src/gui/gui.pro, src/mvc/mvc.pro: qmake warning:
POST_TARGETDEPS instead of TARGETDEPS
* fosdem-schedule.pro: Remove libs in clean target.
* ChangeLog, README, TODO, data/confclerk.svg,
data/fosdem-schedule.svg, fosdem-schedule.pro,
src/icons/appicon.svg: Move and rename logo, create a target to
convert it in .pro, add copyright/license to README. Update TODO.
2011-06-23 philipp
* BUGS: Checked the remaining code. Didn't find possibilities for
SQL injections anymore.
2011-06-23 gregoa
* TODO: Update TODO.
* ChangeLog, fosdem-schedule.pro: Add release and changelog targets
to project file.
* Changelog: Remove empty Changelog.
2011-06-23 philipp
* src/sql/sqlengine.cpp: Prevented SQL injections in function
addPersonToDB.
2011-06-23 gregoa
* src/alarm/alarm.cpp, src/alarm/alarm.h, src/alarm/calendar.cpp,
src/alarm/calendar.h, src/app/alarmdbus.cpp, src/app/alarmdbus.h,
src/app/alarmdbusadaptor.cpp, src/app/alarmdbusadaptorp.h,
src/app/application.cpp, src/app/application.h,
src/app/appsettings.cpp, src/app/appsettings.h, src/app/main.cpp,
src/gui/alarmdialog.cpp, src/gui/alarmdialog.h,
src/gui/conferenceeditor.cpp, src/gui/conferenceeditor.h,
src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/conflictsdialog.cpp,
src/gui/conflictsdialog.h, src/gui/daynavigatorwidget.cpp,
src/gui/daynavigatorwidget.h, src/gui/dayviewtabcontainer.cpp,
src/gui/dayviewtabcontainer.h, src/gui/errormessage.cpp,
src/gui/errormessage.h, src/gui/eventdialog.cpp,
src/gui/eventdialog.h, src/gui/favtabcontainer.cpp,
src/gui/favtabcontainer.h, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/mapwindow.cpp, src/gui/mapwindow.h,
src/gui/nowtabcontainer.cpp, src/gui/nowtabcontainer.h,
src/gui/roomstabcontainer.cpp, src/gui/roomstabcontainer.h,
src/gui/searchhead.cpp, src/gui/searchhead.h,
src/gui/searchtabcontainer.cpp, src/gui/searchtabcontainer.h,
src/gui/settingsdialog.cpp, src/gui/settingsdialog.h,
src/gui/tabcontainer.cpp, src/gui/tabcontainer.h,
src/gui/trackstabcontainer.cpp, src/gui/trackstabcontainer.h,
src/gui/urlinputdialog.cpp, src/gui/urlinputdialog.h,
src/mvc/conference.cpp, src/mvc/conference.h,
src/mvc/conferencemodel.cpp, src/mvc/conferencemodel.h,
src/mvc/delegate.cpp, src/mvc/delegate.h, src/mvc/event.cpp,
src/mvc/event.h, src/mvc/eventmodel.cpp, src/mvc/eventmodel.h,
src/mvc/room.cpp, src/mvc/room.h, src/mvc/track.cpp,
src/mvc/track.h, src/mvc/treeview.cpp, src/mvc/treeview.h,
src/orm/ormrecord.h, src/sql/schedulexmlparser.cpp,
src/sql/schedulexmlparser.h, src/sql/sqlengine.cpp,
src/sql/sqlengine.h, src/test/main.cpp,
src/test/mvc/eventtest.cpp, src/test/mvc/eventtest.h: Add
copyright to source.
* src/alarm/alarm.cpp, src/alarm/alarm.h, src/alarm/calendar.cpp,
src/alarm/calendar.h, src/app/alarmdbus.cpp, src/app/alarmdbus.h,
src/app/alarmdbusadaptor.cpp, src/app/alarmdbusadaptorp.h,
src/app/application.cpp, src/app/application.h,
src/app/appsettings.cpp, src/app/appsettings.h, src/app/main.cpp,
src/gui/alarmdialog.cpp, src/gui/alarmdialog.h,
src/gui/conferenceeditor.cpp, src/gui/conferenceeditor.h,
src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/conflictsdialog.cpp,
src/gui/conflictsdialog.h, src/gui/daynavigatorwidget.cpp,
src/gui/daynavigatorwidget.h, src/gui/dayviewtabcontainer.cpp,
src/gui/dayviewtabcontainer.h, src/gui/errormessage.cpp,
src/gui/errormessage.h, src/gui/eventdialog.cpp,
src/gui/eventdialog.h, src/gui/favtabcontainer.cpp,
src/gui/favtabcontainer.h, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/mapwindow.cpp, src/gui/mapwindow.h,
src/gui/nowtabcontainer.cpp, src/gui/nowtabcontainer.h,
src/gui/roomstabcontainer.cpp, src/gui/roomstabcontainer.h,
src/gui/searchhead.cpp, src/gui/searchhead.h,
src/gui/searchtabcontainer.cpp, src/gui/searchtabcontainer.h,
src/gui/settingsdialog.cpp, src/gui/settingsdialog.h,
src/gui/tabcontainer.cpp, src/gui/tabcontainer.h,
src/gui/trackstabcontainer.cpp, src/gui/trackstabcontainer.h,
src/gui/urlinputdialog.cpp, src/gui/urlinputdialog.h,
src/mvc/conference.cpp, src/mvc/conference.h,
src/mvc/conferencemodel.cpp, src/mvc/conferencemodel.h,
src/mvc/delegate.cpp, src/mvc/delegate.h, src/mvc/event.cpp,
src/mvc/event.h, src/mvc/eventmodel.cpp, src/mvc/eventmodel.h,
src/mvc/room.cpp, src/mvc/room.h, src/mvc/track.cpp,
src/mvc/track.h, src/mvc/treeview.cpp, src/mvc/treeview.h,
src/orm/ormrecord.h, src/sql/schedulexmlparser.cpp,
src/sql/schedulexmlparser.h, src/sql/sqlengine.cpp,
src/sql/sqlengine.h, src/test/main.cpp,
src/test/mvc/eventtest.cpp, src/test/mvc/eventtest.h: Update GPL
blurb in source files.
2011-06-23 philipp
* src/icons/appicon.svg: Just adapted the page size to be
rectangular.
* src/icons/appicon.svg: This suggestion/"doodle"* for the new
application icon was created just now by Christian Kling
<kling_christian@gmx.at> who (he is sitting next to me right now)
agreed to publish it under the GNU GPL (v2 or later).
*Christian's words.
2011-06-23 gregoa
* TODO, debian: Remove ./debian directory, we'll do the packaging
outside the "upstream" repository.
* AUTHORS, INSTALL, NEWS, README, TODO, docs/fosdem-schedule,
docs/fosdem-schedule/AUTHORS, docs/fosdem-schedule/Changelog,
docs/fosdem-schedule/INSTALL, docs/fosdem-schedule/NEWS,
docs/fosdem-schedule/README,
docs/fosdem-schedule/user-stories.txt, docs/user-stories.txt:
First round of documentation updates.
* ChangeLog, fosdem-schedule.pro: Prepare ChangeLog generation from
svn logs.
2011-06-23 philipp
* src/sql/sqlengine.cpp: Prevented SQL injection in function
addLinkToDB.
2011-06-23 gregoa
* TODO: update TODO
2011-06-23 philipp
* src/sql/sqlengine.cpp: Fixed SQL error in searchEvent when no
table was selected. Prevented SQL injection in searchEvent.
2011-06-23 gregoa
* TODO: add TODO file
2011-06-23 philipp
* src/gui/mainwindow.cpp, src/gui/tabcontainer.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h,
src/orm/ormrecord.h: Added some comments, removed and added some
debug information.
* src/sql/sqlengine.cpp: Fixed a bug I introduced when reparing the
addRoomToDB function.
* src/mvc/track.cpp, src/mvc/track.h, src/sql/sqlengine.cpp: Tracks
are inserted now when importing new conferences.
* src/sql/sqlengine.cpp: void possible SQL injection in function
addRoomToDB.
* src/app/app.pro: Removed copying the fosdem.sqlite database
during the make process.
2011-06-22 philipp
* src/db.qrc, src/sql/sqlengine.cpp: The database is now created
from the program. We don't need to copy or provide fosdem.sqlite
anymore.
* BUGS, src/sql/sqlengine.cpp: Persons are deleted now when a
conference is removed.
* BUGS: Added a file with bugs that I noticed when playing with the
application.
* src/sql/sqlengine.cpp: Rooms are inserted now for additionally
imported conferences.
* src/create_tables.sql: Importing persons for multiple conferences
works now.
* src/create_tables.sql, src/sql/sqlengine.cpp: Changed UNIQUE
statements in the database table definition so that they make
sense for multiple conferences and do no not prevent successful
imports.
2011-06-22 gregoa
* src/mvc/track.cpp, src/mvc/track.h, src/sql/sqlengine.cpp: Insert
new field xid_conference into table track, room and person.
2011-06-21 philipp
* src/create_tables.sql: Created schema for the database with
additional colum xid_conference in the tables track, room and
person.
* src/gui/mainwindow.ui: Added menu item "quit".
* ., src/app, src/gui, src/mvc, src/sql: Ignored some files that
were created during the build.
* fosdem-schedule.pro: Removed data directory from subdirs so that
the manually created Makefile is not overwritten by qmake -r.
* src/app/app.pro: Removed dbus dependency on non-maemo platforms.
2010-05-05 kirilma
* src/mvc/delegate.cpp: use enabled flag instead of repeated
criateria check
* src/mvc/delegate.cpp, src/mvc/delegate.h: add enabled flag
* src/mvc/delegate.cpp, src/mvc/delegate.h: refactor: more compact
drawing of controls
* src/mvc/delegate.cpp, src/mvc/room.h: do not draw showmap button
for event is there is no map for its room
* src/gui/tabcontainer.cpp, src/mvc/delegate.cpp,
src/mvc/event.cpp, src/mvc/event.h: refactor: cache whole Room
object in Event
* src/fosdem.sql, src/gui/tabcontainer.cpp, src/mvc/room.h,
src/sql/schedulexmlparser.cpp: store room map in database
show it if it's available, otherwise show a warning set proper
values in default database new rooms imported as without maps
* src/fosdem.sql, src/gui/conferenceeditor.cpp,
src/mvc/conference.cpp, src/mvc/conference.h,
src/sql/sqlengine.cpp, src/sql/sqlengine.h: store path to
conference map in database
path stored as additional field in conference table if it's null
or empty, "Show map" button is not shown if existing database
does not have the field, it will be automatically added
2010-05-04 kirilma
* src/gui/conferenceeditor.cpp, src/gui/conferenceeditor.ui,
src/gui/settingsdialog.cpp, src/gui/settingsdialog.ui: UI tune:
use buttonBox instead of single buttons to comply with platform
conventions
maemo5 does not print "Cancel" buttons, and names "OK"
differently just use buttonBox, and it will behave properly at
each platform
2010-04-23 kirilma
* src/gui/conferenceeditor.cpp, src/gui/conferenceeditor.h,
src/gui/conferenceeditor.ui, src/gui/mainwindow.cpp,
src/gui/mainwindow.h: restore viewing of conference map
* src/gui/conferenceeditor.cpp, src/gui/urlinputdialog.ui: minor UI
fixes
fix size of UrlInputDialog restore [remove] button at the same
button as [add]
2010-04-22 kirilma
* src/gui/importschedulewidget.cpp, src/gui/importschedulewidget.h,
src/gui/importschedulewidget.ui, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/sql/schedulexmlparser.cpp,
src/sql/schedulexmlparser.h: remove obsoleted code
also fix some types
* src/gui/mainwindow.cpp, src/gui/mainwindow.h: optimization
* src/gui/conferenceeditor.cpp, src/gui/conferenceeditor.ui: fine
tune geometry to look nicer
* AUTHORS, debian/copyright: add authors for files
* src/gui/conferenceeditor.cpp, src/gui/conferenceeditor.h,
src/gui/conferenceeditor.ui, src/gui/gui.pro,
src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/gui/urlinputdialog.cpp,
src/gui/urlinputdialog.h, src/gui/urlinputdialog.ui,
src/icons.qrc, src/icons/add.png, src/icons/reload.png,
src/icons/remove.png, src/mvc/conference.h,
src/mvc/conferencemodel.cpp, src/mvc/conferencemodel.h,
src/mvc/mvc.pro, src/sql/schedulexmlparser.cpp,
src/sql/schedulexmlparser.h: reworked UI for conference editing
underlying representation of conference list is also changed
* src/sql/schedulexmlparser.h: CC: fix endlines
2010-04-16 kirilma
* src/app/app.pro, src/app/application.cpp,
src/gui/errormessage.cpp, src/gui/errormessage.h,
src/gui/gui.pro, src/gui/importschedulewidget.cpp,
src/sql/schedulexmlparser.cpp: use visible notifications of
errors
also early detect parsing errors
2010-04-15 kirilma
* src/gui/importschedulewidget.cpp,
src/gui/importschedulewidget.ui: make label shorter to place all
required buttons
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/tabcontainer.cpp, src/gui/tabcontainer.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h: fix deletion of
last conference
implement for cleaning all views in the tabs clean the models
when no active conference found fix cleaning model and signalling
views
* src/gui/importschedulewidget.cpp, src/gui/importschedulewidget.h,
src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/mvc/conference.cpp, src/mvc/conference.h,
src/sql/sqlengine.cpp, src/sql/sqlengine.h: implement deleting a
conference
pass event about it to mainwindow to update select control fix
Conference::activeConference() to work when first conference is
removed
* src/gui/importschedulewidget.cpp, src/gui/importschedulewidget.h,
src/gui/importschedulewidget.ui, src/mvc/conference.h: add
buttons for refreshm new url and delete and partly implement
corresponding actions
also changed Online -> Refresh delete action is not implemented
yet
* src/fosdem.sql, src/gui/importschedulewidget.cpp,
src/gui/importschedulewidget.h, src/mvc/conference.cpp,
src/mvc/conference.h, src/sql/schedulexmlparser.cpp,
src/sql/schedulexmlparser.h, src/sql/sqlengine.cpp: store URL's
for conferences
* use it at update * let user update the url before request
* src/gui/importschedulewidget.cpp,
src/gui/importschedulewidget.ui, src/sql/sqlengine.cpp,
src/sql/sqlengine.h: remove unused code
* src/fosdem.sql: fix references in SQL
2010-04-14 kirilma
* src/gui/about.ui, src/gui/alarmdialog.ui,
src/gui/conflictsdialog.ui, src/gui/daynavigatorwidget.ui,
src/gui/eventdialog.ui, src/gui/importschedulewidget.ui,
src/gui/mainwindow.ui, src/gui/mapwindow.ui,
src/gui/searchhead.ui, src/gui/settingsdialog.ui: save output
from updater QT designer
update all ui files to the output format of the new Qt Designer
(version: 4.5.3really4.5.2-0ubuntu1) to avoid unrelated changes
in SCM later
2010-04-13 kirilma
* src/gui/gui.pro, src/gui/tabwidget.cpp, src/gui/tabwidget.h:
remove unused class TabWidget
* src/gui/gui.pro, src/gui/importschedulewidget.cpp,
src/gui/importschedulewidget.h, src/gui/importschedulewidget.ui,
src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/gui/proxysettingsdialog.cpp,
src/gui/proxysettingsdialog.h, src/gui/proxysettingsdialog.ui,
src/gui/settingsdialog.cpp, src/gui/settingsdialog.h,
src/gui/settingsdialog.ui: move Settings and About to Window Menu
* remove Setting and About controls from widgets * make instead a
window menus with the corresponding actions * rename "Proxy
settings" to "Settings", placing the proxy button in a control
group
2010-04-12 kirilma
* src/app/app.pro: build fix at maemo
force order of computation some versions of qmake-qt4 require it
* src/fosdem.sql: remove ON CONFLICE REPLACE for events
* src/app/app.pro, src/fosdem.sql, src/fosdem.sqlite: generate
default database instead of using binary one
* src/sql/sqlengine.cpp: fix event insert or update
* add error reporting for queries * actually run check query *
properly get conference_is from event * fix checking of non-empty
result * fix insert query
* src/app/app.pro, src/app/application.cpp, src/app/application.h,
src/app/main.cpp: catch exceptions which leak outside of event
handlers
If we do not do this, QT will exit from event loop.
2010-04-09 kirilma
* src/sql/sqlengine.cpp: use update for events when they are
already exists
also use only parameters substitution for these queries
* src/sql/schedulexmlparser.cpp, src/sql/sqlengine.cpp,
src/sql/sqlengine.h: use transactions to make import faster
2010-03-03 uzakmat
* data/maemo/fosdem-schedule.desktop, debian/changelog,
src/gui/about.ui: Preparing for release 0.4.1
2010-03-03 timkoma
* src/alarm/alarm.cpp, src/mvc/event.cpp, src/sql/sqlengine.cpp:
UTC/LocalTime fix for import conference XML, DB queries for
multiple conferences fixes
2010-02-05 timkoma
* src/fosdem.sqlite, src/sql/sqlengine.cpp: fix for import - ON
CONFLICT REPLACE
2010-02-05 uzakmat
* data/maemo/fosdem-schedule.desktop, debian/changelog,
src/alarm/alarm.cpp, src/gui/about.ui: alarm UTC/localtime fix
2010-02-03 uzakmat
* INSTALL: addition of Diablo specific installation instructions in
INSTALL
* data/Makefile, data/maemo/fosdem-schedule.desktop: installation
of 40x40 icons enabled because of Diablo
* NEWS, debian/changelog, src/gui/about.ui: release information
added for release 0.3
2010-02-03 timkoma
* src/mvc/event.cpp, src/mvc/event.h: performance improvement for
Events
* src/mvc/event.cpp, src/mvc/event.h: performance improvement for
load persons
2010-02-02 uzakmat
* NEWS: NEWS file update
* src/alarm/alarm.cpp, src/alarm/alarm.h, src/alarm/calendar.cpp,
src/alarm/calendar.h, src/app/alarmdbus.cpp, src/app/alarmdbus.h,
src/app/alarmdbusadaptor.cpp, src/app/alarmdbusadaptorp.h,
src/app/appsettings.cpp, src/app/appsettings.h, src/app/main.cpp,
src/gui/alarmdialog.cpp, src/gui/alarmdialog.h,
src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/conflictsdialog.cpp,
src/gui/conflictsdialog.h, src/gui/daynavigatorwidget.cpp,
src/gui/daynavigatorwidget.h, src/gui/dayviewtabcontainer.cpp,
src/gui/dayviewtabcontainer.h, src/gui/eventdialog.cpp,
src/gui/eventdialog.h, src/gui/favtabcontainer.cpp,
src/gui/favtabcontainer.h, src/gui/importschedulewidget.cpp,
src/gui/importschedulewidget.h, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/mapwindow.cpp, src/gui/mapwindow.h,
src/gui/nowtabcontainer.cpp, src/gui/nowtabcontainer.h,
src/gui/proxysettingsdialog.cpp, src/gui/proxysettingsdialog.h,
src/gui/roomstabcontainer.cpp, src/gui/roomstabcontainer.h,
src/gui/searchhead.cpp, src/gui/searchhead.h,
src/gui/searchtabcontainer.cpp, src/gui/searchtabcontainer.h,
src/gui/tabcontainer.cpp, src/gui/tabcontainer.h,
src/gui/tabwidget.cpp, src/gui/tabwidget.h,
src/gui/trackstabcontainer.cpp, src/gui/trackstabcontainer.h,
src/mvc/conference.cpp, src/mvc/conference.h,
src/mvc/delegate.cpp, src/mvc/delegate.h, src/mvc/event.cpp,
src/mvc/event.h, src/mvc/eventmodel.cpp, src/mvc/eventmodel.h,
src/mvc/room.cpp, src/mvc/room.h, src/mvc/track.cpp,
src/mvc/track.h, src/mvc/treeview.cpp, src/mvc/treeview.h,
src/orm/ormrecord.h, src/sql/schedulexmlparser.cpp,
src/sql/schedulexmlparser.h, src/sql/sqlengine.cpp,
src/sql/sqlengine.h, src/test/main.cpp,
src/test/mvc/eventtest.cpp, src/test/mvc/eventtest.h: A header
with the proper copyright/lincence statement was added into each
source/header file.
2010-02-02 pavelpa
* src/alarm/alarm.cpp: corrected 'exec' path when adding an alarm
2010-02-02 uzakmat
* NEWS: NEWS file updated
* AUTHORS, INSTALL, README, debian/changelog: README, INSTALL,
AUTHORS - filled in
2010-02-02 hanzes
* src/alarm/alarm.cpp, src/app/alarmdbus.h,
src/app/alarmdbusadaptor.cpp, src/app/alarmdbusadaptorp.h: Alarm
modifications
2010-02-01 hanzes
* src/mvc/treeview.cpp: Alarm dbus connection added
* src/alarm/alarm.cpp, src/alarm/alarm.pro,
src/alarm/alarmdbus.cpp, src/alarm/alarmdbus.h,
src/alarm/alarmdbusadaptor.cpp, src/alarm/alarmdbusadaptorp.h,
src/app/alarmdbus.cpp, src/app/alarmdbus.h,
src/app/alarmdbusadaptor.cpp, src/app/alarmdbusadaptorp.h,
src/app/app.pro, src/app/main.cpp, src/mvc/mvc.pro,
src/mvc/treeview.cpp, src/src.pro: Alarm dbus connection added
2010-02-01 pavelpa
* src/mvc/delegate.cpp: gradient for treeview items
* src/sql/sqlengine.cpp: changed permissions for the db - TODO:
check it on the device
* src/app/main.cpp, src/src.pro: compilation error fix
* src/app/main.cpp: compilation error fix
* src/gui/mapwindow.cpp: N810 changes: maximized 'map' dialog
2010-02-01 hanzes
* src/alarm/alarm.cpp, src/alarm/alarm.pro,
src/alarm/alarmdbus.cpp, src/alarm/alarmdbus.h,
src/alarm/alarmdbusadaptor.cpp, src/alarm/alarmdbusadaptorp.h,
src/app/app.pro, src/app/main.cpp, src/gui/gui.pro,
src/mvc/treeview.cpp, src/src.pro: Alarm dbus connection added
2010-02-01 pavelpa
* src/gui/importschedulewidget.ui, src/icons.qrc,
src/icons/settings.png: added 'settings' icon for setting-up
proxy(network connection)
* src/global.pri, src/gui/mainwindow.cpp, src/gui/tabcontainer.cpp,
src/orm/ormrecord.h: GUI changes for N810 device
2010-02-01 uzakmat
* debian/control, debian/copyright: debian/control - Build-Depends
section set
2010-02-01 pavelpa
* src/app/app.pro, src/app/main.cpp, src/db.qrc, src/fosdem.sqlite,
src/sql/sqlengine.cpp: created resource which contains parsed
schedule, so the user doesn't have to parse it by himself
2010-02-01 uzakmat
* src/alarm/alarm.cpp: alarm - example of dbus binding functional
2010-02-01 pavelpa
* src/schedule.en.xml: updated schedule.en.xml to the newest
version
2010-01-30 pavelpa
* src/gui/about.ui, src/gui/eventdialog.ui, src/icons.qrc,
src/icons/brain-alone.png: changed fosdem icon in about dialog to
brain-alone icon
* src/gui/about.ui: changed copyright string
* src/mvc/delegate.cpp: number of events/alarms/favs is
bottom-aligned to the bottom of the icons
2010-01-29 pavelpa
* src/app/appsettings.cpp, src/app/appsettings.h,
src/gui/mainwindow.cpp: if the application is run for first time,
network connection is set to Direct connection
2010-01-29 uzakmat
* src/alarm/alarm.cpp: initial binding of alarm to a DBus call
2010-01-29 pavelpa
* src/app/app.pro, src/app/appsettings.cpp, src/app/appsettings.h,
src/gui/gui.pro, src/gui/importschedulewidget.cpp,
src/gui/importschedulewidget.h, src/gui/importschedulewidget.ui,
src/gui/mainwindow.cpp, src/gui/proxysettingsdialog.cpp,
src/gui/proxysettingsdialog.h, src/gui/proxysettingsdialog.ui:
implemented 'proxy settings' dialog - user can secify proxy for
network communication
* src/app/app.pro, src/gui/gui.pro,
src/gui/importschedulewidget.cpp, src/gui/importschedulewidget.h,
src/gui/mainwindow.cpp: implemented importing the schedule from
the Internet - usded url: http://fosdem.org/2010/schedule/xml -
todo: hard-coded PROXY has to be fixed (add proxy settings
dialog)
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/mvc/treeview.cpp: possible to have
multiple conferences in the DB - possible to switch among them -
conference schedules have to follow FOSDEM conference xml
structure - 'select Conference' bar is visible only if there are
more than one conference available
* src/gui/about.ui, src/gui/importschedulewidget.cpp,
src/gui/importschedulewidget.ui: modified 'about' dialog -
changed "Qt FOSDEM" -> "FOSDEM Schedule"
2010-01-28 pavelpa
* src/gui/daynavigatorwidget.cpp, src/gui/daynavigatorwidget.h,
src/gui/searchtabcontainer.cpp, src/mvc/event.cpp,
src/sql/sqlengine.cpp: search fixed - only the dates (range)
which contain at least one event are selectable - if there is
only one event at a specified date - user can't switch to the
next/prev date - if search gives no results - a message is
displayed to inform user about it
* src/gui/conflictsdialog.cpp, src/gui/conflictsdialog.h: forgotten
in previous commit
* src/gui/eventdialog.cpp, src/gui/eventdialog.h,
src/gui/favtabcontainer.cpp, src/gui/favtabcontainer.h,
src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/tabcontainer.cpp, src/gui/tabcontainer.h,
src/mvc/treeview.cpp, src/mvc/treeview.h: some performance
optimizations - favourities reloaded only if they have really
changed - otherwise only event in the question is updated
* src/mvc/event.cpp: fixed 'conflicts' constrains
* src/mvc/event.cpp: 'now' events - displayed real now events, not
just the testing ones
2010-01-28 uzakmat
* src/app/app.pro: binary name changed to fosdem-schedule
2010-01-28 pavelpa
* src/mvc/event.cpp: changed conditions for conflicts
* src/gui/eventdialog.cpp, src/mvc/delegate.cpp, src/mvc/event.cpp,
src/mvc/event.h, src/mvc/treeview.cpp, src/sql/sqlengine.cpp:
some 'delegate' drawing optimizations - removed EVENT_CONFLICT
table - used one SQL SELECT instead
* src/mvc/treeview.cpp: conflicts updated correctly - TODO: needs
to do some drawing optimizations
2010-01-28 uzakmat
* data/Makefile, data/maemo/fosdem-schedule.desktop,
data/maemo/fosdem.desktop, debian/control, fosdem-maemo.pro,
fosdem-schedule.pro: package details updated to reflect the
binary name change to fosdem-maemo
2010-01-28 pavelpa
* src/gui/mainwindow.cpp, src/gui/searchhead.ui: if no conference
is in the DB, the user is automatically navigated to the
conference tab, so he can import one
* src/gui/mainwindow.cpp, src/gui/searchtabcontainer.cpp,
src/gui/searchtabcontainer.h, src/gui/tabcontainer.cpp: search
tab - header is hidden in case no conf exists in the DB
* src/gui/eventdialog.ui: event dialog GUI refactoring
* src/gui/about.ui, src/gui/mainwindow.ui: about dialog - added GNU
GPL v2 notice
* src/gui/daynavigatorwidget.cpp, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/mainwindow.ui,
src/gui/tabwidget.cpp: conference tab header is hidden if there
isn't active conference - handled some warnings
2010-01-27 pavelpa
* src/gui/mainwindow.ui: tabs' order changed
* src/gui/mainwindow.cpp, src/gui/nowtabcontainer.h: 'nowTab'
updated/loaded when application starts
* src/gui/nowtabcontainer.cpp, src/gui/nowtabcontainer.h: 'nowTab'
list is automatically expanded
* src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/tabcontainer.h:
'conflict' list is automatically expanded
* src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/conflictsdialog.cpp,
src/gui/conflictsdialog.h, src/gui/favtabcontainer.cpp,
src/gui/tabcontainer.cpp, src/mvc/event.cpp, src/mvc/event.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h: 'conflict' dialog
now contains list of events in conflict with given eventId
* src/gui/mainwindow.cpp: fixed 'copy-paste' error
* src/gui/conflictdialogcontainer.cpp,
src/gui/conflictdialogcontainer.h, src/gui/conflictsdialog.cpp,
src/gui/conflictsdialog.h, src/gui/conflictsdialog.ui,
src/gui/daynavigatorwidget.cpp, src/gui/gui.pro,
src/gui/mainwindow.ui, src/gui/searchtabcontainer.cpp,
src/gui/tabcontainer.cpp, src/gui/tabcontainer.h,
src/mvc/treeview.cpp, src/mvc/treeview.h, src/orm/ormrecord.h:
implemented 'conflicts' dialog - displays rooms instead of
conflicts for now - needs to implement additional methods in
Event, ...
* src/gui/eventdialog.cpp: 'alarm' button is hidden for not MAEMO
2010-01-27 timkoma
* src/gui/searchtabcontainer.cpp, src/gui/tabcontainer.ui,
src/orm/ormrecord.h: search fix
2010-01-27 pavelpa
* src/gui/favtabcontainer.h, src/gui/nowtabcontainer.cpp,
src/gui/nowtabcontainer.h, src/gui/roomstabcontainer.cpp,
src/gui/roomstabcontainer.h, src/gui/trackstabcontainer.h,
src/mvc/room.cpp, src/mvc/room.h, src/mvc/track.cpp,
src/mvc/track.h: removed headers from *.h and *.cpp
* src/app/app.pro, src/app/appsettings.cpp, src/app/appsettings.h,
src/gui/alarmdialog.cpp, src/gui/eventdialog.cpp,
src/gui/favtabcontainer.cpp, src/gui/mainwindow.cpp,
src/gui/searchtabcontainer.cpp, src/gui/tabcontainer.cpp,
src/gui/tabcontainer.h, src/mvc/conference.cpp,
src/mvc/conference.h, src/mvc/eventmodel.cpp,
src/sql/sqlengine.cpp: removed appsettings - created 'active'
column in 'conference' table
2010-01-27 timkoma
* src/app/app.pro, src/gui/dayviewtabcontainer.cpp,
src/gui/dayviewtabcontainer.h, src/gui/favtabcontainer.cpp,
src/gui/favtabcontainer.h, src/gui/gui.pro,
src/gui/mainwindow.cpp, src/gui/mainwindow.ui,
src/gui/nowtabcontainer.cpp, src/gui/nowtabcontainer.h,
src/gui/roomstabcontainer.cpp, src/gui/roomstabcontainer.h,
src/gui/searchhead.cpp, src/gui/searchhead.h,
src/gui/searchhead.ui, src/gui/searchtabcontainer.cpp,
src/gui/searchtabcontainer.h, src/gui/tabcontainer.cpp,
src/gui/tabcontainer.h, src/gui/tabcontainer.ui,
src/gui/trackstabcontainer.cpp, src/gui/trackstabcontainer.h:
refactoring of the TABS
2010-01-27 pavelpa
* src/gui/about.ui: modified 'about application' dialog
* src/gui/eventdialog.cpp, src/mvc/event.cpp, src/mvc/event.h:
implemented 'links' in Event/EventDialog
* src/gui/eventdialog.cpp, src/gui/eventdialog.h,
src/gui/eventdialog.ui: refactored Event 'details' dialog - TODO:
implement 'links' method(s) in Event and use it in the dialog
* src/gui/eventdialog.cpp, src/gui/eventdialog.h,
src/gui/eventdialog.ui, src/gui/tabcontainer.cpp: Event 'details'
dialog now contains also 'favourite' and 'alarm' buttons, so the
user can set/unset the property directly from the dialog
* src/gui/tabwidget.cpp: 'info' icon scaled to height of tabBar
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/gui/tabcontainer.cpp,
src/gui/tabcontainer.h, src/gui/tabcontainer.ui: 'search' tab
functionality moved to 'tabcontainer'
* src/mvc/delegate.cpp, src/mvc/delegate.h, src/mvc/event.cpp,
src/mvc/event.h, src/mvc/treeview.cpp, src/sql/sqlengine.cpp:
'conflicts' modifications - preparing for the dialog showing also
list of events in the conflict - created 'EVENT_CONFLICT' for
flaging events in conflict state - TODO: not finished
2010-01-26 pavelpa
* src/icons.qrc, src/icons/exclamation-iconOff.png,
src/icons/exclamation-iconOn.png, src/icons/exclamation.png,
src/mvc/delegate.cpp, src/mvc/delegate.h, src/mvc/treeview.cpp:
conflicts refactoring - has to be finished
* src/app/main.cpp, src/gui/importschedulewidget.cpp,
src/gui/importschedulewidget.h, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/sql/schedulexmlparser.cpp,
src/sql/schedulexmlparser.h, src/sql/sqlengine.h: SqlEngine made
STATIC
* src/app/app.pro, src/app/main.cpp, src/gui/gui.pro,
src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/gui/tabcontainer.cpp,
src/gui/tabcontainer.h, src/gui/tabcontainer.ui,
src/sql/sqlengine.h: implemented 'tab container' widget, which
groups daynavigator with treeview - moved functionality from
mainwindow to tabcontainer - TODO: 'search' tab not done yet
2010-01-26 uzakmat
* AUTHORS, COPYING, Changelog, INSTALL, NEWS, README: Addition of
files required by the GNU coding standard
2010-01-26 timkoma
* src/sql/sqlengine.cpp: unique constraints added into sql
2010-01-26 pavelpa
* src/gui/mainwindow.ui: just removed unused button on 'day view'
tab
* src/gui/importschedulewidget.cpp, src/gui/importschedulewidget.h,
src/gui/importschedulewidget.ui, src/gui/mainwindow.cpp:
reimplemented 'import schedule'
2010-01-26 timkoma
* src/gui/mainwindow.cpp, src/gui/mainwindow.ui: reload favourites
2010-01-26 uzakmat
* src/alarm/alarm.cpp: Alarm implementation modified
2010-01-26 pavelpa
* src/gui/mainwindow.cpp, src/gui/mainwindow.ui: removed 'MainMenu'
bar from MainWindow - schedule is imported via 'conference' tab -
about app is launched when user clicks 'info' button/icon
* src/gui/gui.pro, src/gui/importscheduledialog.cpp,
src/gui/importscheduledialog.h, src/gui/importscheduledialog.ui,
src/gui/importschedulewidget.cpp, src/gui/importschedulewidget.h,
src/gui/importschedulewidget.ui, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/mainwindow.ui,
src/sql/schedulexmlparser.cpp, src/sql/schedulexmlparser.h:
import schedule dialog - changed to widget - moved to
'conference' tab
2010-01-26 timkoma
* src/gui/mainwindow.cpp, src/gui/mainwindow.ui, src/icons.qrc,
src/icons/search.png: search done
2010-01-26 hanzes
* src/gui/mainwindow.cpp, src/gui/mainwindow.h: NowTreeView refresh
modified
2010-01-26 pavelpa
* src/gui/mainwindow.ui: "conference" tab - GUI modifications
* src/gui/mainwindow.cpp, src/icons.qrc, src/icons/info.png: About
Application dialog is opened when "info" icon is clicked
2010-01-26 hanzes
* src/alarm/calendar.cpp, src/alarm/calendar.h: Useless calendar
class
2010-01-26 pavelpa
* src/gui/gui.pro: forgotten in last CI
* src/gui/mainwindow.ui, src/gui/tabwidget.cpp,
src/gui/tabwidget.h: new TabWidget - contains "info" icon/button
to show "AboutApplication" dialog
2010-01-25 timkoma
* src/gui/mainwindow.ui: search update
2010-01-25 korrco
* src/mvc/room.cpp: room view added - finished
* src/gui/mainwindow.cpp: room view added - finished
2010-01-25 timkoma
* src/gui/mainwindow.cpp, src/gui/mainwindow.ui,
src/sql/sqlengine.cpp, src/sql/sqlengine.h: search upgrade
2010-01-25 korrco
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/mvc/event.cpp, src/mvc/event.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h, src/mvc/mvc.pro,
src/mvc/room.cpp, src/mvc/room.h, src/mvc/track.cpp,
src/mvc/track.h: room view added - need to test it
2010-01-25 pavelpa
* src/mvc/eventmodel.cpp: updated also groupings item (event parent
item) if the user clicks eg. favourite/alarm icon (changes event
data)
* src/gui/eventdialog.cpp, src/gui/eventdialog.h,
src/gui/eventdialog.ui: GUI work on Event Details dialog
2010-01-25 uzakmat
* data/Makefile, debian/changelog, debian/control, debian/postinst,
debian/postrm, debian/rules: postinst and postrm scripts added
into the debian tree
2010-01-25 timkoma
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/mvc/event.cpp, src/orm/ormrecord.h,
src/sql/sqlengine.cpp: search update
2010-01-25 korrco
* src/gui: project synchronisation
2010-01-22 fortefr
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/mvc/delegate.cpp: Conference map
2010-01-22 pavelpa
* src/gui/mainwindow.cpp: fixed problem with storing conference ID
to AppSettings
* src/gui/daynavigatorwidget.cpp, src/gui/daynavigatorwidget.h,
src/gui/daynavigatorwidget.ui, src/gui/mainwindow.ui: day
navigator widget changes - changed from Horizontal to Vertical
2010-01-22 korrco
* src/gui/alarmdialog.cpp, src/gui/mainwindow.cpp: room.h and .cpp
removed
* src/mvc/mvc.pro: room.h and .cpp removed
* src/mvc/delegate.cpp, src/mvc/event.cpp, src/mvc/event.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h, src/mvc/mvc.pro,
src/mvc/track.cpp, src/mvc/track.h, src/sql/sqlengine.cpp:
caching removed
* src/gui/mainwindow.cpp: caching removed
2010-01-22 pavelpa
* src/gui/mainwindow.cpp: sanity check for consitency of confId in
AppSettings and the DB
* src/app/appsettings.cpp, src/app/appsettings.h: forgotten
appsettings files
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/mvc/event.cpp, src/mvc/event.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h,
src/mvc/treeview.cpp, src/mvc/treeview.h: implemented NOW tab
2010-01-21 pavelpa
* src/gui/importscheduledialog.cpp,
src/gui/importscheduledialog.ui, src/sql/schedulexmlparser.cpp,
src/sql/schedulexmlparser.h: modifications to import-schedule
dialog - closed automatically after parsing/importing schedule
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h, src/mvc/mvc.pro,
src/mvc/treeview.cpp, src/mvc/treeview.h: EventModel signaling
changed - if some of the data (favourite,alarm) has changed on
the event, signal 'eventHasChanged' is emitted - all treeViews
(eg. DayView, FavsView, TracksView, ...) have to listen on this
signal Only favouritiesView is 'reset' when current tab is
changed in mainWindow - 'cause time groupings have to be
recreated, since favs may have changed
* src/gui/mainwindow.ui, src/sql/schedulexmlparser.cpp,
src/sql/sql.pro, src/sql/sqlengine.cpp: check for existence of
conference before inserting it into DB
* src/app/app.pro, src/gui/alarmdialog.cpp,
src/gui/eventdialog.cpp, src/gui/gui.pro, src/gui/mainwindow.cpp,
src/gui/mainwindow.ui, src/sql/schedulexmlparser.cpp: added
'Conference' tab - to list conference details - implemented
AppSettings for storing Application settings - stored conference
ID
* src/app/app.pro, src/app/main.cpp, src/schedule.qrc: removed
schedule resource file, which was used for testing - import
schedule dialog replaces it's functionality
2010-01-21 fortefr
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/mvc/delegate.cpp, src/mvc/delegate.h, src/mvc/treeview.cpp,
src/mvc/treeview.h: Warning handling
2010-01-21 pavelpa
* src/gui/importscheduledialog.cpp, src/gui/importscheduledialog.h,
src/gui/importscheduledialog.ui: forgotten Import Schedule Dialog
files
2010-01-21 uzakmat
* data/26x26/fosdem.png, data/40x40/fosdem.png,
data/48x48/fosdem.png, data/64x64/fosdem.png, data/Makefile,
data/maemo/fosdem.desktop, debian/changelog, debian/control,
debian/files, debian/rules, src/app/app.pro: New installation
path for the binary, Maemo optification added into debian/rules,
new icons
2010-01-21 pavelpa
* src/gui/gui.pro, src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/orm/ormrecord.h, src/sql/sqlengine.cpp: import/search
schedule dialog implemented
2010-01-21 timkoma
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/mvc/event.cpp, src/mvc/eventmodel.cpp,
src/mvc/eventmodel.h, src/orm/ormrecord.h, src/sql/sqlengine.cpp:
update for the search
2010-01-21 fortefr
* src/mvc/delegate.cpp: Time conflict fix
* src/mvc/delegate.cpp, src/mvc/delegate.h: Time conflict warning
2010-01-21 korrco
* src/gui/alarmdialog.cpp, src/gui/mainwindow.cpp: exception
handling changed
2010-01-21 pavelpa
* src/mvc/event.cpp, src/mvc/event.h, src/orm/ormrecord.h,
src/sql/sqlengine.cpp: combined EVENT and VIRTUAL_EVENT =>
'EVENT' now - Maemo sqlite doesn't support Full-Text-Search
2010-01-21 korrco
* src/gui/mainwindow.cpp: updateTab refactored
* src/mvc/eventmodel.cpp: activities tab implemented
* src/mvc/track.cpp, src/mvc/track.h: activities tab implemented
* src/gui/mainwindow.cpp, src/mvc/eventmodel.cpp,
src/orm/ormrecord.h, src/sql/schedulexmlparser.cpp,
src/sql/sql.pro, src/sql/sqlengine.cpp: activities tab
implemented
2010-01-21 timkoma
* src/gui/mainwindow.cpp, src/gui/mainwindow.ui, src/mvc/event.cpp,
src/mvc/event.h, src/mvc/eventmodel.cpp, src/mvc/eventmodel.h,
src/orm/ormrecord.h, src/sql/sqlengine.cpp, src/sql/sqlengine.h:
first working version of the search
2010-01-21 pavelpa
* src/gui/eventdialog.cpp, src/gui/eventdialog.ui: event dialog -
details about the Event is displayed in FullScreen mode
* src/gui/mapwindow.cpp: compilation error "linux" fix - caused by
previous commit
* src/gui/mapwindow.cpp, src/gui/mapwindow.ui: map is displayed in
FullScreen mode
2010-01-20 pavelpa
* src/mvc/treeview.cpp, src/mvc/treeview.h: group items
(time/track/...) are expanded on single-click
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/mvc/activity.cpp, src/mvc/activity.h,
src/mvc/delegate.cpp, src/mvc/event.cpp, src/mvc/event.h,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h, src/mvc/mvc.pro,
src/mvc/track.cpp, src/mvc/track.h, src/sql/sqlengine.cpp,
src/test/mvc/eventtest.cpp: changed 'Activity' -> 'Track'
* src/sql/sqlengine.cpp: parsing activity from xml - 'track' from
xml schedule is treated as an activity
* src/gui/eventdialog.cpp, src/gui/eventdialog.ui: event dialog
changes - changed font/background colors - title occupies more
lines if it doesn't fit in one line
* src/gui/alarmdialog.cpp, src/gui/alarmdialog.ui: alarm dialog
changes - displayed additional Event's details - autoresizing
title (if it doesn't fit in one line)
* src/gui/alarmdialog.ui, src/gui/mainwindow.cpp: updated alarm
dialog
2010-01-20 uzakmat
* data/Makefile: Makefile reverted as it was overwritten
accidentally
2010-01-20 pavelpa
* src/gui/alarmdialog.cpp, src/gui/mainwindow.cpp: implemented some
error handling
* src/mvc/delegate.cpp, src/mvc/treeview.cpp: alarm icon/stuff is
relevant for MAEMO only - used "MAEMO" define for conditional
compilation
* src/alarm/alarm.cpp, src/app/main.cpp, src/gui/alarmdialog.cpp,
src/gui/alarmdialog.ui, src/gui/eventdialog.cpp,
src/gui/eventdialog.h, src/gui/mainwindow.cpp,
src/gui/mainwindow.h: MAEMO: work on alarm - snooze alarm -
cancel alarm - run application which automatically display Event
dialog for given Event ID
2010-01-20 fortefr
* src/icons.qrc, src/icons/exclamation-iconOff.png,
src/icons/exclamation-iconOn.png, src/mvc/delegate.cpp,
src/mvc/delegate.h, src/mvc/event.h: Warning icon (uncompleted)
2010-01-20 timkoma
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/sql/sqlengine.cpp,
src/sql/sqlengine.h: temp commit for search tab
2010-01-20 pavelpa
* src/app/app.pro, src/mvc/delegate.cpp: display event details in
the treeView
2010-01-20 korrco
* src/gui/mainwindow.cpp, src/mvc/eventmodel.cpp,
src/mvc/eventmodel.h: activities viewed ordered by activity id
and start time
2010-01-20 fortefr
* data/Makefile, src/app/app.pro, src/icons.qrc,
src/mvc/delegate.cpp: Big icons fix 2
* src/icons/alarm-off.png, src/icons/alarm-offBig.png,
src/icons/alarm-on.png, src/icons/alarm-onBig.png,
src/icons/compass.png, src/icons/compassBig.png,
src/icons/favourite-off.png, src/icons/favourite-offBig.png,
src/icons/favourite-on.png, src/icons/favourite-onBig.png: Big
icons
D icons/favourite-off.png D icons/favourite-on.png AM
icons/favourite-offBig.png AM icons/favourite-onBig.png D
icons/alarm-off.png D icons/compass.png D icons/alarm-on.png AM
icons/alarm-offBig.png AM icons/compassBig.png AM
icons/alarm-onBig.png
2010-01-20 korrco
* src/mvc/activity.cpp, src/mvc/activity.h: static allocation
instead of dynamic added when creating activity map
2010-01-20 pavelpa
* src/mvc/delegate.cpp: some drawing modifications
* src/schedule.en.xml: the most recent FOSDEM 2010 schedule
http://fosdem.org/schedule/xml
2010-01-19 pavelpa
* src/mvc/mvc.pro: pali, nerob bordel
* src/gui/eventdialog.cpp, src/gui/eventdialog.ui, src/src.pro:
changed abstract/description/scrollbars color in eventdialog
2010-01-19 korrco
* src/gui/mainwindow.cpp, src/mvc/activity.cpp, src/mvc/activity.h,
src/mvc/eventmodel.cpp, src/mvc/mvc.pro: support for view
activities with their names added
2010-01-19 pavelpa
* src/gui/eventdialog.cpp, src/gui/eventdialog.ui,
src/gui/mainwindow.ui, src/mvc/event.cpp, src/mvc/event.h:
event-dialog - displayed persons/presenters names - implemented
Event::persons() method to get persons names associated with the
given event ID
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/mvc/treeview.cpp, src/mvc/treeview.h: single-click is used to
open event dialog
* src/gui/mapwindow.cpp, src/gui/mapwindow.h: diplayed map is
closed by single-click, instead of double-click
* src/alarm/alarm.h, src/gui/alarmdialog.cpp,
src/gui/alarmdialog.h, src/sql/sqlengine.cpp, src/src.pro: work
on alarm
* src/alarm/alarm.cpp, src/app/app.pro, src/app/main.cpp,
src/gui/gui.pro, src/mvc/mvc.pro, src/mvc/treeview.cpp,
src/schedule.en.xml: work on alarm
2010-01-19 korrco
* src/gui: minimal size for tabs set
2010-01-19 uzakmat
* data, data/26x26, data/26x26/fosdem.png, data/40x40,
data/40x40/fosdem.png, data/48x48, data/48x48/fosdem.png,
data/64x64, data/64x64/fosdem.png, data/Makefile, data/maemo,
data/maemo/fosdem.desktop, debian, debian/changelog,
debian/compat, debian/control, debian/copyright, debian/dirs,
debian/docs, debian/files, debian/rules, fosdem-maemo.pro,
src/app/app.pro, src/fosdem.pro, src/src.pro: Addition of files
required for a Debian package and Maemo specific files
2010-01-19 fortefr
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui: Favourites dayNavigator
2010-01-19 pavelpa
* src/app/app.pro, src/app/main.cpp, src/gui/mainwindow.cpp,
src/schedule.qrc: schedule.en.xml is now in resource - for
testing only - will be removed from final application
2010-01-19 korrco
* src/gui/mainwindow.ui: minimal size for tabs set
2010-01-19 fortefr
* src/gui/mainwindow.cpp, src/gui/mainwindow.h: Update tabs 2
-This line, and those below, will be ignored--
M src/gui/mainwindow.cpp M src/gui/mainwindow.h
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui: Automatic tabs update
M src/gui/mainwindow.ui M src/gui/mainwindow.cpp M
src/gui/mainwindow.h
2010-01-19 pavelpa
* src/gui/mainwindow.cpp, src/gui/mapwindow.cpp,
src/gui/mapwindow.h, src/mvc/event.cpp: set MapDialog title
* src/gui/mainwindow.cpp, src/maps.qrc,
src/maps/rooms/not-available.png: handled the case when the map
is not available
* src/gui/mainwindow.cpp, src/mvc/event.cpp, src/mvc/event.h:
map-name to map-path implemented - correct map is displayed
* src/mvc/delegate.cpp: fixed: icons overlapped
2010-01-18 pavelpa
* src/gui/gui.pro, src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mapwindow.cpp, src/gui/mapwindow.h, src/gui/mapwindow.ui,
src/mvc/eventmodel.cpp, src/mvc/treeview.cpp, src/mvc/treeview.h:
started work on displaying map - implemented mapwindow - map is
hard-coded for now TODO: finish getting map path from the event
* src/app/app.pro, src/maps, src/maps.qrc, src/maps/campus.png,
src/maps/rooms, src/maps/rooms/H-WC.png,
src/maps/rooms/aw1105.png, src/maps/rooms/aw1115.png,
src/maps/rooms/aw1117.png, src/maps/rooms/aw1120.png,
src/maps/rooms/aw1121.png, src/maps/rooms/aw1124.png,
src/maps/rooms/aw1125.png, src/maps/rooms/aw1126.png,
src/maps/rooms/chavanne.png, src/maps/rooms/ferrer.png,
src/maps/rooms/guillissen.png, src/maps/rooms/h1301.png,
src/maps/rooms/h1302.png, src/maps/rooms/h1308.png,
src/maps/rooms/h1309.png, src/maps/rooms/h2111.png,
src/maps/rooms/h2213.png, src/maps/rooms/h2214.png,
src/maps/rooms/infodesk.png, src/maps/rooms/janson.png,
src/maps/rooms/lameere.png, src/maps/rooms/thumbs,
src/maps/rooms/thumbs/H-WC.png, src/maps/rooms/thumbs/aw1105.png,
src/maps/rooms/thumbs/aw1115.png,
src/maps/rooms/thumbs/aw1117.png,
src/maps/rooms/thumbs/aw1120.png,
src/maps/rooms/thumbs/aw1121.png,
src/maps/rooms/thumbs/aw1124.png,
src/maps/rooms/thumbs/aw1125.png,
src/maps/rooms/thumbs/aw1126.png,
src/maps/rooms/thumbs/chavanne.png,
src/maps/rooms/thumbs/ferrer.png,
src/maps/rooms/thumbs/guillissen.png,
src/maps/rooms/thumbs/h1301.png, src/maps/rooms/thumbs/h1302.png,
src/maps/rooms/thumbs/h1308.png, src/maps/rooms/thumbs/h1309.png,
src/maps/rooms/thumbs/h2111.png, src/maps/rooms/thumbs/h2213.png,
src/maps/rooms/thumbs/h2214.png,
src/maps/rooms/thumbs/infodesk.png,
src/maps/rooms/thumbs/janson.png,
src/maps/rooms/thumbs/lameere.png, src/maps/rooms/ua2114.png:
added maps
* src/mvc/event.h: pali, nerob bordel
* src/gui/eventdialog.cpp, src/gui/eventdialog.h,
src/gui/eventdialog.ui, src/gui/gui.pro, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/mainwindow.ui: implemented 'Event'
dialog to display relevant 'Event's info
2010-01-18 korrco
* src/mvc/event.cpp, src/mvc/event.h, src/mvc/eventmodel.cpp:
sorting by activity id added
2010-01-18 pavelpa
* src/gui/mainwindow.ui: autoresizing activities treeView
* src/mvc/delegate.cpp, src/mvc/delegate.h: implemented drawing
icons + number of favs/alarms in the corresponding group
2010-01-18 korrco
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/mvc/eventmodel.cpp: grouping by time equation changed - beter
group deviding, also according to favourites
* src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/mvc/eventmodel.cpp, src/orm/ormrecord.h: activities tab
implemented - need to fit gui, functionality works fine
* src/mvc/eventmodel.cpp: activities tab implemented - not finished
yet
* src/gui/daynavigatorwidget.cpp, src/gui/daynavigatorwidget.h,
src/gui/daynavigatorwidget.ui, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/mainwindow.ui,
src/mvc/eventmodel.cpp, src/mvc/eventmodel.h: activities tab
implemented - not finished yet
2010-01-18 pavelpa
* src/alarm/alarm.cpp, src/alarm/alarm.h, src/mvc/delegate.cpp,
src/mvc/event.cpp, src/mvc/event.h, src/mvc/eventmodel.cpp,
src/mvc/treeview.cpp, src/sql/sqlengine.cpp: added 'alarm'
columnt to the 'EVENT' table to signalize that the event
has/hasn't alarm set
2010-01-18 fortefr
* src/gui/mainwindow.cpp, src/gui/mainwindow.h: Favourites fix
2010-01-18 pavelpa
* src/gui/gui.pro: maemo specific compilation fix
2010-01-18 fortefr
* src/fosdem.pro, src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/mvc/event.h, src/mvc/eventmodel.cpp, src/mvc/treeview.h: Fav
table update M trunk/src/gui/mainwindow.h M
trunk/src/gui/mainwindow.cpp M trunk/src/mvc/treeview.h M
trunk/src/mvc/eventmodel.cpp M trunk/src/mvc/event.h M
trunk/src/fosdem.pro
2010-01-18 pavelpa
* src/icons/alarm-off.png, src/icons/favourite-off.png,
src/mvc/delegate.cpp, src/mvc/delegate.h: added GrayScale
versions (inactive/OFF) of the icons
2010-01-18 hanzes
* src/sql/sqlengine.cpp: fixed sqlite statement
2010-01-18 pavelpa
* src/gui/gui.pro: fixed: broken compilation for linux caused by
previous commit
* src/alarm, src/alarm/alarm.cpp, src/alarm/alarm.h,
src/alarm/alarm.pro, src/fosdem.pro, src/gui/alarmdialog.cpp,
src/gui/alarmdialog.h, src/gui/alarmdialog.ui, src/gui/gui.pro:
started work on alarm(libaalarm)
* src/gui/mainwindow.ui, src/sql/sql.pro, src/sql/sqlengine.cpp:
used 'MAEMO' define to create 'non-virtual' 'VIRUAL_EVENT' table
instead of 'virtual' one, only for 'MAEMO' Linux stays untouched
- creates real 'virtual' table for FTS support
2010-01-18 korrco
* src/gui/mainwindow.cpp: current path print added
2010-01-18 fortefr
* src/mvc/event.cpp, src/mvc/event.h, src/mvc/eventmodel.cpp,
src/orm/ormrecord.h, src/sql/sqlengine.cpp: Temporal
virtual_event change
2010-01-18 korrco
* src, src/gui, src/sql: syncing project
2010-01-18 pavelpa
* src/mvc/eventmodel.cpp: fix: segfault - fixes segfault when
switching days in "Day View" - TODO: needs to be verified, 'cause
it looks like it shouldn't work, but it does - when calling
'QAbstractItemModel::removeRows()' it returns false, but it
prevents application from crash(segfault) - possible explanation
is that the timing has changed and so the conditions for the
segfault
* src/gui/mainwindow.ui: added "Quit" to "File" menu
2010-01-17 pavelpa
* src/mvc/eventmodel.cpp, src/mvc/eventmodel.h,
src/mvc/treeview.cpp: implemented method to force 'EventModel'
emit a signal dataChanged() - so 'TreeView' know it has to redraw
items corresponding to chanded indices (range of indeces)
* src/global.pri: created 'global.pri' file, which should cover all
global definition of the project - this file has to be include in
each "*.pro" file, where it's needed - defines "MAEMO" for
handling 'MAEMO' specific code in source files - defines "maemo"
for handling 'MAEMO' specific files in "*.pro" file(s)
* src/mvc/event.cpp: just minor corrections to 'event'
* src/gui/mainwindow.cpp, src/gui/mainwindow.ui, src/mvc/event.cpp,
src/mvc/event.h, src/mvc/eventmodel.cpp, src/mvc/eventmodel.h:
started work on 'favourities' - created tavourities tree view in
the MainWindow 'Favourities' tab - listed some testing 'fav'
events - TODO: list isn't updated dynamically, which means that
the list isn't updated if the user adds/removes an event(s)
to/from the 'favourities' list
* src/mvc/delegate.cpp, src/mvc/event.cpp, src/mvc/event.h,
src/orm/ormrecord.h: implemented JOINing two tables - modified
'ormrecord' to support JOINing two tables - modified 'event'
accordingly, since its items/columns are splitted into two
separate tables
2010-01-16 pavelpa
* src/fosdem.pro, src/mvc/delegate.cpp, src/mvc/delegate.h,
src/mvc/event.cpp, src/mvc/event.h, src/mvc/treeview.cpp,
src/orm/ormrecord.h, src/sql/sqlengine.cpp: work on favourite -
created 'favourite' column in EVENT table - modified 'ormrecord'
for setting record's elements - favourities view not implemented
2010-01-15 korrco
* src/sql: syncing sql directory
2010-01-14 fortefr
* src/icons/compass.png: Compass icon
* src/gui/mainwindow.ui, src/icons.qrc, src/mvc/delegate.cpp,
src/mvc/delegate.h, src/mvc/treeview.cpp: Map button/compass icon
added
* src/gui/about.ui, src/gui/mainwindow.ui, src/orm/ormrecord.h:
Testing svn, tabs added, misprint fixed
2010-01-14 pavelpa
* src/app/app.pro, src/fosdem.pro, src/gui/daynavigatorwidget.cpp,
src/gui/gui.pro, src/gui/mainwindow.ui, src/model, src/mvc,
src/mvc/model.pro, src/mvc/mvc.pro, src/test/main.cpp,
src/test/model, src/test/mvc, src/test/test.pro: just some
directory renaming - renamed 'model' to 'mvc'
(Model-View-Controller), since it contains also 'delegate' and
'view'
2010-01-13 pavelpa
* src/model/conference.h, src/sql/sqlengine.cpp: minor fix
* src/gui/daynavigatorwidget.cpp, src/gui/daynavigatorwidget.h,
src/gui/daynavigatorwidget.ui, src/gui/gui.pro,
src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/model/conference.h,
src/model/eventmodel.cpp, src/model/eventmodel.h: implemented day
navigator widget - to switch between conference days
* src/gui/mainwindow.cpp, src/model/conference.cpp,
src/model/conference.h, src/model/eventmodel.cpp,
src/model/eventmodel.h, src/model/model.pro,
src/sql/sqlengine.cpp: implemented 'conference' record for
accessing info about the conference - events are loaded from the
first day of the conference
* src/gui/about.ui, src/gui/gui.pro, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/gui/mainwindow.ui: added about
dialog(s) - some modifications needed - About Qt: not scrollable
- About app: modifications to display items in system font/colors
needed
* src/app/main.cpp, src/icons.qrc, src/icons/fosdem.png: added
application icon
2010-01-12 pavelpa
* src/app/app.pro, src/fosdem.pro, src/gui/gui.pro,
src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui, src/model/eventmodel.cpp,
src/model/eventmodel.h, src/schedule.en.xml, src/sql,
src/sql/schedulexmlparser.cpp, src/sql/schedulexmlparser.h,
src/sql/sql.pro, src/sql/sqlengine.cpp, src/sql/sqlengine.h:
implemented xml parser - parsing Schedule
* src/app/app.pro, src/gui/mainwindow.cpp, src/gui/mainwindow.ui,
src/icons, src/icons.qrc, src/icons/alarm-off.png,
src/icons/alarm-on.png, src/icons/collapse.png,
src/icons/expand.png, src/icons/favourite-off.png,
src/icons/favourite-on.png, src/model/delegate.cpp,
src/model/delegate.h, src/model/model.pro,
src/model/treeview.cpp, src/model/treeview.h: modified model-view
- created own delegate to display TreeView items - contains also
'controls' - which are clickable (handled in TreeView) - created
own TreeView inherited from QTreeView - to handle control-clicks
of the Delegate - minor modifications to MainWindow UI -
QTreeView replaced by own TreeView - autoresizing of TreeView -
icons added
2010-01-07 korrco
* src: support for creating GUI via QtCreator added
* src/test: support for creating GUI via QtCreator added
* src/orm: support for creating GUI via QtCreator added
* src/model: support for creating GUI via QtCreator added
* src/app: support for creating GUI via QtCreator added
* src/gui: support for creating GUI via QtCreator added
* src/orm/ormrecord.h: TODO for exception handling added
* src/gui/gui.pro, src/gui/mainwindow.cpp, src/gui/mainwindow.h,
src/gui/mainwindow.ui: support for creating GUI via QtCreator
added
2010-01-02 komarma
* src/app/app.pro, src/gui/gui.pro, src/gui/mainwindow.cpp,
src/model/event.cpp, src/model/event.h, src/model/eventmodel.cpp,
src/model/eventmodel.h, src/model/model.pro, src/orm/ormrecord.h,
src/test/model/eventtest.cpp, src/test/model/eventtest.h:
Creating EventModel class
2009-12-31 komarma
* src/model/event.h, src/orm/ormrecord.h,
src/test/model/eventtest.cpp: Fixing datetime conversion
2009-12-30 komarma
* src/model/event.cpp, src/model/event.h, src/orm/ormrecord.h,
src/orm/sqlcondition.cpp, src/orm/sqlcondition.h,
src/test/model/eventtest.cpp, src/test/model/eventtest.h: Adding
database loading and data conversion to orm module
2009-12-29 komarma
* src/fosdem.pro, src/model/event.cpp, src/model/event.h,
src/model/model.pro, src/orm, src/orm/orm.pro,
src/orm/ormrecord.h, src/orm/sqlcondition.cpp,
src/orm/sqlcondition.h, src/test/model/eventtest.cpp,
src/test/model/eventtest.h, src/test/test.pro: Adding orm module
2009-12-28 komarma
* src, src/app, src/app/app.pro, src/app/main.cpp, src/fosdem.pro,
src/gui, src/gui/gui.pro, src/gui/mainwindow.cpp,
src/gui/mainwindow.h, src/model, src/model/event.cpp,
src/model/event.h, src/model/model.pro, src/test, src/test/gui,
src/test/main.cpp, src/test/model, src/test/model/eventtest.cpp,
src/test/model/eventtest.h, src/test/test.pro: Creating initial
application directory structure.
* ., docs: Creating initial repository structure
|