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 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116
|
2008-12-31 20:42 andi5
* [r17789] src/optional/python-bindings/Makefile.am: Add a make
rule for gnucash_core_c.py.
2008-12-31 20:41 andi5
* [r17788] configure.in: Add dist-bzip2 to dist. Automake-1.10
also supports dist-lzma but adding it to AM_INIT_AUTOMAKE would
require us to assume Automake 1.10 which might not yet be
available on each developer os. When dist'ing I will probably
add a short line to the dist target to tar up the same directory
instead of running dist-lzma manually. BP
2008-12-31 20:06 andi5
* [r17787] src/optional/python-bindings/Makefile.am,
src/optional/python-bindings/tests/Makefile.am: Beautify
python-bindings/Makefile.am. * Remove gnucash_core.i from
_SOURCES, because automake probably does not use it anyway. *
Put flags into separate lines. * Add gnucash_core.c to
maintainer-clean target and wrap it in BUILDING_FROM_SVN, so
that timestamps in tarballs do not try to regenerate it. * Add
example_scripts/*.py, tests/*.py and *.i to EXTRA_DIST.
2008-12-31 19:13 andi5
* [r17786] po/POTFILES.in: Add python-bindings/gnucash_core.c to
po/POTFILES.in.
2008-12-31 18:53 andi5
* [r17785] accounts/fi_FI, accounts/nl: Ignore some generated
files in accounts/.
2008-12-28 20:30 cstim
* [r17784] src/gnome/glade/newuser.glade: Fix typo (incomplete
sentence) as pointed out by Bob Lewis.
2008-12-20 21:21 cstim
* [r17782] src/gnome/gnc-split-reg.c, src/gnome/gnc-split-reg.h,
src/gnome/ui/gnc-reconcile-window-ui.xml,
src/gnome/window-reconcile.c: Bug #563565: Reconcile Window: Add
new action for balancing entry Add a new action "Balance" to
reconcile window. It is only sensitive if the difference is !=
0. If activated, it creates a new transaction in the account
register to adjust the difference. The corresponding account
defaults to the orphan account. Jump to the new transaction in
the register window. Patch by C. Ernst.
2008-12-20 21:16 cstim
* [r17781] src/register/register-gnome/gnucash-sheet.c: Bug
#564928: Fix segfault when closing a invoice tab (r17747
regression) This reverts one hunk of r17747: It's not necessary
because the hash table keys are freed up in
gnucash_sheet_cleer_styles. Patch by Jonathan Kamens. BP
2008-12-20 03:06 plongstaff
* [r17780] src/backend/dbi/gnc-backend-dbi.c,
src/backend/sql/gnc-backend-sql.c,
src/backend/sql/gnc-backend-sql.h,
src/business/business-core/sql/gnc-address-sql.c,
src/business/business-core/sql/gnc-owner-sql.c: Fix Bug 559772 –
SQL backend not non-ascii-safe Sqlite3 uses utf8 encoding for
all char fields, so it is non-ascii-safe. For postgresql, the
default encoding can be set on a per-db basis. Since the
database is not created by gnucash (the tables are, but not the
database), it is for the user to set utf8 encoding when the
database is created. For mysql, a default encoding can be set on
a per-db, per-table or per-field basis. Since there are char
fields which do not need to be utf8 (e.g. guids), encoding is
set on a per-field basis.
2008-12-15 23:55 andi5
* [r17778] packaging/win32/install.sh: Win32: Install italian
documentation. BP
2008-12-14 21:12 cstim
* [r17777] src/gnome-utils/test/test-gnc-recurrence.c: Fix test
whose compile broke with r17725. Sorry for that.
2008-12-14 07:47 andi5
* [r17776] src/bin/gnucash-bin.c: Update latest stable version.
2008-12-14 03:10 andi5
* [r17771] packaging/win32/dist.sh: Win32: In dist.sh, cp
redirect.exe from installation directory instead of build dir. BP
2008-12-10 21:13 cstim
* [r17765] src/import-export/aqbanking/druid-ab-initial.c: Bug
#564033: Fix undefined WEXITSTATUS on FreeBSD Patch by G. Paul
Ziemba. BP
2008-12-09 23:50 andrewsw
* [r17764] src/business/business-reports/easy-invoice.scm,
src/business/business-reports/fancy-invoice.scm,
src/business/business-reports/invoice.scm: implement
customizable invoice title in all three invoices where
previously the user had to hand edit scheme files to change
"Invoice" to "Tax Invoice" and the like, there is now an option
to enter a custom string. This string will override the word
"Invoice" (or "Bill" and "Expense Voucher") in all locations in
the report.
2008-12-08 22:57 andrewsw
* [r17763] src/report/report-system/html-acct-table.scm: clean up
a really ugly piece of scheme code
2008-12-07 22:13 plongstaff
* [r17760] src/gnome-utils/gnc-main-window.c,
src/gnome-utils/gnc-plugin-file-history.c: Fix #559771 – user
and password shown in menu in the clear In
gnc_history_generate_label() and
gnc_main_window_generate_title(), replace the username and
password with an equal-length string of asterisks.
2008-12-07 16:58 plongstaff
* [r17759] src/gnome/gnc-plugin-basic-commands.c: Commit r17686
"Bug 559783 - SQL-related menu entry only when --enable-dbi is
given" introduced a Gtk critical warning because an action was
removed from the compilation, but still referenced from the ui
xml file. This commit changes this so that the database
connection action is still created, but the add_to_window()
function is overriden to set that action insensitive if
--enable-dbi is not given.
2008-12-06 21:54 cstim
* [r17751] src/backend/file/gnc-freqspec-xml-v2.c,
src/backend/file/gnc-recurrence-xml-v2.c,
src/gnome-utils/gnc-frequency.c,
src/gnome/glade/sched-xact.glade: Revert r17730 and re-apply
r17725, "Bug #106401: Add SX weekend occurence to be shifted to
weekdays" This time, the XML element handler for the "weekend
adjustment" is optional so that old files without that element
are read without error. Patch (well, kind of) by Simon Arlott.
* [r17750] src/gnome/dialog-sx-since-last-run.c: Revert accidental
removal of the since-last-run druid pop-up window in r17725.
2008-12-06 21:33 cstim
* [r17749] src/report/report-gnome/dialog-column-view.c: Bug
#563160: Fix confusing order of "Column span" and "Row span" The
report options of multicolumn reports show in the Selected
Reports the attributes "Rows" and "Cols". If choose "Size" to
edit these values a dialog opens with "Column span" and "Row
span" - just the other way around. I always confuse this. This
patch swaps the order in the dialog. Patch by C.Ernst. BP
* [r17748] src/report/report-system/report.scm: Bug #348860: Fix
missing sub-report options when saving a multicolumn report When
writing the report options to saved-reports the embedded reports
(if any exist) are stored too. This is important for saving
multicolumn reports. Patch by C. Ernst. BP
* [r17747] src/register/register-gnome/gnucash-sheet.c,
src/register/register-gnome/gnucash-style.c: Bug #563273: Fix
crash on startup Here's the problem... GnuCash uses a hash table
with int keys to store dimensions, and the key value is the
number of rows in the dimension being stored. The problem is
that this key value is stored in a static int inside the
style_get_key function, which means that the key always has the
same address, and the hash functions in glib2 store the
*address*, not the *value* of the key. Unfortunately, the hash
algorithm changed some time between glib2-2.18.2 and
glib2-2.19.2, such that there's a hash conflict between the key
value 1 and the key value 2, but since the value of the already
hashed key was swiped out from under it when style_get_key
"created" a new key, the hash table entry that's already there
matches even when it shouldn't have. The attached patch cleans
this up by allocating memory to hold the key when inserting it
into the hash table. It also changes the way the hash table is
created to ensure that the memory is freed when a hash table
entry or hash table is destroyed. And while I was at it, I made
the same fix for the cursors hash table, which was also leaking
memory when entries were removed or the table was destroyed.
Patch by Jonathan Kamens. BP
2008-12-01 22:10 andi5
* [r17745] src/gnome-utils/print-session.c: Put
gnc_print_session_fontsel_cb() inside #ifndef
GTKHTML_USES_GTKPRINT. This resolves a compilation error about
GtkButton*.
2008-11-30 21:44 cstim
* [r17743] src/report/standard-reports/budget.scm: Bug #347274:
Add individual column selection to be displayed in the budget
report This patch introduces a new option tab "Display" with
boolean options for each column, as proposed in comment 31. The
default behaviour was (and is now again) to display only Budget
and Actual. Patch by C. Ernst. BP
2008-11-27 10:30 cstim
* [r17731] src/gnome-utils/dialog-book-close.c: Bug #137017: Add
flag to book-closing transactions to distinguish them from
manually entered ones. This seems to be a prerequisite for
fixing the timezone issues discussed in #137017 and references
therein. BP
2008-11-26 22:42 cstim
* [r17730] src/backend/file/gnc-freqspec-xml-v2.c,
src/backend/file/gnc-recurrence-xml-v2.c,
src/gnome-utils/gnc-frequency.c,
src/gnome/glade/sched-xact.glade: Partly revert r17725, "Bug
#106401: Add SX weekend occurence to be shifted to weekdays" The
original patch doesn't seem to deal with backward compatiblity
in the XML parser well enough. This commit reverts the GUI- and
XML-related parts of r17725.
2008-11-26 22:16 cstim
* [r17729] src/report/report-system/report.scm: Unify option name
lookup of stylesheet option in reports. BP
* [r17728] src/report/report-system/report.scm: Bug #345980: Fix
changed stylesheet option that isn't saved in saved reports
Patch by andi5. BP
2008-11-26 21:41 cstim
* [r17727] src/gnome-utils/gnc-html.c,
src/gnome-utils/print-session.c,
src/gnome-utils/print-session.h: Bug #350408: Fix incorrect
fonts in reports and their print preview Patch originally
provided by Paul Andreassen, in bugzilla by Paul Gear.
2008-11-26 21:23 cstim
* [r17726] src/backend/file/gnc-backend-file.c: Bug #405472: Fix
saving files opened over FUSE and sshfs This patch disables
hardlinks on sshfs filesystems. Patch by dhx <bugzilla@dhx.it> BP
2008-11-26 21:17 cstim
* [r17725] src/backend/file/gnc-freqspec-xml-v2.c,
src/backend/file/gnc-recurrence-xml-v2.c,
src/backend/file/gnc-schedxaction-xml-v2.c,
src/engine/Recurrence.c, src/engine/Recurrence.h,
src/engine/gnc-budget.c,
src/engine/test-core/test-engine-stuff.c,
src/engine/test/test-recurrence.c,
src/gnome-utils/gnc-frequency.c,
src/gnome-utils/gnc-recurrence.c,
src/gnome/dialog-sx-from-trans.c,
src/gnome/dialog-sx-since-last-run.c,
src/gnome/druid-acct-period.c, src/gnome/druid-loan.c,
src/gnome/glade/sched-xact.glade,
src/gnome/gnc-plugin-page-budget.c,
src/gnome/gnc-plugin-page-sx-list.c: Bug #106401: Add SX weekend
occurence to be shifted to weekdays The RFE wanted to specify
the date of a scheduled transaction like this: At the 15th of
each month but if that is a saturday or a sunday then at the
next monday after that (or the friday before) This patch
implements this. The contributer writes: Aside from some
combinations being possible that don't make sense (because I
haven't looked at how to hide the extra combo boxes for them),
and some awful code in recurrenceNextInstance to stop it trying
to go backwards (it may make more sense to store the date that
was going to be used next before it's changed back/forward, so
that that can be compared instead), it seems to work ok. Patch
by Simon Arlott.
2008-11-26 14:35 cstim
* [r17724] src/business/business-core/gncAddress.c,
src/business/business-core/gncBillTerm.c,
src/business/business-core/gncCustomer.c,
src/business/business-core/gncEmployee.c,
src/business/business-core/gncEntry.c,
src/business/business-core/gncInvoice.c,
src/business/business-core/gncJob.c,
src/business/business-core/gncOrder.c,
src/business/business-core/gncTaxTable.c,
src/business/business-core/gncVendor.c, src/engine/Account.c,
src/engine/SX-book.c, src/engine/SchedXaction.c,
src/engine/Split.c, src/engine/Transaction.c,
src/engine/gnc-budget.c, src/engine/gnc-commodity.c,
src/engine/gnc-lot.c, src/engine/gnc-pricedb.c: Bug #539957:
Replace struct named assignments by C99 "designated
initializers" Patch by Halton Huo.
2008-11-26 14:22 cstim
* [r17723] configure.in, src/gnome-utils/Makefile.am: Bug #536299
Fix underlinking issue: Conditionally add -lX11 to gnome-utils
Follow-up to r17683. Patch by Andi5. BP
2008-11-26 13:40 cstim
* [r17722] lib/libqof/qof/Makefile.am: Fix missing correct
CPPFLAGS when compiling qofmath test program.
2008-11-26 13:39 cstim
* [r17721] src/engine/test/test-date.c: Bug #506251: Fix test-date
failure on systems with a timezone east of UTC This patch
removes all the calls to check_conversion which test zero
seconds (the epoch) and it changes the check_time function to
skip any timestamps that are before noon on January 1, 1970,
UTC. Patch by Daniel Harding.
2008-11-26 13:32 cstim
* [r17720] configure.in, macros/as-scrub-include.m4: Bug #548218:
Unify command substitution shell pattern The command
substiturion by $(expression) causes configure error on solaris.
Command substitution via $() is even part of
http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
, which I regard as POSIX definition of a shell, i.e. the
absolute minimum I think a shell should be able to do. From that
document, backticks are "just as standarized" as the $() form.
In that sense, this patch is simply unifying the command
substitution pattern in our scripts. Patch by Halton Huo. BP
2008-11-26 13:06 cstim
* [r17719] src/business/business-core/gncInvoice.c,
src/business/business-core/gncInvoice.h,
src/business/business-gnome/dialog-invoice.c: Multicurrency
business features: Handle invoice/bill line items This patch is
the last in the multicurrency set : it deals with conversions
where individual invoice/bill line item accounts are different
from the "owner" currency (aka, the invoice/bill currency). The
original plan was to also have a checkbox to allow the user to
use an account that isn't usually in the owner currency, in the
owner currency, but that's more ornate and requires more time
and code than I have time for right now, so, it's a feature for
future :) I tested out "invoice currency matches the default
books currency and has some accounts that use other currencies"
and "invoice currency does not match default currency and has
some stuff that does and some stuff that doesn't".. it could
probably stand to also be tested by some other folks, but what I
tried worked :) Patch by Jamie Campbell.
2008-11-26 10:50 cstim
* [r17718] src/gnome-utils/glade/transfer.glade: Move "Fetch
price" button next to the exchange rate. Patch by Jamie Campbell.
2008-11-25 11:12 cstim
* [r17716] accounts/Makefile.am, accounts/nl,
accounts/nl/Makefile.am, accounts/nl/acctchrt_full.gnucash-xea,
configure.in: Bug #514455: Adding Dutch (Netherlands)
translation of account template This translation has been
reviewed by one of the gnuchash translators for Dutch nl_NL.
There is no need for an extra translation for Belgium, this
version aims to be 'as Dutch as possible'. This file can now be
used to translate the other templates English to Dutch.
Translation by Pander <pander@users.sourceforge.net>. BP
2008-11-23 18:04 plongstaff
* [r17713] src/backend/dbi/gnc-backend-dbi.c,
src/backend/sql/gnc-account-sql.c,
src/backend/sql/gnc-backend-sql.c,
src/backend/sql/gnc-backend-sql.h,
src/backend/sql/gnc-transaction-sql.c,
src/backend/sql/gnc-transaction-sql.h: Load account balances at
startup. Load splits for an account as required.
2008-11-22 01:16 plongstaff
* [r17712] src/engine/Account.c: Fix bug where
gnc_account_set_cleared_balance() and
gnc_account_set_reconciled_balance() were setting the wrong
field.
2008-11-20 17:11 cstim
* [r17711] src/business/business-gnome/business-gnome-utils.c,
src/engine/gnc-commodity.c, src/engine/gnc-commodity.h,
src/gnome-utils/gnc-account-sel.c: Fix compiler warning/error
about incompatible function pointer type, fixing r17709 This is
fixed by inserting a wrapper function whose pointer has the
correct type as needed by g_list_find_custom.
2008-11-20 17:00 cstim
* [r17710] src/business/business-core/gncInvoice.c,
src/business/business-core/gncInvoice.h,
src/business/business-gnome/business-gnome-utils.c,
src/business/business-gnome/business-gnome-utils.h,
src/business/business-gnome/dialog-payment.c: Add support for
mixed currency for invoice payment This patch extends the
payment dialog to allow paying foreign-currency AP with local
currency, or local-currency AP with foreign currency (I don't
know if there's a use-case for the latter, but it would have
been harder to code to NOT support it). Patch by Jamie Campbell.
* [r17709] src/gnome-utils/gnc-account-sel.c: Fix compiler
warning/error about incompatible function pointer type This is
fixed by inserting a wrapper function whose pointer has the
correct type as needed by g_list_find_custom.
* [r17708] src/business/business-gnome/business-gnome-utils.c,
src/business/business-gnome/business-gnome-utils.h,
src/business/business-gnome/dialog-date-close.c,
src/business/business-gnome/dialog-date-close.h,
src/business/business-gnome/dialog-employee.c,
src/business/business-gnome/dialog-invoice.c,
src/engine/gnc-commodity.c, src/engine/gnc-commodity.h,
src/gnome-utils/dialog-book-close.c,
src/gnome-utils/dialog-options.c,
src/gnome-utils/gnc-account-sel.c,
src/gnome-utils/gnc-account-sel.h, src/gnome/druid-loan.c,
src/gnome/gnc-plugin-page-account-tree.c: Add a new account
selection filter, disallowing bill post to wrong commodity
account This patch adds a new account selection filter allowing
valid commodity to be restricted, and makes use of it for bill
posting. This filter is allowed to be NULL (just as with the
'account type' filter) and when NULL, isn't used. The patch also
fixes a bug where gnc commodity copy wasn't copying mnemonic,
thus erroneously making a copy not equal to the original when
comparison happens. The behaviour is that the user isn't able to
select a post account in the wrong currency. If there is no
possible account (aka, EVERYTHING gets filtered out) they get a
blank combo box. This is consistent with what the account type
filter does when there are no valid account-type accounts. Patch
by Jamie Campbell and Mark Jenkins.
2008-11-20 09:49 cstim
* [r17707] src/gnome-utils/dialog-transfer.c,
src/gnome-utils/glade/transfer.glade: Add a button to get the
latest rate in transfer dialog It's part of the Gnucash
multicurrency extensions project I'm working through, see also
emails Nov 4th 16:42; Nov 4 16:46; Oct 31 16:14 , as well as the
original proposal email oct 23 16:34 (It seems like we're mostly
a 16:00 kind of group) Patch by Jamie Campbell (with one
urgency_hint removed from the glade file)
2008-11-17 21:24 cstim
* [r17706] src/import-export/aqbanking/gnc-ab-utils.h: Change
libaqbanking4 version check to look for >= 3.99.x Martin Preuss
pointed out that 3.9.x might be used as a number for a stable
libaqbanking3 release sometime in the future. BP
2008-11-16 21:44 cstim
* [r17705] src/gnome-search/dialog-search.c,
src/gnome-search/search.glade: Bug #115066: Enable "Search For"
dialog that matches all. Allow to remove all elements which
results in an "empty" new/refinement/... search matching all
available items. In that case grey out the match-type combo in
the upper right corner and add a label "Match all entries" where
the criteria list used to sit. Patch by andi5. BP
2008-11-16 21:29 cstim
* [r17704] src/import-export/import-main-matcher.c: Bug #435427:
Enable sorting in import matcher dialog by clicking on column
header Patch by Shawn Faucher. BP
2008-11-16 20:49 cstim
* [r17703] src/import-export/aqbanking/gnc-ab-utils.h: Fix
libaqbanking4 version number range. Patch by David Reiser.
Needed in addition to r17620. BP
2008-11-13 09:18 cstim
* [r17690] src/report/standard-reports/average-balance.scm: Bug
#543332: Fix severe performance regression in Average Balance
report Patch by Boris Zbarsky. BP
2008-11-10 16:55 rolf
* [r17688] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: make
sure the wording is consistent for all travel expense accounts
2008-11-09 18:11 cstim
* [r17687] src/gnome-utils/dialog-options.c: Bug #560043: Fix
crash after changing the budget option in the budget report.
This was caused by changing the internal structure name of the
GncBudget, in r17369 and originally in r17352. From a quick
glance, the gda-dev branch didn't introduce any further
structure name changes, but those should be reviewed in any case.
2008-11-09 03:40 plongstaff
* [r17686] src/gnome/gnc-plugin-basic-commands.c: Bug #559783 –
SQL-related menu entry only when --enable-dbi is given
Conditionally compile menu entry only if HAVE_DBI_DBI_H is
defined.
2008-11-08 13:40 cstim
* [r17685] src/gnome-utils/gnc-html-graph-gog.c,
src/report/report-system/Makefile.am,
src/report/report-system/html-document.scm,
src/report/report-system/html-linechart.scm,
src/report/report-system/report-system.scm: Add line charts for
reports The contributor writes: I needed a line chart for a
custom report and was surprised to find that it is currently not
supported by Gnucash. Line charts are supported by the GOffice
library, so I implemented line charts based on the bar charts
implementation (and added some new parameters for markers and
grid). Patch by Sven Henkel <shenkel@gmail.com>.
2008-11-07 21:59 cstim
* [r17684] src/report/standard-reports/budget.scm: Replace
bitwise-ior with + because the former is not available on all
systems. See bug #347274 for discussion of this. BP
2008-11-07 21:21 cstim
* [r17683] configure.in, src/backend/file/Makefile.am: Bug #536299
– Fix missing explicit linking of libz Patch by andi5. BP
2008-11-07 21:02 cstim
* [r17680] src/quotes/gnc-fq-helper.in: Bug #339433: FIx price
quote dates off by one day This bug is related to all the rest
of the date-time issues, but has an additional twist because of
finance-quote. Somewhere between the fq-helper and the price db,
gnucash rolls the quote through timespecCanonicalDayTime(),
wherein it first runs localtime_r(), to produce, presumably,
"2008-11-03 19:00:00" for my Eastern US location. Having now
screwed up the date, gnucash runs gnc_tm_set_day_middle() on it
to enter the price in the pricedb as of noon on the wrong date.
Patch by David Reiser.
2008-11-07 20:59 cstim
* [r17679] src/business/business-reports/job-report.scm,
src/report/standard-reports/budget-barchart.scm,
src/report/standard-reports/budget-flow.scm: Bug #559012: Fix
recent reports committed without a guid Gnucash trunk (r17677)
hangs on launch under Mac OS X 10.5.5. The progress bar says
"gnucash/report/standard-reports". Adding a report guid to
budget-flow.scm, budget-barchart.scm, and job-reports.scm fixes
the hang. Patch by David Reiser.
2008-11-02 20:51 cstim
* [r17678] src/report/standard-reports/budget.scm: Bug #347274:
Fix r17675 to calculate correct differences In the patch
committed in r17675 the proposed calculation of differences was
wrong for income and liabilities. This patch should fix this
issue. When back-porting, please make sure to apply this one
too. Patch by C.Ernst. BP
2008-10-31 10:28 cstim
* [r17677] src/register/ledger-core/split-register-control.c: Fix
uninitalized variable that was introduced by an extra scope
added in r17654.
2008-10-29 21:18 cstim
* [r17675] src/report/standard-reports/budget.scm: Bug #347274:
Add option for selecting particular numbers of the budget report
for display. Patch by C.Ernst. BP
2008-10-28 15:01 warlord
* [r17672] src/business/business-reports/Makefile.am: Remove
duplicate report installation Reorder reports alphabetically for
easy listing
2008-10-28 14:58 warlord
* [r17671] lib/libqof/qof/qofbook.h: Fix gcc warning from qof's
lookup macro
2008-10-28 01:07 plongstaff
* [r17668] src/business/business-core/gncAddress.c,
src/business/business-core/gncBillTerm.c,
src/business/business-core/gncCustomer.c,
src/business/business-core/gncEmployee.c,
src/business/business-core/gncEntry.c,
src/business/business-core/gncInvoice.c,
src/business/business-core/gncJob.c,
src/business/business-core/gncOrder.c,
src/business/business-core/gncTaxTable.c,
src/business/business-core/gncVendor.c: If qof commit part2
fails, have error routine call engine to trigger callback to
show an error dialog.
2008-10-27 23:42 plongstaff
* [r17667] src/engine/Account.c, src/engine/SchedXaction.c,
src/engine/Split.c, src/engine/Transaction.c,
src/engine/gnc-budget.c, src/engine/gnc-commodity.c,
src/engine/gnc-engine.c, src/engine/gnc-engine.h,
src/engine/gnc-lot.c, src/engine/gnc-pricedb.c,
src/gnome-utils/gnc-main-window.c: Add a callback to gnc-engine
which will be called when a qof commit fails. Most engine
objects catch the qof commit but then just log the problem to
the trace log. Now, the engine objects will invoke this
callback. gnc-main-window registers a callback and opens a
dialog box to inform the user. This is necessary because with an
sql backend, commits happen whenever an object is created or
modified, not just synchronously when the user selects to save
the file.
2008-10-27 23:39 plongstaff
* [r17666] src/business/business-reports/Makefile.am: Copy
job-report.scm to the install area
2008-10-27 11:20 warlord
* [r17665] src/business/business-gnome/business-urls.c,
src/business/business-gnome/dialog-job.h: The update to
business-urls.c requires dialog-job.h dialog-job.h requires some
additional changes
2008-10-26 22:12 cstim
* [r17664] src/business/business-core/business-core.i,
src/business/business-gnome/business-urls.c,
src/business/business-reports/business-reports.scm,
src/business/business-reports/job-report.scm: Bug #551858: Add
Job Report for the business module The contributor writes: I
need a report which shows me all invoices of a job. This is
similar to the owner-report, e.g. Customer Report. I took the
file of owner-report.scm, changed it so it does the desired and
saved it as job-report.scm. I also had to patch business-core.i
to export the right symbols and business-urls.c to have access
to a link to the Job in the header. A patch is attached and I
would be very pleased if this could make it into gnucash. It
could be possible to unify owner-report and job-report, but I
didn't put too much effort in it. Patch by Stefan Wolf.
2008-10-26 22:01 cstim
* [r17663] src/import-export/import-commodity-matcher.c: Bug
#436920: Fix crash on loading OFX data for a commodity that
exists without cusip field Original patch included also the fix
of r16884, which was applied earlier already. Patch by David
Osguthorpe. BP
2008-10-26 21:53 cstim
* [r17662] src/report/standard-reports/Makefile.am,
src/report/standard-reports/budget-barchart.scm,
src/report/standard-reports/standard-reports.scm: Bug #506856:
Add Budget Bar Chat Report The contributor writes: This report
display the budgeted vs actual budget in a barchart. Patch by
"tbic".
2008-10-26 21:48 cstim
* [r17661] src/report/standard-reports/Makefile.am,
src/report/standard-reports/budget-flow.scm,
src/report/standard-reports/standard-reports.scm: Bug #483108:
Add Budget Flow report The contributor writes: I created the
report to help create a "zero-based" budget for a class I was
taking. I could use the totals at the bottom to make sure every
dollar was allocated some ware. I know virtually nothing about
accounting, the reason I named the report "Budget Flow" is
because it was based off from the "Cash Flow" report.
2008-10-26 21:38 cstim
* [r17660] src/engine/gnc-commodity.c,
src/engine/iso-4217-currencies.scm: Bug #492417: Fix currency
code of Israeli Shekel back to ILS, reverting r10331. New
Israeli Shekel: The informal abbreviation may be "NIS", but its
iso-4217 code is clearly ILS and only this! Incorrectly changed
due to bug#152755 (Nov 2004), r10331, and changed back again by
bug#492417 (Oct 2008). BP
2008-10-26 14:38 cstim
* [r17659] src/gnome/dialog-sx-from-trans.c: Bug #532889: When
showing sx from txn preview dense cal, choose correct starting
month. When creating a scheduled transaction from a given
transaction, the first occurence from the transaction date
onwards is found by calculating the first occurence after the
day before that date. OTOH, that "yesterday" should not be used
as start date of the dense calendar. Patch by Andreas Köhler
<andi5.py@gmx.net>. BP
2008-10-25 20:31 cstim
* [r17658] src/app-utils/date-utilities.scm: Bug #557604: Fix
date-utilities.scm typos. src/app-utils/date-utilities.scm has a
few typos ("set:tm-month" instead of "set:tm-mon" and a few
misplaced parens). This is at least as old as 2.2.6 and still
exists on trunk. Patch by Wolfgang Schnerring, but the first
hunk had one parentheses too many; fixed by me. BP
* [r17657] src/gnome-utils/dialog-account.c: Bug #432457 –
Security/stock import should follow tutorial regarding Account
Name The help files suggest that the user assign the stock
ticker symbol as the account name. There isn't any strong
guidance in the tutorial about what the description should be,
but I think a good default is the full name of the security.
This patch accomplishes my proposal, as long as one navigates to
the right Stock parent account before Clicking New Account.
Patch by David Reiser. BP
2008-10-25 20:30 cstim
* [r17656] src/app-utils/gnc-ui-util.c,
src/app-utils/gnc-ui-util.h,
src/register/ledger-core/split-register-model.c: Bug #529494:
Fix wrong fractional precision in register with multi-currency
transactions This patch replaces the function
gnc_split_value_print_info, which returns the print info for the
currency of the split's transaction, with a new function,
gnc_split_register_print_info, which returns the print info for
the split register's default account. That way the amounts
displayed in the register use the fraction of the register's
account, rather than the fraction of the transaction's currency.
Patch by Daniel Harding. BP
* [r17655] lib/glib28/Makefile.am, lib/libc/Makefile.am,
lib/libqof/backend/file/Makefile.am, lib/libqof/qof/Makefile.am,
lib/stf/Makefile.am, packaging/win32/Makefile.am,
src/app-utils/Makefile.am, src/app-utils/test/Makefile.am,
src/backend/file/Makefile.am, src/backend/file/test/Makefile.am,
src/backend/postgres/Makefile.am,
src/backend/postgres/test/Makefile.am, src/bin/Makefile.am,
src/business/business-core/Makefile.am,
src/business/business-core/file/Makefile.am,
src/business/business-core/test/Makefile.am,
src/business/business-gnome/Makefile.am,
src/business/business-ledger/Makefile.am,
src/business/business-utils/Makefile.am,
src/business/dialog-tax-table/Makefile.am,
src/calculation/Makefile.am, src/core-utils/Makefile.am,
src/engine/Makefile.am, src/engine/test-core/Makefile.am,
src/engine/test/Makefile.am,
src/experimental/cgi-bin/Makefile.am,
src/gnc-module/Makefile.am, src/gnc-module/test/Makefile.am,
src/gnc-module/test/misc-mods/Makefile.am,
src/gnc-module/test/mod-bar/Makefile.am,
src/gnc-module/test/mod-baz/Makefile.am,
src/gnc-module/test/mod-foo/Makefile.am,
src/gnome-search/Makefile.am, src/gnome-utils/Makefile.am,
src/gnome/Makefile.am, src/import-export/Makefile.am,
src/import-export/binary-import/Makefile.am,
src/import-export/binary-import/test/Makefile.am,
src/import-export/csv/Makefile.am,
src/import-export/hbci/Makefile.am,
src/import-export/log-replay/Makefile.am,
src/import-export/ofx/Makefile.am,
src/import-export/ofx/test/Makefile.am,
src/import-export/qif-import/Makefile.am,
src/import-export/qif-io-core/Makefile.am,
src/import-export/qif-io-core/test/Makefile.am,
src/import-export/qif/Makefile.am,
src/import-export/qif/test/Makefile.am,
src/import-export/test/Makefile.am,
src/register/ledger-core/Makefile.am,
src/register/ledger-core/test/Makefile.am,
src/register/register-core/Makefile.am,
src/register/register-core/test/Makefile.am,
src/register/register-gnome/Makefile.am,
src/register/register-gnome/test/Makefile.am,
src/report/locale-specific/us/Makefile.am,
src/report/report-gnome/Makefile.am,
src/report/report-system/Makefile.am,
src/report/standard-reports/Makefile.am,
src/report/stylesheets/Makefile.am,
src/report/utility-reports/Makefile.am, src/tax/us/Makefile.am,
src/test-core/Makefile.am: Bug #514043: Use AM_CPPFLAGS instead
of AM_CFLAGS. AM_CFLAGS is passed both to the compiler (.c ->
.o) and to the linker, so it should only have flags that are
appropriate for both steps. AM_CPPFLAGS is passed only to the
compiler, so flags that are only appropriate for that step (-I
and -D flags, for example), should be in _CPPFLAGS instead of
_CFLAGS. Every gnucash-2.2.3 Makefile.am that passes -I flags
gets it wrong, placing them in _CFLAGS. It's not a functional
bug (the linker ignores -I flags), but a ton of superfluous
flags makes the build output pretty verbose and hard to debug
when things do go wrong. To make matters more confusing as a
developer, the FOO_CFLAGS variable set by PKG_CHECK_MODULES(FOO)
is actually for _CPPFLAGS in the Makefile.am ('pkg-config
--cflags' returns the -I flags). A related -I bug (one that *is*
functionally broken) is that sometimes a local (build dir) -I
flag is passed after a global (installed dependent library) one.
If my system happens to have a header installed from some
unrelated thing, compiler will find *that* one instead of the
expected one in the source directory. Should always pass all
local -I before any global ones. Patch by andi5 plus one manual
addition in src/gnome-utils/Makefile.am
2008-10-25 20:05 cstim
* [r17654] src/register/ledger-core/split-register-control.c: Bug
#128774: Try to fix "edit exchange rate" context menu
disfunctionality Patch by andi5: The logic to determine whether
there is an exchange rate dialog to be showed is complex and
should not run when you user traverses her register. This patch
adds a bit more information for the user where this logic
previously silently returned without action. Comment from i18n
maintainer (cstim): The bug in question is severe enough to
justify new strings here. Just go ahead and add more explanatory
messages as needed. BP
2008-10-25 19:58 cstim
* [r17653] configure.in: Bug #554042: Fix configure fail on
checking 'unsigned long is at least as big as guint32' This is
new patch including fix checking 'unsigned long is at least as
big as guint32' and 'guile long_long is at least as big as
gint64' Patch by Halton Huo. BP
2008-10-25 19:48 cstim
* [r17651] src/backend/sql/gnc-price-sql.c: Bug #557848: Fix
uninitialized variable. gcc gives a correct warning about a
possibly uninitialised variable. This stops compilation. Patch
by joslwah@gmail.com.
2008-10-25 09:32 cstim
* [r17646] src/gnome/glade/account.glade: Fix Tax-related
inconsistency in UI Changes the 'Sensitive' Property to 'No'
from 'Yes' in 'account.glade' for the 'tax_related_button'
widget so that the setting is displayed but cannot be changed in
the account edit dialog. Sets the Tooltip property to "Use
Edit->Tax Options to set the tax-related flag and assign a tax
code to this account." in 'account.glade'. Patch by "J. Alex
Aycinena" <alex.aycinena@gmail.com> BP
2008-10-25 08:59 cstim
* [r17644] src/business/business-gnome/dialog-date-close.c,
src/business/business-gnome/dialog-date-close.h,
src/business/business-gnome/dialog-employee.c,
src/business/business-gnome/dialog-invoice.c,
src/gnome-utils/dialog-options.c,
src/gnome-utils/gnc-account-sel.c,
src/gnome-utils/gnc-account-sel.h, src/gnome/druid-loan.c: Add
account defaulting for posting vendor bill In the post screen
for vendor bills, in trunk, the account combo box initially has
no entry and the user needs to pick one. This isn't a bug, but
is an extra step for the user, so the trunk patch does
defaulting. I tested the "memory" function to make sure the
defaulting doesn't smash the account the user picked for this
vendor the last time through, and it works (doesn't conflict).
Patch by aradzak <aradzak@oracleatbelfry.com>.
2008-10-22 20:40 cstim
* [r17638] src/import-export/aqbanking/gnc-file-aqb-import.c:
Fixed a bug in AqBanking import code (don't use GWEN's buffered
io here). Patch by Martin Preuss. BP
2008-10-21 08:32 cstim
* [r17635] po/README: Update pointer to translation documentation.
By Zhang Weiwu. BP
2008-10-20 19:41 cstim
* [r17633] doc/TRANSLATION_HOWTO: Updates to translation howto, by
Zhang Weiwu. Note that the up-to-date text about this should be
in the wiki, http://wiki.gnucash.org/wiki/Translation BP
2008-10-17 02:50 cedayiv
* [r17628] src/register/ledger-core/split-register.c: Bug #393383,
#426111: Stop the register from thinking that brand-new
transactions are being edited in multiple registers. This
appears to have been a special case that was being missed. BP
2008-10-16 03:02 cedayiv
* [r17627] src/report/report-system/commodity-utilities.scm:
Reporting: Fix the Average Cost price source computation for a
certain case. As this is a signed computation with the sign
indicating the direction of buy/sell, it is necessary to flip
the sign if you ever flip the sense of buy or sell. BP
2008-10-12 16:51 cedayiv
* [r17623] src/register/ledger-core/split-register.c: Register:
Add a couple of missing calls to functions that use
gnc_suspend_gui_refresh() so that they cannot exit without
calling gnc_resume_gui_refresh(). Also add a
gnc_suspend_gui_refresh()/gnc_resume_gui_refresh() pair around a
commit that was missing it. This partially fixes bug #393383 and
bug #426111, as it resolves the problem of being unable to enter
new transactions after the message box appears. (The message box
should still not appear in the first place, however.) BP
2008-10-05 22:14 andi5
* [r17621] packaging/win32/aqbanking-3.7.2.patch: Win32:
LT_PROG_RC seems to be internal as well, use AC_CHECK_TOOL
instead.
2008-10-05 20:54 cstim
* [r17620] src/import-export/aqbanking/druid-ab-initial.c,
src/import-export/aqbanking/gnc-ab-getbalance.c,
src/import-export/aqbanking/gnc-ab-gettrans.c,
src/import-export/aqbanking/gnc-ab-transfer.c,
src/import-export/aqbanking/gnc-ab-utils.h,
src/import-export/aqbanking/gnc-file-aqb-import.c: Allow
source-code compatibility to upcoming libaqbanking4 in parallel
to libaqbanking3. Patch contributed by Martin Preuss, modified
by CS. BP
2008-10-05 17:15 andi5
* [r17618] packaging/win32/install.sh,
packaging/win32/libdbi-0.8.3.patch: Win32: Add
AC_LIBTOOL_WIN32_DLL to libdbi.
2008-10-05 17:08 andi5
* [r17617] packaging/win32/aqbanking-3.7.2.patch: Win32: Replace
AC_LIBTOOL_RC by LT_PROG_RC in aqbanking's configure.ac file.
2008-10-05 16:55 andi5
* [r17616] packaging/win32/defaults.sh,
packaging/win32/install.sh: Win32: Improve cross-compiling by
making aclocal fail less often and adding a few ${HOST_XCOMPILE}.
2008-10-05 13:49 andi5
* [r17615] packaging/win32/install.sh: Win32: Untabify install.sh.
2008-10-05 13:48 andi5
* [r17614] packaging/win32/aqbanking-3.7.2.patch,
packaging/win32/defaults.sh, packaging/win32/install.sh: Win32:
Improve cross-compiling of aqbanking.
2008-09-30 21:50 andi5
* [r17612] packaging/win32/aqbanking-3.7.2.patch,
packaging/win32/defaults.sh, packaging/win32/dist.sh,
packaging/win32/install.sh, packaging/win32/reset.sh: Win32: Add
initial support for compiling against AqBanking v3. Patch from
Shawn Faucher with little modifications. This still needs a lot
of testing and improvements still.
2008-09-28 15:32 andi5
* [r17611] src/gnome-utils/gnc-html.c,
src/gnome-utils/gnc-main-window.c,
src/gnome-utils/print-session.c,
src/gnome-utils/print-session.h,
src/gnome-utils/ui/gnc-main-window-ui.xml,
src/gnome/dialog-print-check.c: Bug #531871: Add a page setup
dialog. Save the page setup in a static variable in
print-session.c and use it when initializing a
GtkPrintOperation. Add gnc_ui_page_setup() and offer access to
it from a File > Pa_ge Setup... menu entry.
2008-09-28 15:31 andi5
* [r17610] src/gnome-utils/Makefile.am,
src/gnome-utils/gnc-html.c, src/gnome-utils/print-session.c,
src/gnome-utils/print-session.h, src/gnome/dialog-print-check.c:
Unite report and check print settings. If Gtk+ includes GtkPrint
support, i.e. HAVE_GTK_2_10 is defined, and GtkHTML uses it,
i.e. GTKHTML_USES_GTKPRINT, then we currently save and restore
print settings in two different locations, namely static
variables in gnc-html.c and dialog-print-check.c. Instead, add
the function gnc_print_operation_{save,restore}_print_settings()
to print-session.[ch] to have a unique global location for them.
* [r17609] src/bin/gnucash-bin.c: Update latest stable version.
2008-09-27 19:50 cstim
* [r17607] accounts/Makefile.am, accounts/fi_FI,
accounts/fi_FI/Makefile.am,
accounts/fi_FI/acctchrt_common.gnucash-xea,
accounts/fi_FI/acctchrt_ry.gnucash-xea, configure.in: Add
Finnish account templates. One template is the default one
(common accounts), the other ("ry") is for a finnish non-profit
organisation. Tuomo Kohvakka <tuomo.kohvakka@iki.fi> BP
2008-09-27 17:31 plongstaff
* [r17606] src/backend/dbi/gnc-backend-dbi.c,
src/backend/sql/gnc-account-sql.c,
src/backend/sql/gnc-account-sql.h,
src/backend/sql/gnc-backend-sql.c,
src/backend/sql/gnc-backend-sql.h,
src/backend/sql/gnc-book-sql.c, src/backend/sql/gnc-book-sql.h,
src/backend/sql/gnc-budget-sql.c,
src/backend/sql/gnc-commodity-sql.c,
src/backend/sql/gnc-commodity-sql.h,
src/backend/sql/gnc-lots-sql.c, src/backend/sql/gnc-price-sql.c,
src/backend/sql/gnc-recurrence-sql.c,
src/backend/sql/gnc-recurrence-sql.h,
src/backend/sql/gnc-schedxaction-sql.c,
src/backend/sql/gnc-schedxaction-sql.h,
src/backend/sql/gnc-slots-sql.c,
src/backend/sql/gnc-slots-sql.h,
src/backend/sql/gnc-transaction-sql.c,
src/backend/sql/gnc-transaction-sql.h,
src/business/business-core/sql/gnc-bill-term-sql.c,
src/business/business-core/sql/gnc-bill-term-sql.h,
src/business/business-core/sql/gnc-customer-sql.c,
src/business/business-core/sql/gnc-employee-sql.c,
src/business/business-core/sql/gnc-entry-sql.c,
src/business/business-core/sql/gnc-invoice-sql.c,
src/business/business-core/sql/gnc-job-sql.c,
src/business/business-core/sql/gnc-order-sql.c,
src/business/business-core/sql/gnc-tax-table-sql.c,
src/business/business-core/sql/gnc-vendor-sql.c: Improve error
handling. If an SQL command fails, set the qof backend error
code. Unfortunately, at this time, the front end seems to ignore
the error (other than logging it).
2008-09-27 12:18 cstim
* [r17605] accounts/de_DE/acctchrt_wohnungsw.gnucash-xea: Fix
incomplete r17604; fix wrong title and add root account.
2008-09-27 12:07 cstim
* [r17604] AUTHORS, accounts/de_DE/Makefile.am,
accounts/de_DE/acctchrt_wohnungsw.gnucash-xea: Added German
account template for a Wohnungswirtschaft business, by Christoph
Franzen. Originally proposed here
http://lists.gnucash.org/pipermail/gnucash-de/2005-December/003651.html
2008-09-27 11:28 cstim
* [r17602] AUTHORS, src/report/locale-specific/us/taxtxf.scm:
Heavily improved Tax Report & TXF export by Alex Aycinena.
Prints tax information sorted by Form/Schedule, tax code,
account, transaction and date instead of by account hierarchy.
Allows any tax code to be assigned to multiple accounts. No
longer double counts transactions when a parent account is not a
placeholder and has transactions posted to it. Converts non-USD
accounts and transactions to USD instead of adding across
currencies. Provides an error dialog instead of crashing gnucash
when exporting a file without write permission. Provides
additional options to adjust the level of detail shown on the
report. Patch by J. Alex Aycinena <alex.aycinena@gmail.com>.
2008-09-26 23:32 cedayiv
* [r17598] src/import-export/qif-import/qif-file.scm,
src/import-export/qif-import/qif-objects.scm,
src/import-export/qif-import/qif-parse.scm: QIF Import: Remove
the changes for bug #141003 but leave the fix to bug #141002
intact. A reworked fix for bug #141003 will be committed
separately. BP
2008-09-26 13:15 cstim
* [r17595] AUTHORS, configure.in, po/fi.po: Add Finnish
translation by Tuomo Kohvakka. BP
2008-09-26 02:46 andi5
* [r17592] packaging/win32/dist.sh: Win32: Ship the correct
redirect.exe. BP
2008-09-25 23:21 andi5
* [r17590] packaging/win32/install.sh: Win32: Make intltool-merge
usable. BP
2008-09-22 21:10 cedayiv
* [r17588] src/gnome-utils/gnc-date-edit.c: GNCDateEdit: Eliminate
the need to click the button twice to pop the calendar down in
some cases. BP
2008-09-21 19:29 cstim
* [r17587] src/register/ledger-core/split-register.c: [17586] Fix
compiler warning about potentially uninitialized variable.
2008-09-21 15:18 andi5
* [r17585] lib/libqof/qof/qoflog.h,
src/app-utils/gnc-exp-parser.c, src/app-utils/gnc-helpers.c,
src/app-utils/option-util.c, src/backend/file/sixtp-utils.c,
src/business/business-core/gncBusGuile.c,
src/business/business-gnome/business-options-gnome.c,
src/business/business-gnome/dialog-invoice.c,
src/business/business-utils/business-options.c,
src/core-utils/gnc-gobject-utils.c, src/engine/engine-helpers.c,
src/engine/kvp-scm.c, src/gnome-utils/dialog-options.c,
src/gnome/gnc-plugin-page-register.c,
src/report/report-gnome/dialog-column-view.c,
src/report/report-gnome/gnc-plugin-page-report.c,
src/report/report-system/gnc-report.c: Bug #539947: Replace
__FUNCTION__ by G_STRFUNC. Patch from Halton Huo. BP
2008-09-19 20:51 cedayiv
* [r17576] src/app-utils/gnc-ui-util.c: Revision to simplify
r17555 (no functional change). BP
2008-09-19 20:45 cedayiv
* [r17575] src/business/business-reports/owner-report.scm: Bug
#549738: Set the default start and end dates to "start of
accounting period" and "today", respectively, on customer,
vendor, and employee reports. BP
2008-09-19 17:43 andi5
* [r17572] .gitignore: Further update .gitignore. BP
2008-09-19 17:35 andi5
* [r17571] .gitignore: Update .gitignore. BP
2008-09-19 16:25 andi5
* [r17567] src/backend/file/io-gncxml-v2.c,
src/gnome-utils/gnc-html.c, src/gnome/dialog-print-check.c: Do
not treat -Wstrict-aliasing warnings as errors in files using
G_LOCK. See https://bugzilla.gnome.org/show_bug.cgi?id=316221 for
information why G_LOCK breaks strict-aliasing. GCC 4.2
introduced diagnostic pragmas and the error seems to be most
prominent on GCC >= 4.3, so a compilation with -Werror should
succeed now on most systems, at least on those it worked on
before. BP
2008-09-19 16:09 andi5
* [r17566] src/import-export/aqbanking/gnc-ab-utils.c: Add a
variable initialization to bal_accountinfo_cb(). That
initialization is not strictly necessary, because best_time is
used only if best is non-NULL and but both variables are set in
the same block. BP
* [r17565] src/business/business-core/business-core.i,
src/business/business-gnome/business-urls.c,
src/business/business-gnome/dialog-invoice.c: In some files, do
not disable -Waddress completely but keep it as warning instead.
surely avoids problems with -Werror in those files, but
"warning" will make sure that the warnings are still showed, but
not treated as errors. BP
2008-09-19 02:14 andi5
* [r17557] po/POTFILES.in: Add new source files to POTFILES.in.
2008-09-18 22:21 cedayiv
* [r17556] src/gnome/dialog-price-editor.c: Price Editor: Set the
correct source for new, user-entered prices. This builds on
r17525 to fix this problem, which was introduced in r17444.
2008-09-18 20:49 cedayiv
* [r17555] src/app-utils/gnc-ui-util.c: Fix printing of fractions
when parentheses are shown for negative values. BP
2008-09-18 08:33 cedayiv
* [r17554] lib/libqof/qof/gnc-numeric.c: gnc_numeric: Support
reciprocals (negative denominators) in gnc_numeric_to_decimal().
BP
2008-09-18 02:26 cedayiv
* [r17553] src/gnome-utils/gnc-amount-edit.c: GNCAmountEdit: Put
the text through the expression parser once instead of twice.
This caused a problem in locales that print negative numbers in
parentheses. For example, if you entered "-4/3", after the first
parse the displayed text would change to "(1 + 1/3)", meaning
negative one and one-third. Parsing that text a second time
changes the text to "1 + 1/3" since, to the expression parser,
parentheses indicate grouping rather than sign. The reason the
GNCAmountEdit was putting the text through the parser twice was
that it was setting gae->need_to_parse FALSE, but then
immediately calling gtk_entry_set_text(), which issues a
"changed" signal. The callback for that signal was setting
gae->need_to_parse back to TRUE. So I simply changed the order
of the statements. BP
2008-09-17 04:17 andi5
* [r17535] src/gnome-utils/gnc-tree-view-commodity.c,
src/gnome-utils/gnc-tree-view-price.c: In price and commodity
tree views, restore gconf settings after initialization.
Previously, gconf settings like sort column and order for price
and commodity dialogs were read in while creating the main tree
view objects themselves, i.e. before a model has been set. In
this early stage of initialization, these properties cannot
always be set and are ignored subsequently. Instead, apply the
properties after the view has been built and set default sorting
column only if no column has been found in gconf. BP
2008-09-16 23:00 andi5
* [r17534] lib/libqof/qof/gnc-numeric.c: Optimize
gnc_numeric_check() by G_LIKELY-fying that the denominator is
non-zero.
2008-09-16 22:59 andi5
* [r17533] src/app-utils/gnc-ui-util.c: When printing negative
quotients, use a minus between the integer and fraction part.
Previously: print g_n_c(-4, 3) => "-1 + 1/3", now "-1 - 1/3". BP
2008-09-16 14:05 andi5
* [r17532] AUTHORS: UTF-8-ize AUTHORS.
2008-09-16 13:25 andi5
* [r17531] src/gnome-utils/dialog-transfer.c: Correct amount print
infos in transfer dialogs. When initializing an exchange rate
dialog, the debit and credit amounts are not printed with the
correct print info, as they are not set at all. When changing
the debit account, the debit amount is not printed with the
correct print info, as it is set after the amount has been
updated.
2008-09-16 00:57 andi5
* [r17530] src/register/ledger-core/split-register-layout.c: Bug
#506265: Hide the right-most register column by unsetting the
sample text.
* [r17529] src/register/ledger-core/split-register-layout.c:
Correct specified numbers of columns of AP/AR and STOCK/CURRENCY
registers.
2008-09-15 18:24 andi5
* [r17528] src/gnome/dialog-sx-from-trans.c,
src/gnome/glade/sched-xact.glade: Hide the sx from txn dialog
und show it only when the txn is valid. There is no reason for
popping up a window under a modal error dialog and close it once
the user acknowledged the error.
2008-09-15 17:36 andi5
* [r17527] src/gnome-utils/dialog-transfer.c: Negate amount in
exchange rate dialog when swapping accounts. This is the case
when entering an amount for a split with an account whose base
commodity equals the register's one, but differs from the
transaction currency. Then, debit and credit accounts in the
transfer dialog are swapped, so the amount should be negated as
well.
2008-09-15 13:13 andi5
* [r17526] src/engine/gnc-pricedb.c: In check_one_price_date(),
replace an strcmp() by safe_strcmp(). When there is no source
string set on a price, do not crash on it. BP
* [r17525] src/gnome/dialog-price-editor.c: Correctly set price
sources in price editor dialog by reading it from the gui. On
trunk, the price tied to a price editor dialog is not
initialized with a source string anymore, so correctly read it
from the gui before committing the price.
* [r17524] src/backend/file/gnc-backend-file.c: Bug #549595,
#552306: Correct retval of gnc_int_link_or_make_backup(), add
ENOSYS and ENOTSUP. The return value of link(2) on files
residing on sshfs will be ENOSYS, on network hfsplus file
systems on mac ENOTSUP, so add them to the list of those errnos
that trigger copy_file as fallback in
gnc_int_link_or_make_backup() or are allowed in
gnc_file_be_get_file_lock() showing that hardlinks are not
supported. To avoid silent data loss in the case of an
unexpected errno in gnc_int_link_or_make_backup(), correctly set
the backend error. Patches from Micha Lenk and Boris Zbarsky. BP
2008-09-14 20:03 cedayiv
* [r17509] src/import-export/qif-import/qif-file.scm,
src/import-export/qif-import/qif-objects.scm,
src/import-export/qif-import/qif-parse.scm: Bug #141003: Revise
r17489 to escape the British Pound symbol in Scheme with "\xa3"
(for strings) or #\243 (for characters). BP
2008-09-14 17:48 cedayiv
* [r17508] src/report/report-gnome/dialog-style-sheet.c,
src/report/report-gnome/window-report.c: Bug #551038: Don't
destroy the options database before destroying the options
dialog that depends on it. BP
2008-09-14 16:52 cedayiv
* [r17507] src/register/ledger-core/split-register-control.c,
src/register/ledger-core/split-register-p.h,
src/register/ledger-core/split-register.c: Bug #340041, #436342:
Make the register keep track of whether the exchange rate has
been reset. This prevents a zero exchange rate from being
ambiguous: previously the register could not tell the difference
between "the user has not specified an exchange rate" and "the
user has specified a rate of zero". Much of this patch consists
of new ENTER(), DEBUG() and LEAVE() calls for debugging. Nearly
all of the rest is refactoring. The code that detected and acted
on changes to the account cell has been placed into its own
function, gnc_split_register_check_account(). The several calls
needed to checking a cell for changes have been combined in
gnc_split_register_check_cell(). About 15 lines represent actual
changes in functionality. Specifically, the code does a better
job of recognizing when an exchange rate needs to be requested
from the user, and when it does not. When an account cell is
changed in the register, and the new account is denominated in
the same commodity as the original, the original exchange rate
is used. On the other hand, if the commodity differs, the rate
is reset to zero. The register remembers that the zero exchange
rate is due to the reset (i.e. was not user-entered) so that the
the exchange rate dialog can be presented. Finally, the cell
contents are checked before doing a save; previously the checks
were missed in certain cases, e.g. if the user pressed "Enter"
or clicked the close button. BP
2008-09-14 16:05 cedayiv
* [r17506] src/register/ledger-core/split-register.c: Register:
Log some debugging information just before crashing because of
g_assert_not_reached(). This should hopefully provide some new
information to help track down the underlying cause of bug
#414407, #420409, #468106, and #551643. BP
2008-09-13 18:49 plongstaff
* [r17505] src/backend/sql/gnc-backend-sql.c,
src/backend/sql/gnc-backend-sql.h,
src/backend/sql/gnc-lots-sql.c: If current lots version has
account_guid constraint that it can't be null, remove it and
bump table version number.
2008-09-13 14:45 andi5
* [r17504] packaging/win32/install-fq-mods.bat: Win32: Always try
to install Date-Manip and as fallback DateManip. It seems that
the PPM repositories for ActivePerl v5.6 and v5.8 have been
changed so that DateManip cannot be found anymore. Keep it for
second try nonetheless. BP
2008-09-13 02:05 plongstaff
* [r17503] src/backend/sql/gnc-lots-sql.c: Remove constraint that
lot.account_guid must not be null. Unfortunately, sqlite doesn't
support ALTER TABLE which modifies column constraints, so
existing databases can't be modified programmatically.
2008-09-11 06:58 andi5
* [r17502] src/import-export/aqbanking/gnc-ab-transfer.c: Treat
AB_Job_StatusPending as a good status, do not ask the user to
repeat. According to Martin Preuss a lot of banks set the status
of a transaction job to pending, signifying that they accepted
the job but have not yet executed it. This also means that we
cannot detect whether the account is actually overdrafted.
Instead, ignore the return value of AB_Banking_ExecuteJobs() (it
will almost always be 0) and only check the job's status against
AB_Job_StatusFinished and AB_Job_StatusPending. If the status is
different, ask the user whether he wants to repeat, as usual. BP
2008-09-10 17:52 warlord
* [r17500] src/engine/engine.i: export the various QOF_PARAM_*
settings to guile BP
2008-09-10 16:16 andi5
* [r17499] packaging/win32/install-fq-mods.bat: Bug #506873,
Win32: Add support for Finance-Quote with ActivePerl 5.10. BP
2008-09-06 18:13 warlord
* [r17498] src/backend/sql/gnc-backend-sql.c: Use G_GINT64_FORMAT
instead of %lld for x86_64
2008-09-06 18:12 warlord
* [r17497] po/POTFILES.in: Add SQL glade file so "make check"
succeeds
2008-09-06 17:22 andi5
* [r17496] src/gnome-utils/dialog-transfer.c,
src/gnome-utils/gnc-dense-cal-model.c,
src/gnome-utils/gnc-dense-cal.c,
src/gnome-utils/gnc-plugin-page.c: Bug #539962: Remove return
value from some void functions. Patch from Halton Huo. BP
2008-09-06 17:21 andi5
* [r17495] src/import-export/aqbanking/gnc-ab-utils.c: Bug
#548601: Do not import unawaited zero balances from aqbanking.
Check whether an unawaited balance is zero and simply ignore it
in this case. Unawaited here means that the user asked the
application to fetch transactions, issue a transaction or
anything else not resembling the fetching of account balances.
Patch from Micha Lenk. BP
2008-09-06 17:20 andi5
* [r17494] configure.in: Bug #540148: Allow building against
libgoffice-0.8, i.e. goffice >= v0.7.0. Patch from Halton Huo.
2008-09-05 05:08 cedayiv
* [r17493] src/gnome-utils/gnc-date-edit.c,
src/gnome-utils/gnc-date-edit.h: Bug #378734, #520570, #545316,
#549115: Fix GNCDateEdit widget popup calendar problems. -Fix
popup button behavior (sometimes non-responsive) -Make calendar
clickable in modal dialogs -Update design to be more like
GtkComboBox, less like GtkCombo -Adjust a few signal names, e.g.
"focus-out-event" vs. "focus_out_event" -Lose the GtkFrame
shadowing; perhaps the GtkFrame is no longer needed -Add
comments -Add a few ENTER() and LEAVE() calls for debugging BP
2008-09-03 20:43 andi5
* [r17492] src/gnome/gnucash.desktop.in.in: Bug #546064: Make
gnucash.desktop survive a desktop entry specification 1.0
verification. Patch from Saïvann Carignan. BP
2008-09-03 00:11 cedayiv
* [r17490] src/import-export/qif-import/qif-parse.scm: Bug
#141002: QIF Import: Allow minus signs at the end of numeric
values, e.g. "$10.00-". BP
2008-09-02 20:20 cedayiv
* [r17489] src/import-export/qif-import/qif-file.scm,
src/import-export/qif-import/qif-objects.scm,
src/import-export/qif-import/qif-parse.scm: Bug #141003: QIF
Import: Allow the British Pound symbol and the dollar symbol to
be used interchangeably. BP
2008-09-02 07:13 cstim
* [r17488] make-gnucash-potfiles.in, po/POTFILES.ignore: Add
ignore pattern to POTFILES.in creation to ignore swig generated
files. BP
2008-09-01 20:44 andi5
* [r17485] src/gnome-utils/dialog-totd.c: Fix the i18n of the
first and last string in the list of tips of the day. Add a call
to g_strstrip() on the tips to remove unwanted whitespace. The
first and last item should appear translated now. BP
2008-08-31 23:30 cedayiv
* [r17483] src/business/business-reports/aging.scm: Bug 549738:
Make "today" the default date of the aging reports. BP
2008-08-31 04:20 andi5
* [r17482] src/engine/iso-4217-currencies.scm: Bug #526313: Add
currency Venezuelan Bolivar Fuerte (VEF). It will replace the
Venezuelan Bolivar (VEB) in 2008. Patch from Frank H.
Ellenberger. BP
2008-08-26 17:09 cedayiv
* [r17479] packaging/win32/install.sh: Win32 build: Fix a typo to
get trunk working on win32/mingw again.
2008-08-21 17:47 cedayiv
* [r17477] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif-guess-map.scm: Bug #548891: QIF
Import: Prevent crashing when the mapping preferences can't be
saved. BP
2008-08-21 00:13 cedayiv
* [r17476] AUTHORS: AUTHORS: Add Frank Ellenberger and update my
own details. BP
2008-08-20 12:31 plongstaff
* [r17475] src/business/business-core/gncInvoice.c: Add
begin-edit/commit-edit calls around lot manipulation when
posting an invoice. This keeps the sql backend from trying to
save a lot with a null account.
2008-08-20 12:09 plongstaff
* [r17474] packaging/win32/dist.sh,
packaging/win32/gnucash.iss.in, packaging/win32/install.sh,
packaging/win32/reset.sh: Additional win32 packaging changes for
installation (including libdbi). Provided by Nathan Buchanan
2008-08-17 16:38 plongstaff
* [r17473] packaging/win32/defaults.sh,
packaging/win32/install.sh, packaging/win32/libdbi-0.8.3.patch,
packaging/win32/libdbi-drivers-Makefile.in.patch,
packaging/win32/libdbi-drivers-dbd_sqlite3.c.patch: Add support
to build trunk with libdbi and dbi backend on win32/mingw
2008-08-15 17:04 cedayiv
* [r17472] src/engine/iso-4217-currencies.scm: Bug #543061: Fix
the smallest fraction of IDR currency to match ISO 4217. BP
2008-08-14 16:41 cedayiv
* [r17471] src/gnome-utils/gnc-tree-model-commodity.c: Bug
#454340: Prevent duplicate rows after editing a security. These
changes are similar to what was done for the price tree model in
r17441 and r17470. BP
2008-08-14 15:52 cedayiv
* [r17470] src/gnome-utils/gnc-tree-model-price.c: Update a few
comments to fix typos and inaccuracies, or to add further
clarification. BP
2008-08-13 17:47 cedayiv
* [r17469] src/gnome/dialog-commodities.c: Usability: Security
Editor: Previously, nothing happened when a namespace row was
activated. Now these rows will expand or collapse. It is often
easier to double-click the row than hunt for the expander. BP
2008-08-13 17:44 cedayiv
* [r17468] src/gnome-utils/gnc-tree-view-commodity.c: Usability:
Sort commodity trees on the commodity name by default. This
allows for a consistent default sort even if commodities are
quickly removed from and re-added to the model. This can happen,
for example, when a commodity is edited in the Security Editor.
BP
2008-08-12 20:12 cedayiv
* [r17467] src/engine/gnc-pricedb.c: Prices: Emit a qof event when
a price is changed. This allows the Price Editor to immediately
update its display. Previously, price changes would only get
shown when the mouse happened to pass over the affected row.
Theoretically other parts of GnuCash, such as reports, could now
be made to watch for price changes and automatically refresh
themselves. BP
2008-08-12 19:14 cstim
* [r17464] AUTHORS, src/gnome-utils/dialog-commodity.c,
src/gnome-utils/glade/commodity.glade,
src/gnome-utils/gnc-tree-view-commodity.c,
src/gnome/schemas/apps_gnucash_dialog_commodities.schemas.in:
Bug #529816: Clarify i18n strings and comments concerning CUSIP
and ISIN. Patch by Frank H. Ellenberger. BP
2008-08-12 18:05 cedayiv
* [r17463] src/gnome-utils/dialog-transfer.c: Transfer dialog:
Don't round quotes pulled from the price db. BP
2008-08-11 21:55 cedayiv
* [r17462] src/gnome-utils/dialog-transfer.c: Bug #547335: Get the
exchange rate dialog "to" amount working again when launched via
the register instead of the menu. BP
2008-08-08 23:38 cedayiv
* [r17459] src/gnome-utils/gnc-date-edit.c: Bug #545722: Get the
GNCDateEdit control working on Win32 again. Don't assume that
the content returned by localtime() will not be changed out from
under you. BP
2008-08-08 21:36 cedayiv
* [r17458] src/gnome/dialog-price-edit-db.c: Bug #522095: Refresh
the summary bar when new prices are downloaded. BP
2008-08-07 19:40 cedayiv
* [r17457] src/app-utils/gnc-ui-util.c: Don't round values that
will be displayed as expressions. Save some space in fractional
displays by, for example, showing "1 + 1/8" instead of "1 + 1 /
8". Simplify fractional display of values less than 1 by, for
example, showing "1/3" instead of "0 + 1 / 3". BP
2008-08-07 18:18 cedayiv
* [r17456] lib/libqof/qof/gnc-numeric.c: Make gnc_numeric values
of zero always convertible to decimal form. BP
2008-08-04 16:41 cedayiv
* [r17454] src/engine/gnc-pricedb.c: Bug #541970: When finding a
"nearest in time" price, break ties by preferring the older
price. This has the benefit of using a price that actually
existed at the given time, and better addresses the case in
which both price times have been defaulted to midnight.
Previously, the newer price was preferred. BP
2008-08-03 18:10 plongstaff
* [r17453] src/backend/sql/gnc-backend-sql.c: Don't rely on
g_value_transform(). Added cases for G_TYPE_INT, G_TYPE_INT64
and G_TYPE_DOUBLE. If new GValue types are used in the future
and g_value_transform() *is* called, a warning message will be
logged with the type name.
2008-08-02 21:53 cedayiv
* [r17451] src/gnome-utils/dialog-transfer.c: Bug #543780: Scrub
the transfer dialog calculation of the "to" amount: -Check
account value to avoid causing a CRIT message. -Reorganize
function for smaller size and more readability. -Add some
comments (there were none). BP
2008-08-02 18:57 plongstaff
* [r17450] src/backend/sql/gnc-account-sql.c,
src/backend/sql/gnc-backend-sql.c,
src/backend/sql/gnc-backend-sql.h,
src/backend/sql/gnc-commodity-sql.c,
src/backend/sql/gnc-lots-sql.c,
src/backend/sql/gnc-transaction-sql.c,
src/business/business-core/sql/gnc-address-sql.c,
src/business/business-core/sql/gnc-bill-term-sql.c,
src/business/business-core/sql/gnc-invoice-sql.c,
src/business/business-core/sql/gnc-order-sql.c,
src/business/business-core/sql/gnc-owner-sql.c,
src/business/business-core/sql/gnc-tax-table-sql.c: 1) Rename
col_type_handler_t -> GncSqlColumnTypeHandler 2) More doxygen
comments
2008-08-02 18:49 plongstaff
* [r17449] src/business/business-core/test/test-customer.c,
src/business/business-core/test/test-employee.c,
src/business/business-core/test/test-job.c,
src/business/business-core/test/test-vendor.c: Fix 'make check'
compilation problems
* [r17448] src/backend/dbi/test, src/backend/dbi/test/Makefile.am:
1) Fix make check problems 2) Update svn:ignore property
2008-08-02 12:04 andi5
* [r17447] packaging/win32/functions.sh: Win32: Minor change for
emacs compat.
2008-08-01 22:04 andi5
* [r17446] configure.in: Add AC_LIBTOOL_WIN32_DLL. This is
necessary to build from a tarball with libtool v2 on Windows. BP
2008-08-01 16:02 plongstaff
* [r17444] DBI_STATUS, configure.in, lib/libqof/qof/gnc-date.c,
lib/libqof/qof/qofinstance.c, lib/libqof/qof/qofsession.c,
lib/libqof/qof/qofsession.h, packaging/win32/Makefile.am,
packaging/win32/defaults.sh, packaging/win32/dist.sh,
packaging/win32/install.sh,
packaging/win32/libgda-3.1.2-patch.diff,
packaging/win32/libgda-3.1.2-patch2.diff,
src/backend/Makefile.am, src/backend/dbi,
src/backend/dbi/gnc-backend-dbi.c, src/backend/dbi/test,
src/backend/file/Makefile.am,
src/backend/file/gnc-account-xml-v2.c,
src/backend/file/gnc-backend-file.c,
src/backend/file/gnc-backend-file.h,
src/backend/file/gnc-schedxaction-xml-v2.c,
src/backend/file/gncmod-backend-xml.c,
src/backend/file/test/Makefile.am,
src/backend/file/test/test-load-backend.c,
src/backend/file/test/test-load-xml2.c,
src/backend/postgres/test/Makefile.am, src/backend/sql,
src/backend/sql/test, src/bin, src/bin/Makefile.am,
src/bin/gnucash-gdb.in, src/bin/gnucash-valgrind.in,
src/bin/gnucash.in, src/business/business-core/Makefile.am,
src/business/business-core/file/Makefile.am,
src/business/business-core/file/gncmod-business-backend-xml.c,
src/business/business-core/gncAddress.c,
src/business/business-core/gncAddressP.h,
src/business/business-core/gncBillTerm.c,
src/business/business-core/gncBillTerm.h,
src/business/business-core/gncBillTermP.h,
src/business/business-core/gncCustomer.c,
src/business/business-core/gncCustomer.h,
src/business/business-core/gncEmployee.c,
src/business/business-core/gncEmployee.h,
src/business/business-core/gncEntry.c,
src/business/business-core/gncEntry.h,
src/business/business-core/gncInvoice.c,
src/business/business-core/gncInvoice.h,
src/business/business-core/gncJob.c,
src/business/business-core/gncJob.h,
src/business/business-core/gncOrder.c,
src/business/business-core/gncOrder.h,
src/business/business-core/gncOwner.c,
src/business/business-core/gncOwner.h,
src/business/business-core/gncTaxTable.c,
src/business/business-core/gncTaxTable.h,
src/business/business-core/gncTaxTableP.h,
src/business/business-core/gncVendor.c,
src/business/business-core/gncVendor.h,
src/business/business-core/sql,
src/business/business-gnome/business-gnome.scm,
src/business/business-gnome/dialog-billterms.c,
src/engine/Account.c, src/engine/SX-book.c,
src/engine/SX-book.h, src/engine/SchedXaction.c,
src/engine/Split.c, src/engine/Split.h, src/engine/gnc-book.h,
src/engine/gnc-budget.c, src/engine/gnc-budget.h,
src/engine/gnc-commodity.c, src/engine/gnc-engine.c,
src/engine/gnc-filepath-utils.c, src/engine/gnc-lot.c,
src/engine/gnc-lot.h, src/experimental/cgi-bin/Makefile.am,
src/gnc-ui.h, src/gnome-utils/Makefile.am,
src/gnome-utils/dialog-database-connection.c,
src/gnome-utils/dialog-database-connection.h,
src/gnome-utils/glade/Makefile.am,
src/gnome-utils/glade/dialog-database-connection.glade,
src/gnome-utils/gnc-file.c, src/gnome-utils/gnc-file.h,
src/gnome-utils/gnc-main-window.c,
src/gnome-utils/test/Makefile.am, src/gnome/Makefile.am,
src/gnome/dialog-price-editor.c, src/gnome/dialog-sx-editor.c,
src/gnome/gnc-plugin-basic-commands.c, src/gnome/lot-viewer.c,
src/gnome/ui/gnc-plugin-basic-commands-ui.xml,
src/import-export/qif-io-core/test/Makefile.am,
src/import-export/test/Makefile.am,
src/report/report-gnome/test/Makefile.am,
src/report/stylesheets/test/Makefile.am, src/valgrind-gdk.supp,
src/valgrind-glib.supp, src/valgrind-gnucash.supp,
src/valgrind-libfontconfig.supp, src/valgrind-libgda.supp,
src/valgrind-libguile.supp: Merge gda-dev2 branch into trunk.
This introduces the dbi backend and the --enable-dbi configure
option.
2008-07-31 07:56 andi5
* [r17443] src/bin/gnucash-bin.c: Update latest stable version.
2008-07-30 21:42 cedayiv
* [r17441] src/gnome-utils/gnc-tree-model-price.c: Bug #376298,
#539640: Fix bugs and clean up the Price Editor code. -Fix row
duplication associated with adding new rows (bug #376298) -Fix
row disappearance associated with editing commodities (bug
#539640) -Fix bugs in creating price iters in
gnc_tree_model_price_iter_nth_child() -Fix a bunch of inaccurate
and/or crash-causing debugging statements -Better address "race
condition" (see code comments) -Some limited whitespace cleanup
BP
2008-07-30 20:57 cedayiv
* [r17440] src/gnome/dialog-price-edit-db.c: Usability: Price
Editor: Previously, nothing happened when a namespace or
commodity row was activated. Now these rows will expand or
collapse. It is often easier to double-click the row than hunt
for the expander. BP
2008-07-30 20:54 cedayiv
* [r17439] src/gnome-utils/gnc-tree-view-price.c: Usability: Price
Editor: Sort price trees on the commodity column by default.
This allows for a consistent default sort even if commodities
are removed from and re-added to the model. This can happen, for
example, when a namespace or commodity is changed in another
place (like the Security Editor) and gets removed and then
re-added to the commodity db. BP
2008-07-29 21:32 andi5
* [r17437] src/import-export/aqbanking/gnc-ab-transfer.c: Add
missing initialization inside gnc_ab_maketrans(). Patch from
Micha Lenk. BP
* [r17436] src/import-export/aqbanking/gnc-ab-utils.c: Fix
gnc_ab_get_remote_name() to lookup the remote name instead of
purpose. Patch from Micha Lenk. BP
2008-07-29 04:22 cedayiv
* [r17435] src/gnome-utils/gnc-tree-view-commodity.c: Debugging:
Fix a LEAVE() call to prevent crashing if commodity is NULL. BP
2008-07-28 20:28 cedayiv
* [r17434] src/report/report-system/commodity-utilities.scm:
Report system: When computing average prices, don't assume all
denominators will be identical. I tested this change with 15
years of data and saw no performance hit. BP
2008-07-28 20:08 cedayiv
* [r17433] src/report/report-system/report-utilities.scm: Bug
#483393: Report system: Allow mixed denominators in numeric
collectors. BP
2008-07-27 23:28 cedayiv
* [r17430] src/report/standard-reports/portfolio.scm: Bug #464771:
Investment Portfolio report: If there is no price for a
particular holding, show a zero price instead of crashing the
report. BP
2008-07-27 19:51 cedayiv
* [r17429] src/app-utils/gnc-ui-util.c,
src/gnome/dialog-price-editor.c, src/gnome/druid-stock-split.c:
Bug #309863, #341362: Prevent rounding when entering prices in
the Price Editor and Stock Split druid, but also avoid
fractional display if it is unnecessary. BP
2008-07-27 16:21 andi5
* [r17425] accounts/Makefile.am, accounts/ru,
accounts/ru/Makefile.am,
accounts/ru/acctchrt_common.gnucash-xea,
accounts/ru/acctchrt_homeloan.gnucash-xea,
accounts/ru/acctchrt_homeown.gnucash-xea,
accounts/ru/acctchrt_renter.gnucash-xea, configure.in: Import
russian account templates from the stable branch. This is to
avoid losing them when making trunk the stable branch.
2008-07-27 16:08 andi5
* [r17423] make-gnucash-potfiles.in, po/POTFILES.in: Add
gnc-date.c to make-gnucash-potfiles.in and missing aqbanking
files to POTFILES.in.
2008-07-27 15:33 cedayiv
* [r17421] lib/libqof/qof/gnc-numeric.c,
lib/libqof/qof/gnc-numeric.h: Add a new function to the
gnc_numeric library that converts denominators to exact powers
of ten. BP
2008-07-27 05:41 cedayiv
* [r17409] src/engine/gnc-pricedb.c: Bug #454827: Don't round
derived commodity prices until the very last step. BP
2008-07-25 00:24 cedayiv
* [r17407] src/gnome/druid-stock-split.c: Bug #341362: Stock
splits: Prevent fractional prices by forcing conversion to
decimal. (I used the same fraction setting as the price editor.)
BP
2008-07-24 23:46 andi5
* [r17405] src/import-export/aqbanking/gnc-ab-utils.c: Handle
missing information when importing from aqbanking more
gracefully. The online_id used to match an aqbanking accountinfo
to a gnucash account is the concatenation of the bank code and
account number found. If the primer is NULL, then fall back to
"" instead of invalidating the whole id. BP
2008-07-24 08:30 cstim
* [r17404] src/import-export/aqbanking/aqbanking.glade: Remove
superfluous tab in message
2008-07-23 22:35 rolf
* [r17402] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
Rechnungsabgrenzungskonten are used only by "bilanzierende
Unternehmen" - hide them by default
2008-07-23 21:56 rolf
* [r17401] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: hide
by default a couple of accounts that don't apply to
EÜR-companies * There are probably quite a lot more and possibly
a few were incorrectly marked to be hidden The user can mark
them as visible easily so it is not a big deal
2008-07-23 12:37 rolf
* [r17400] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
update URL from linuxwiki.de to wiki.gnucash.org
2008-07-22 22:14 andi5
* [r17370] src/core-utils/gnc-glib-utils.c,
src/import-export/aqbanking/druid-ab-initial.c: Make sure that
the input of gnc_utf8_strip_invalid() is non-NULL. Also, fix a
caller in the aqbanking importer. BP
2008-07-22 15:28 cedayiv
* [r17367] src/report/report-system/report.scm: Reports: Fix two
parameter names that apparently were missed during the switch to
report GUID's. In both cases, the parameter needed is a template
ID, not a template name. BP
2008-07-21 02:58 cedayiv
* [r17365] src/report/report-gnome/window-report.c: Bug #542967:
Go back to using the name of the report template in the title of
report options dialog boxes. BP
2008-07-20 02:09 andi5
* [r17347] src/import-export/aqbanking/gnc-ab-getbalance.c,
src/import-export/aqbanking/gnc-ab-gettrans.c,
src/import-export/aqbanking/gnc-ab-transfer.c,
src/import-export/aqbanking/gnc-ab-utils.c,
src/import-export/aqbanking/gnc-ab-utils.h,
src/import-export/aqbanking/gnc-file-aqb-import.c: Bug #543049:
Import all balances and txns in aqbanking contexts returned. *
All aqbanking imports use the same code * An account number
returned by the bank may differ from the one sent, so that the
correct result is not found * The bank may also send transaction
data and delete that on its servers. This may lead to severe
data loss if we did not tried to import of what is returned as
much as possible BP
* [r17346] src/import-export/aqbanking/druid-ab-initial.c: Do not
prepare the match page in the online banking wizard twice. This
would online_init() the api too often and lead to a crash. BP
2008-07-19 21:31 cedayiv
* [r17345] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif.glade: QIF Import: Adjust the
visual layout of commodity pages for better HIG compliance. Add
tooltips and rework the documentation page. A number of phrases
have been reworded, and I think this makes the commodity pages
simpler, cleaner, and clearer, at least in English. Sorry,
translators... BP
2008-07-17 23:20 cedayiv
* [r17344] src/import-export/qif-import/qif-dialog-utils.scm: QIF
Import: Prepend the default investment-related account names
with the standard top-level accounts of "Income", "Expenses",
and "Equity". BP
2008-07-17 18:21 cedayiv
* [r17343] src/import-export/qif-import/druid-qif-import.c: QIF
Import: Get better default column sizing on account mapping
pages by using ellipses. BP
2008-07-16 17:23 cedayiv
* [r17342] src/report/standard-reports/trial-balance.scm: Trial
balance report: Skip unrealized gain calculation when price
source is "average cost". This significantly improves
performance with the default report options. Centralize and
simplify unrealized gain code. BP
2008-07-16 15:55 cedayiv
* [r17341] src/report/standard-reports/account-piecharts.scm,
src/report/standard-reports/account-summary.scm,
src/report/standard-reports/balance-sheet.scm,
src/report/standard-reports/budget.scm,
src/report/standard-reports/equity-statement.scm,
src/report/standard-reports/income-statement.scm: Reports: Make
"Average Cost" the default price source for several additional
standard reports. BP
2008-07-16 15:39 cedayiv
* [r17340] src/report/report-system/commodity-utilities.scm:
Reports: Make a mildly confusing error message more clear. BP
2008-07-16 15:29 cedayiv
* [r17339] src/report/standard-reports/trial-balance.scm: Bug
#463320: Fix trial balance report's unrealized gain calculation
and inability to print unrealized gain credits. Use "Average
Cost" as the default price source. BP
2008-07-15 23:44 andi5
* [r17338] src/import-export/aqbanking/gnc-gwen-gui.c: Run some
iterations of the main loop in showbox_cb to give the window a
chance to be showed. BP
2008-07-15 23:17 andi5
* [r17337] src/import-export/aqbanking/gnc-gwen-gui.c: The
gwenhywfar callback function showbox_cb() must not return 0.
Return the id reserved for it instead. BP
2008-07-15 19:34 cedayiv
* [r17336] src/import-export/qif-import/druid-qif-import.c: QIF
Import: Allow column resizing on account mappings pages.
Reorganize a massive and messy function into reasonably-sized
chunks. BP
2008-07-15 17:35 rolf
* [r17335] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
accounts 4315 and 4400 were present twice. Renumber the entries
related to 16%. * update the numbers to reflect current
situation after VAT increase * partly fixes 542648
2008-07-15 17:25 rolf
* [r17334] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
remove and clean up the situation where a couple of DATEV codes
had been entered twice
2008-07-15 15:22 rolf
* [r17333] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
remove erroneous space at the end of DATEV accounts 6458, 6660
and 6689 * this should be all accounts with that type of error
now
2008-07-15 15:17 rolf
* [r17332] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
remove erroneous space at the end of DATEV account number 1298
2008-07-15 15:13 rolf
* [r17331] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
remove DATEV code 1400 from placeholder hierarchy account for
"Abziehbare Vorsteuer"
2008-07-15 14:54 rolf
* [r17330] accounts/de_DE/acctchrt_skr04.gnucash-xea: SK04:
replace the term Mehrwertsteuer with Umsatzsteuer
2008-07-15 07:39 cstim
* [r17329] configure.in: Require SWIG 1.3.31 because of the inline
keyword in C headers.
2008-07-14 23:54 cedayiv
* [r17328] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif.glade: QIF Import: Update
documentation and organization of the duplicate checking pages.
Switch to top/bottom comparisons rather than side by side. Add
keyboard mnemonics. Document in terms of the more
positive-sounding "match". Lays the groundwork for a future fix
to bug 95635. BP
2008-07-14 16:12 cedayiv
* [r17327] src/gnome-utils/gnc-date-edit.c: Bug #470656, bug
#502646: Prevent the GNCDateEdit control from crashing GnuCash.
If an invalid date is entered (i.e. a date not supported by
time_t) then the date reverts to the last valid date entered or,
as a last resort, the beginning of the current day. BP
2008-07-13 21:28 andi5
* [r17324] AUTHORS, src/app-utils/gnc-ui-util.c,
src/app-utils/gnc-ui-util.h,
src/business/business-ledger/gncEntryLedger.c,
src/business/business-ledger/gncEntryLedgerModel.c,
src/core-utils/gnc-gconf-utils.h,
src/gnome-utils/account-quickfill.c,
src/gnome-utils/glade/preferences.glade,
src/gnome/schemas/apps_gnucash_general.schemas.in,
src/register/ledger-core/split-register-control.c,
src/register/ledger-core/split-register-model.c,
src/register/ledger-core/split-register.c: Bug #129099: Add
option to toggle between full account path and leaf name in
registers. * Introduce new property show_full_account_names to
the schema general/register to toggle between full account path
and leaf name * Configuration in Preferences dialog ("Register
Defaults") * Convenience functions
gnc_get_account_name_for_register() and
gnc_account_lookup_for_register() return the proper values
depending on the configurations. * Ledgers and registers use the
new functions for displaying account names (applies also to
business-ledger) * account-quickfill uses
gnc_get_account_name_for_register() and listens to gconf
property Patch from Christoph Ernst.
2008-07-13 00:04 rolf
* [r17319] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: make
sure that the Verbindlichkeiten hierarchy is sorted correctly
among its siblings
2008-07-12 23:59 rolf
* [r17318] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
flatten Verbindlichkeiten hierarchy and remove incorrect DATEV
3000 code
2008-07-12 23:14 rolf
* [r17317] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: add
some more tax relations and accounts as documented in
http://wiki.gnucash.org/wiki/De/SKR04
2008-07-12 17:01 cedayiv
* [r17316] AUTHORS,
src/report/standard-reports/category-barchart.scm,
src/report/standard-reports/net-barchart.scm: Reports: Add
option to display a table of data beneath barcharts. Patch by
Joachim Herb. BP
2008-07-12 12:28 rolf
* [r17313] src/tax/us/txf-help-de_DE.scm: txf-help-de_DE.scm:
replace v.h. with v.H.
2008-07-12 12:09 rolf
* [r17312] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
delete spaces after paragraph sign (s/\§\ /\§/g)
2008-07-12 11:46 rolf
* [r17311] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: add
two accounts with 19% Ust * partly closes 473536 and 542648
2008-07-12 11:26 rolf
* [r17310] src/tax/us/txf-de_DE.scm: txf-de_DE.scm: add some more
keys for German UStVa to go along with r17304 * courtesy Jannick
Asmus * partly closes 473536
2008-07-12 01:12 rolf
* [r17308] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
removcal of even more sample accounts. fix spelling mistake.
2008-07-12 01:00 rolf
* [r17306] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
remove sample accounts
2008-07-12 00:55 rolf
* [r17305] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: fix
spelling mistake
2008-07-12 00:24 rolf
* [r17304] src/tax/us/txf-help-de_DE.scm: txf-help-de_DE.scm: add
some more keys for German Umsatzsteuervoranmeldung * courtesy of
Jannick Asmus * partly closes 473536
2008-07-12 00:03 rolf
* [r17299] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
"Abziehbare Vorsteuern Inland" is 1400 not 4130. corrects r17298.
2008-07-12 00:00 rolf
* [r17298] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: some
additions, courtesy of Jannick Asmus
2008-07-11 23:19 cedayiv
* [r17297] AUTHORS, src/report/standard-reports/register.scm:
Register report: Add option to display memos when run from Basic
Ledger mode. Refine the Description option. Space-saving column
arrangement. Patch from Robert Stocks. BP
2008-07-11 21:40 andi5
* [r17296] .gitignore: .gitignore generated files in the python
bindings.
2008-07-11 21:09 cedayiv
* [r17295] src/app-utils/options.scm: Bug 542472: Make reports use
accounting period as default for dates. BP
2008-07-11 20:11 cedayiv
* [r17294] src/gnome-utils/dialog-options.c: Bug 353880: Adjust
the border of report options dialog pages to be HIG-compliant.
This patch does not address the alignment of controls, however.
BP
2008-07-11 16:06 cedayiv
* [r17293] src/report/report-system/commodity-utilities.scm:
Reporting: Ignore exchange rates if the quantity to exchange is
zero. BP
2008-07-11 00:34 andi5
* [r17292] src/engine/engine.i: Bug #542237: Use
GLIST_HELPER_INOUTs before including engine-common.i.
2008-07-08 22:56 cstim
* [r17291] AUTHORS: Add credit to Assibiboine Credit Union for
python bindings. Mark Jenkins wrote: I would also like to give
credit to Assiniboine Credit Union (http://www.assiniboine.mb.ca
Winnipeg, Canada), which has funded a good chunk of our work on
this through a grant they gave us in 2007. Additional python
binding work since between June 17 and December 31, 2008 is
being funded by a second grant they gave us this year.
2008-07-08 21:31 andi5
* [r17290] po/POTFILES.in: Add new aqbanking import-export files
to POTFILES.in.
2008-07-08 21:30 andi5
* [r17289] src/backend/file/test/test-file-stuff.c: Fix a -Wformat
gcc warning in the test suite.
2008-07-08 20:35 andi5
* [r17288] configure.in, doc/examples/downloaded.mt940,
macros/svn2cl.xsl, src/bin/gnucash-bin.c,
src/import-export/Makefile.am, src/import-export/aqbanking,
src/import-export/aqbanking/schemas,
src/import-export/hbci/Makefile.am: Merge branches/aqbanking3
(r17287) into trunk. Port the HBCI import-export module to
AqBanking3. Depending on the aqbanking version found, either the
classic hbci/ module or the new, very similar, module
aqbanking3/ for AqBanking >= 3 is built and installed. The
influence on the rest of the code is minimal. BP
2008-07-08 17:26 cedayiv
* [r17287] src/report/report-system/report-system.scm,
src/report/report-system/report-utilities.scm,
src/report/standard-reports/balance-sheet.scm: Balance sheet
report: Support calculation of unrealized gains/losses on
liabilities. BP
2008-07-07 21:40 cstim
* [r17285] src/optional/python-bindings/tests/Makefile.am: Fix
gnucash-env path in make check of python bindings; add
PYTHONPATH.
2008-07-07 21:11 cstim
* [r17284] configure.in, src/base-typemaps.i,
src/engine/engine-common.i, src/engine/engine.i,
src/optional/python-bindings/Makefile.am,
src/optional/python-bindings/example_scripts/simple_test.py,
src/optional/python-bindings/function_class.py,
src/optional/python-bindings/glib.i,
src/optional/python-bindings/gnucash_business.py,
src/optional/python-bindings/gnucash_core.i,
src/optional/python-bindings/gnucash_core.py,
src/optional/python-bindings/tests,
src/optional/python-bindings/tests/Makefile.am,
src/optional/python-bindings/tests/runTests.py,
src/optional/python-bindings/tests/test_account.py,
src/optional/python-bindings/tests/test_book.py,
src/optional/python-bindings/tests/test_split.py,
src/optional/python-bindings/tests/test_transaction.py: Updated
python bindings (r17263) for the gnucash API as of 2008-06-06.
Copied from http://savannah.nongnu.org/projects/python-gnucash.
2008-07-07 20:12 cedayiv
* [r17266] src/report/report-system/commodity-utilities.scm,
src/report/report-system/options-utilities.scm,
src/report/report-system/report-system.scm: Bug #460721, bug
#521403, bug #538800: Add a reporting price source option of
"Average Cost". BP
2008-07-07 19:47 cedayiv
* [r17265] src/report/report-system/commodity-utilities.scm:
Reports: Adjust the "weighted average" price source computation
to ignore splits with a zero "amount" since these are not buys
or sells. BP
2008-07-07 19:18 cstim
* [r17263] AUTHORS, configure.in, macros/ac_python_devel.m4,
src/optional/Makefile.am, src/optional/python-bindings,
src/optional/python-bindings/Makefile.am,
src/optional/python-bindings/__init__.py,
src/optional/python-bindings/example_scripts,
src/optional/python-bindings/example_scripts/simple_book.py,
src/optional/python-bindings/example_scripts/simple_session.py,
src/optional/python-bindings/example_scripts/simple_test.py,
src/optional/python-bindings/function_class.py,
src/optional/python-bindings/glib.i,
src/optional/python-bindings/gnucash_core.i,
src/optional/python-bindings/gnucash_core.py,
src/optional/python-bindings/timespec.i: Python bindings for the
gnucash API. Submitted by Mark Jenkins on 2008-03-25 to
gnucash-devel.
* [r17262] src/engine/engine.i: Remove include <gnc-date.h> of
r17249 that breaks the build on some systems. Notably, with
swig-1.3.31 this doesn't seem to work.
2008-07-07 16:13 warlord
* [r17261] AUTHORS: Add Rolf to AUTHORS BP
2008-07-06 21:06 andi5
* [r17260] branches/aqbanking3/src/import-export/aqbanking,
branches/aqbanking3/src/import-export/aqbanking/schemas: Add a
few svn:ignore properties.
2008-07-06 20:59 andi5
* [r17259]
branches/aqbanking3/src/import-export/aqbanking/gnc-gwen-gui.c:
Do not remember or show the checkbox for remembering of TANs.
PINs and other passwords are still offered to be remembered.
* [r17258]
branches/aqbanking3/src/import-export/aqbanking/gnc-file-aqb-import.c:
Formatting.
2008-07-06 11:11 andi5
* [r17257] src/app-utils/date-utilities.scm: Bug #526883: Add a
few missing conversions of strftime results to utf-8. Strings
returned by the c runtime must be converted to utf-8 to be
displayed properly in all cases. BP
2008-07-05 22:31 andi5
* [r17256] src/app-utils/options.scm: Bug #531662: Harden
budget->guid to grok #f input instead of crashing. BP
2008-07-05 20:41 andi5
* [r17255] src/report/report-system/html-table.scm: Bug #539654:
Correct params for recursive call inside
gnc:html-table-append-column!. Patch from Joachim Herb. BP
2008-07-04 00:42 andi5
* [r17254] src/app-utils/gfec.c, src/backend/file/io-utils.c,
src/bin/gnucash-bin.c,
src/business/business-gnome/dialog-billterms.c,
src/business/business-gnome/dialog-customer.c,
src/business/business-gnome/dialog-employee.c,
src/business/business-gnome/dialog-invoice.c,
src/business/business-gnome/dialog-job.c,
src/business/business-gnome/dialog-order.c,
src/business/business-gnome/dialog-payment.c,
src/business/business-gnome/dialog-vendor.c,
src/business/business-ledger/gncEntryLedgerControl.c,
src/business/dialog-tax-table/dialog-tax-table.c,
src/gnome-search/dialog-search.c,
src/gnome-utils/dialog-account.c,
src/gnome-utils/dialog-transfer.c,
src/gnome-utils/druid-gconf-setup.c,
src/gnome-utils/druid-gnc-xml-import.c,
src/gnome-utils/gnc-file.c, src/gnome-utils/gnc-gnome-utils.c,
src/gnome-utils/gnc-html.c, src/gnome/dialog-commodities.c,
src/gnome/dialog-fincalc.c, src/gnome/dialog-price-editor.c,
src/gnome/dialog-print-check.c, src/gnome/dialog-sx-editor.c,
src/gnome/druid-acct-period.c, src/gnome/druid-loan.c,
src/gnome/druid-merge.c, src/gnome/druid-stock-split.c,
src/gnome/gnc-plugin-basic-commands.c,
src/gnome/gnc-split-reg.c, src/gnome/window-reconcile.c,
src/import-export/hbci/hbci-interaction.c,
src/import-export/log-replay/gnc-log-replay.c,
src/register/ledger-core/split-register-control.c,
src/register/ledger-core/split-register.c,
src/report/report-gnome/gnc-plugin-page-report.c: Fix -Wformat
gcc warnings. BP
2008-07-04 00:41 andi5
* [r17253] src/engine/Account.c, src/engine/Account.h,
src/register/ledger-core/split-register.c: Bug #144669: Lookup
accounts in the register based on the account code as well.
Patch from C. Ernst to search for an account by code if the
lookup by name for the string entered into the register did not
find anything. BP
2008-07-02 20:56 cedayiv
* [r17252] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif-merge-groups.scm,
src/import-export/qif-import/qif-to-gnc.scm,
src/import-export/qif-import/qif.glade: Bug #313660: The QIF
importer now allows users to pause, cancel, or go back a page
during data conversion. Any errors and warnings are logged as
they occur, directly in the druid, for the user to review. BP
2008-06-24 23:28 warlord
* [r17250] lib/libqof/qof/gnc-date.c, lib/libqof/qof/gnc-date.h,
po/POTFILES.in: Get GnuCash building again. - move the #include
of g18n.h from gnc-date.h to gnc-date.c - add gnc-date.c to
POTFILES.in
2008-06-24 22:28 cedayiv
* [r17249] lib/libqof/qof/gnc-date.c, lib/libqof/qof/gnc-date.h,
src/business/business-reports/easy-invoice.scm,
src/business/business-reports/fancy-invoice.scm,
src/business/business-reports/invoice.scm,
src/business/business-reports/owner-report.scm,
src/engine/engine.i: Bug #532405: Make the default strftime
format use %#d instead of %e on win32 platforms. BP
2008-06-24 22:08 cedayiv
* [r17248] lib/libqof/qof/qofsession.c: Bug #539829: Make sure msg
gets assigned before it can get dereferenced. BP
2008-06-24 19:34 cedayiv
* [r17247] src/gnome/dialog-progress.h: Some minor corrections to
the doxygen documentation for progress-dialog.h. BP
2008-06-23 20:09 cedayiv
* [r17246] src/import-export/qif-import/qif-file.scm: A small
correction to r17245 for a QIF importer error message. I forgot
to mention in the log that r17245 includes many added or
improved QIF importer error and warning messages. Should help
users in debugging their own QIF files. BP
2008-06-23 18:46 cedayiv
* [r17245] src/gnome/dialog-progress.c,
src/gnome/dialog-progress.h, src/gnome/glade/progress.glade,
src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif-file.scm,
src/import-export/qif-import/qif-import.scm,
src/import-export/qif-import/qif-parse.scm,
src/import-export/qif-import/qif-to-gnc.scm,
src/import-export/qif-import/qif-utils.scm,
src/import-export/qif-import/qif.glade, src/scm/string.scm: The
following changes are included: -Add many new features to the
progress dialog API, including support for n levels of
suboperations. Fully compatible with existing code. -Add doxygen
documentation for the progress dialog API (none previously
existed). -Add a progress bar page to the QIF importer with
pause and cancel functions for the loading and parsing phases.
-Log loading and parsing error messages on the page instead of
using popups, which resolves bug #309359. -Add a pair of new
procedures to the library of Scheme string routines. -Finally,
some miscellaneous QIF importer clean up. BP
2008-06-20 22:00 rolf
* [r17242] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: be
more specific in account classification. Partly closes 513000. *
mark as accounts receivable instead of plain assets
2008-06-20 21:17 rolf
* [r17241] po/de.po: de.po: improve German translations for a few
entries under "File - New". Closes 538900.
2008-06-13 00:21 plongstaff
* [r17228] lib/libqof/qof/qofsession.c: Fix memory leak in
qof_session_save() - "msg" is never freed.
2008-06-12 23:04 plongstaff
* [r17224] src/backend/file/gnc-schedxaction-xml-v2.c: Free return
values from recurrenceListToString() printed as debug info.
2008-06-12 00:04 andi5
* [r17219]
branches/aqbanking3/src/import-export/aqbanking/gnc-plugin-aqbanking.c:
Whitespace cleanup.
2008-06-11 23:59 andi5
* [r17218]
branches/aqbanking3/src/import-export/aqbanking/Makefile.am,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-gettrans.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-utils.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-utils.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-file-aqb-import.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-file-aqb-import.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-plugin-aqbanking.c:
Readd the swift and dtaus file imports, except for the actual
executing of ab jobs.
2008-06-11 23:26 andi5
* [r17217] branches/aqbanking3/doc/examples/downloaded.mt940:
Remove newline before the initial :20: in downloaded.mt940.
2008-06-11 15:37 cedayiv
* [r17214] src/core-utils/gnc-glib-utils.c: Fix Scheme logging bug
in core-utils by treating strings as generic strings rather than
format strings. BP
2008-06-11 12:52 warlord
* [r17213] src/backend/file/sixtp-dom-generators.c,
src/backend/file/sixtp-utils.c: Fix the usages of __EXTENSIONS__
so it works with newer auto-tools BP
2008-06-11 01:19 plongstaff
* [r17212] src/gnome-utils/dialog-commodity.c,
src/gnome-utils/gnc-dense-cal.c: Fix memory leaks. In
gnc-dense-cal.c, 2 GDates were not freed.
2008-06-10 21:33 andi5
* [r17210]
branches/aqbanking3/src/import-export/aqbanking/dialog-ab-trans.c:
Improve check for the availability of a txn job before letting
the user enter it.
2008-06-10 16:50 cedayiv
* [r17209] src/scm/main.scm: Scheme: Send backtraces to the
gnucash.trace log as well as the console. BP
2008-06-10 03:30 cedayiv
* [r17208] src/import-export/qif-import/qif-file.scm: QIF Import:
10x improvement in file loading performance. Line numbers added
for message logging. BP
2008-06-09 20:31 andi5
* [r17207]
branches/aqbanking3/src/import-export/aqbanking/gnc-plugin-aqbanking.c:
Enable internal transfers and debit notes. Later on, internal
transfers may be hidden again as before, if they are unstable.
2008-06-09 20:30 andi5
* [r17206]
branches/aqbanking3/src/import-export/aqbanking/dialog-ab-trans.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-transfer.c:
Lock one side of the transfer dialog when entering a
corresponding gnucash txn.
2008-06-08 23:13 andi5
* [r17205]
branches/aqbanking3/src/import-export/aqbanking/aqbanking.glade,
branches/aqbanking3/src/import-export/aqbanking/gnc-gwen-gui.c:
Patch from Micha Lenk to activate password caching while
entering one.
2008-06-08 23:12 andi5
* [r17204]
branches/aqbanking3/src/import-export/aqbanking/gnc-gwen-gui.c:
Fix compilation errors with gcc-4.3 because of incorrect format
strings.
2008-06-08 15:59 andi5
* [r17202]
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-transfer.c:
Improve flow of gnc_ab_maketrans(), treat everything unfinished
as error.
2008-06-08 10:08 andi5
* [r17200]
branches/aqbanking3/src/import-export/aqbanking/dialog-ab-trans.c:
Fix two newly introduced bugs concerning transaction templates.
* Replace recipient name by recipient name instead of template
name * Correctly initialize empty GList by NULL
2008-06-07 19:56 andi5
* [r17197]
branches/aqbanking3/src/import-export/aqbanking/dialog-ab-trans.c:
Unfold and improve online transaction filling by use of a
template. Ask the user whether she wants to overwrite her stuff
iff there is a non-empty field that differs from the
corresponding value in the template.
* [r17196]
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-transfer.c:
Avoid double-freeing of transaction templates.
* [r17195]
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-transfer.c:
Readd verification dialog after online transaction failure.
2008-06-07 18:54 warlord
* [r17194] configure.in: Better patch for goffice-0.5/gtkhtml-3.14
checking
2008-06-07 18:38 warlord
* [r17193] configure.in: GOffice >= 0.5 requires GtkHTML >= 3.14
Make sure that happens or the build will fail.
2008-06-06 16:46 cedayiv
* [r17191] src/import-export/qif-import/qif-dialog-utils.scm,
src/import-export/qif-import/qif-guess-map.scm,
src/import-export/qif-import/qif-parse.scm,
src/import-export/qif-import/qif-to-gnc.scm,
src/import-export/qif-import/qif-utils.scm, src/scm/Makefile.am,
src/scm/main.scm, src/scm/string.scm: QIF Import: Fix support
for multi-byte account separators. In doing so, a number of
reusable Scheme string manipulation procedures were written and
placed in string.scm. These are now available to all Scheme code
by automatic inclusion in main.scm. The new Scheme procedures
are: gnc:string-rcontains (a variation on string-contains)
gnc:substring-count (a variation on string-count)
gnc:substring-split (a variation on string-split)
gnc:substring-replace (search/replace a substring)
gnc:string-replace-char (search/replace a character)
gnc:string-delete-chars (delete a variety of characters)
Finally, the custom version of string-split was removed because
Guile 1.4 is no longer supported and later versions come with
this procedure. BP
2008-06-04 22:25 andi5
* [r17190]
branches/aqbanking3/src/import-export/aqbanking/aqbanking.glade,
branches/aqbanking3/src/import-export/aqbanking/dialog-ab-trans.c,
branches/aqbanking3/src/import-export/aqbanking/dialog-ab-trans.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-getbalance.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-gettrans.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-transfer.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-transfer.h:
Readd online transaction issuing, a first rough sketch.
* [r17189] branches/aqbanking3/configure.in: Fix compiling of hbci
import-export module.
2008-06-02 19:40 cedayiv
* [r17187] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif.glade: QIF Import: Skip over
blank category mapping pages. Also some cleanup: -Centralize
preparation of mapping pages (eliminating several callbacks)
-Reorder functions to make forward declarations unnecessary
-Eliminate dead function gnc_ui_qif_import_memo_next_cb() -Make
widget spacing consistent on mapping pages BP
2008-06-01 19:31 cedayiv
* [r17186] src/import-export/qif-import/qif-dialog-utils.scm: Bug
#515163: QIF importer no longer asks for mappings that will
never get used. BP
2008-05-30 16:23 cedayiv
* [r17182] AUTHORS: Add Charles Day to the AUTHORS list. BP
2008-05-29 21:13 cedayiv
* [r17181] src/import-export/qif-import/qif-parse.scm: Bug
#535407: Stop the QIF importer from crashing GnuCash when an
invalid or unsupported date format is found. BP
2008-05-29 15:23 cedayiv
* [r17180] src/engine/Account.c,
src/import-export/qif-import/qif-dialog-utils.scm,
src/import-export/qif-import/qif-guess-map.scm,
src/import-export/qif-import/qif-objects.scm: QIF Import: Add
support for importing to A/R and A/P account types, which were
previously unknown to the importer. I also had to adjust a
function in the engine's Account API that caused imported
accounts trees to not merge properly in rare cases where one an
existing GnuCash account has a NULL string pointer but an
importer-created account has an empty string instead. This
situation arises as a side effect of using SWIG, which doesn't
let Scheme distinguish between NULL and an empty string (a
string containing only NUL). BP
2008-05-28 16:56 cedayiv
* [r17179] src/report/report-system/report.scm: Revision to r17178
for an unintended change to the file's introductory comments. BP
2008-05-28 15:47 cedayiv
* [r17178] src/report/report-system/report.scm: Reporting: Prevent
GnuCash from crashing if a report's option generating procedure
causes a Scheme exception. Also fix a typo of "names" vs.
"namer". BP
2008-05-25 22:06 plongstaff
* [r17172] src/app-utils/file-utils.c: Fix memory leak
2008-05-22 01:46 andi5
* [r17170] src/gnome/gnc-split-reg.c, src/gnome/gnc-split-reg.h:
Remove dead function gnc_split_reg_check_close(). This job is
done by gnc_plugin_page_register_finish_pending().
2008-05-20 16:06 cedayiv
* [r17164] src/import-export/generic-import.glade,
src/import-export/qif-import/qif.glade: Eliminate requests to
translate several phrases that are never displayed. BP
2008-05-18 22:20 cedayiv
* [r17162] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif.glade: Bug #475980: Fix the
labeling of several QIF importer pages. The account, category,
and memo matching pages have been redesigned to better comply
with the HIG: 1. The labels that told (sometimes incorrectly)
which page comes next are gone. 2. The lists now offer a
mnemonic for keyboard navigation. 3. A count of selected matches
is now indicated by a label. 4. A "Change" button has been added
as a more obvious alternative to double-clicking. On the
currency page 1. The label that told (sometimes incorrectly)
which page comes next is gone. 2. The remaining labels have been
simplified. 3. A mnemonic is now offered for keyboard
navigation. Finally, some function names have been adjusted for
consistency. BP
2008-05-18 16:59 plongstaff
* [r17161] src/backend/file/gnc-schedxaction-xml-v2.c: Fix memory
leak - return value from recurrenceToString()
2008-05-17 17:46 warlord
* [r17160] lib/libqof/qof/qofquerycore.c: Match NULL and
guid_null() for NULL GUID Matches
2008-05-17 13:22 warlord
* [r17159] src/pixmaps/Makefile.am: Don't clean out the EXTRA_DIST
pixmaps if we're not building from SVN. Otherwise "make clean"
will put the code into a state where you cannot rebuild. BP
2008-05-16 22:14 cedayiv
* [r17157] src/import-export/qif-import/dialog-account-picker.c,
src/import-export/qif-import/dialog-account-picker.h,
src/import-export/qif-import/druid-qif-import.c: Bug #514210:
This fixes a QIF import bug introduced in r17156 which prevented
users from creating new accounts while mapping accounts. It also
fixes several GUI annoyances: 1. The tree now automatically
expands to show the currently selected account. 2. The new
account dialog's OK button is now activated by the Enter key. 3.
Focus returns to the account tree when the new account dialog is
closed. 4. Creation of empty account names is prevented.
Finally, a memory leak has been fixed and many new comments have
been added. BP
2008-05-14 02:49 cedayiv
* [r17156] src/import-export/qif-import/dialog-account-picker.c,
src/import-export/qif-import/druid-qif-import.c: Bug #514210:
Allow multiple rows to be selected and remapped on QIF Import
account mapping pages. Also includes many whitespace
adjustments. BP
2008-05-13 23:23 andi5
* [r17155] src/gnome-utils/dialog-options.c: Bug #452354:
Translate account type option names of average balance report BP
2008-05-12 01:41 andi5
* [r17154] src/business/business-gnome/dialog-date-close.c: Bug
#512991: Do not allow posting invoices to placeholder accounts.
BP
2008-05-11 23:22 andi5
* [r17153] src/gnome-utils/dialog-account.c: Do not close
registers when creating a new account. Types of new accounts
cannot conflict with types of anchor accounts of open registers,
as no register can have accessed it yet. On the contrary,
killing the general ledger that is used to input a new account
is contraproductive. BP
2008-05-11 21:41 andi5
* [r17152] src/tax/us/txf-de_DE.scm, src/tax/us/txf.scm: Bug
#528835: Harden gnc:txf-get-code-info when tax lookups fail. BP
2008-05-11 17:31 andi5
* [r17151] src/business/business-ledger/gncEntryLedgerDisplay.c,
src/register/ledger-core/split-register-load.c,
src/register/ledger-core/split-register-p.h,
src/register/ledger-core/split-register-util.c,
src/register/ledger-core/split-register.c: Bug #489502: When
changing the account separator, let registers pick up the new
char. BP
2008-05-11 16:56 cedayiv
* [r17150] src/import-export/qif-import/druid-qif-import.c: Bug
#336192: The QIF importer now allows new namespaces to be
entered by the user when defining new securities. New namespaces
become available for selection in all security pages. Also
includes fixes for several memory leaks and mismatched type
definitions. BP
2008-05-11 00:02 andi5
* [r17149] src/gnome-utils/dialog-transfer.c: Correct quickfill
direction in transfer dialogs. gnc_xfer_dialog_quickfill()
messed up debit and credit. When the "from account" (left in
normal mode, right/credit when using formal accounting terms)
was chosen as basis for the quickfill and a match was found, the
remote account should be selected on the "to account" side. BP
2008-05-01 22:21 warlord
* [r17148] src/business/business-reports/owner-report.scm: Honor
the "used columns" in the balance row (#530924) BP
2008-05-01 21:20 andi5
* [r17147] src/bin/gnucash-bin.c: Update latest stable version.
2008-05-01 21:00 warlord
* [r17146] src/import-export/hbci/gnc-hbci-utils.c: Handle
AB_Job_GetResultText() returning NULL (#506499) Don't
output/printf a NULL string. Windows doesn't like it. BP
2008-05-01 09:10 cstim
* [r17144] AUTHORS, configure.in, po/glossary/he.po, po/he.po: Add
Hebrew translation by Ori Hoch. BP
2008-04-26 15:59 andi5
* [r17127] src/gnome/dialog-print-check.c: Bug #467529: Fix
Align_n by specifying pango widths and ellipse modes for check
print texts. This patch from David Reiser reverts r16475, but by
using pango_layout_set_ellipsize() center or right aligned texts
are printed correctly and the first line is stilled showed
instead of the last one. BP
2008-04-25 23:19 andi5
* [r17126] art/tango/22x22/gnucash-22x22.png,
art/tango/22x22/gnucash-24x24.png, art/tango/22x22/gnucash.png,
src/pixmaps/Makefile.am: Bug #523922: Use correct scalable icon
and add/fix 22x22/24x24 icons. For the scalable icon, use
art/tango/scalable/gnucash.svg instead of art/icon.svgz.
art/tango/22x22/gnucash.png is actually of size 24², so rename
it to gnucash-24x24.png and create gnucash-22x22.png by removing
the transparent 1px border. Install those icons into
${datadir}/icons/hicolor/${size}/apps so that apps like
gnome-panel do not scale down the .svg instead. BP
2008-04-24 22:51 andi5
* [r17124] src/report/standard-reports/average-balance.scm: Bug
#529232: Do not reverse the starting balance in average balance
reports. BP
2008-04-23 19:52 andi5
* [r17122] AUTHORS: Update AUTHORS. BP
2008-04-21 20:59 andi5
* [r17121] packaging/win32/install.sh: Win32: Move definition of
AQBANKING_PATH into make_install() as it is needed there. Patch
from Daniel Harding.
* [r17120] util/gnc-svnversion: SVK detection on Windows is not
trivial :-) Patch from Daniel Harding.
* [r17119] packaging/win32/defaults.sh,
packaging/win32/install.sh: Win32: Add flag UPDATE_DOCS to avoid
running svn up for the docs each time. Patch from Daniel Harding.
* [r17118] packaging/win32/defaults.sh,
packaging/win32/install.sh: Win32: Add XSLTPROCFLAGS to be able
to pass --nonet to xsltproc in make_chm. Patch from Daniel
Harding.
2008-04-20 18:07 andi5
* [r17093] src/core-utils/gnc-glib-utils.c: Free two GErrors after
they have been logged. BP
2008-04-19 20:13 andi5
* [r17092]
branches/aqbanking3/src/import-export/aqbanking/gnc-gwen-gui.c:
Remember accepted certificates as long as GnuCash is running.
* [r17091]
branches/aqbanking3/src/import-export/aqbanking/Makefile.am,
branches/aqbanking3/src/import-export/aqbanking/aqbanking.glade,
branches/aqbanking3/src/import-export/aqbanking/dialog-ab-trans.c,
branches/aqbanking3/src/import-export/aqbanking/dialog-ab-trans.h,
branches/aqbanking3/src/import-export/aqbanking/druid-ab-initial.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-kvp.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-kvp.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-trans-templ.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-trans-templ.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-transfer.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-transfer.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-utils.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-plugin-aqbanking.c:
Readd some of the aq transaction and txn template code.
2008-04-18 01:55 cedayiv
* [r17090] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif-dialog-utils.scm,
src/import-export/qif-import/qif-objects.scm: Bug #511231: QIF
importer now takes into account any provided QIF security type
when determining a default namespace for new commodities.
Previously saved security mappings for the same symbol are also
considered, if available. BP
2008-04-17 14:16 warlord
* [r17089] src/gnome/dialog-print-check.c: Look for Align_n keys
in check printing formats (#467529) BP
2008-04-16 21:26 cedayiv
* [r17088] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/file-format.txt,
src/import-export/qif-import/qif-import.scm,
src/import-export/qif-import/qif-to-gnc.scm: Bug #512208: Upon
cancellation or failure, the QIF importer now removes any new
commodities that have been created as part of the import
process. In addition, any new accounts, splits, and transactions
are explicitly destroyed to avoid leaking memory and potentially
leaving splits in an Imbalance account. Also includes some
improvements to the QIF file format documentation. BP
2008-04-16 18:00 cedayiv
* [r17087] src/engine/Account.c, src/engine/Account.h: Add a
risk-reduction measure to
xaccAccountStagedTransactionTraversal() in case of a naughty
thunk. Add warnings to doxygen documentation for all Account.h
functions with TransactionCallback parameters. BP
2008-04-14 17:09 cedayiv
* [r17086] src/import-export/qif-import/file-format.txt,
src/import-export/qif-import/qif-parse.scm,
src/import-export/qif-import/qif-utils.scm: Bug #527886: Add
support for QIF numeric formats of 12'345.67 as produced by
Quicken 4. Also support 12'345,67 for completeness. Added
documentation for this format, along with investment 'N' lines.
Added two new string manipulation utility procedures for
simplification. Mild whitespace and readability cleanup. BP
2008-04-13 22:25 cedayiv
* [r17085] src/import-export/qif-import/druid-qif-import.c: Bug
#523194: Fixed QIF importer so that if the user enters a
combination of namespace & mnemonic that matches an existing
commodity, the existing commodity will be used. Added some
support for destroying the commodity pages. Some readability,
comment and whitespace improvements thrown in too. BP
2008-04-12 20:28 andi5
* [r17081] branches/aqbanking3/Makefile.am,
branches/aqbanking3/macros/svn2cl.xsl: For ChangeLog, switch to
branches/aqbanking3 and include trunk commits prior to r17079.
2008-04-12 20:16 andi5
* [r17080] branches/aqbanking3/configure.in,
branches/aqbanking3/src/bin/gnucash-bin.c,
branches/aqbanking3/src/import-export/Makefile.am,
branches/aqbanking3/src/import-export/aqbanking,
branches/aqbanking3/src/import-export/aqbanking/Makefile.am,
branches/aqbanking3/src/import-export/aqbanking/aqbanking.glade,
branches/aqbanking3/src/import-export/aqbanking/dialog-daterange.c,
branches/aqbanking3/src/import-export/aqbanking/dialog-daterange.h,
branches/aqbanking3/src/import-export/aqbanking/druid-ab-initial.c,
branches/aqbanking3/src/import-export/aqbanking/druid-ab-initial.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-getbalance.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-getbalance.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-gettrans.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-gettrans.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-kvp.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-kvp.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-utils.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-ab-utils.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-gwen-gui.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-gwen-gui.h,
branches/aqbanking3/src/import-export/aqbanking/gnc-plugin-aqbanking-ui.xml,
branches/aqbanking3/src/import-export/aqbanking/gnc-plugin-aqbanking.c,
branches/aqbanking3/src/import-export/aqbanking/gnc-plugin-aqbanking.h,
branches/aqbanking3/src/import-export/aqbanking/gncmod-aqbanking.c,
branches/aqbanking3/src/import-export/aqbanking/schemas,
branches/aqbanking3/src/import-export/aqbanking/schemas/Makefile.am,
branches/aqbanking3/src/import-export/aqbanking/schemas/apps_gnucash_dialog_hbci.schemas.in,
branches/aqbanking3/src/import-export/hbci/Makefile.am: Add
first sketch of aqbanking import-export module. Use
import-export/hbci for AqBanking < 3 and import-export/aqbanking
for AqBanking >= 3. Currently the initial setup, fetching an
account balance and transactions should basically work.
2008-04-12 19:28 andi5
* [r17079] branches/aqbanking3: Branch for porting the HBCI
import-export module to AqBanking3. (r17078)
2008-04-12 19:17 andi5
* [r17078] src/register/ledger-core/split-register-load.c: Bug
#347474: When tabbing off the last showed split, correctly focus
new empty split. If info->traverse_to_new is true, use
CURSOR_CLASS_SPLIT as find_class to avoid focussing the
transaction. BP
* [r17077] src/register/ledger-core/split-register.c: Bug #166101:
Do not overwrite first split (blank_split) of a transaction.
When entering a split transaction, the account of the top-most
split is set to the register's anchor account, even if the user
chose something different. Avoid this by checking a flag first
which signals whether the split has been modified. BP
2008-04-10 23:34 cedayiv
* [r17075] src/import-export/qif-import/qif-to-gnc.scm: Bug
#527459: Add QIF importer support for voided transactions. BP
2008-04-10 20:37 cedayiv
* [r17074] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif-dialog-utils.scm,
src/import-export/qif-import/qif-guess-map.scm,
src/import-export/qif-import/qif-import.scm: Bug #511182:
Commodity mapping preferences are now preserved correctly. In
addition, use of the misleading term "stock" has been replaced
by "security" throughout the C code. Also includes a small fix
to prevent passing a null pointer to xaccAccountGetType(), which
caused some critical warnings to be logged. Some comment and
whitespace cleanup as well. BP
2008-04-08 17:01 warlord
* [r17073] checks/Makefile.am, checks/liberty.chk: Add a new
Liberty(tm) check format (GtkPrint only) BP
2008-04-07 22:28 cedayiv
* [r17072] src/core-utils/gnc-glib-utils.h: Small adjustments to a
few comment lines used for doxygen documentation.
2008-04-05 09:46 andi5
* [r17065] src/gnome-utils/dialog-options.c,
src/gnome-utils/druid-utils.c, src/gnome-utils/gnc-dialog.c:
Free a few lists returned by gtk_container_get_children(). BP
2008-04-04 15:43 cedayiv
* [r17064] src/core-utils/gnc-glib-utils.h: Improve documentation
of GLib helper functions for doxygen. In particular, move these
functions out of the GConf section and fix the broken
documentation of gnc_utf8_validate(), which doesn't appear to
have been written for doxygen. Requesting backport because a
significant percentage of lines have changed. BP
2008-04-02 18:10 cedayiv
* [r17063] src/core-utils/core-utils.i,
src/core-utils/core-utils.scm, src/core-utils/gnc-glib-utils.c,
src/core-utils/gnc-glib-utils.h,
src/import-export/qif-import/qif-file.scm: Bug #396665: When any
QIF file content is found that is not encoded in UTF-8, the
importer now first attempts to convert it to UTF-8 according to
the locale. If this fails, the offending bytes will be removed
from the string as usual. In addition, the user will now be
informed of either of these actions via a pop-up warning in the
GUI. Each occurrence will also be logged. This changeset also
exposes the previously static GnuCash-specific UTF-8 validation
C function, gnc_utf8_validate(), and creates a corresponding
Scheme predicate named "gnc-utf8?" for validating strings in
this manner. BP
2008-04-01 22:07 cedayiv
* [r17062] src/core-utils/core-utils.i,
src/core-utils/core-utils.scm, src/core-utils/gnc-glib-utils.c,
src/core-utils/gnc-glib-utils.h,
src/import-export/qif-import/qif-file.scm: Bug #450354: QIF
importer now tries using locale-encoded path if UTF-8 encoded
path fails. Adds supports for use of non-ASCII filenames under
Win32. BP
2008-03-29 13:38 andi5
* [r17061] src/gnome/window-reconcile.c: Improve cancel behavior
in reconciliation window. Allow cancelling the window by
pressing ESC. Always let the user confirm the cancel on changes,
even when closing the window with the window manager. BP
* [r17060] src/gnome-utils/dialog-transfer.c: Avoid a critical
warning in the transfer dialog. When entering interest charges,
the left account tree is grayed out and a selection-changed
signal with empty selection fired. Do not process that NULL
account.
* [r17059] src/gnome/window-reconcile.c: Bug #475960: Reverse
postponed reconciliation balances in suitable accounts. BP
2008-03-29 01:20 andi5
* [r17058] lib/libqof/backend/file/qsf-backend.c,
lib/libqof/qof/qofbackend-p.h, lib/libqof/qof/qofbackend.c,
lib/libqof/qof/qoflog.c, src/backend/file/gnc-backend-file.c:
Fix two memory leaks in QOF. Add qof_backend_destroy(). Backends
should call this function to make sure they free the kvp frame
for the backend configuration.
2008-03-27 23:39 cedayiv
* [r17057] src/import-export/qif-import/qif-parse.scm,
src/import-export/qif/qif-parse.c: Bug #522795: Add QIF importer
support for short sales and covers. BP
2008-03-26 20:44 cstim
* [r17048] src/engine/Recurrence.c: I18n: Fix translator comment
about recurrence frequency. BP
2008-03-25 04:12 cedayiv
* [r17047] src/import-export/qif-import/druid-qif-import.c: QIF
importer: Upon successful completion, open an account tab in the
main window (if there isn't one already). Also includes some
comment improvements. BP
2008-03-24 18:18 andi5
* [r17044] src/import-export/hbci/gnc-hbci-kvp.c: Fix
force_account_dirty() for hbci kvp updates.
xaccAccountSetName(acc, xaccAccountGetName(acc)) does not do
anything, so g_strdup() the name temporarily. BP
2008-03-24 17:02 andi5
* [r17043] src/import-export/import-account-matcher.c: Avoid
critical warnings in the import account matcher dialog. If no
account is selected, simply do not call engine functions on it.
2008-03-23 22:09 andi5
* [r17042] src/gnome-utils/glade/druid-gnc-xml-import.glade:
Correctly destroy the XML Import Druid. BP
2008-03-23 00:01 andi5
* [r17041] lib/libqof/qof/qofutil.h,
src/core-utils/gnc-glib-utils.h, src/core-utils/gnc-gtk-utils.h,
src/gnome-utils/gnc-currency-edit.c,
src/gnome-utils/gnc-currency-edit.h,
src/gnome-utils/gnc-tree-view-account.h,
src/gnome-utils/gnc-tree-view-sx-list.h,
src/gnome-utils/gnc-tree-view.c,
src/gnome/gnc-plugin-page-sx-list.h: A few doxygen fixes.
2008-03-20 23:29 andi5
* [r17040] src/backend/file/gnc-commodity-xml-v2.c: Fix/extend
r17039 and make gnc_commodity_find_currency() free its temporary
data. BP
2008-03-20 23:15 andi5
* [r17039] src/backend/file/gnc-commodity-xml-v2.c,
src/gnome-utils/gnc-tree-view-account.c: Fix memory leaks in
gnc_tree_view_account_restore() and
gnc_commodity_find_currency(). BP
2008-03-20 23:14 andi5
* [r17038] src/import-export/hbci/dialog-hbcitrans.c,
src/import-export/hbci/gnc-plugin-hbci.c: Remove some unnessary
aqbanking version checks as we depend on >= 1.6.1. BP
* [r17037] src/gnome-utils/gnc-dialog.c,
src/gnome-utils/gnc-dialog.h,
src/gnome-utils/test/test-gnc-dialog.c,
src/gnome/gnc-plugin-page-budget.c: Fix a potential memory leak
in gnc_dialog_get_string(). Make the function return a non-const
value and make it the responsibility of the caller to free that.
This is necessary because not all possible types of input
support a getter of an internal and managed string.
* [r17036] src/core-utils/gnc-gtk-utils.c,
src/gnome-utils/druid-gnc-xml-import.c,
src/gnome-utils/gnc-tree-view-account.c,
src/gnome-utils/gnc-tree-view-commodity.c,
src/import-export/csv/gnc-csv-import.c,
src/import-export/qif-import/dialog-account-picker.c,
src/register/register-gnome/gnucash-item-list.c,
src/report/report-gnome/dialog-style-sheet.c: Fix memory leaks
after usage of gtk_tree_model_get(). String results are always
newly allocated and should be freed. Similarly, GObjects should
be unreffed, but I have not found such a case. BP
2008-03-17 16:04 cedayiv
* [r17035] src/import-export/qif-import/druid-qif-import.c: Bug
#514027: Fix QIF importer druid so that commodities pages are
not skipped if the user goes back to the currency page. Create
additional commodity pages if the user goes back and loads
additional QIF files with new securities. BP
2008-03-15 16:40 andi5
* [r17034] src/gnome-utils/gnc-autosave.c: Bug#521957: Do not
start autosave timer when shutting down book. BP
2008-03-15 04:26 cedayiv
* [r17032] src/import-export/qif-import/dialog-account-picker.c,
src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif-file.scm,
src/import-export/qif-import/qif-guess-map.scm,
src/import-export/qif-import/qif-parse.scm,
src/import-export/qif-import/qif-to-gnc.scm: Bug #519988: Update
QIF importer bug detection and error messaging to use the proper
Gnome functions. These are g_warning and g_critical for C, and
gnc:warn for Scheme. BP
2008-03-14 03:24 cedayiv
* [r17031] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif.glade: Bug #509089: Improve the
way the QIF importer handles Scheme exceptions that may occur
during conversion of QIF data into GnuCash data. If an exception
occurs, the druid now displays a cancellation page instead of a
pop up message. In addition to avoiding taking the user to an
empty duplicate checking window, the new page could, in the
future, be extended to show multiple, specific warning and error
messages instead of the current, generic one. BP
2008-03-13 23:27 cedayiv
* [r17030] src/import-export/qif-import/qif-guess-map.scm: Bug
#341414: Save the account separator used when creating the QIF
importer's mapping file so that changing the separator won't
break future QIF imports. BP
2008-03-11 21:49 andi5
* [r17028] src/gnome-utils/glade/transfer.glade: Remove initial
visibility of transfer dialog to avoid flickering.
gtk_widget_show_all() is called on that widget in the only
accessing function anyway.
2008-03-11 20:41 andi5
* [r17027] src/gnome-utils/QuickFill.c,
src/gnome-utils/QuickFill.h,
src/gnome-utils/account-quickfill.c: Add gnc_quickfill_remove()
and let account quickfill use that. Prior to this change
_remove() was implemented as _purge() followed by a complete
refill.
2008-03-11 01:00 andi5
* [r17026] src/gnome-utils/account-quickfill.c,
src/report/report-gnome/dialog-style-sheet.c: Free a few
GtkTreePaths that were leaked.
2008-03-10 07:07 andi5
* [r17025] packaging/win32/reset.sh: Update reset.sh script to
keep htmlhelp, but remove docs and libxslt. Patch by Nathan
Buchanan. BP
2008-03-09 22:43 andi5
* [r17024] src/gnome-utils/gnc-plugin-menu-additions.c: In reports
menu, first list submenus, then menu items, both sorted
lexicographically. Should ease finding specific reports when
reports and placeholders are not mixed together anymore.
Previously all elements were sorted lexicographically, where the
submenus already contained accelerators. As LANG=C and
LANG=en_US.utf8 handle underscores differently, even those
results were not the same.
2008-03-09 21:00 andi5
* [r17022] src/gnome-utils/gnc-account-sel.c: In account selection
widgets, use 2px spacing instead of padding around button.
2008-03-09 20:38 andi5
* [r17021] src/calculation/expression_parser.c: Bug#512841: Let
expression parser grok nullary functions and not crash. BP
2008-03-08 21:16 cedayiv
* [r17018] src/import-export/qif-import/druid-qif-import.c: QIF
import: Update error handling used when looking up the user's
documentation page preference in gconf. Use existing #define for
gconf section and add one for name. This is an update to r16976.
BP
2008-03-08 21:05 cedayiv
* [r17017] doc/README.francais: Minor update to replace a
reference to README.patches.
2008-03-08 20:04 andi5
* [r17016] README.svn, packaging/gnucash.spec.in: Minor updates to
README.svn; remove README.patches from gnucash.spec.in. Do not
demand ChangeLog entries as they are created automagically.
2008-03-08 19:45 andi5
* [r17015] po/POTFILES.in: Add apps_gnucash_import_qif.schemas.in
to POTFILES.in. BP
2008-03-08 19:15 andi5
* [r17014] Makefile.am: Remove README.patches from Makefile.am,
fixes build.
2008-03-08 17:17 andi5
* [r17012] .gitignore, Makefile.am, README, README.patches,
make-gnucash-patch.in, packaging/win32/install.sh: Remove
make-gnucash-patch and only suggest `svn diff' or plain `diff
-urN'.
2008-03-05 22:42 cedayiv
* [r17010] src/import-export/qif-import/qif-to-gnc.scm: Bug
#520606: Fix memo mapping for non-split, non-investment QIF
transactions. BP
2008-03-04 00:25 andi5
* [r17007] src/gnome-utils/gnc-dense-cal.c: Move month labels one
row down to make them look like more in the center.
2008-03-04 00:20 andi5
* [r17006] src/engine/Recurrence.c,
src/gnome-utils/gnc-dense-cal.c: Make a few date printing
functions in dense calendar utf8-safer. Work on utf8 characters
instead of bytes. g_date_strftime() and gnc_dow_abbrev() can
grok full buffer sizes.
* [r17005] lib/libqof/qof/gnc-date.c: Pass better size parameter
to qof_strftime() to make use of whole buffer.
2008-03-03 22:36 andi5
* [r17004] src/gnome-utils/gnc-dense-cal.c: Let dense calendar
popups stay visible on whole height of bottom-most days.
2008-03-03 22:10 andi5
* [r17003] src/bin/gnucash-bin.c: Update latest stable version.
2008-03-02 22:12 andi5
* [r17001] lib/libqof/qof/qofquery.c: Improve performance of
qof_query_invert(). Prepend terms and reverse once at the end
instead of "reverse, prepend, reverse" for each term.
2008-03-02 20:59 andi5
* [r17000] src/gnome/gnc-plugin-page-register.c: Bug#114591: Allow
refinements of transaction searches. Overrides the default
search function on register plugin pages and call
gnc_ui_find_transactions_dialog_create() with the current legder
display as parameter. This also enables refinements of existing
transaction search results.
2008-03-02 19:43 andi5
* [r16999] src/gnome/glade/sched-xact.glade,
src/gnome/gnc-plugin-page-sx-list.c: Bug#397108: Improve
resizing of sx list panes, save and restore their sizes. Give
additional space to the sx list instead of the calendar. Also
save the page's pane divisor position and restore it when
reopening the data file.
2008-03-02 18:55 andi5
* [r16998] src/gnome/dialog-tax-info.c: Close tax information
dialog with session.
2008-03-01 23:27 andi5
* [r16996] src/gnome-utils/glade/dialog-book-close.glade: Remove
an urgency_hint from a glade file, unsupported by gtk+ v2.6. BP
2008-03-01 22:42 andi5
* [r16995] src/report/report-system/report-utilities.scm:
Bug#341608: Make txn report correctly match void or non-void
txns. gnc:query-set-match-{,non-}voids-only! assigned the result
of a query merge to a locally bound variable instead of
returning it somehow. So use qof-query-merge-in-place instead
and add a few missing qof-query-destroys as well. BP
2008-03-01 16:43 cstim
* [r16993] packaging/win32/defaults.sh: Update ktoblzcheck
version. BP
2008-03-01 16:27 andi5
* [r16991] packaging/win32/defaults.sh: Win32: Update a few gnome
packages by revisions to profit from bug fixes. This should fix
at least #507784. BP
2008-02-29 23:42 andi5
* [r16983] src/gnome-utils/dialog-book-close.c: Bug#514003: Couple
book closing with component manager. BP
2008-02-28 22:50 cedayiv
* [r16976] configure.in, src/import-export/qif-import/Makefile.am,
src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/schemas,
src/import-export/qif-import/schemas/Makefile.am,
src/import-export/qif-import/schemas/apps_gnucash_import_qif.schemas.in:
QIF import: Show the druid's documentation pages by default.
Previously these pages were hidden by default. BP
2008-02-27 20:55 andi5
* [r16965] src/business/business-gnome/dialog-invoice.c,
src/business/business-gnome/dialog-invoice.h,
src/business/business-gnome/gnc-plugin-page-invoice.c,
src/gnome-utils/gnc-main-window.c,
src/gnome/gnc-plugin-page-register.c: Always recreate pages in
the given window. Even if registers, reports or invoice pages
have been configured to open in new windows they should not do
so when restored at the startup of gnucash.
2008-02-25 23:21 andi5
* [r16963] accounts/de_DE/acctchrt_full.gnucash-xea,
accounts/de_DE/acctchrt_skr03.gnucash-xea: Fix two typos in
german account templates. Patch by Nis Martensen. BP
2008-02-24 22:32 cedayiv
* [r16962] src/import-export/qif-import/druid-qif-import.c: Bug
#503166: Correct the QIF druid flow such that the duplicates
page and the commodities doc page are not shown going backwards
if they were not shown going forwards. BP
2008-02-24 20:58 cstim
* [r16961] AUTHORS, configure.in, po/vi.po: New Vietnamese
translation by Clytie Siddall. This merges r16679 from 2.2
branch. The translation itself is already outdated, but this
commit is merged anyway so that the addition of this new
translation isn't forgotten in the future when trunk becomes the
next stable branch.
2008-02-24 20:48 cstim
* [r16959] AUTHORS, configure.in, po/de_CH.po,
po/glossary/de_CH.po: Add Swiss German translation by Raffael
Luthiger. BP
2008-02-24 17:12 cedayiv
* [r16956] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif.glade: Bug #512173: Skip the
"match payees/memos" step of the QIF druid if no mappings are
needed. Patch from Ian Lewis. BP
2008-02-24 02:48 cedayiv
* [r16955] src/import-export/qif-import/qif-file.scm: Prevent
unresponsive QIF druid by cleaning up any existing progress
dialog if a Scheme error should occur while reading a QIF file
(similar to bug #516178). Also includes many whitespace and
comment improvements. BP
2008-02-23 05:39 cedayiv
* [r16954] src/import-export/qif-import/qif-to-gnc.scm:
Bug#516178: Prevent unresponsive QIF druid by cleaning up any
existing progress dialog if a Scheme error should occur during
conversion. BP
2008-02-23 04:54 cedayiv
* [r16953] src/import-export/qif-import/qif-merge-groups.scm:
Bug#481528: Relax duplicate matching criteria on imported QIF
transactions that contain only a debit/credit pair so that they
have a chance of match existing transactions with more than two
splits. BP
2008-02-23 02:58 cedayiv
* [r16952] src/import-export/qif-import/qif-file.scm: QIF
importer: adjust order of "or" conditions for faster
performance. BP
2008-02-22 18:25 cedayiv
* [r16950] src/import-export/qif-import/qif-dialog-utils.scm: For
bug 123312: This QIF importer patch provides a somewhat smarter
default namespace for the commodities druid pages if a ticker
symbol is included in the QIF data: -NYSE for symbols of 1-3
characters with an optional .X or .XX suffix -NASDAQ for symbols
of 4 characters -FUND for symbols of 5 or more characters BP
2008-02-21 21:09 cedayiv
* [r16949] src/import-export/qif-import/qif-dialog-utils.scm:
Fixes bug 360058 by rewriting qif-import:get-account-name to
avoid use of regular expressions. The new algorithm is simpler
and faster anyway. BP
2008-02-21 17:13 cedayiv
* [r16948] src/import-export/qif-import/qif-parse.scm: Updates to
whitespace, comments, and display text. I have also corrected
the default return value in the date parsing procedure,
qif-parse:parse-date/format. All parsing procedures should
return #f if the parsing fails. BP
2008-02-21 05:03 cedayiv
* [r16947] src/import-export/qif-import/qif-to-gnc.scm: QIF
importer: Prevent currency-denominated accounts from being
assigned a stock or mutual fund account type (bug 513829). BP
2008-02-11 21:21 andi5
* [r16941] src/gnome/gnc-plugin-budget.c: Bug#327635: Let
double-clicks in budget list dialog open selected budget.
2008-02-11 20:35 andi5
* [r16940] src/report/report-system/html-acct-table.scm:
Bug#506798: Sort html account tables by account code. Patch by
Christoph Ernst. BP
2008-02-10 23:00 andi5
* [r16939] src/gnome/dialog-sx-editor.c: Initialize keyboard focus
in sx editor dialogs to name entries. BP
2008-02-10 22:26 andi5
* [r16938] accounts/es_MX: Ignore generated files in
accounts/es_MX.
2008-02-10 22:22 andi5
* [r16937] src/gnome/gnc-plugin-page-account-tree.c: Add key
binding "delete key" to "Edit > Delete Account" action.
gnc_plugin_page_account_tree_cmd_delete_account() always
presents at least one confirmation dialog which defaults to
cancel, so massive data loss should be avoidable.
2008-02-10 18:25 andi5
* [r16935] src/gnome-utils/gnc-main-window.c: Update copyright
year in about dialog. BP
2008-02-10 18:22 andi5
* [r16934] src/gnome-utils/gnc-main-window.c: Make "rename page"
action work again. In r15774 the structure of main window
notebook tab labels changed, but in
gnc_main_window_cmd_actions_rename_page() the GtkLabel lookup
was still hard-coded and has not been adjusted. Use
main_window_find_tab_items() instead. BP
2008-02-08 22:56 andi5
* [r16932] packaging/win32/gnucash.iss.in,
packaging/win32/install.sh: Win32: Add setlocal to batch
scripts. This avoids cluttering the environment of the caller. BP
2008-02-08 22:23 andi5
* [r16931] packaging/win32/install-fq-mods.bat: Win32: Detect and
warn about ActivePerl 5.10 (#506873). BP
2008-02-06 23:38 andi5
* [r16930] packaging/win32/install.sh,
packaging/win32/make_install.sh: Win32: Provide make_install.sh
with some vars, make it more robust.
2008-02-06 22:54 andi5
* [r16929] packaging/win32/functions.sh: Win32: Fix a minor typo
in reset_steps().
2008-02-06 22:50 andi5
* [r16928] packaging/win32/defaults.sh,
packaging/win32/functions.sh, packaging/win32/install.sh,
packaging/win32/make_install.sh: Win32: Factor out make_install
step, add make_install.sh. Make_install.sh can be called in any
build directory and will execute `make install` and all the
necessary extra steps after that. Also, make prepare and finish
ordinary steps that can be blocked and inserted at will. Add
reset_steps.
2008-02-03 00:59 andi5
* [r16914] src/gnome-search/dialog-search.c: #513088: Do not show
search dialog and hide it immediately afterwards. Previously,
gtk_widget_show_all() and gtk_widget_hide() were called on the
dialog, so that everything except the dialog widget itself were
set visible. That way the user did not see the dialog filling up
and resizing on initialization. Buggy window managers do not
like subsequent map&unmaps though and do not make the search
dialog pop up correctly. This change removes both calls and
depends on the interesting subwidgets being visible. For
search.glade and the widgets inside dialog-search.c this is
guaranteed now. BP
2008-02-02 23:48 andi5
* [r16913] accounts/de_DE/acctchrt_skr03.gnucash-xea: #512985: Use
receivable and payable account types in german skr03 template.
Patch by Frank H. Ellenberger.
2008-02-01 00:48 jsled
* [r16910] accounts/Makefile.am, accounts/es_MX,
accounts/es_MX/Makefile.am,
accounts/es_MX/acctchrt_brokerage.gnucash-xea,
accounts/es_MX/acctchrt_carloan.gnucash-xea,
accounts/es_MX/acctchrt_cdmoneymkt.gnucash-xea,
accounts/es_MX/acctchrt_childcare.gnucash-xea,
accounts/es_MX/acctchrt_common.gnucash-xea,
accounts/es_MX/acctchrt_currency.gnucash-xea,
accounts/es_MX/acctchrt_eduloan.gnucash-xea,
accounts/es_MX/acctchrt_fixedassets.gnucash-xea,
accounts/es_MX/acctchrt_homeloan.gnucash-xea,
accounts/es_MX/acctchrt_homeown.gnucash-xea,
accounts/es_MX/acctchrt_otherloan.gnucash-xea,
accounts/es_MX/acctchrt_renter.gnucash-xea,
accounts/es_MX/acctchrt_retiremt.gnucash-xea,
accounts/es_MX/acctchrt_spouseinc.gnucash-xea,
accounts/es_MX/acctchrt_spouseretire.gnucash-xea, configure.in:
Bug#510221: add es_MX account files. Patch from Daniel Espinosa
<esodan yahoo.com.mx>. BP
2008-02-01 00:47 jsled
* [r16909] src/import-export/qif-import/qif-guess-map.scm:
Bug#511006: Check the GnuCash file for the relevant commodity
during QIF security import, rather than assuming it's there
because it's in the map file, since the user might be importing
against a different book. Patch from <cedayiv gmail com>. BP
2008-02-01 00:46 jsled
* [r16908] src/import-export/qif-import/qif-file.scm: Bug#511681:
add no-op support for the "G" slot on security transactions to
lessen spurious console output. Patch from William Hamblen
<william.d.hamblen dartmouth edu>. BP
2008-02-01 00:45 jsled
* [r16907] src/import-export/qif-import/qif-file.scm: Bug#510962:
warn the user when encountering a QIF import file without date
lines. Patch from Charles Day <cedayiv gmail com>. BP
2008-02-01 00:44 jsled
* [r16906] src/import-export/qif-import/qif-to-gnc.scm:
Bug#512497: use payee/memo mappings as well in the QIF import of
investment transactions. Patch from Charles Day <cedayiv gmail
com>. BP
2008-02-01 00:43 jsled
* [r16905] src/import-export/qif-import/qif-file.scm: Bug#510940:
better handle unrecognized date formats; patch from Charles Day
<cedayiv gmail com>. BP
2008-02-01 00:42 jsled
* [r16904] src/import-export/ofx/gnc-ofx-import.c: Bug#510630:
correct typo in description during import; patch from <dman
dman13 dyndns org>. BP
2008-01-31 23:17 jsled
* [r16903] src/report/standard-reports/price-scatter.scm: Patch to
invert the price scatterplot to display commodities per
currency, from Joshua Ross <joslwah gmail com>.
2008-01-31 22:56 jsled
* [r16902] contrib/GC-export_en.xls: fix mimetype on binary file.
2008-01-31 22:47 jsled
* [r16901] contrib/GC-export_en.xls, contrib/README: Add
GC-export_en.xls contribution from Jannick Asmus <jannick.news
gmail com>.
2008-01-30 00:13 andi5
* [r16891] accounts/de_DE/acctchrt_auto.gnucash-xea,
accounts/de_DE/acctchrt_autoloan.gnucash-xea,
accounts/de_DE/acctchrt_brokerage.gnucash-xea,
accounts/de_DE/acctchrt_common.gnucash-xea,
accounts/de_DE/acctchrt_full.gnucash-xea,
accounts/de_DE/acctchrt_houseown.gnucash-xea,
accounts/de_DE/acctchrt_investment.gnucash-xea,
accounts/de_DE/acctchrt_kids.gnucash-xea,
accounts/de_DE/acctchrt_otherasset.gnucash-xea,
accounts/de_DE/acctchrt_otherloan.gnucash-xea,
accounts/de_DE/acctchrt_skr03.gnucash-xea,
accounts/de_DE/acctchrt_studium.gnucash-xea: Convert de_DE
account templates to UTF-8. This should be considered as a move
forward, so please do not mess with other encodings in this
directory anymore :-)
2008-01-29 18:09 warlord
* [r16890] accounts/de_DE/acctchrt_skr04.gnucash-xea: Fix r16860
by re-adding the slash in the XML closing tag.
2008-01-24 05:24 andrewsw
* [r16886] src/report/report-gnome/dialog-column-view.c,
src/report/report-gnome/report-gnome.scm: fix multi-column
report to use report guid. It's a bit of a hack because we still
refer to sub-reports by name, but the list of names gets built
from the list of registered reports so that's safe, given no
duplicate names. Sorting of the list of available reports isn't
quite right, but it's a start.
2008-01-23 22:54 andi5
* [r16885] src/engine/SplitP.h: Remove G_INLINE_FUNC from
mark_split declaration. This broke builds on MacOS and even
recent Ubuntus. The macro's documentation strongly discourages
its use and we did not use it correctly anyway. BP
* [r16884] src/import-export/import-commodity-matcher.c: #510725:
Fix a crash when comparing cuspis in commodity matcher. BP
* [r16883] src/bin/gnucash-bin.c: Update latest stable version.
2008-01-20 18:16 warlord
* [r16878] src/import-export/qif-import/qif-parse.scm: Small patch
to recognize 401k/403b Patch by Charles Day BP
2008-01-20 18:13 warlord
* [r16877] src/import-export/qif-import/qif-to-gnc.scm: When
matching QIF transactions make sure the account matches
(#506810) Patch by Charles Day BP
2008-01-20 18:06 warlord
* [r16876] src/import-export/qif-import/qif-file.scm: Ignore empty
(whitespace) lines in QIF leader (#457591) Patch by Charles Day
BP
2008-01-20 18:03 warlord
* [r16875] src/report/standard-reports/transaction.scm: Display
the Notes if Memo is empty in Transaction Report (#454834) Patch
by Charles Day BP
2008-01-20 17:52 warlord
* [r16874] src/import-export/qif-import/qif-to-gnc.scm: Fix the
rounding of security transactions in the QIF Importer (#373584).
The QIF file does not provide the total amount paid for the
shares. What appears in the "T" line is the price paid for the
shares *plus* commission ("O" line, if any). Patch by Charles
Day BP
2008-01-20 17:36 warlord
* [r16873] src/import-export/qif-import/qif-merge-groups.scm:
Improve the QIF txn matcher (#336211) Don't run it when we have
no accounts or empty accounts. Cache the account list early on.
Patch by Charles Day BP
2008-01-20 16:56 warlord
* [r16872] src/import-export/qif-import/qif-to-gnc.scm: Throw a
better warning for dates before 1970 (#106242)
2008-01-20 13:24 cstim
* [r16870] accounts/pt_BR/acctchrt_common.gnucash-xea: #509562:
Fix apparently ugly typo in pt_BR account template. Bug
submitted by Renato Moutinho. BP
2008-01-17 05:27 andrewsw
* [r16869] src/report/standard-reports/category-barchart.scm,
src/report/standard-reports/general-journal.scm,
src/report/utility-reports/welcome-to-gnucash.scm: fix several
report-guid references in general-journal, Welcome to Gnucash
report ;) and possibly in category-barchart.scm
2008-01-16 16:35 warlord
* [r16868] Makefile.am, po/POTFILES.ignore, po/POTFILES.skip: Get
distcheck working again on Fedora 7 - move the
gnucash-desktop.in.in from POTFILES.skip to POTFILES.ignore -
only try to make-gnucash-potfiles if $(srcdir) is writable BP
2008-01-16 15:01 warlord
* [r16867] po/POTFILES.skip: Ignore src/gnome/gnucash.desktop.in
in the POTFILES Allows "make check" to work again. BP
2008-01-15 20:40 cstim
* [r16864] Makefile.am, make-gnucash-potfiles.in, po/POTFILES.in:
Add po/POTFILES.in to SVN so that l10n.gnome.org can download it
directly. Also, modify build rules so that POTFILES.in is no
longer generated automatically during make dist, but only on
explicit "make pot", because the build rule will now modify
POTFILES.in in the srcdir and no longer in the builddir. BP
2008-01-15 18:56 andrewsw
* [r16863] src/report/standard-reports/general-ledger.scm: fix
another report-guid reference, general-ledger report.
2008-01-15 14:49 rolf
* [r16860] accounts/de_DE/acctchrt_skr04.gnucash-xea:
accounts/de_DE/acctchrt_skr04.gnucash-xea: remove superfluous
':' at the end of the account name for 7 accounts as it leads to
problems
2008-01-15 10:26 cstim
* [r16859] po/POTFILES.in: Revert "Re-add POTFILES.in to SVN." The
build rules have to be modified non-trivially in order to have
this do the correct thing if builddir != srcdir. I give up for
now - maybe someone else?
2008-01-15 10:17 cstim
* [r16858] po/POTFILES.in: Re-add POTFILES.in to SVN so that
l10n.gnome.org can download it directly. BP
2008-01-14 19:03 andrewsw
* [r16856] src/report/standard-reports/account-piecharts.scm:
possible fix for piechart crasher -- add report-guid to
sub-report links
2008-01-13 12:46 andi5
* [r16854] src/business/business-gnome/dialog-date-close.c,
src/business/business-gnome/dialog-date-close.h,
src/business/business-gnome/dialog-invoice.c: Save last used
account for posting of invoices in kvp slots of effective
owners. The slot is named "last_posted_to_acct". Before showing
the post-to dialog, try to read that slot and pre-select the
account appropriately.
* [r16853] src/gnome/glade/account.glade: Use automatic horiz
scrollbar policy in hierarchy druid on category selection page.
This avoids explosions of the dialog in size when selecting an
account category with long full names, like SKR03 or SKR04.
2008-01-12 17:13 andi5
* [r16852] src/backend/file/io-gncxml-v2.c: Correctly close file
descriptors in gz_thread_func. This is needed to load compressed
xml data files without a specified encoding. BP
2008-01-10 19:01 andrewsw
* [r16851] src/business/business-reports/easy-invoice.scm,
src/business/business-reports/fancy-invoice.scm,
src/business/business-reports/invoice.scm,
src/business/business-reports/payables.scm,
src/business/business-reports/receivables.scm,
src/report/standard-reports/register.scm: fix more report
references to use report-guid, fixes "Print Invoice" crasher.
2008-01-09 04:18 warlord
* [r16848] src/gnome-utils/dialog-book-close.c: If you close the
books on the same day twice don't insert double txns. The
BalanceAsOf() API checks <, not <=, so just add one to the time.
Should be backported only if the rest of the book closing is
backported, so: BP
2008-01-08 18:49 andrewsw
* [r16845] src/business/business-reports/owner-report.scm: fix
owner-report references broken by report-guid.
2008-01-08 02:10 warlord
* [r16844] Makefile.am: Get distcheck working on FC7. Need to
ignore some files: ./share/icons/hicolor/icon-theme.cache and
./share/info/dir these get created by the install system but
don't get deleted (and cannot be deleted because they could be
shared). So just ignore them.
2008-01-08 01:16 andi5
* [r16842] src/pixmaps/Makefile.am: Fix compiling from tarball, as
art/ is not distributed. Patch from warlord. BP
2008-01-07 20:19 andi5
* [r16837] make-gnucash-potfiles.in, po/POTFILES.ignore: Fix
r16733 and r16782 by removing the contents of po/POTFILES.ignore
from po/POTFILES. For more detail, see
http://lists.gnucash.org/pipermail/gnucash-devel/2008-January/022043.html.
BP
2008-01-06 23:55 andrewsw
* [r16836] src/app-utils/options.scm,
src/report/report-system/report.scm: Prevent crashing when a
report template disappears (#505921). If a report template is
missing (renamed, moved, deleted, whatever) while the report is
still open, then the app will crash while reading the books
file. The options-generator will fail and cause subsequent
attempts to access the options to fail and crash. A couple
checks for the existence of options is all it takes. Also
included a warning dialog. BP
2008-01-06 21:09 cstim
* [r16834] configure.in: Fix goffice check that was broken for
goffice < 0.5.1. BP
2008-01-06 16:02 warlord
* [r16828] src/import-export/qif-import/qif-to-gnc.scm: Better
handling of QIF Split transaction matching (#114724) If a QIF
split transaction is involved in a match then it always has
priority. The other half of the match will always be the half
that gets discarded, even if it is from an investment account.
Patch by Charles Day BP
2008-01-06 15:46 warlord
* [r16826] src/import-export/qif-import/qif.glade: Always ask for
the QIF currency (#504007). Patch by Ian Lewis BP
2008-01-06 15:39 andi5
* [r16825] configure.in: Allow building against goffice-0.6. BP
2008-01-06 15:10 andi5
* [r16823] src/business/business-core/business-core.i,
src/business/business-gnome/business-urls.c,
src/business/business-gnome/dialog-invoice.c: Complete gcc-4.2
fixes by disabling -Waddress in some business source files.
Patch from Jerry Quinn. BP
2008-01-06 12:41 cstim
* [r16821] src/register/ledger-core/split-register-load.c: Make
info message from r16718 and r16817 even more useful for
non-techie and probably windows users. BP
2008-01-06 02:53 andi5
* [r16817] src/register/ledger-core/split-register-load.c: Make
info message from r16718 more useful for the non-techie user. BP
2008-01-05 21:39 cstim
* [r16816] configure.in: Improve aqbanking version check add
maximum version to avoid confusion. The very latest aqbanking
series 3.x.x is not source compatible to 2.x.x. GnuCash is not
yet ported to that new series. Hence, we check that we really
have only those versions that are really supported. BP
2008-01-05 21:04 cstim
* [r16814] accounts/de_DE/acctchrt_skr03.gnucash-xea: Fix typo in
German account template. BP
2008-01-05 18:30 andi5
* [r16813] .gitignore, Makefile.am: Cscope support: Works with
build dir now, cscope files ignore by git.
2008-01-05 16:51 andi5
* [r16812] src/app-utils/gnc-euro.c: #506671: Add cyprus, maltese
and slovenian currencies to EURO support. Patch from Herbert
Thoma. BP
2008-01-05 14:34 andi5
* [r16810] src/backend/file/test/test-date-converting.c,
src/engine/test/test-date.c: #506270: Replace %lld by
G_GINT64_FORMAT in tests, fixes make check on Win32. Patch from
Daniel Harding.
2008-01-05 14:05 andi5
* [r16809] src/gnc-module/gnc-module.c,
src/gnc-module/test/misc-mods/Makefile.am,
src/gnc-module/test/mod-bar/Makefile.am,
src/gnc-module/test/mod-baz/Makefile.am,
src/gnc-module/test/mod-foo/Makefile.am: #505895: Fix make check
on win32 in src/gnc-module. Compile test modules with
-avoid-version, just like the productive ones.
2008-01-05 12:13 andi5
* [r16807] packaging/win32/defaults.sh: #504261: For Windows 2000,
downgrade gnome-vfs to v2.14.2. BP
2008-01-05 07:08 andrewsw
* [r16806] src/report/report-system/report.scm: Fix a couple minor
missed changes in report-guid.
2008-01-05 06:42 andrewsw
* [r16805] src/business/business-reports/easy-invoice.scm,
src/business/business-reports/fancy-invoice.scm,
src/business/business-reports/invoice.scm,
src/business/business-reports/owner-report.scm,
src/business/business-reports/payables.scm,
src/business/business-reports/receivables.scm,
src/report/locale-specific/us/taxtxf-de_DE.scm,
src/report/locale-specific/us/taxtxf.scm,
src/report/report-gnome/report-gnome.scm,
src/report/report-system/report-system.scm,
src/report/report-system/report.scm,
src/report/standard-reports/account-piecharts.scm,
src/report/standard-reports/account-summary.scm,
src/report/standard-reports/advanced-portfolio.scm,
src/report/standard-reports/average-balance.scm,
src/report/standard-reports/balance-sheet.scm,
src/report/standard-reports/budget.scm,
src/report/standard-reports/cash-flow.scm,
src/report/standard-reports/category-barchart.scm,
src/report/standard-reports/daily-reports.scm,
src/report/standard-reports/equity-statement.scm,
src/report/standard-reports/general-journal.scm,
src/report/standard-reports/general-ledger.scm,
src/report/standard-reports/income-statement.scm,
src/report/standard-reports/net-barchart.scm,
src/report/standard-reports/portfolio.scm,
src/report/standard-reports/price-scatter.scm,
src/report/standard-reports/register.scm,
src/report/standard-reports/transaction.scm,
src/report/standard-reports/trial-balance.scm,
src/report/utility-reports/hello-world.scm,
src/report/utility-reports/test-graphing.scm,
src/report/utility-reports/view-column.scm,
src/report/utility-reports/welcome-to-gnucash.scm: Implement a
Report GUID. This is an internal representation of the report.
It frees up the various name fields for translation/changes
without concern about it breaking reports*. Each report is now
assigned a GUID that refers to that specific report. All
reference to the report is now done with this GUID. Support is
included for using existing open or saved reports of the old
reference-by-name type. The user is warned of the existence of
saved reports without a GUID. Support is also provided to allow
reports saved or left open using the new report-guid reference
to be accessed in 2.2.3(?) versions in case user downgrades.
IMPORTANT: All saved or open reports created using these changes
*will* *cause* *application* *crashes* if accessed in versions
prior to r16804. Earlier versions have neither the new functions
nor the report-record fields implemented here. It is a one-way
trip from pre-r16804 to here. I hope that is clear enough ;) *
going forward only. name changes will still break
non-report-guid saved or open reports.
2008-01-05 06:10 andrewsw
* [r16804] src/report/report-system/report-system.scm,
src/report/report-system/report.scm: prepare report system to
handle newer reports in case user downgrades from > 2.2.x The
incoming changes to the report system are not backwards
compatible with 2.2 branch. This should allow the reports opened
or saved by the new system to function in 2.2.x. BP
2008-01-05 03:48 warlord
* [r16803] src/report/standard-reports/income-statement.scm:
Re-introduce the Profit & Loss report. Just a renamed Income
Statement, because the average person doesn't know better. It's
the exact same report, just relabeled. Both reports are now
available in the menu. This change does re-add the translatable
string "Profit & Loss" BP
2008-01-03 06:09 andrewsw
* [r16784] src/report/standard-reports/advanced-portfolio.scm:
prevent #unspecified results from certain transactions.
2008-01-02 20:05 andi5
* [r16783] ChangeLog.2007, Makefile.am: Add ChangeLog.2007 Used
branches: - csv-import - reshuffle-modules - deprecated-cleanup
- gobject-engine-dev-warlord - remove-group2 - sx-cleanup
2008-01-02 19:49 andi5
* [r16782] po/POTFILES.ignore, po/POTFILES.skip: Move distributed
qif source files into POTFILES.ignore, fixes make distcheck. BP
2008-01-01 20:07 jsled
* [r16779] src/bin/gnucash-bin.c, src/gnome-utils/gnc-splash.c,
src/gnome-utils/gnc-splash.h, src/gnome-utils/gnc-window.c:
Bug#506714: Add progress bar to splash; patch from Herbert Thoma
<herbie hthoma de>. BP
|