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
|
2024-04-24 gregor herrmann <gregor@toastfreeware.priv.at>
Update NEWS file.
Documentation updates.
Bump copyright years.
2024-04-23 Philipp Spitzer <philipp@spitzer.priv.at>
Stale events are deleted now after reloading conference.
Change parsing of start and end date so that 37C3 schedule works.
The 37C3 schedule was created with pretalx.
Thanks Felix Becker.
2021-08-19 gregor herrmann <gregor@toastfreeware.priv.at>
bump version after release.
prepare NEWS before 0.7.1 release.
confclerk.pro: add --date parameter to pod2man call.
Take display time shift into account when expanding a group in the day view tab.
2021-08-18 Philipp Spitzer <philipp@spitzer.priv.at>
Fix bug: display_time_shift was lost when conference was reloaded.
Remaining fix of bug Debian BTS #992236 (line distance).
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=992236
Avoid warning.
Partially fix bug Debian BTS #992236 (width of DayNavigatorWidget).
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=992236
Could be reproduced by setting environment variable QT_FONT_DPI to 200.
Use only one line for day and date display (except MAEMO).
2021-08-11 François Revol <revol@free.fr>
Allow overriding PREFIX
Haiku requires a different install path.
2021-08-11 François Revol <revol@free.fr>
Fallback to uname -o for systems without /etc/issue
This includes Haiku.
Not necessary to build but it removes an error message.
2021-07-30 gregor herrmann <gregor@toastfreeware.priv.at>
bump version from 0.7.0 to 0.7.1 after release
bump version from (unreleased) 0.6.5 to 0.7.0
because new features (cf. 'semver')
Update NEWS before release.
Use HTTPS in BUGS file.
(Not that it's usable but still …)
Add more generated files to .gitignore.
Clean up #includes.
(qtcreator is helpful but only partially.)
Update URLs of tested instances in README.
Remove 404 URLs, use latest conferences.
Bump copyright years.
2021-07-28 Philipp Spitzer <philipp@spitzer.priv.at>
Adjust alarm logic to include UTC offset or displayTimeShift.
Save adjusted displayTimeShift to database.
Adjust shown event time when displayTimeShift is set.
No lonely comma when city is missing.
Add active conference to application class.
2021-07-21 Philipp Spitzer <philipp@spitzer.priv.at>
Exchange "where" and "when" lines in conference dialog.
Show conference offset in conference dialog and prepare display offset.
Expose utc_offset and display_time_shift in Conference class.
Load utc_offset and display_time_shift with conference.
Parse and store utc_offset.
Add comment for day_change field in conference table definition.
Add utc_offset and display_time_shift columns to conference database.
Add links to XML files.
2021-07-14 Philipp Spitzer <philipp@spitzer.priv.at>
Adjust whitespace in if statements.
Fix typo "favourities" -> "favourites".
Delete unused variable to avoid a compiler warning.
Replace QModelIndex::child() to avoid a deprecation warning.
Replace QFontMetrics::width() with QFontMetrics::horizontalAdvance() to avoid a deprecation warning.
Replace QHash with QMultiHash to avoid a deprecation warning.
2020-05-01 gregor herrmann <gregoa@debian.org>
src/mvc/mvc.pro: add network module.
src/mvc/treeview.cpp includes src/app/appsettings.h on Maemo5 which includes
QNetworkProxy.
2020-03-09 gregor herrmann <gregor@toastfreeware.priv.at>
Update some URLs in the documentation.
Add appstream metadata file.
2017-12-08 gregor herrmann <gregor@toastfreeware.priv.at>
bump version after release
update NEWS before release of version 0.6.4
2017-10-07 gregor herrmann <gregor@toastfreeware.priv.at>
Make toolbar in main window non-movable
to prevent accidentally pulling it out.
2017-10-06 gregor herrmann <gregor@toastfreeware.priv.at>
Settings (dialog): add username/password options for proxy server
Cf. #59
2017-10-05 gregor herrmann <gregor@toastfreeware.priv.at>
update comment on default proxy value as we use QNetworkProxy::ProxyType instead of int now
2017-10-05 Philipp Spitzer <philipp@spitzer.priv.at>
AppSettings returns the proxy type as QNetworkProxy instead of int now.
2017-10-05 gregor herrmann <gregor@toastfreeware.priv.at>
Settings (dialog): add HTTP+SOCKS5 radio buttons and use them
Hopefully fixes: #59
Add ProxyType setting in preparation of SOCKS5 proxy support.
2017-10-03 gregor herrmann <gregor@toastfreeware.priv.at>
Settings dialog: set port range to 1-65535 and right-align.
Settings dialog: change heading to "HTTP proxy settings".
Fixes: #59
2017-10-02 gregor herrmann <gregor@toastfreeware.priv.at>
schedulexmlparser.cpp: add missing #include
Found when building with gcc 4.2.1 under Maemo5.
2017-10-02 Philipp Spitzer <philipp@spitzer.priv.at>
C++98 compatibility: Variable initialization in SqlEngine class.
C++98 compatibility: Variable initialization in TransactionRaii class.
C++98 compatibility: Use throw() in destructor of std exceptions.
C++98 compatibility: QDialogButtonBox::StandardButton::Open -> QDialogButtonBox::Open.
2017-10-02 gregor herrmann <gregor@toastfreeware.priv.at>
Make sure we build with -std=c++98 (under Unix and Qt4)
because gcc 4.2.1 on Maemo5 doesn't know c++11, and with this setting we can
prevent accidents also when building the Qt4 variant with a modern compiler.
2017-10-01 gregor herrmann <gregor@toastfreeware.priv.at>
bump version after release
update NEWS before release of version 0.6.3
2017-09-27 Philipp Spitzer <philipp@spitzer.priv.at>
Now the links in the description are clickable. Fixes #49.
The ID of an event is checked now when importing the XML file.
Now using exceptions to report errors in schedulexmlparser.cpp.
Create dedicated sub-function to parse XML data (to prepare exception error reporting).
Use TransactionRaii in schedulexmlparser.cpp.
Implement transaction RAII.
Implement rollbackTransaction().
2017-09-13 Philipp Spitzer <philipp@spitzer.priv.at>
If no day_change was given for a conference 4 AM is assumed.
Fixes #53.
Import schedules with dates attached to events correctly.
Avoid duplicate code when inserting/updating a conference.
2017-09-13 gregor herrmann <gregor@toastfreeware.priv.at>
URL input dialog: trim URL.
2017-08-30 Philipp Spitzer <philipp@spitzer.priv.at>
Minor typographic improvement.
"Open" button is disabled not when no URL was entered.
2017-08-30 gregor herrmann <gregor@toastfreeware.priv.at>
Mention new location of database file under Qt5 in docs.
ifdef qt4 and qt5
Merge branch 'master' into qt5
2017-08-30 Philipp Spitzer <philipp@spitzer.priv.at>
When no track is present, use the special name "No track" is used. This fixes issue #56.
2017-08-30 MartÃn Ferrari <tincho@tincho.org>
Fix possibility for SQL injection attack.
Demangling exception class name from error message of unknown exceptions.
Write debug message in case of silently catched exceptions.
More specific error message for "unknown" exceptions.
2017-08-27 gregor herrmann <gregor@toastfreeware.priv.at>
TrackInsertException: make error message useful.
TrackInsertException: correctly derive from OrmSqlException.
Derive OrmException from std::runtime_error.
2017-01-24 gregor herrmann <gregoa@debian.org>
bump version after release
update NEWS before release.
2017-01-23 Philipp Spitzer <philipp@spitzer.priv.at>
Used tr() for some more GUI strings (there are plenty more that should be treated this way).
Used tr() for some GUI strings (there are plenty more that should be treated this way).
2017-01-23 gregor herrmann <gregoa@debian.org>
Handle SSL errors.
Show warning with error messages, offer to ignore them or abort download.
Set some SSL parameters for network request.
2017-01-22 Philipp Spitzer <philipp@spitzer.priv.at>
Merged definition and initialization of conflictSeverity.
2017-01-22 gregor herrmann <gregoa@debian.org>
Initialize conflictSeverity variable.
Compiler warning with -Wmaybe-uninitialized.
confclerk.pro: add "-transparent white" to convert call
Fix typo in error message.
Update example schedule URLs in README.
Bump copyright years for icons.
2017-01-21 Philipp Spitzer <philipp@spitzer.priv.at>
Now ignoring .blend1 files (backup files Blender creates after saving).
In the treeview, the right mouse button now back-cycles the favourite state of events.
Added back-cycling option in Event::cycleFavourite.
Updated renderings of the alarm icons after changing the Blender file.
The alarm icons had a black border instead of a white border in Blender 2.76b. Fixed it.
Updated renderings of the favourite icons after changing the Blender file.
The favourite icons had a black border instead of a white border in Blender 2.76b. Fixed it.
Re-rendered favourite icons with Blender 2.76b and added favourite-weak rendering.
2017-01-21 gregor herrmann <gregoa@debian.org>
Bump copyright years.
whitespace
2017-01-21 Philipp Spitzer <philipp@spitzer.priv.at>
Addes white border to favourite-weak star.
2017-01-20 Philipp Spitzer <philipp@spitzer.priv.at>
Renamed favourite-on.png to favourite-strong.png and favourite-off.png to favourite-no.png.
Now the conflict severity is drawn.
Removed deprecated functions.
Event favourite is now tristate in the code now and the corresponding buttons are tristate as well.
Checked in .gitignore.
favourite is now tristate instead of bool.
2017-01-11 gregor herrmann <gregoa@debian.org>
eventdialog: only convertFromPlainText description and abstract if they are not richtext.
Merge branch 'master' into qt5
2015-01-20 gregor herrmann <gregoa@debian.org>
Bump copyright year.
In anticipation of a release in 2015.
Update release target.
Exclude .git directory from tarball.
2015-01-20 gregor herrmann <gregoa@debian.org>
Update ChangeLog target.
Use /usr/share/gnulib/build-aux/gitlog-to-changelog (in the gnulib) package
instead of svn2cl, since we moved from subversion to git.
gitlog-to-changelog sums up the commits, whereas git2cl dumps them
individually.
2015-01-13 Philipp Spitzer <philipp@spitzer.priv.at>
Merged changes from trunk. It still compiles successfully. :-)
2014-09-11 gregor herrmann <gregoa@debian.org>
Make release target depend on distclean target to ensure we have no compiled objects or Makefiles in the release tarball.
bump version number after release
Finalize NEWS before release.
Update NEWS for 0.6.1 release.
Update reference URLs in README.
Update copyright notices.
confclerk.pro: fix typo in pod2man call.
confclerk.pro: cosmetic editoring.
confclerk.pro: add signature target.
gpgp-sign tarball when making a release.
2014-09-09 gregor herrmann <gregoa@debian.org>
Fix SQL query which returned too many rooms.
2013-09-24 Philipp Spitzer <philipp@spitzer.priv.at>
Now the application compiles for QT5.
Note that the location of the database in Linux has changed from
~/.local/share/data/Toastfreeware/ConfClerk
to
~/.local/share/Toastfreeware/ConfClerk
Fixed a yet unknown bug: The room name was not properly inserted in the room table.
2013-09-10 Philipp Spitzer <philipp@spitzer.priv.at>
Escaped the strings that are shown in the dialog and preserve some layout.
2013-07-04 Philipp Spitzer <philipp@spitzer.priv.at>
Make it impossible to hide the toolbar by disallowing its context menu (fixes #51).
2013-06-26 gregor herrmann <gregoa@debian.org>
remove TODO with one remaining item which I don't understand
move TODO item to trac, issue #52
move TODO item to trac, issue #51
move TODO item to trac, issue #50
2013-06-12 Philipp Spitzer <philipp@spitzer.priv.at>
Applied "desktop-keywords.patch": add Keyword entry to confclerk.desktop Author: gregor herrmann <gregoa@debian.org>
Applied "spelling.patch": Description: fix a typo Author: gregor herrmann <gregoa@debian.org>
2013-06-12 gregor herrmann <gregoa@debian.org>
bump version for future release
Update NEWS for 0.6.0 release.
Set version to 0.6.0.
2013-06-12 Philipp Spitzer <philipp@spitzer.priv.at>
Removed a "TODO" comment.
2013-06-12 gregor herrmann <gregoa@debian.org>
Update example URLs in README.
2013-06-12 Philipp Spitzer <philipp@spitzer.priv.at>
Added some actions to the mainwindow - otherwise shortcuts don't work on MAEMO (see ticket #28).
Removed debug output.
2013-05-30 gregor herrmann <gregoa@debian.org>
Eventdialog: make sure the same colours as everywhere are used.
Additionally adjust font size on maemo.
This should allow to close #48.
2013-05-28 Philipp Spitzer <philipp@spitzer.priv.at>
Changed the event dialog layout hoping to improve issue #48.
2013-05-28 gregor herrmann <gregoa@debian.org>
Move removal of generated file into new releaseclean target.
.pro: Add created files to QMAKE_DISTCLEAN.
2013-05-28 Philipp Spitzer <philipp@spitzer.priv.at>
Made sure the mainwindow is destroyed properly and the sql database is closed.
2013-05-28 gregor herrmann <gregoa@debian.org>
#include appsettings.h for maemo.
2013-04-30 Philipp Spitzer <philipp@spitzer.priv.at>
Now the dayChange time is taken into account. This fixes #43.
2013-04-19 gregor herrmann <gregoa@debian.org>
bump copyright years
add Stefan to AUTHORS
2013-04-16 Philipp Spitzer <philipp@spitzer.priv.at>
Formatted alarm message (closes ticket #46).
Alarms are reported via QSystemTray now (see ticket #46).
2013-04-04 gregor herrmann <gregoa@debian.org>
extend comment re systrayicon position
2013-04-03 gregor herrmann <gregoa@debian.org>
tray icon: add (commented out) debug output and ->hide
2013-04-02 Philipp Spitzer <philipp@spitzer.priv.at>
Prepared to show an alarm message via tray icon on non-MAEMO systems.
2013-04-02 gregor herrmann <gregoa@debian.org>
fix typo in comment
fix typo in comment
fix typo in comment
2013-03-19 Philipp Spitzer <philipp@spitzer.priv.at>
The day tab is now the current tab when starting the program (ticket #44).
Current day is used now when starting the program or loading a conference (ticket #44).
Created more shortcuts (ticket #28).
Added comments to the SQL statements (back in October).
2012-10-17 Philipp Spitzer <philipp@spitzer.priv.at>
The focus is set to the search input field when the search icon is clicked.
2012-10-17 gregor herrmann <gregoa@debian.org>
When ConfClerk is called with arguments (alarm), check for >= 3.
Alarmd seems to add an additional argument.
Rip out unused DBUS stuff.
2012-10-17 Philipp Spitzer <philipp@spitzer.priv.at>
Fixed bug: Arguments for calling ConfClerk in an alarm event were not built correctly.
Changed int to string converstion method because the old method gave an compilation error on MAEMO.
We added the conferenceId to some alarm related methods (ticket #41).
2012-10-08 gregor herrmann <gregoa@debian.org>
Update URLs in README.
2012-09-25 Philipp Spitzer <philipp@spitzer.priv.at>
Schmema update completed. Finally closing ticket #45.
Reloading a conference works now.
Fixed: Forgot to call query.exec() at several places.
Added sql file that updates the schema from version 000 to version 001.
Changed table names to have small letters.
Changed coding style of sql file.
2012-09-25 gregor herrmann <gregoa@debian.org>
Remove unsed (and removed from db) 'days' column fro xml parser and all sql parts.
2012-09-25 Philipp Spitzer <philipp@spitzer.priv.at>
Suggestion for database schema version 001.
2012-09-25 gregor herrmann <gregoa@debian.org>
Don't insert empty string into picture column.
(NOT NULL constraint removed from db schema.)
Remove empty-city-hack.
(NOT NULL removed from db schema.)
Remove ifdef'd out members
2012-09-06 gregor herrmann <gregoa@debian.org>
One version for creating the directory is enough :)
(Now tested on Windows, too.)
2012-09-05 Philipp Spitzer <philipp@spitzer.priv.at>
Added a second possibility to create the directory and removed the TODO.
2012-09-05 gregor herrmann <gregoa@debian.org>
fix .mkpath()
Creating the "." path works.
Is this idiomatic? At least it works (under Windows).
TODO left: handle errors.
2012-09-04 Philipp Spitzer <philipp@spitzer.priv.at>
Restructured the SqlEngine. Not yet finished (see "TODO" in the code).
2012-09-04 gregor herrmann <gregoa@debian.org>
fix some more header includes
fix typo in comment
2012-08-27 gregor herrmann <gregoa@debian.org>
fix #includes
(detected by QtCreator and friends on windows)
2012-08-22 Philipp Spitzer <philipp@spitzer.priv.at>
On the way to fix #45.
2012-08-21 Philipp Spitzer <philipp@spitzer.priv.at>
Fixed bug: Changing the conference URL resulted in an error message.
2012-06-13 gregor herrmann <gregoa@debian.org>
Add .pro.user.* to svn:ignore and remove it in the release target.
TODO: new item about duplicate documentation.
README: add Stefan to Contact section.
2012-06-12 gregor herrmann <gregoa@debian.org>
Bump version after 0.5.5 release.
Add release date in NEWS.
remove TODO item (expand/collapse)
Add more items to NEWS.
Add items to NEWS.
Add Stefan as a copyright holder to source files, too.
sync copyright notices between README and confclerk.pod
2012-06-12 Philipp Spitzer <philipp@spitzer.priv.at>
Implemented expand/collapse of the event groups. Resolves ticket #31.
The groups starts at full hours again.
Philipp's comments to r1444.
Created icons collapse and expand.
2012-05-03 gregor herrmann <gregoa@debian.org>
createTimeGroups(): use QDateTime instead of QTime to avoid "midnight overflow". Cf. #42
2012-05-02 Philipp Spitzer <philipp@spitzer.priv.at>
This at least partly fixes #42 ("fun with time zones").
2012-05-02 Stefan Strahl <stef@nstrahl.de>
Changed inactive favourite icon to match alarm icon style
2012-04-22 gregor herrmann <gregoa@debian.org>
Show the AlarmOff icon in the timegroup header when the group has no alarms set.
2012-04-19 gregor herrmann <gregoa@debian.org>
Update copyright information in README for new icons.
2012-04-19 Philipp Spitzer <philipp@spitzer.priv.at>
Changed the alarm icon due to ticket #40. I haven't tried it because I don't have an N900 device.
2012-04-19 gregor herrmann <gregoa@debian.org>
Update NEWS with recent bug fixes.
Update copyright in README for changed icons.
2012-04-19 Philipp Spitzer <philipp@spitzer.priv.at>
Changed favourite icons as a response to ticket #40.
2012-04-18 gregor herrmann <gregoa@debian.org>
Handle redirects when importing schedules over the network.
Fixes: #39
2012-04-07 gregor herrmann <gregoa@debian.org>
More output on errors.
2012-04-05 gregor herrmann <gregoa@debian.org>
Fix typo in docs.
Update exmple URLs in README.
2012-03-21 gregor herrmann <gregoa@debian.org>
Update copyright years.
Add note about fixed bug to NEWS.
2012-03-21 Philipp Spitzer <philipp@spitzer.priv.at>
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 gregor herrmann <gregoa@debian.org>
Removed commented out reference to removed files.
2012-03-20 Philipp Spitzer <philipp@spitzer.priv.at>
Deleted calendar.h and calendar.cpp as they are not used.
Deleted files that don't seem to be used.
2012-03-11 gregor herrmann <gregoa@debian.org>
typo in docs
2011-12-12 Philipp Spitzer <philipp@spitzer.priv.at>
Updated the TODO list.
When the search toolbox button is clicked when the search dialog is already open, it is closed.
Implemented stub for expand/collape all.
Another layout study.
Changed layout details to study the effect in Maemo.
Better calculation of the day navigator date position.
Fixed by gregoa: Searching for titles where the events had no person did not find anything.
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 gregor herrmann <gregoa@debian.org>
Update URL list in README.
2011-10-17 Philipp Spitzer <philipp@spitzer.priv.at>
Sorted by duration additionally to start.
Implemented "now" action and removed the "now" button from the day navigator.
Removed unused nowEvent functions.
Implemented the reload button functionality. Closes: #34
The conflict editor works again.
The favorite tab gets updated again after changing the favorite state.
2011-10-05 Philipp Spitzer <philipp@spitzer.priv.at>
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 gregor herrmann <gregoa@debian.org>
Search dialog: less width, more lines.
Tabs: elide tabtexts.
2011-09-21 Philipp Spitzer <philipp@spitzer.priv.at>
Implemented "unset dates" in the date navigator.
The dateChanged signal is transmitted to the tabcontainers now.
Introduced a toobar. Added a new global date navigator instance (the "old" ones are not removed yet).
Cleanup daynavigatorwidget.
2011-09-14 gregor herrmann <gregoa@debian.org>
Fix typo in NEWS.
bump version after release
Add date to NEWS before release.
2011-09-12 gregor herrmann <gregoa@debian.org>
Add NEWS items for upcoming 0.5.4 release.
Add dates to all releases in NEWS.
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.
Replace some tabs with the usual spaces.
2011-09-06 Philipp Spitzer <philipp@spitzer.priv.at>
Assigned confclerk icon to main window.
Now the progress bar is shown immediately after clicking the refresh conference button. Closes ticket #25.
Fixed ticket #26 (empty tabs after some actions).
2011-09-06 Stefan Strahl <stef@nstrahl.de>
Fixed ticket #20
2011-09-06 Philipp Spitzer <philipp@spitzer.priv.at>
Removed one comment and fixed typos.
2011-09-06 gregor herrmann <gregoa@debian.org>
Mention frab (FrOSCon penta clone) and Grazer Linuxtage (fixes #33).
2011-08-24 Philipp Spitzer <philipp@spitzer.priv.at>
Rewrote code to group events together with gregoa. Closes bug #22.
2011-08-23 Philipp Spitzer <philipp@spitzer.priv.at>
This should close ticket #35 ([maemo] conflict icon overlaps alarm icon).
Changed the drawing of events to make use of system colors and styles, at least partially.
2011-08-16 gregor herrmann <gregoa@debian.org>
bump version after release
Remove "TODO" from NEWS, a.k.a. prepare for release
2011-08-15 gregor herrmann <gregoa@debian.org>
Update NEWS.
Improve day navigator widget.
(Still black magic, now even with #ifdefs :/)
.isEmpty() feels more Qtish then == ""
Only add ", $venue" to conference location when $venue is not empty.
ISO formatting of conference dates in conferenceeditor.
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.
emit the parsingScheduleBegin() signal earlier, so we get the progressbar a bit earlier (cf. ticket #25)
mention FrOSCon as an example (although it's not working at the moment, cf. #32)
2011-07-24 gregor herrmann <gregoa@debian.org>
Use "-" in start-end. Closes: #30
Shift date text up by icon/2 in order to re-center the text. More or less at least.
Add today button to date navigator. TODO: date is not centered between prev/next arrows anymore.
Cf. #29
2011-07-23 gregor herrmann <gregoa@debian.org>
Make sure to remove src/bin/libqalarm.a on make clean.
bump version after release
Prepare NEWS before release of 0.5.2.
Remove conference/room records unconditionally from EVENT_ROOMS
2011-07-22 gregor herrmann <gregoa@debian.org>
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.
manpage: s/Desafinado/ConfClerk/
2011-07-19 Philipp Spitzer <philipp@spitzer.priv.at>
Fixed ticket #23: No close button in conference dialog when no confernces are in the list.
2011-07-15 gregor herrmann <gregoa@debian.org>
Don't include tarballs in release tarballs ...
Distinguish "Presenter" and "Presenters" (instead of "Presenter(s)"). Closes: Ticket #17
Show event title instead of id in alarms.
Don't remove generated files in DISTCLEAN; otherwise they are gone during package builds :/
Add a TODO item.
2011-07-14 gregor herrmann <gregoa@debian.org>
Reorganize CLEAN and DISTCLEAN targets.
Bump VERSION after release.
Remove ChangeLog from svn (it's created via svn2cl, so this is circular). Add generated files to distclean target.
Update ChangeLog before release.
2011-07-13 gregor herrmann <gregoa@debian.org>
NEWS entry for 0.5.1 release.
2011-07-13 Philipp Spitzer <philipp@spitzer.priv.at>
This is just a quick-and-dirty workaround commit to aviod a drawing problem on maemo. This commit might be reverted ...
The speaker is preselected in the search dialog now.
First try to improve the colors (ticket #13).
The cancel button on the settings dialog works now (ticket #14) and the layout of the settings dialog is stable now (ticket #15).
Changed the menu to be non-hierarchical. Closes ticket #16.
Changed the placement of the date label again. Changed the date format to show the day-of-week.
Replaced "130" by s.width() when centering the date.
2011-07-12 Philipp Spitzer <philipp@spitzer.priv.at>
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 Spitzer <philipp@spitzer.priv.at>
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.
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.
The description and person list of the event dialog is now selectable so that copy&paste is possible.
2011-07-10 Philipp Spitzer <philipp@spitzer.priv.at>
Tuned the about dialog.
Minor tuning of the conference editor. The reload button now has a text on it.
Fixed bug (related to ticket #12): Only the last search term is used.
Undid changes to sqlengine.cpp I committed accidentally in r1318.
2011-07-08 gregor herrmann <gregoa@debian.org>
Split search keyword string on whitespace.
Avoid duplicate search results by using SELECT DISTINCT when filling the SEARCH_EVENT table.
2011-07-05 gregor herrmann <gregoa@debian.org>
Add DebConf11 URL to README.
2011-07-04 Philipp Spitzer <philipp@spitzer.priv.at>
Cleaning of the conferenceeditor dialog.
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.
Removed the unused status bar.
2011-06-29 gregor herrmann <gregoa@debian.org>
Some more s;TARGETDEPS;POST_TARGETDEPS;
s;scheduler;schedule application;
Bump version
Update changelog.
2011-06-28 Philipp Spitzer <philipp@spitzer.priv.at>
Removed many of the qDebug() output lines (see ticket #10).
2011-06-28 gregor herrmann <gregoa@debian.org>
add copyright/license for exchanged icons
2011-06-28 Philipp Spitzer <philipp@spitzer.priv.at>
Replaced the star icons with self-made versions (Blender 2.57b) that are better distinguishable. Closes ticket #8.
2011-06-27 Philipp Spitzer <philipp@spitzer.priv.at>
Included application version in the about dialog. This closes ticket #9.
2011-06-26 Philipp Spitzer <philipp@spitzer.priv.at>
Links in events are now clickable (resolves ticket #4).
Searching without active conference doesn't give an error message anymore (resolves ticket #7).
The '%' character doesn't have to be escaped anymore.
The window title was still "FOSDEM Schedule".
2011-06-25 gregor herrmann <gregoa@debian.org>
Add entries to NEWS file.
Shorten TODO.
Create a simple man page.
Add URLs for FOSDEM 2011, DebConf 2010, and 27C3 to README instead of TODO.
Remove the remaining last two fosdem files.
Update contact info.
2011-06-25 Philipp Spitzer <philipp@spitzer.priv.at>
Bugs are now reported in the trac system.
2011-06-24 gregor herrmann <gregoa@debian.org>
Mark bug 3 as fixed.
2011-06-24 Philipp Spitzer <philipp@spitzer.priv.at>
Enter or return triggers the search now when the focus is at the searchEdit or at one of the checkboxes.
Filed bug 7: Error message when searching without having conferences
2011-06-24 gregor herrmann <gregoa@debian.org>
Add another wishlist (more: design discussion) bug
2011-06-24 Philipp Spitzer <philipp@spitzer.priv.at>
Removed unnecessary debug output and code.
Fixed bug reported by gregor: Too many authors are shown (form other conferences as well).
2011-06-24 gregor herrmann <gregoa@debian.org>
Improve release target in .pro
2011-06-24 Philipp Spitzer <philipp@spitzer.priv.at>
Removed two unused variables to avoid compiler warnings.
2011-06-24 gregor herrmann <gregoa@debian.org>
Somewhere a slash was missing ...
Updated TODO.
Add contact info to README.
Update 'About' dialog.
Remove ULB, Campus Solbosch maps.
The big rename. Which was not so big after all ...
De-maemofy: make .desktop file generic, remove resized (old) icons and Makefile for installing them.
Add new resource file to app.pro
Icons, part 2: replace fosdem/brain icons with ConfClerk logo
Icons part 1: replace all icons (except the FOSDEM ones) with icons from current gnome-icon-theme
2011-06-23 gregor herrmann <gregoa@debian.org>
Remove unused icons.
Another instance of the databasename. (NOTE: untested, this codepath is only used on maemo)
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
Rename DBus service. Hopefully successful.
Add some conference URLs to TODO
New bug noted.
New bug noted.
qmake warning: POST_TARGETDEPS instead of TARGETDEPS
Remove libs in clean target.
Move and rename logo, create a target to convert it in .pro, add copyright/license to README. Update TODO.
2011-06-23 Philipp Spitzer <philipp@spitzer.priv.at>
Checked the remaining code. Didn't find possibilities for SQL injections anymore.
2011-06-23 gregor herrmann <gregoa@debian.org>
Update TODO.
Add release and changelog targets to project file.
Remove empty Changelog.
2011-06-23 Philipp Spitzer <philipp@spitzer.priv.at>
Prevented SQL injections in function addPersonToDB.
2011-06-23 gregor herrmann <gregoa@debian.org>
Add copyright to source.
Update GPL blurb in source files.
2011-06-23 Philipp Spitzer <philipp@spitzer.priv.at>
Just adapted the page size to be rectangular.
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 gregor herrmann <gregoa@debian.org>
Remove ./debian directory, we'll do the packaging outside the "upstream" repository.
First round of documentation updates.
Prepare ChangeLog generation from svn logs.
2011-06-23 Philipp Spitzer <philipp@spitzer.priv.at>
Prevented SQL injection in function addLinkToDB.
2011-06-23 gregor herrmann <gregoa@debian.org>
update TODO
2011-06-23 Philipp Spitzer <philipp@spitzer.priv.at>
Fixed SQL error in searchEvent when no table was selected. Prevented SQL injection in searchEvent.
2011-06-23 gregor herrmann <gregoa@debian.org>
add TODO file
2011-06-23 Philipp Spitzer <philipp@spitzer.priv.at>
Added some comments, removed and added some debug information.
Fixed a bug I introduced when reparing the addRoomToDB function.
Tracks are inserted now when importing new conferences.
void possible SQL injection in function addRoomToDB.
Removed copying the fosdem.sqlite database during the make process.
2011-06-22 Philipp Spitzer <philipp@spitzer.priv.at>
The database is now created from the program. We don't need to copy or provide fosdem.sqlite anymore.
Persons are deleted now when a conference is removed.
Added a file with bugs that I noticed when playing with the application.
Rooms are inserted now for additionally imported conferences.
Importing persons for multiple conferences works now.
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 gregor herrmann <gregoa@debian.org>
Insert new field xid_conference into table track, room and person.
2011-06-21 Philipp Spitzer <philipp@spitzer.priv.at>
Created schema for the database with additional colum xid_conference in the tables track, room and person.
Added menu item "quit".
Removed data directory from subdirs so that the manually created Makefile is not overwritten by qmake -r.
Removed dbus dependency on non-maemo platforms.
2010-05-05 kirilma <kirilma@localhost>
use enabled flag instead of repeated criateria check
add enabled flag
refactor: more compact drawing of controls
do not draw showmap button for event is there is no map for its room
refactor: cache whole Room object in Event
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
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 <kirilma@localhost>
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 <kirilma@localhost>
restore viewing of conference map
minor UI fixes
fix size of UrlInputDialog
restore [remove] button at the same button as [add]
2010-04-22 kirilma <kirilma@localhost>
remove obsoleted code
also fix some types
optimization
fine tune geometry to look nicer
add authors for files
reworked UI for conference editing
underlying representation of conference list is also changed
CC: fix endlines
2010-04-16 kirilma <kirilma@localhost>
use visible notifications of errors
also early detect parsing errors
2010-04-15 kirilma <kirilma@localhost>
make label shorter to place all required buttons
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
implement deleting a conference
pass event about it to mainwindow to update select control
fix Conference::activeConference() to work when first conference is removed
add buttons for refreshm new url and delete and partly implement corresponding actions
also changed Online -> Refresh
delete action is not implemented yet
store URL's for conferences
* use it at update
* let user update the url before request
remove unused code
fix references in SQL
2010-04-14 kirilma <kirilma@localhost>
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 <kirilma@localhost>
remove unused class TabWidget
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 <kirilma@localhost>
build fix at maemo
force order of computation
some versions of qmake-qt4 require it
remove ON CONFLICE REPLACE for events
generate default database instead of using binary one
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
catch exceptions which leak outside of event handlers
If we do not do this, QT will exit from event loop.
2010-04-09 kirilma <kirilma@localhost>
use update for events when they are already exists
also use only parameters substitution for these queries
use transactions to make import faster
2010-03-03 uzakmat <uzakmat@localhost>
Preparing for release 0.4.1
2010-03-03 timkoma <timkoma@localhost>
UTC/LocalTime fix for import conference XML, DB queries for multiple conferences fixes
2010-02-05 timkoma <timkoma@localhost>
fix for import - ON CONFLICT REPLACE
2010-02-05 uzakmat <uzakmat@localhost>
alarm UTC/localtime fix
2010-02-03 uzakmat <uzakmat@localhost>
addition of Diablo specific installation instructions in INSTALL
installation of 40x40 icons enabled because of Diablo
release information added for release 0.3
2010-02-03 timkoma <timkoma@localhost>
performance improvement for Events
performance improvement for load persons
2010-02-02 uzakmat <uzakmat@localhost>
NEWS file update
A header with the proper copyright/lincence statement was added into each source/header file.
2010-02-02 pavelpa <pavelpa@localhost>
corrected 'exec' path when adding an alarm
2010-02-02 uzakmat <uzakmat@localhost>
NEWS file updated
README, INSTALL, AUTHORS - filled in
2010-02-02 hanzes <hanzes@localhost>
Alarm modifications
2010-02-01 hanzes <hanzes@localhost>
Alarm dbus connection added
Alarm dbus connection added
2010-02-01 pavelpa <pavelpa@localhost>
gradient for treeview items
changed permissions for the db - TODO: check it on the device
compilation error fix
compilation error fix
N810 changes: maximized 'map' dialog
2010-02-01 hanzes <hanzes@localhost>
Alarm dbus connection added
2010-02-01 pavelpa <pavelpa@localhost>
added 'settings' icon for setting-up proxy(network connection)
GUI changes for N810 device
2010-02-01 uzakmat <uzakmat@localhost>
debian/control - Build-Depends section set
2010-02-01 pavelpa <pavelpa@localhost>
created resource which contains parsed schedule, so the user doesn't have to parse it by himself
2010-02-01 uzakmat <uzakmat@localhost>
alarm - example of dbus binding functional
2010-02-01 pavelpa <pavelpa@localhost>
updated schedule.en.xml to the newest version
2010-01-30 pavelpa <pavelpa@localhost>
changed fosdem icon in about dialog to brain-alone icon
changed copyright string
number of events/alarms/favs is bottom-aligned to the bottom of the icons
2010-01-29 pavelpa <pavelpa@localhost>
if the application is run for first time, network connection is set to Direct connection
2010-01-29 uzakmat <uzakmat@localhost>
initial binding of alarm to a DBus call
2010-01-29 pavelpa <pavelpa@localhost>
implemented 'proxy settings' dialog - user can secify proxy for network communication
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)
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
modified 'about' dialog - changed "Qt FOSDEM" -> "FOSDEM Schedule"
2010-01-28 pavelpa <pavelpa@localhost>
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
forgotten in previous commit
some performance optimizations - favourities reloaded only if they have really changed - otherwise only event in the question is updated
fixed 'conflicts' constrains
'now' events - displayed real now events, not just the testing ones
2010-01-28 uzakmat <uzakmat@localhost>
binary name changed to fosdem-schedule
2010-01-28 pavelpa <pavelpa@localhost>
changed conditions for conflicts
some 'delegate' drawing optimizations - removed EVENT_CONFLICT table - used one SQL SELECT instead
conflicts updated correctly - TODO: needs to do some drawing optimizations
2010-01-28 uzakmat <uzakmat@localhost>
package details updated to reflect the binary name change to fosdem-maemo
2010-01-28 pavelpa <pavelpa@localhost>
if no conference is in the DB, the user is automatically navigated to the conference tab, so he can import one
search tab - header is hidden in case no conf exists in the DB
event dialog GUI refactoring
about dialog - added GNU GPL v2 notice
conference tab header is hidden if there isn't active conference - handled some warnings
2010-01-27 pavelpa <pavelpa@localhost>
tabs' order changed
'nowTab' updated/loaded when application starts
'nowTab' list is automatically expanded
'conflict' list is automatically expanded
'conflict' dialog now contains list of events in conflict with given eventId
fixed 'copy-paste' error
implemented 'conflicts' dialog - displays rooms instead of conflicts for now - needs to implement additional methods in Event, ...
'alarm' button is hidden for not MAEMO
2010-01-27 timkoma <timkoma@localhost>
search fix
2010-01-27 pavelpa <pavelpa@localhost>
removed headers from *.h and *.cpp
removed appsettings - created 'active' column in 'conference' table
2010-01-27 timkoma <timkoma@localhost>
refactoring of the TABS
2010-01-27 pavelpa <pavelpa@localhost>
modified 'about application' dialog
implemented 'links' in Event/EventDialog
refactored Event 'details' dialog - TODO: implement 'links' method(s) in Event and use it in the dialog
Event 'details' dialog now contains also 'favourite' and 'alarm' buttons, so the user can set/unset the property directly from the dialog
'info' icon scaled to height of tabBar
'search' tab functionality moved to 'tabcontainer'
'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 <pavelpa@localhost>
conflicts refactoring - has to be finished
SqlEngine made STATIC
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 <uzakmat@localhost>
Addition of files required by the GNU coding standard
2010-01-26 timkoma <timkoma@localhost>
unique constraints added into sql
2010-01-26 pavelpa <pavelpa@localhost>
just removed unused button on 'day view' tab
reimplemented 'import schedule'
2010-01-26 timkoma <timkoma@localhost>
reload favourites
2010-01-26 uzakmat <uzakmat@localhost>
Alarm implementation modified
2010-01-26 pavelpa <pavelpa@localhost>
removed 'MainMenu' bar from MainWindow - schedule is imported via 'conference' tab - about app is launched when user clicks 'info' button/icon
import schedule dialog - changed to widget - moved to 'conference' tab
2010-01-26 timkoma <timkoma@localhost>
search done
2010-01-26 hanzes <hanzes@localhost>
NowTreeView refresh modified
2010-01-26 pavelpa <pavelpa@localhost>
"conference" tab - GUI modifications
About Application dialog is opened when "info" icon is clicked
2010-01-26 hanzes <hanzes@localhost>
Useless calendar class
2010-01-26 pavelpa <pavelpa@localhost>
forgotten in last CI
new TabWidget - contains "info" icon/button to show "AboutApplication" dialog
2010-01-25 timkoma <timkoma@localhost>
search update
2010-01-25 korrco <korrco@localhost>
room view added - finished
room view added - finished
2010-01-25 timkoma <timkoma@localhost>
search upgrade
2010-01-25 korrco <korrco@localhost>
room view added - need to test it
2010-01-25 pavelpa <pavelpa@localhost>
updated also groupings item (event parent item) if the user clicks eg. favourite/alarm icon (changes event data)
GUI work on Event Details dialog
2010-01-25 uzakmat <uzakmat@localhost>
postinst and postrm scripts added into the debian tree
2010-01-25 timkoma <timkoma@localhost>
search update
2010-01-22 fortefr <fortefr@localhost>
Conference map
2010-01-22 pavelpa <pavelpa@localhost>
fixed problem with storing conference ID to AppSettings
day navigator widget changes - changed from Horizontal to Vertical
2010-01-22 korrco <korrco@localhost>
room.h and .cpp removed
room.h and .cpp removed
caching removed
caching removed
2010-01-22 pavelpa <pavelpa@localhost>
sanity check for consitency of confId in AppSettings and the DB
forgotten appsettings files
implemented NOW tab
2010-01-21 pavelpa <pavelpa@localhost>
modifications to import-schedule dialog - closed automatically after parsing/importing schedule
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
check for existence of conference before inserting it into DB
added 'Conference' tab - to list conference details - implemented AppSettings for storing Application settings - stored conference ID
removed schedule resource file, which was used for testing - import schedule dialog replaces it's functionality
2010-01-21 fortefr <fortefr@localhost>
Warning handling
2010-01-21 pavelpa <pavelpa@localhost>
forgotten Import Schedule Dialog files
2010-01-21 uzakmat <uzakmat@localhost>
New installation path for the binary, Maemo optification added into debian/rules, new icons
2010-01-21 pavelpa <pavelpa@localhost>
import/search schedule dialog implemented
2010-01-21 timkoma <timkoma@localhost>
update for the search
2010-01-21 fortefr <fortefr@localhost>
Time conflict fix
Time conflict warning
2010-01-21 korrco <korrco@localhost>
exception handling changed
2010-01-21 pavelpa <pavelpa@localhost>
combined EVENT and VIRTUAL_EVENT => 'EVENT' now - Maemo sqlite doesn't support Full-Text-Search
2010-01-21 korrco <korrco@localhost>
updateTab refactored
activities tab implemented
activities tab implemented
activities tab implemented
2010-01-21 timkoma <timkoma@localhost>
first working version of the search
2010-01-21 pavelpa <pavelpa@localhost>
event dialog - details about the Event is displayed in FullScreen mode
compilation error "linux" fix - caused by previous commit
map is displayed in FullScreen mode
2010-01-20 pavelpa <pavelpa@localhost>
group items (time/track/...) are expanded on single-click
changed 'Activity' -> 'Track'
parsing activity from xml - 'track' from xml schedule is treated as an activity
event dialog changes - changed font/background colors - title occupies more lines if it doesn't fit in one line
alarm dialog changes - displayed additional Event's details - autoresizing title (if it doesn't fit in one line)
updated alarm dialog
2010-01-20 uzakmat <uzakmat@localhost>
Makefile reverted as it was overwritten accidentally
2010-01-20 pavelpa <pavelpa@localhost>
implemented some error handling
alarm icon/stuff is relevant for MAEMO only - used "MAEMO" define for conditional compilation
MAEMO: work on alarm - snooze alarm - cancel alarm - run application which automatically display Event dialog for given Event ID
2010-01-20 fortefr <fortefr@localhost>
Warning icon (uncompleted)
2010-01-20 timkoma <timkoma@localhost>
temp commit for search tab
2010-01-20 pavelpa <pavelpa@localhost>
display event details in the treeView
2010-01-20 korrco <korrco@localhost>
activities viewed ordered by activity id and start time
2010-01-20 fortefr <fortefr@localhost>
Big icons fix 2
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 <korrco@localhost>
static allocation instead of dynamic added when creating activity map
2010-01-20 pavelpa <pavelpa@localhost>
some drawing modifications
the most recent FOSDEM 2010 schedule http://fosdem.org/schedule/xml
2010-01-19 pavelpa <pavelpa@localhost>
pali, nerob bordel
changed abstract/description/scrollbars color in eventdialog
2010-01-19 korrco <korrco@localhost>
support for view activities with their names added
2010-01-19 pavelpa <pavelpa@localhost>
event-dialog - displayed persons/presenters names - implemented Event::persons() method to get persons names associated with the given event ID
single-click is used to open event dialog
diplayed map is closed by single-click, instead of double-click
work on alarm
work on alarm
2010-01-19 uzakmat <uzakmat@localhost>
Addition of files required for a Debian package and Maemo specific files
2010-01-19 fortefr <fortefr@localhost>
Favourites dayNavigator
2010-01-19 pavelpa <pavelpa@localhost>
schedule.en.xml is now in resource - for testing only - will be removed from final application
2010-01-19 korrco <korrco@localhost>
minimal size for tabs set
2010-01-19 fortefr <fortefr@localhost>
Update tabs 2
-This line, and those below, will be ignored--
M src/gui/mainwindow.cpp
M src/gui/mainwindow.h
2010-01-19 fortefr <fortefr@localhost>
Automatic tabs update
M src/gui/mainwindow.ui
M src/gui/mainwindow.cpp
M src/gui/mainwindow.h
2010-01-19 pavelpa <pavelpa@localhost>
set MapDialog title
handled the case when the map is not available
map-name to map-path implemented - correct map is displayed
fixed: icons overlapped
2010-01-18 pavelpa <pavelpa@localhost>
started work on displaying map - implemented mapwindow - map is hard-coded for now TODO: finish getting map path from the event
added maps
pali, nerob bordel
implemented 'Event' dialog to display relevant 'Event's info
2010-01-18 korrco <korrco@localhost>
sorting by activity id added
2010-01-18 pavelpa <pavelpa@localhost>
autoresizing activities treeView
implemented drawing icons + number of favs/alarms in the corresponding group
2010-01-18 korrco <korrco@localhost>
grouping by time equation changed - beter group deviding, also according to favourites
activities tab implemented - need to fit gui, functionality works fine
activities tab implemented - not finished yet
activities tab implemented - not finished yet
2010-01-18 pavelpa <pavelpa@localhost>
added 'alarm' columnt to the 'EVENT' table to signalize that the event has/hasn't alarm set
2010-01-18 fortefr <fortefr@localhost>
Favourites fix
2010-01-18 pavelpa <pavelpa@localhost>
maemo specific compilation fix
2010-01-18 fortefr <fortefr@localhost>
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 <pavelpa@localhost>
added GrayScale versions (inactive/OFF) of the icons
2010-01-18 hanzes <hanzes@localhost>
fixed sqlite statement
2010-01-18 pavelpa <pavelpa@localhost>
fixed: broken compilation for linux caused by previous commit
started work on alarm(libaalarm)
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 <korrco@localhost>
current path print added
2010-01-18 fortefr <fortefr@localhost>
Temporal virtual_event change
2010-01-18 pavelpa <pavelpa@localhost>
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
added "Quit" to "File" menu
2010-01-17 pavelpa <pavelpa@localhost>
implemented method to force 'EventModel' emit a signal dataChanged() - so 'TreeView' know it has to redraw items corresponding to chanded indices (range of indeces)
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)
just minor corrections to 'event'
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
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 <pavelpa@localhost>
work on favourite - created 'favourite' column in EVENT table - modified 'ormrecord' for setting record's elements - favourities view not implemented
2010-01-14 fortefr <fortefr@localhost>
Compass icon
Map button/compass icon added
Testing svn, tabs added, misprint fixed
2010-01-14 pavelpa <pavelpa@localhost>
just some directory renaming - renamed 'model' to 'mvc' (Model-View-Controller), since it contains also 'delegate' and 'view'
2010-01-13 pavelpa <pavelpa@localhost>
minor fix
implemented day navigator widget - to switch between conference days
implemented 'conference' record for accessing info about the conference - events are loaded from the first day of the conference
added about dialog(s) - some modifications needed - About Qt: not scrollable - About app: modifications to display items in system font/colors needed
added application icon
2010-01-12 pavelpa <pavelpa@localhost>
implemented xml parser - parsing Schedule
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 <korrco@localhost>
TODO for exception handling added
support for creating GUI via QtCreator added
2010-01-02 komarma <komarma@localhost>
Creating EventModel class
2009-12-31 komarma <komarma@localhost>
Fixing datetime conversion
2009-12-30 komarma <komarma@localhost>
Adding database loading and data conversion to orm module
2009-12-29 komarma <komarma@localhost>
Adding orm module
2009-12-28 komarma <komarma@localhost>
Creating initial application directory structure.
Creating initial repository structure
|