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
|
2013-12-31 John Ralls
* Bug 721260 - Crash on startup: gnucash cannot handle default locale
2013-12-31 John Ralls
* Fix another broken build
2013-12-28 John Ralls
* Release 2.6.0
2013-12-28 John Ralls
* Add new files to POTFILES.in and POTFILES.skip (HEAD, trunk)
2013-12-28 Mike Evans
* A couple more edits. (origin/trunk, origin/HEAD)
2013-12-28 Mike Evans
* Update Last Translator and removed cruft.
2013-12-28 Mike Evans
* Update Amercan -> British translations.
2013-12-27 Geert Janssens
* Update gnome appdata file to pass validity check
2013-12-27 Cristian Marchi
* Update French translations thanks to Sébastien Villemot.
2013-12-27 Cristian Marchi
* Update Lithuanian translation. Thanks to Aurimas Fišeras.
2013-12-26 Geert Janssens
* Prevent gnc-numeric overflow in advanced portfolio report
2013-12-26 Cristian Marchi
* Update Italian translation.
2013-12-26 Geert Janssens
* Fix compile warning introduced in r23602
2013-12-26 Geert Janssens
* Bug 720646 - New Book Tabs on Windows
2013-12-26 Geert Janssens
* Don't create a second account hierarchy page when cancelling the Hierarchy Assistant
2013-12-26 Geert Janssens
* Make "New Book Options" dialog transient for its caller where possible
2013-12-25 John Ralls
* Add plugin example to plugins
2013-12-24 Geert Janssens
* Use same name for dialog and menu related to preconfigured reports
2013-12-24 Geert Janssens
* Revert "Bug 720646 - New Book Tabs on Windows"
2013-12-24 Geert Janssens
* Bug 720646 - New Book Tabs on Windows
2013-12-24 John Ralls
* Make the date help string translatable
2013-12-23 Geert Janssens
* Fix some warnings while creating a new book
2013-12-23 Geert Janssens
* Prevent account hierarchy assistant from opening a second account hierarchy upon completion
2013-12-23 John Ralls
* Bug 710823 - libofx can supply broken UTF-8 for account id
2013-12-22 John Ralls
* Bug 710824 - GnuCash should sanitise UTF-8 before serialising files
2013-12-22 Mike Alexander
* Update .gitignore to include recently added config macros.
2013-12-22 Mike Alexander
* Load old version 1 XML files without crashing.
2013-12-22 Geert Janssens
* Bug 720556 - The Tip of the Day preference isn't getting saved
2013-12-21 Cristian Marchi
* More update to Italian translation.
2013-12-21 Geert Janssens
* Drop double blanks from gschema strings.
2013-12-21 Geert Janssens
* Reset Warnings dialog: show translated warnings
2013-12-20 John Ralls
* Fix up and update strawberry perl URIs
2013-12-20 Cristian Marchi
* Another update to Italian Translation.
2013-12-20 John Ralls
* Suppress other register's blank transactions from General Ledger
2013-12-20 John Ralls
* Bug 720555 - General Ledger - Can't Enter Transaction Amounts
2013-12-20 John Ralls
* Bug 157247 - Asset account's "total" value should use most recent transaction prices
2013-12-20 John Ralls
* Extract-method on gnc_split_register_auto_calc
2013-12-20 John Ralls
* Rewrite apparently confusing comment.
2013-12-18 Cristian Marchi
* Update Dutch translation, copied from the Translation Project.
2013-12-18 Cristian Marchi
* Updated Lithuanian translation provided by Aurimas Fišeras.
2013-12-16 Geert Janssens
* Add missing macros to distribution and silence libtool warning
2013-12-15 Frank H. Ellenberger
* [23570] there was still one "_JP" although currently commented out
2013-12-15 John Ralls
* Change guide and help translation directories
2013-12-15 John Ralls
* Release 2.5.10
2013-12-15 John Ralls
* Rename some directories in src/import-export
2013-12-15 John Ralls
* Move gnc-warnings.c from POTFILES.skip to POTFILES.ignore
2013-12-15 John Ralls
* Fix ax_pkg_swig.m4 filename.
2013-12-15 John Ralls
* Revert a stray, unrelated change from r23556
2013-12-15 John Ralls
* BUG 336843 (Attach images/files/urls to transactions):
2013-12-15 John Ralls
* Fix missing xaccTransCommitEdit() from r23466
2013-12-14 John Ralls
* Bug 619478 - Build warning in html/gnc-html-webkit.c
2013-12-14 Geert Janssens
* SWIG version updates
2013-12-14 Geert Janssens
* Guile 1.8 fixes for r23556 and r23557
2013-12-13 Cristian Marchi
* Update Italian translation.
2013-12-13 Geert Janssens
* Bug 719481 - GnuCash report crashes with Guile2
2013-12-13 Geert Janssens
* Use scm_[to/from]_utf8_string instead of scm_[to/from]_locale_string as per guile recommendation
2013-12-13 Mike Evans
* Move customer, bill, and invoice importers form the business menu to the file menu.
2013-12-13 Mike Evans
* Remove empty file.
2013-12-13 Frank H. Ellenberger
* Fix of [23550]: Translator comments don't like empty comment lines.
2013-12-13 Frank H. Ellenberger
* Update translation into Arabic language to 44% completion on trunk by عبدالسلام عبدالعزيز <ashalash@msn.com>
2013-12-12 Frank H. Ellenberger
* Tell translators where to adjust their credits.
2013-12-12 Mike Alexander
* Ignore missing accounts in gnc:filter-accountlist-type to avoid an assert.
2013-12-12 Mike Alexander
* Ignore XCode projects
2013-12-12 Mike Alexander
* Check for null account pointers in gnc_tree_view_account_set_selected_accounts.
2013-12-11 Frank H. Ellenberger
* Port of "Completion of translation into Arabic language by 55%" by abdulsalam alshilash
2013-12-11 Frank H. Ellenberger
* Appendix to [23539] update POTFILES.in
2013-12-11 Geert Janssens
* Build svn releases with documentation from a matching branch
2013-12-11 Geert Janssens
* Bug 720235 - Python bindings should load environment file just like gnucash does
2013-12-10 Mike Alexander
* Fix r23536: got the 'closing keyword wrong in a couple of places
2013-12-10 Mike Alexander
* Change various reports to find book closing transactions without pattern matching
2013-12-10 Mike Alexander
* Add the ability to search for transactions that are, or are not, book closing entries.
2013-12-10 Geert Janssens
* Ensure that opening an existing book never opens an empty main window.
2013-12-10 John Ralls
* Bug 705714 - QIF Import - File selection pop-up is not on top during qif import
2013-12-10 John Ralls
* QifImport: Fix crash from attempting to import an empty file.
2013-12-10 John Ralls
* Qif Import Assistant: Don't disable the whole dialog, just the Forward button
2013-12-09 John Ralls
* Bug 632588 - Scrub doesn't fix missing currency
2013-12-09 John Ralls
* Fix missing identifier from r23520
2013-12-08 Geert Janssens
* Fix (harmless) report warnings as reported in bug 639371
2013-12-08 Geert Janssens
* Long term fix for wrong version number part of bug 639371
2013-12-08 Geert Janssens
* Remove obsolete conditional that's never triggered anymore
2013-12-08 Cristian Marchi
* Updated French translation and glossary, thanks to Sébastien Villemot.
2013-12-08 Geert Janssens
* Fix report background image loading on Windows
2013-12-07 Frank H. Ellenberger
* Bug 711317 - Indian Rupee Symbol appears as "?" marks
2013-12-07 John Ralls
* Fix missing prototype warning from r23494.
2013-12-07 Geert Janssens
* Bug 627575 - Stylesheet names with non-alphanumeric characters and saved-reports -- addendum
2013-12-07 Geert Janssens
* Bug 627575 - Stylesheet names with non-alphanumeric characters and saved-reports
2013-12-07 Mike Alexander
* Don't add a \n to the beginning of the split memo, account, or amount lists. Pango seems to ignore it, but it really shouldn't be there.
2013-12-07 Mike Alexander
* Fix bug 653594 related to check printing. This bug has two parts. The original bug was that the wrong split is sometimes used to print the check. In the comments a second problem was mentioned: sometimes the wrong split is omitted from the split list in formats that print all the splits.
2013-12-07 Mike Alexander
* Protect against null account pointers in a couple of place to avoid asserts.
2013-12-07 Mike Alexander
* Protect gnc_mktime against bad dates.
2013-12-05 John Ralls
* Test for overflow limits in gnc_numeric_add.
2013-12-05 John Ralls
* Handle RAND_MAX < 2^32 in get_random_gint64()
2013-12-05 Geert Janssens
* Multi-currency "Post invoice" improvements
2013-12-05 Geert Janssens
* Bug 630578 - current date instead of posting date in exchange rate, when posting a bill
2013-12-04 Geert Janssens
* Bug 715123 - Post invoice problem, cannot unpost
2013-12-04 Christian Stimming
* Fix cutecash build: Calling the iso-currencies-to-c script can directly use the unchanged .in script because we call the GUILE_EXECUTABLE directly from cmake.
2013-12-04 Frank H. Ellenberger
* Update german glossary
2013-12-04 Mike Alexander
* Fix bug 719521. The two radio buttons were both there, but one on top of the other.
2013-12-03 Christian Stimming
* Fix ugly typo in string.
2013-12-03 Christian Stimming
* Update German translation. Still 690 to go.
2013-12-02 John Ralls
* Bug 719726 - Click on File -> Open seg-faults
2013-12-02 John Ralls
* Bug 708526 - GnuCash Crashes when opening About page
2013-12-02 John Ralls
* Remove src/gnome-utils/gnc-warnings.c from POTFILES.in
2013-12-02 John Ralls
* Protect older GCCs from -Wno-invalid-source-encoding
2013-12-02 Geert Janssens
* Fix python test
2013-12-02 Geert Janssens
* GSettings: only load backend when installed
2013-12-01 Mike Alexander
* Update progress bar while writing price DB as well as while reading it.
2013-12-01 John Ralls
* Make that Release 2.5.9
2013-12-01 John Ralls
* Release 2.5.90
2013-12-01 John Ralls
* Ensure that all KVP changes are properly marked dirty and committed.
2013-11-30 Mike Evans
* Bug 710871 - Python site-packages not found when not installed to default location using --prefix
2013-11-30 John Ralls
* Fix windows build for r23452
2013-11-29 Geert Janssens
* Improve cond-expand/eval-when usage based on feedback from the guile developers
2013-11-29 Geert Janssens
* Bug 707311 - Tax Invoice fails to open when using guile 2 - addendum
2013-11-29 Mike Evans
* Bug 715184 - Bill or Invoice; a new Bill gives a new Invoice
2013-11-29 Mike Alexander
* Try to make the python bindings tests work with an out of source tree build. This is almost ok, but it uses the schemas from the install tree.
2013-11-29 Mike Alexander
* Make the test-dynload test work in the X11 version on MacOSX.
2013-11-28 Christian Stimming
* Remove annoying extra question before overwriting transfer fields by template.
2013-11-28 Christian Stimming
* Update German translation. Still 790 to go, sigh.
2013-11-28 Christian Stimming
* Win32: Update aqbanking versions
2013-11-28 John Ralls
* Bug 704506 - Connection loss to mysql after resume from hibernation
2013-11-28 John Ralls
* test_gnc_setlocale: Print diagnostic message, replacing comment.
2013-11-28 John Ralls
* Stop leaking and re-inserting Split slots
2013-11-26 Geert Janssens
* Fix price quotes installation on Windows
2013-11-26 Geert Janssens
* Fix line-ending styles on a few windows scripts
2013-11-26 Geert Janssens
* Set proper EOL style for windows vbs script
2013-11-26 Geert Janssens
* Report the proper minimum version for libgoffice when not found at configure time
2013-11-26 Geert Janssens
* Fix several test failures under guile 2 with auto compile enabled
2013-11-26 Geert Janssens
* Bug 712299 - Tax Invoice with guile 2 doesn't display currency symbols (second attempt)
2013-11-26 Geert Janssens
* Preferences fixes
2013-11-26 Geert Janssens
* Guile2: fix two tests in report system
2013-11-26 Mike Alexander
* Work around WebKit bug 119003 by flushing events when removing a page from a window. See <https://bugs.webkit.org/show_bug.cgi?id=119003>
2013-11-25 John Ralls
* Fix sometime crash in test-xml-pricedb
2013-11-25 John Ralls
* Bug 644044 - Lots: SQL backend loses link to Gain/Loss Txn
2013-11-25 John Ralls
* TEMPORARY -- REBASE THIS OUT
2013-11-24 John Ralls
* Fix make check after r23429 broke it.
2013-11-24 John Ralls
* Work around Clang whining about UTF-8
2013-11-24 Christian Stimming
* More German translation update. Still approx. 900 strings to go...
2013-11-24 Geert Janssens
* When an account or budget is deleted, drop any associated saved state
2013-11-24 Geert Janssens
* Register2: improve sort functionality
2013-11-24 Geert Janssens
* Bug 710905 - Column withs, visibility, order and sort order not saved and restored
2013-11-22 Mike Alexander
* Update the progress bar while loading the price DB from an XML file.
2013-11-22 Cristian Marchi
* Update Italian translation.
2013-11-22 Geert Janssens
* Suppress a few harmless state file related warnings at startup
2013-11-22 Geert Janssens
* Win32: more consistent use of @PACKAGE@ for gnucash package name in installer script
2013-11-22 Geert Janssens
* Win32: remove gconf related settings from the installer script
2013-11-21 Christian Stimming
* i18n update: Remove some almost-duplicate strings by removing unneeded punctuation.
2013-11-21 Christian Stimming
* Update German translation. Slightly more translated now.
2013-11-21 Frank H. Ellenberger
* Fix a few doxygen errors and wanrnings.
2013-11-21 Geert Janssens
* Fix typos in translatable strings
2013-11-21 Mike Alexander
* Don't write the default currency symbol to the output file. Patch by Frédéric Perrin.
2013-11-20 Mike Evans
* Make bill & invoice importer and customer importer modules load by default.
2013-11-20 Geert Janssens
* Bug 712299 - Tax Invoice with guile 2 doesn't display currency symbols
2013-11-20 Geert Janssens
* Small fixes to make the Windows build work again after r23412
2013-11-20 John Ralls
* Bug 711289 - time zone handling is inconsistent between 2.4 and 2.5
2013-11-19 Mike Alexander
* Decompress zipped XML files ourself instead of letting libxml2 do it. As of version 2.9.1 it has a bug that causes it to fail to decompress certain files. See https://bugzilla.gnome.org/show_bug.cgi?id=712528 for more info.
2013-11-18 Christian Stimming
* Cutecash: Adapt to compiler/linker flags that are needed on Ubuntu 13.10
2013-11-18 Christian Stimming
* Cutecash: Adapt to recent gconf file changes.
2013-11-17 John Ralls
* Bug 336843: Correct Win32 Display function.
2013-11-17 Mike Alexander
* Add missing semicolon and only dump transaction when debugging.
2013-11-17 John Ralls
* Release 1.5.8
2013-11-17 John Ralls
* Adjust Makefile.am for new runTests.py.in
2013-11-16 Mike Alexander
* Turn off the scheme compiler's "possibly unbound variable" warnings. In guile 2.0 we get nearly 7500 of them loading the scheme files.
2013-11-16 Geert Janssens
* Remove some redundant variable definitions in Makefile.am
2013-11-16 Geert Janssens
* Don't distribute files generated by configure
2013-11-16 Geert Janssens
* Fix distcheck-hook to handle [type: ] prefixes in POTFILES.in properly
2013-11-16 Geert Janssens
* Don't create invoice when Duplicate invoice dialog is cancelled
2013-11-15 John Ralls
* Bug 336843: Attach images/files/urls to transactions.
2013-11-15 John Ralls
* Bug 711289: Time Zone Handling is Inconsistent between 2.4 and 2.5
2013-11-14 Geert Janssens
* Bug 707311 - Tax Invoice fails to open when using guile 2
2013-11-13 Geert Janssens
* Bug 709589 - make check fails with guile 2
2013-11-13 Geert Janssens
* Make python test find its test files for out of tree builds
2013-11-13 Geert Janssens
* Use guile/python executable as found during configure for tests and some support scripts
2013-11-13 Geert Janssens
* Replace all uses of GUILE_INCS with GUILE_CFLAGS
2013-11-13 Geert Janssens
* Improve guile testing in configure.ac
2013-11-13 Christian Stimming
* First update of German translation.
2013-11-13 Christian Stimming
* I18n message improvements: Fix typos; unify strings.
2013-11-11 Mike Alexander
* Collapse the two transaction currency scrubbing functions into one and fix some bugs. The most serious bug was that it would, in some cases, set the transaction's currency to a non-currency commodity. It also sometimes set the currency directly without calling xaccTransSetCurrency which skipped a number of side effects.
2013-11-10 John Ralls
* Wrap budget UI strings in the translation function
2013-11-10 John Ralls
* Fix Application Menu Preferences Item
2013-11-08 Mike Alexander
* Handle multi-currency transactions in registers without a default currency. Editing a multi-currency transaction in a serach results register sometimes sets the exchange rate to 1 instead of the value you want.
2013-11-05 Christian Stimming
* Bug #711493: Fix unselected account that is NULL.
2013-11-05 John Ralls
* Update dependencies and versions
2013-11-05 Geert Janssens
* Enable translations on gsettings schemas
2013-11-04 Geert Janssens
* Bug 711294 - Gnucash repeatedly ask associated income account when import qfx file
2013-11-04 Geert Janssens
* Use proper conversion modifier for unsigned int
2013-11-03 John Ralls
* Fix broken win32 build
2013-11-03 John Ralls
* Release 2.5.7
2013-11-03 John Ralls
* Clean out log files from testing the xml backend.
2013-11-02 John Ralls
* Remove dialog-preferences2.c from POTFILES.in
2013-11-02 John Ralls
* Skip this test when building with clang
2013-11-02 John Ralls
* replace static string filename with generated one
2013-11-02 John Ralls
* Remove dead code.
2013-11-02 John Ralls
* Replace deprecated tempnam with a constant.
2013-11-02 John Ralls
* Mac: Don't append 'Gnucash' to the 'Preferences' menu item title.
2013-11-02 John Ralls
* Avoid critical error from trying to access an uninitialized GHash.
2013-11-02 John Ralls
* Fix incorrect Enum type specifier
2013-10-31 Geert Janssens
* Update POTFILES.in after my recent work
2013-10-31 Geert Janssens
* Bug 693244 - View Lots window enhancements
2013-10-31 Geert Janssens
* Improve visual appearance and sorting of Invoice payment dialog
2013-10-31 Geert Janssens
* Bug 687478 - Bills due reminder doesn't work well with credit notes
2013-10-31 Geert Janssens
* Bug 687479 - Automatic invoice/payment matching on posting an invoice should be an optional feature
2013-10-31 Geert Janssens
* Code reindentation in tests
2013-10-31 Geert Janssens
* Code reindentation
2013-10-30 Geert Janssens
* Remove now unused parameter
2013-10-30 Geert Janssens
* Bug 710979 - Crash in gnc_plugin_page_invoice_summarybar_position_changed
2013-10-29 Geert Janssens
* Some white space and comment improvements
2013-10-29 Geert Janssens
* Cleanup leftover from state save/restore re-implementation
2013-10-29 Geert Janssens
* Fix crash when deleting budget
2013-10-29 Geert Janssens
* Remove function that no longer adds value
2013-10-29 Geert Janssens
* Re-implement state save/restore functionality in gnc_tree_view
2013-10-29 Geert Janssens
* Move state handling code to separate file and improve on it
2013-10-29 Geert Janssens
* On file open, only destroy a previous session if really exists
2013-10-29 Geert Janssens
* Remove gnc_build_book_path from swig interface file
2013-10-29 Geert Janssens
* Remove some unused includes
2013-10-28 Mike Alexander
* Guard against bad parameter to gnc_plugin_page_invoice_summarybar_position_changed.
2013-10-28 Geert Janssens
* Use the symbol in iso-4217-currencies by default
2013-10-28 Frank H. Ellenberger
* Rename .texinfo files to .texi to get rid of the autogen.sh warning.
2013-10-27 Mike Alexander
* Add --with-xdg-data-dirs to specify default search path for XDG data directories.
2013-10-27 Mike Alexander
* Fix a typo in --with-qt3-wizard-package.
2013-10-27 Frank H. Ellenberger
* Bump required automake version to 1.11
2013-10-27 Mike Evans
* Bug 710871 - Undo my last two commits.
2013-10-26 Mike Evans
* Bug 710871 - Remove errant $.
2013-10-26 Geert Janssens
* Small XDG_DATA_DIRS improvements
2013-10-26 Geert Janssens
* Add off-by-one warning in comment
2013-10-26 Geert Janssens
* Prohibit setting budget values greater than num_periods
2013-10-25 Geert Janssens
* Fix save count down timer on Windows
2013-10-25 Geert Janssens
* Clean up preferences for pricedb-editor and price-editor
2013-10-25 Geert Janssens
* Configure: don't list ofx twice in selected components
2013-10-25 Geert Janssens
* Avoid the need for a duplicate dialog-preferences.glade
2013-10-25 Geert Janssens
* Register rewrite Update, revised removal update for next release. This update adds a configure option --enable-register2 which will enable the register2 changes at compile time, there are also some changes to use the Gnucash --extra parameter that displays some of the new register2 functionality for testing. Author: Robert Fewell
2013-10-25 Christian Stimming
* Bug #710739: Fill in field for remote bank account information also for SEPA transfers.
2013-10-25 Mike Evans
* Bug-710871 Fix for Python site-packages not found when not installed to default location
2013-10-25 Geert Janssens
* Fix window position/size saving
2013-10-24 Geert Janssens
* Ignore autogenerated Makefile[.in] for gschemas directories
2013-10-24 Geert Janssens
* Add a field to the commodity editor allowing setting the user symbol.
2013-10-24 Geert Janssens
* Add a user_symbol to one UT
2013-10-24 Geert Janssens
* Copy the test-files to the builddir, and use that in GNC_TEST_FILES
2013-10-24 Geert Janssens
* Use the new user_symbol property where relevant
2013-10-24 Geert Janssens
* Add a new user_symbol property to the Commodity class
2013-10-24 Geert Janssens
* Check for availability of xsltproc at configure time
2013-10-24 Geert Janssens
* Fix gsettings schema for commodities editor
2013-10-24 Geert Janssens
* Fix budget options descriptions field
2013-10-23 Geert Janssens
* Abort configure if --enable-ofx specified but no libofx development files found
2013-10-23 Geert Janssens
* Remove reference to schema that was deleted earlier
2013-10-22 Geert Janssens
* Revert "[PATCH] Register rewrite Update, remove update for next release."
2013-10-22 Geert Janssens
* [PATCH] Register rewrite Update, remove update for next release.
2013-10-22 Geert Janssens
* Win32: set XDG_DATA_DIRS when running the Windows installer
2013-10-22 Geert Janssens
* Add default-to-save timeout on save-on-changes dialog
2013-10-22 Geert Janssens
* Drop check for glib >= 2.14, glib >= 2.28 is already required
2013-10-22 Geert Janssens
* Bug 710055 - advanced portfolio report counts capital gains split as dividend
2013-10-22 Geert Janssens
* Set tab position when opening a new window
2013-10-22 Geert Janssens
* Elaborate a bit on why compile time XDG_DATA_DIRS is added to the mix
2013-10-20 Mike Alexander
* Use ";" as seperator characer since that's what g_key_file_get_keys wants.
2013-10-20 Mike Alexander
* Eliminate null entries in path lists in environment_override.
2013-10-20 Mike Alexander
* Use the compile time value of XDG_DATA_DIRS to set the default run time value.
2013-10-19 Geert Janssens
* Do not remove gnucash_core.c in clean rule
2013-10-18 Geert Janssens
* Fix bug 708659
2013-10-18 Geert Janssens
* Fix bug 668530
2013-10-17 Geert Janssens
* Prevent crash due to accessing a non-existent gsettings schema
2013-10-16 Geert Janssens
* Fix build error with clang
2013-10-16 John Ralls
* Bug 710311 - Missing ChangeLogs
2013-10-16 Geert Janssens
* Prefs migration: improve messaging
2013-10-16 Geert Janssens
* Prefs migration: migrate ofx and aqbanking prefs if these options were enabled at build time
2013-10-16 Geert Janssens
* Prefs migration: write xsl transform to migrate a pair of coordinates
2013-10-16 Geert Janssens
* Prefs migration: fix radiobutton prefs migration
2013-10-16 Geert Janssens
* Prefs migration improvements
2013-10-13 John Ralls
* Remove gnucash-launcher and related scripting files.
2013-10-09 John Ralls
* Adjust error-message tests to pass with Clang
2013-10-09 John Ralls
* Clean up a bunch of clang errors
2013-10-08 Geert Janssens
* Gnc-Prefs: make the prefs migration actually do something on Windows
2013-10-08 Geert Janssens
* Gnc-Prefs: fix crash in migration script on Win32
2013-10-07 Geert Janssens
* Gnc-Prefs: disable migration of aqbanking prefs for now
2013-10-07 Geert Janssens
* Gnc-Prefs: windows limits preference names to 32 characters
2013-10-07 John Ralls
* Release 2.5.6
2013-10-07 John Ralls
* Fix EXTRA_DIST typo
2013-10-07 Geert Janssens
* Prefs migrate: skip preferences that don't have a value set
2013-10-07 Geert Janssens
* Move prefs migration call from app-utils module load to inner_main
2013-10-07 Geert Janssens
* Fix make distcheck
2013-10-07 Geert Janssens
* Gnc-Prefs: add code to migrate settings from gconf to gsettings at runtime
2013-10-07 Geert Janssens
* Gsettings schema corrections
2013-10-07 Geert Janssens
* Gnc-Prefs: add convenience functions for int64 and coords typed preferences
2013-10-07 Geert Janssens
* Gnc-Prefs: update the windows build system to handle gsettings properly
2013-10-07 Geert Janssens
* Test for empty filename in addition to no filename
2013-10-07 Geert Janssens
* Add some debugging code to gnc-gsettings
2013-10-07 Geert Janssens
* Gnc-Prefs: stop using gconf as gsettings backend
2013-10-07 Geert Janssens
* Gnc-Prefs: rename preferences to be compliant with gsettings syntax rules
2013-10-07 Geert Janssens
* Properly share a variable between two source files
2013-10-07 Geert Janssens
* Remove remaining gconf code bits
2013-10-07 Geert Janssens
* Gnc-Prefs: call gnc_gui_refresh_all on changes in the general prefs group
2013-10-07 Geert Janssens
* Remove state saving/restoring code from new and old register code
2013-10-07 Geert Janssens
* Remove state saving/restoring code from gnc-tree-view
2013-10-07 Geert Janssens
* Gnc-Prefs: Convert gnc user warnings
2013-10-07 Geert Janssens
* Remove unused gconf includes, cflags and libs so far
2013-10-07 Geert Janssens
* Refactor gnc-tree-view based widgets such that only gnc-tree-view itself deals with gconf
2013-10-07 Geert Janssens
* Gnc-Prefs: cleanup gconf wiring in main summarybar
2013-10-07 Geert Janssens
* Gnc-Prefs: cleanup gconf wiring in report system
2013-10-07 Geert Janssens
* Gnc-Prefs: cleanup (most) gconf wiring in import-export
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate remaining gconf calls in check printing
2013-10-07 Geert Janssens
* Drop option to customize gconf_path via command line or environment variable
2013-10-07 Geert Janssens
* Gnc-Prefs: cleanup some remaining bits from the preferences dialog
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate GncDateEdit widgets (and associated preferences)
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate GncPeriodSelect widgets (and associated preferences)
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate GncCurrencyEdit widgets (and associated preferences)
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate gnc-plugin gconf machinery
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate GtkRadiobutton widgets (and associated preferences)
2013-10-07 Geert Janssens
* Gnc-Prefs: remove toolbar_style preference
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate date_format preference
2013-10-07 Geert Janssens
* Resave preferences dialog with a recent glade-3 version
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate account_separator preference (and associated GtkEntry widget)
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate file history plugin
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate int-typed preferences (and GtkCombobox widgets linked to them)
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate GtkSpinbutton widgets (and associated preferences)
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate GtkCheckbutton widgets (and associated preferences) - last batch
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate GtkCheckbutton widgets (and associated preferences) - second batch
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate extra_toolbuttons preference (business option)
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate 24hour_clock preference and fix the code so it actually works. (It's not actively used though in GnuCash)
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate GtkCheckbutton widgets (and associated preferences) - first batch
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate all GtkFontButton widgets (default_font property)
2013-10-07 Geert Janssens
* Prepare preferences dialog to work with gnc-prefs instead of gconf. The actual migration will be gradually done in future commits.
2013-10-07 Geert Janssens
* GncDateEdit: add gobject property "time"
2013-10-07 Geert Janssens
* GncPeriodSelect: add gobject property active
2013-10-07 Geert Janssens
* GncCurrencyEdit: add gobject property mnemonic
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate search dialog and saved window geometry preferences
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate most preferences found in app-utils
2013-10-07 Geert Janssens
* Gnc-Prefs: migrate first preference option (first_user) to new preference system
2013-10-07 Geert Janssens
* Temporarily use gconf as gsettings backend
2013-10-07 Geert Janssens
* Amend XDG_DATA_DIRS if not installed in default prefix
2013-10-07 Geert Janssens
* Create gsettings schema entries for all gconf keys currently in use
2013-10-07 Geert Janssens
* Remove obsolete gconf setup assistant.
2013-10-07 Geert Janssens
* Refactor preferences
2013-10-07 Geert Janssens
* GSettings: add function to bind a gsettings key to a gobject property
2013-10-07 Geert Janssens
* GSettings: add functions to unset a key or complete schema
2013-10-07 Geert Janssens
* GSettings: add functions to get/set most common data types
2013-10-07 Geert Janssens
* GSettings: add functions to listen for changes
2013-10-07 Geert Janssens
* Add some initialization code for GSettings
2013-10-07 Geert Janssens
* Add GSettings schemas and build rules
2013-10-07 Geert Janssens
* Prepare for GSettings conversion
2013-10-07 Geert Janssens
* Use more generic parameter name to cut association with gconf
2013-10-07 Geert Janssens
* Whitespace cleanup, comment improvements and spelling fixes
2013-10-07 Geert Janssens
* Cleanup after file backend settings refactoring
2013-10-07 Geert Janssens
* Remove obsolete enable_euro key from gconf
2013-10-07 Geert Janssens
* Remove redundant call
2013-10-06 John Ralls
* Fix pre-glib-2.38 definition of _Q in tests
2013-10-03 John Ralls
* Remove ancient #if-0'd code from Engine
2013-10-03 John Ralls
* Work around quote change in assertion messages
2013-10-03 John Ralls
* Remove ancient if-0'd code from backends
2013-10-03 John Ralls
* Remove ancient if-0'd code from libqof
2013-10-03 John Ralls
* Convert - in filenames to _ for function names
2013-10-03 John Ralls
* Fix test broken by r23192
2013-10-01 Mike Evans
* Bug #699450
2013-09-30 Christian Stimming
* Fix typo in string (punctuation)
2013-09-28 Christian Stimming
* Minor improvement in message about last modification time upon opening a file.
2013-09-28 Christian Stimming
* Win32: Update aqbanking/gwenhywfar package versions for windows build.
2013-09-26 John Ralls
* Fix undeclared identifier from r23191
2013-09-24 John Ralls
* Bug 708700 - "make check" fails (missing glib bits)
2013-09-24 John Ralls
* Bug 654196 - "make check" fails when built with --enable-dbi
2013-09-24 John Ralls
* Bug 632362 - Unable to create "reversing transaction" again after it is removed
2013-09-24 John Ralls
* Fix leaking Gtkosxapplication objects.
2013-09-22 John Ralls
* Bug 654196 - "make check" fails when built with --enable-dbi
2013-09-21 Geert Janssens
* Revert r23187 "Revert dbi check"
2013-09-21 Geert Janssens
* Improve tab behaviour in Stock split assistant
2013-09-21 Geert Janssens
* Revert dbi check
2013-09-20 John Ralls
* Bug 654196 - "make check" fails when built with --enable-dbi
2013-09-20 Christian Stimming
* After opening a file, display a statusbar message with the last modification date and time.
2013-09-20 Christian Stimming
* Make gnc_g_date_time_new_from_unix_local() function known in header.
2013-09-20 Christian Stimming
* Fix memory leak due to missing free after gnc_ctime().
2013-09-20 Christian Stimming
* Fix erroneous memset() parameter ordering, as notified by gcc-4.6.3
2013-09-19 John Ralls
* Fix win32 build errors
2013-09-19 John Ralls
* Bug #654196 make check fails without sqlite DBD installed
2013-09-19 John Ralls
* Bug #704039 time zone is not respected in Windows
2013-09-18 Mike Evans
* Remove commented out code.
2013-09-18 Mike Evans
* Fix bug 699450
2013-09-17 John Ralls
* Bug 674862 - 2038 bug in libdbi
2013-09-17 John Ralls
* Modify xaccAccountChildrenEqual to not depend upon the order
2013-09-17 John Ralls
* Work around differing pgsql protocol and dbi name
2013-09-17 John Ralls
* Convert stray g_printf into PINFO
2013-09-17 John Ralls
* Add core-utils to backend-sql test LDADD
2013-09-15 John Ralls
* Re-enable dbi backend basic tests with g_tester
2013-09-14 Cristian Marchi
* Update Dutch translation from the translation project.
2013-09-13 John Ralls
* Fix up state-changing business functions
2013-09-13 John Ralls
* Bug #682280 - bill/invoice importer fails to save imported bills/invoices
2013-09-12 John Ralls
* Bug 684670 - Interest amount calculation is wrong in Sqllite3 format
2013-09-09 John Ralls
* Prepare 2.5.5 release
2013-09-09 John Ralls
* Bug 704056 - Online Banking (Online Actions) does not appear in Action menu
2013-09-04 Geert Janssens
* Prevent 2.4 from crashing when loading a book that was opened with 2.6 before.
2013-09-03 Geert Janssens
* Bug 603183 - Equity statement shows incorrect changes
2013-09-03 Geert Janssens
* Bug 603183 - Equity statement shows incorrect changes
2013-09-03 Geert Janssens
* Bug 603183 - Equity statement shows incorrect changes
2013-09-03 Geert Janssens
* Bug #704039 time zone is not respected on windows Author: Kuang-che Wu <kcwu@csie.org>
2013-09-03 Geert Janssens
* Add appdata description file to be used in Gnome's App store BP
2013-08-26 John Ralls
* Handle exception in set_mac_locale()
2013-08-22 Cristian Marchi
* Revert Persian translation update while Persion translators coordinates the translation effort.
2013-08-20 Cristian Marchi
* Update traditional Chinese translation thanks to Kuang-che Wu.
2013-08-20 Geert Janssens
* Bug 334939 - Account Report and Account Transaction Report are apparently the same, but different
2013-08-18 John Ralls
* Fix pointer conversion warnings on 64-bit builds
2013-08-18 Geert Janssens
* Add comment to document the hack for multicolumn multi-chart reports
2013-08-18 Geert Janssens
* Bug 704525 - When you have a mix of chart types (bar charts and pie charts)
2013-08-18 Geert Janssens
* Bug 704525 - When you have a mix of chart types (bar charts and pie charts)
2013-08-18 John Ralls
* Add Lithuanian translators to AUTHORS
2013-08-17 John Ralls
* Set mime-type property on AUTHORS and DOCUMENTERS
2013-08-16 John Ralls
* Testing: Split.c: Filter out expected error message.
2013-08-16 John Ralls
* Unit test Transaction.c
2013-08-16 John Ralls
* [Testing] Create log handlers in one step, clean up in teardown
2013-08-16 John Ralls
* Protect split-iterator from NULL split
2013-08-16 John Ralls
* Protect xaccTransIsBalanced against crashing if passed a NULL Transaction
2013-08-16 John Ralls
* Transaction.c: Note a bug discovered in testing.
2013-08-16 John Ralls
* Guard xaccTransGetRateForCommodity against NULL arguments
2013-08-16 John Ralls
* Split: Ignore fatal message
2013-08-15 Christian Stimming
* Bug #629136: Move the code that updates the sensitivity of immutable page actions from gnc_main_window_switch_page to gnc_main_window_generate_title.
2013-08-15 Christian Stimming
* Bug #696492: Change report name in menu or in report output to be consistent
2013-08-12 Cristian Marchi
* Update Persian translation, copied from the translation project.
2013-08-04 Cristian Marchi
* Update Lithuanian translation thanks to Aurimas Fišeras.
2013-08-04 Cristian Marchi
* Improve a tooltip. Patch thanks to Aurimas Fišeras.
2013-08-04 Cristian Marchi
* Change po files for previous patch removing double spaces. Patch thanks to Aurimas Fišeras.
2013-08-04 Cristian Marchi
* Remove double spaces from translatable strings. Patch submitted by Aurimas Fišeras.
2013-08-03 John Ralls
* Fix some uninitialized variable warnings
2013-08-03 John Ralls
* Bump for 2.5.4 release
2013-08-02 Cristian Marchi
* More consistency for UI strings. Patch by Aurimas Fišeras.
2013-08-02 John Ralls
* Revert "Support for querying Bitcoin/Litecoin prices via F::Q's MtGox module"
2013-08-02 Cristian Marchi
* Update Italian translation.
2013-08-02 John Ralls
* - Functions which can return null always return a Python object
2013-08-02 John Ralls
* Bug 704183 - ofx file import tries to match online_id against ACCTID[space]ACCTKEY even when ACCTKEY is empty
2013-08-02 John Ralls
* Register rewrite Update, add delete transaction up/down function. This update corrects a mistake in the removal of previous gui update. Author: Robert Fewell
2013-08-02 John Ralls
* Register rewrite Update, change to using original query. This update changes the model to drop the filter and sort models to use the qof query to do these parts. This is in response to the slowness of large transaction lists with the intention to load only a subset of them. This is the start and this update should result in the same out put as using the filter and sort model. Author: Robert Fewell
2013-08-02 John Ralls
* Register rewrite Update, added extra dates and cursor changes. This update fixes the following, allow the cursor to move between cells and make active, changed the preference for showing date entered to include reconcile date and added another option to show when transaction selected. Also added menu option to show these extra dates. Author: Robert Fewell
2013-08-01 Cristian Marchi
* Make CSV account import table header translatable. Patch by Aurimas Fišeras.
2013-08-01 Cristian Marchi
* Update Catalan translation copied from the Translation Project.
2013-08-01 John Ralls
* Fix report tests which fail in OSX
2013-07-14 John Ralls
* Bug #704185: GnuCash 2.5 doesn't build on FreeBSD
2013-07-10 Cristian Marchi
* Update Danish TRanslation, copied from the Translation Project.
2013-07-08 Cristian Marchi
* Update Lithuanian translation thanks to Aurimas Fišeras.
2013-07-08 Cristian Marchi
* Fix some translation issues. Author: Aurimas Fišeras.
2013-07-08 Cristian Marchi
* Fix translation of table headers. Author: Aurimas Fišeras.
2013-07-08 Cristian Marchi
* Fix typo preventing dash marker usage. Author: Aurimas Fišeras.
2013-07-07 John Ralls
* Bump version for 2.5.3 release
2013-07-06 John Ralls
* Bug 703272 - list of windows in Windows menu outdated
2013-07-06 Geert Janssens
* Implement Save and Save As for custom report templates
2013-07-06 Geert Janssens
* New function to open custom reports dialog with one report name in edit mode
2013-07-06 Cristian Marchi
* Better wording for Italian translation.
2013-07-06 Geert Janssens
* Fix windows compilation error since r23083
2013-07-05 Geert Janssens
* Add back translation support in combo boxes that was accidentally removed in 1286a896a66a3002e98913b9016f1dc56f7137d7
2013-07-05 Geert Janssens
* Fix crash when saved-reports file doesn't exist
2013-07-05 Geert Janssens
* A whitespace cleanup, no functional changes
2013-07-04 Cristian Marchi
* Update Lithuanian translation thanks to Aurimas Fišeras.
2013-07-03 Geert Janssens
* Bug #699686 - Startup dialog windows should be top level windows
2013-07-02 Derek Atkins
* Fix typo Patch from Aurimas Fišeras <aurimas@members.fsf.org>
2013-07-02 John Ralls
* Bug 701670: Command-V in reconcile window pastes data in register
2013-07-02 Christian Stimming
* Cutecash: Fix linker flags for guile so that it links again.
2013-07-02 Geert Janssens
* Custom reports dialog - track template guids directly in model instead of separate list
2013-07-02 Geert Janssens
* Require custom report template names to be unique (among other custom report templates)
2013-07-02 Geert Janssens
* Rework custom reports dialog
2013-07-02 Geert Janssens
* New function to rename a saved report
2013-07-02 Geert Janssens
* New functions to check for custom templates - whether a report template is a custom one - whether a report is based on a custom report
2013-07-02 Geert Janssens
* Define 'custom-template' property on report instances (not used yet)
2013-07-02 Geert Janssens
* Return guid of newly-created report template to calling function
2013-07-02 Geert Janssens
* Return success or failure when writing report templates to save file
2013-07-02 Geert Janssens
* Delete report function: use less ambiguous variable name
2013-06-30 Christian Stimming
* Bug #702899: Fix crash in scrubbing code
2013-06-30 Christian Stimming
* Bug #703305: Fix crash on entering a non-valid date.
2013-06-29 Mike Alexander
* Add back, and bring up to date, the debugging function qof_book_print_dirty.
2013-06-29 Mike Alexander
* Make it possible to post multiple invoices from the find dialog. GnuCash was crashing if you searched for all unposted invoices, selected two or more of them, and posted them. This was because the list of invoices to be posted changed while it was being processed. As part of fixing this the prompt for post date, due date, etc. will only be given once, not once per invoice.
2013-06-29 Mike Alexander
* Fix the crash that occurs when duplicating multiple invoices from Find results. The biggest problem was that it was adding an invoice's entries to both the old and the new invoice when duplicating the invoice.
2013-06-27 Geert Janssens
* Report system - emit warning when trying to restore named-based saved reports
2013-06-27 Geert Janssens
* Report system: regroup legacy functions
2013-06-27 Geert Janssens
* Report system legacy code cleanup
2013-06-27 Geert Janssens
* Lookup business reports by id instead of by name
2013-06-25 Christian Stimming
* Remove the unused code for feature "shift txn forward", disabled already in r18450.
2013-06-25 John Ralls
* Really Redo r23043 Don't print "warning" output in comparison functions.
2013-06-25 John Ralls
* Revert "Redo r23043 Don't print "warning" output in comparison functions."
2013-06-25 John Ralls
* Redo r23043 Don't print "warning" output in comparison functions.
2013-06-23 Christian Stimming
* Bug #700804: Add up/down buttons for ordering of transactions in register2.
2013-06-20 Christian Stimming
* Register2: Minor code cleanup: Rename moved_cb to uiupdate_cb. Refactor common sanity check into extra function.
2013-06-19 Christian Stimming
* Bug #691587: Catch scheme exceptions when converting error messages to a C string.
2013-06-19 Christian Stimming
* Bug #669964: Fix txn creation that forgot to set a txn currency.
2013-06-19 Christian Stimming
* Register2: Improve commodity/currency handling: Try to always use account_or_default_currency lookup instead of code duplication.
2013-06-19 Christian Stimming
* Improve transaction currency lookup by using the new account_or_default currency getter.
2013-06-19 Christian Stimming
* Refactor lookup of a commodity that is a currency for a specific account into general function gnc_account_or_default_currency().
2013-06-19 Christian Stimming
* Cutecash: Adapt cmake files to recent file moves.
2013-06-16 Christian Stimming
* Bug #672595: After creation of a new book, make sure to set it to dirty so that a cancelled save_as dialog leaves the book dirty.
2013-06-14 Christian Stimming
* Bug #700582: Enable online actions in Register2
2013-06-13 Christian Stimming
* Minor code cleanup (again from r23043): Don't print a warning in a comparison.
2013-06-13 Christian Stimming
* Minor code cleanup: Decrease verbosity of register2 that makes the debugging output unreadable.
2013-06-13 Christian Stimming
* Register2: Add more sanity checks when converting TreePaths from one to another.
2013-06-13 Christian Stimming
* Revert r23043 "Minor code cleanup: Don't print "warning" output in comparison function."
2013-06-13 Christian Stimming
* Had to partly revert r23045 when it comes to the PostedDate of book-closing txns.
2013-06-09 Christian Stimming
* Register (old+new): Duplicated transactions need a DateEntered as well.
2013-06-09 Christian Stimming
* Change all usage of xaccTransSetDatePostedSecs to xaccTransSetDatePostedSecsNormalized.
2013-06-09 Christian Stimming
* Introduce transaction setter xaccTransSetDatePostedSecsNormalized() that ignores the time-of-day part.
2013-06-09 Christian Stimming
* Minor code cleanup: Don't print "warning" output in comparison function.
2013-06-08 Christian Stimming
* Minor code cleanup: Don't use "class" as identifier.
2013-06-07 Cristian Marchi
* Update Catalan translation, copied from the Translation Project.
2013-06-07 Cristian Marchi
* Update Lithuanian translation thanks to Aurimas Fišeras.
2013-06-07 Cristian Marchi
* Update Italian translation
2013-06-05 Geert Janssens
* Report test makefiles: avoid extra softlinks for out-of-tree building
2013-06-04 Geert Janssens
* Update .gitignore
2013-06-04 Geert Janssens
* Use SCM_FILE_LINKS properly and some cleanups of report test makefiles
2013-06-04 Derek Atkins
* Set SCM_FILE_LINKS even if not in a separate build directory, otherwise tests fail
2013-06-03 Geert Janssens
* Fix distcheck and automake 1.13 build failure
2013-06-03 Geert Janssens
* Reports: Reduce test verbosity
2013-06-02 Geert Janssens
* Win32: add VERSIONINFO block to RC file and convert in into a template to be completed during configure
2013-06-02 Geert Janssens
* Win32: make sure RC file is actually considered for linking
2013-06-02 Geert Janssens
* Refactor so that we don't have to call gnc:progress functions while creating a report
2013-06-02 Geert Janssens
* reports: cleaned up a few methods in report-collectors
2013-06-02 Geert Janssens
* Reports: Deal with closing transactions.
2013-06-02 Geert Janssens
* reports: faster versions of category, net-barchart and net-linechart reports
2013-06-02 Geert Janssens
* Add test suite for standard tests
2013-06-02 Geert Janssens
* Log a warning if a test shows more than 100% progress.
2013-06-02 Geert Janssens
* Utils: Add "gnc:timepair?" function; useful for ensuring functions are called in a type-safe way. Add gnc:timepair-next-day
2013-06-02 Geert Janssens
* Reports: Add collector functionality for side effects.. function-state->collector; turn a function/initial state into a collector collector-do: Like collector-map, but only return the result of the first collector. It's assumed the other collectors are invoked for their side effects.
2013-06-02 Geert Janssens
* Reports: Add collector-into-list function.. turns the idea of adding stuff to a list into a collector.
2013-06-02 Geert Janssens
* Add some plumbing for report changes - test framework plus some utility methods
2013-06-02 Geert Janssens
* Add exported ids to reports.. useful for testing
2013-05-31 Geert Janssens
* Bug 383928 - Bad command name: Remove transaction splits
2013-05-28 Geert Janssens
* Update gitignore
2013-05-28 Geert Janssens
* Update copyright year and make it translatable
2013-05-27 John Ralls
* Update Changelog for 2.5.2
2013-05-27 John Ralls
* Update NEWS for 2.5.2 release
2013-05-26 Christian Stimming
* Win32 build: Update versions of gwenhywfar, aqbanking
2013-05-25 John Ralls
* [Bug 640962] Make check failure: test_backend_dbi
2013-05-25 John Ralls
* Bump version for release
2013-05-21 Geert Janssens
* Fix windows build after it got broken by r22982
2013-05-20 Christian Stimming
* Merge latest pot template from trunk into updated da.po file.
2013-05-20 Christian Stimming
* Copy recently updated Danish translation from 2.4 branch to trunk.
2013-05-19 Geert Janssens
* Register rewrite Update, bug fixes and transaction commit changes.
2013-05-18 Christian Stimming
* I18n: Change composed strings (report title) into fully translated string.
2013-05-18 Geert Janssens
* Register rewrite Update, bug fixes and allow mouse to change reconcile flag.
2013-05-18 Geert Janssens
* Register rewrite Update, bug fixes and allow mouse to change reconcile flag.
2013-05-18 Geert Janssens
* Cleanup non-relevant comments introduced with r22825
2013-05-18 Geert Janssens
* Support for querying Bitcoin/Litecoin prices via F::Q's MtGox module Author: Sam Morris <sam@robots.org.uk> BP
2013-05-18 Cristian Marchi
* Fix a typo in both source and po files.
2013-05-18 Cristian Marchi
* Update Italian translation.
2013-05-17 Geert Janssens
* Add script to generate a list of changes in html format between two revisions based on git log
2013-05-17 Geert Janssens
* Add code to generate ChangeLog from git
2013-05-15 Geert Janssens
* Win32 git: fetch potentially new tags before running the tags build
2013-05-15 Geert Janssens
* Win32 fix path to git build script for tags
2013-05-15 Geert Janssens
* Win32: build 2.5 tagged releases from git instead of svn
2013-05-15 Geert Janssens
* Fix charts on Windows
2013-05-13 Mike Evans
* Bug #700197 - Critical SQL backend errors when creating customers via python bindings
2013-05-12 Mike Alexander
* Round properly when computing fraction of the transaction's value due to a given split. Also use GNC-DENOM-AUTO instead of a constant zero when appropriate.
2013-05-10 Geert Janssens
* Bug #682800 Generated balances on Report different than calculated balances on Ledger when using "open subaccounts"
2013-05-10 Geert Janssens
* Bug #622778 Miscalculation in cashflow reports - Step 03
2013-05-10 Geert Janssens
* Bug #622778 Miscalculation in cashflow reports - Step 02
2013-05-10 Geert Janssens
* Bug #622778 Miscalculation in cashflow reports - Step 01
2013-05-10 Geert Janssens
* Bug #584869 net change line in general journal report broken
2013-05-10 Geert Janssens
* Bug #589865 In the report "Budget flow" period it doesn't work ok
2013-05-10 Geert Janssens
* Bug #589865 In the report "Budget flow" period it doesn't work ok
2013-05-08 Christian Stimming
* Add ZMW currency
2013-05-08 Christian Stimming
* Update German translation a bit.
2013-05-08 Christian Stimming
* Minor user message fixes: Spelling fix, Capitalization fix.
2013-05-08 Christian Stimming
* Update German glossary (a bit).
2013-05-08 Christian Stimming
* Fix glossary table that was mistakently using spaces instead of tabs. Update all glossary po files with the new terms.
2013-05-08 Cristian Marchi
* Fix some typos.
2013-05-08 Cristian Marchi
* Update Italian Translation.
2013-05-07 Christian Stimming
* Merge latest pot template from trunk into po files.
2013-05-07 Christian Stimming
* Copy program translations from 2.4 branch to trunk.
2013-05-07 Christian Stimming
* Copy glossary translations from 2.4 branch to trunk.
2013-05-05 Mike Alexander
* Quote the python path in case it has blanks in it.
2013-05-04 John Ralls
* Update ChangeLog and NEWS for 2.5.1 Release
2013-05-04 John Ralls
* Allow svnlog2ul.sh to run on the current working copy
2013-05-04 John Ralls
* Bump version to 2.5.1 for release
2013-05-04 Mike Alexander
* Fix test for Python to avoid error message
2013-05-04 Geert Janssens
* Register rewrite Update, change the default for the new register and rename old one.
2013-05-03 Geert Janssens
* Bug #698781 can't build with glib 2.36: error: 'g_type_init' is deprecated
2013-05-03 Geert Janssens
* Tests: harmonize test initialization
2013-05-03 Geert Janssens
* Refactor file backend settings to no longer depend on gconf
2013-05-03 Geert Janssens
* Move gnc-gconf-utils to app-utils
2013-05-03 Geert Janssens
* Add new core prefs
2013-05-03 Geert Janssens
* Rename gnc-main to gnc-core-prefs
2013-05-02 John Ralls
* Mac: Add -framework Cocoa to GTK_MAC_LIBS
2013-05-02 Geert Janssens
* make distcheck altered POTFILES.in
2013-05-02 Geert Janssens
* REST API Example for Python Bindings
2013-05-02 Geert Janssens
* Fix chart positioning on multi-column report
2013-05-02 Geert Janssens
* Register rewrite Update, this adds some preference options and fixes a tab issue.
2013-05-02 Geert Janssens
* Register rewrite Update, this fixes some leaks and renames some functions.
2013-05-02 Geert Janssens
* This update fixes the schedule of share purchase.
2013-05-02 Geert Janssens
* Register rewrite Update, this adds the schedule option with some other changes.
2013-04-24 Christian Stimming
* Finally fix the maddening long waiting times after clicking "Ok" in the import matcher window.
2013-04-22 Geert Janssens
* Fix compiler warning
2013-04-20 Geert Janssens
* Register rewrite Update, this adds the trading accounts option with some other changes.
2013-04-18 Christian Stimming
* String improvements: For singular form of ngettest, the %d conversion specifier can be skipped.
2013-04-17 Christian Stimming
* Win32 build: Update libofx to version 0.9.8
2013-04-15 Geert Janssens
* Fix indirect libguile dependency in bi_import plugin
2013-04-15 Geert Janssens
* Fix indirect libguile dependency in customer import
2013-04-15 Geert Janssens
* Fix indirect libguile dependency in business ledger
2013-04-14 Christian Stimming
* Adapt to latest split of engine-helpers.h, r22902.
2013-04-14 Christian Stimming
* Adapt to latest split of engine-helpers.h, r22902.
2013-04-13 Geert Janssens
* Commit nex file (missed it in previous commit)
2013-04-13 Geert Janssens
* Prevent engine's guile dependency from leaking to modules not directly using guile
2013-04-13 Geert Janssens
* Remove unused guile-mappings.h include instead of adding GUILE_INCS
2013-04-12 Christian Stimming
* Add probably missing GUILE_INCS to CPPFLAGS because table-gnome.c includes "guile-mappings.h" that includes <libguile.h>.
2013-04-12 Christian Stimming
* Add missing GLIB_LIBS to LDFLAGS as needed by newer gcc/libtool.
2013-04-11 Christian Stimming
* Win32 build: Upgrade libofx to 0.9.7 due to bug #697133 with long lines
2013-04-09 John Ralls
* [Bug #697402] configure doesn't find python on Debian
2013-04-08 Christian Stimming
* Win32 build: Disable debug output of r22877 again as it does not seem necessary anymore.
2013-04-07 John Ralls
* Register rewrite Update, fixes a problem with resizing columns. This update fixes a problem with resizing columns and also a missing tree free. Author: Robert Fewell
2013-04-07 John Ralls
* Register rewrite Update, changes the way the transaction changed dialog pops up. This update changes the way the transaction changed dialog pops up and also when you navigate to a cell it automaticly changes to allow input. Author: Robert Fewell
2013-04-07 John Ralls
* Register rewrite Update, adds test for old and new account register open at the same time. This update adds a test to stop opening old and new account registers at the same time. Author: Robert Fewell
2013-04-07 John Ralls
* Register rewrite Update, adds date accelerator and fixes duplicate transaction. This update adds the date accelerator keys to the date column and fixes the duplicate transaction option. Author: Robert Fewell
2013-04-07 John Ralls
* Register rewrite Update, adds print check, find, schedule and reconcile. This update changes adds the print check, find transactions, schedule transactions and reconcile options to the new register. This was done by copying the existing files and changing them to work with the new register so both new and old could work at the same time. The new find option on the accounts page has been commented out so the old one would work but has been proved to work the same as on the new registers. Also have the refresh option working which involves reloading the register by re-running the query which is also used for the search register updates. Author: Robert Fewell
2013-04-07 John Ralls
* Register rewrite Update, fixes for number / action column This update changes the Number / Action column from a single combo renderer to two, text renderer and combo renderer both with entry. We use the model to decide which one will be visible for each row. Also set up is the number accelerator key. Author: Robert Fewell
2013-04-07 John Ralls
* Register rewrite Update, fixes for duplicate and reversing transaction. This update fixes duplicate transaction and reversing transaction. Also included is a minor change to the model, added the test for unbalanced transaction along with some other dialogs. Tab key navigation has been revised but still further work. Account key seperator works along with new account creation. Author: Robert Fewell
2013-04-07 Christian Stimming
* Win32 build: Copy an initial logfile to the webserver when the build is started
2013-04-06 Christian Stimming
* Update start SVN revision of this year's ChangeLog generation
2013-04-06 Christian Stimming
* Update ActivePerl URL to a currently active (no pun intended) one.
2013-04-06 Christian Stimming
* Win32 build: Add debug output where xsltproc currently fails
2013-04-05 Christian Stimming
* Win32 build: Version update for libxslt, libxml2, goffice.
2013-04-04 Christian Stimming
* Win32 build: Switch to another libgsf version 1.4.21 that has a .tar.bz2 available
2013-04-03 Christian Stimming
* Win32 build: Can we get along without libgsf-gnome?
2013-04-03 Christian Stimming
* Win32 build: Add probably missing libgsf configure argument
2013-04-02 Christian Stimming
* Win32 build: Remove check for pixman lib, because that one was removed in r22813.
2013-04-02 Christian Stimming
* Win32 build: Increase verbosity on check for installed gnome.
2013-04-02 J. Alex Aycinena
* Vary some menu labels and tooltips based on cursor class: transaction or split.
2013-04-01 Christian Stimming
* Win32 build: Add more output for debugging.
2013-03-31 Christian Stimming
* Win32 build: Add some more output into log on error conditions.
2013-03-31 John Ralls
* Update NEWS and ChangeLogs for 2.5.0 release
2013-03-31 John Ralls
* Set Version to 2.5.0 for unstable release
2013-03-31 John Ralls
* Add libgncmod-ledger-core to satsify dependency in libgncmod-gnome.
2013-03-31 John Ralls
* Remove deleted calculation files from POTFILES.in
2013-03-30 John Ralls
* More Makefile changes to get distcheck to pass
2013-03-30 Christian Stimming
* Update libofx version to 0.9.6, released today
2013-03-29 John Ralls
* Some cleanup to get make-dist to build in the tarball
2013-03-29 John Ralls
* Clean out unused financial calculation stand-alone programs
2013-03-29 Christian Stimming
* Win32 build: Update libofx version... there was a 0.9.5 release last year.
2013-03-29 Christian Stimming
* Fix spell error in Russian translation, by enikulenkov.
2013-03-29 Christian Stimming
* Win32 build: Temporarily disable ja_JP guide htmlhelp because the hhc compiler seems to crash on this every time.
2013-03-29 John Ralls
* Modify the distcheck of POTFILES.skip to ignore scheme files
2013-03-26 Geert Janssens
* Bug #696469 - renumbering subaccounts does not preserve original order
2013-03-24 Mike Evans
* Prevent line break in date column on hyphen.
2013-03-24 Mike Alexander
* Compile md5.c with "-fno-strict-aliasing". The function md5_finish_ctx dereferences type-punned pointers which breaks strict aliasing rules.
2013-03-23 Mike Alexander
* One more try to get initialization right. This doesn't change things unless --add-price-quotes is given. If it is then it must be handled before gtk is initialized since DISPLAY might not be set which will cause gtk initialization to fail. This happens when running the X version of GnuCash from launchd on a Mac to get price quotes updated.
2013-03-22 Christian Stimming
* Fix erroneous conversion from time64 to struct tm because the Sunday weekday has a different number in GDateTime vs. struct tm.
2013-03-22 Christian Stimming
* Fix memory leaks due to localtime -> gnc_localtime replacement in r22618, r22626, r22627
2013-03-22 Christian Stimming
* Again reorder the initialization in gnucash-bin: gtk_init_check must be called before gnc_module_system_init.
2013-03-11 Geert Janssens
* Register rewrite Update
2013-03-09 Christian Stimming
* Bug #695423: Fix OFX Commodity Account handling.
2013-03-06 Christian Stimming
* Adding statement about GPLv2 and v3 license as discussed on gnucash-devel yesterday.
2013-03-03 John Ralls
* Mac: Adjust document path for new location
2013-03-02 Christian Stimming
* Win32 installer: Update version numbers for gwenhywfar, aqbanking, ktoblzcheck.
2013-03-02 Christian Stimming
* Minor bugfix: Guard against NULL pointer in sprintf argument.
2013-03-02 John Ralls
* [Bug #661832]MySQL database error after wireless reconnect
2013-03-01 Christian Stimming
* Fix erroneous widget lookup after a widget in the glade file has been renamed
2013-03-01 Christian Stimming
* Aqbanking SEPA transfer: Really test and finish the implementation.
2013-02-28 Geert Janssens
* Register rewrite Update.
2013-02-27 J. Alex Aycinena
* Replace GtkLabel with a GtkTextView within a GtkScrolledWindow for error summary for csv account import so that window doesn't get larger than screen with large error messages.
2013-02-25 Geert Janssens
* Winbuild: remove obsolete pixman dependency
2013-02-23 Geert Janssens
* Fix make check failure pointed out by Alex Aycinena
2013-02-23 Christian Stimming
* Aqbanking online transfer: Disable SEPA direct debit menu item again because no bank supports it.
2013-02-23 Christian Stimming
* Set svn:eol-style property to LF on .h and .c that did not yet have it so far.
2013-02-23 Christian Stimming
* Also set svn:eol-style property LF on .js files so that the files will surely have LF line endings in SVN in all cases.
2013-02-23 Mike Evans
* Normalise line endings of min.js files.
2013-02-22 Geert Janssens
* Add child functions to Account in python bindings.
2013-02-22 Geert Janssens
* Add tax tables lookup to python bindings.
2013-02-22 Geert Janssens
* Fix compile error after r22799 due to missing CFLAGS
2013-02-21 Geert Janssens
* jqplot line chart: make markers and grid optional again
2013-02-21 Geert Janssens
* Charts: improve tooltips on line and bar charts
2013-02-21 Geert Janssens
* Charts: source formatting
2013-02-21 Geert Janssens
* Drop goffice dependency from our html engine
2013-02-21 Geert Janssens
* Improve linechart
2013-02-21 Phil Longstaff
* Initial changes to budget view. 1) Splits gnc-budget-view.c/.h out from gnc-plugin-page-budget.c. gnc-plugin-page-budget.c now creates a GncBudgetView and provides the overall UI and integration for it. 2) GncBudgetView changes: a) If an account has children but does not have a specific budget value for a period, the sum of the children's budget values will be displayed in gray b) Totals column on the right provides total for a budget row (account) c) At the bottom, totals lines with total income, total expenses, total transfers (assets+liabilities) and grand total (income - expenses - transfers)
2013-02-20 Geert Janssens
* Improve scatterplot chart
2013-02-20 Geert Janssens
* Improve piechart
2013-02-20 Geert Janssens
* Improve jqplot's barchart renderer's barWidth and barPadding calculation
2013-02-20 Geert Janssens
* Define EOL style for javascript files
2013-02-20 Geert Janssens
* Improve barchart
2013-02-20 Geert Janssens
* Update to jqplot 1.0.6
2013-02-20 Geert Janssens
* jqplot: fix paths to js and css files
2013-02-20 Geert Janssens
* Fix code to find html files
2013-02-20 Geert Janssens
* Enable jqplot for barchart, piechart and scatterchart
2013-02-19 Christian Stimming
* Aqbanking online transfer: Disable the non-SEPA verification rules for SEPA transactions.
2013-02-18 Christian Stimming
* Aqbanking online transfer: Set the date in the gnucash txn dialog to non-sensitive.
2013-02-18 Christian Stimming
* Minor update for SEPA (European) online transfers (after r22445)
2013-02-16 J. Alex Aycinena
* Update taxtxf.scm to fix beginning balance sign and signs for Transfer From/To amounts for
2013-02-12 John Ralls
* Fix gnc-cdate format to match that of POSIX cdate
2013-02-08 Christian Stimming
* Get cutecash/C++ to compile again.
2013-02-08 Mike Evans
* Bug 683881 Partial implementation.
2013-02-06 Mike Alexander
* Avoid a crash when entering invalid dates (e.g., enter "111" for a transaction date). gnc_parse_date is ignoring the return code from qof_scan_date which causes it to send uninitialized values to gnc_mktime which crashes if the date is too ridiculous. Presumably this worked before because mktime took anything without crashing.
2013-02-05 J. Alex Aycinena
* Update txf.scm to reflect changes to US Income Tax Forms and Schedules for 2012.
2013-02-04 Mike Alexander
* Use gnc-commodity-equiv to compare commodites, not equal?
2013-02-04 Mike Alexander
* Allow the price quotes perl script to return multiple quotes on a single call. This makes it easier to add historical prices using a different perl script.
2013-02-04 Mike Alexander
* Improve HTML account table generator
2013-01-30 Mike Alexander
* Do a better job of calculating debit and credit fractions. Make gnc_split_register_set_cell_fractions agree with gnc_split_register_get_debcred_entry. If the account for a split changes recalculate the fractions.
2013-01-30 Mike Alexander
* Do a better job of prompting for an exchange rate only when needed. If the debit or credit value of a split changes, prompt for an exchange rate. Don't prompt for an exchange rate in a register that doesn't have a rate cell (and fix a bug so that it knows that portfolio registers don't have one). If the transaction has been autofilled and edited start with a nearby rate from the prices DB. If it is an existing transaction start with the exchange rate it already has.
2013-01-22 Mike Alexander
* Don't store a negative reconcile interval.
2013-01-22 Geert Janssens
* Bug #680086 - Each Tip of the Day has an n shown at the end
2013-01-22 Geert Janssens
* Win32 build: add attribution for a code snippet in bootstrap
2013-01-19 J. Alex Aycinena
* Remove circular dependency introduced in r22681
2013-01-19 Geert Janssens
* Fix another eol issue
2013-01-19 Geert Janssens
* Win32 build: some more patchfile cleanups
2013-01-19 Geert Janssens
* Win32 build: rename patch files to consistently end in .patch
2013-01-19 Geert Janssens
* Win32 build: remove obsolete patches
2013-01-19 Geert Janssens
* Define line ending style for different file types
2013-01-19 Geert Janssens
* Bug #604520 Explain scope of find transaction tool.
2013-01-18 Geert Janssens
* Win32 build system: Experimental bootstrap script
2013-01-15 Geert Janssens
* Bug #672364 - does not properly handle XML parse errors, leading to possible data loss
2013-01-14 John Ralls
* Fix #638955
2013-01-13 John Ralls
* Fix string leak in gnc_gnome_help()
|