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 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190
|
=========================================================================
CHANGE LOG
=========================================================================
2018-07-24 Thomas Holder, Jarrett Johnson
* 2.2.0
* Wizard > Mutagenesis > Nucleic Acids
* load format "pqr": retain_order=1
2018-07-03 Thomas Holder, Blaine Bell, Gabriel Marques
* Graphics refactoring, ported from Incentive PyMOL
Ported features:
- label improvements (multiline, connectors, background color)
- transparency_mode 3: Order-independent transparency
- bg_image_filename: Background image support
* new dependency (header-only): glm
2018-06-08 Thomas Holder <thomas.holder@schrodinger.com>
* fix selection wildcard (sf.net/p/pymol/bugs/209)
* fix PDB atom id > 99999 crash
* more robust PQR parsing
* pymol2.PyMOL() context manager
* new setting: cif_metalc_as_zero_order_bonds
* new setting: sdf_write_zero_order_bonds
* cif: accept _chem_comp_bond.type alias for _chem_comp_bond.value_order
2018-05-03 Thomas Holder <thomas.holder@schrodinger.com>
* fix anaglyph stereo in batch (headless) mode
* fix possible memory corruption with boolean settings
* measurement wizard: distances between states (all_states=on)
* get_fastastr: nucleic acid, by chain
* menu: A (Action) > group
* sequence viewer menu: ss (Secondary Structure)
* MAE export of groups (s_m_subgroupid)
* macOS: -O3 -fno-strict-aliasing (bugs/205)
2018-04-10 Thomas Holder <thomas.holder@schrodinger.com>
* sf.net/p/pymol/bugs/199 bash -> sh
* ignore zero-order bonds in neighbor lookup, this could cause
wrong bond order guessing in distance based bonding
* fix crash loading reduced 5ijo.mmtf
* volume panel: fix zoom (CTRL+R-Drag) and value input (R-Click)
* QOpenGLWidget support (not active by default)
* --gldebug -> backtrace on GL error
* 2.2.0a0 (unstable/experimental)
2018-03-13 Thomas Holder <thomas.holder@schrodinger.com>
* 2.1.0
* PyQt interface
2018-02-28 Thomas Holder <thomas.holder@schrodinger.com>
* stick_round_nub for COLLADA export
* UTF-8 in feedback
* display_scale_factor (ported from Incentive PyMOL)
* dx map import: support "type float" and skewed delta
2018-02-07 Thomas Holder <thomas.holder@schrodinger.com>
* new selection keywords: polymer.protein polymer.nucleic
* new command: multifilesave
* MMTF export (requires simplemmtf python module)
* select: present, state -1 -> current object state
* create: source_state = -1 -> current
(was: source_state = -1/0 -> all)
* cif: support quoted '?' and '.' as values
cif_get_array -> None instead of empty string for ? and .
* fix copy discrete object w/o coords
* fix loading pdbqr AutoDock 4 atom types
* fix get_model('none') and get_str('mol', 'none')
* h_add refactored: 5x faster, support discrete objects
2017-12-21 Thomas Holder, Piotr Rotkiewicz
* Python 3.7 support (https://sf.net/p/pymol/bugs/197/)
* enable align with alt-codes
- allow matching of non-alt-code to alt-code atoms in alignments
- swap sorting priority of 'name' and 'alt' identifiers
- sort empty 'alt' before non-empty 'alt'
* flags 6 and 7 for protein and nucleic acid
* mmCIF: read _atom_site.pdbx_formal_charge
* improve coordinate loading from mmcif chem_comp files
- ignore columns with all ? (missing) values
- select columns with "chem_comp_cartn_use" setting
* fix h_add: skip missing coordinates
2017-12-05 Thomas Holder, Piotr Rotkiewicz
* Python API: New "auto library mode". Automatically start a
non-GUI PyMOL instance if the pymol.cmd API is used without
running pymol.launch() first
* pdb_echo_tags for mmCIF and MMTF
* command parser: improve exception handling
* fix some PSE export memory leaks
* pymol2.cmd2: eliminate (non-weak) circular references
* movie making: reinterpolate after add_nutate/add_roll etc.
* support "module:callable" in loadfunctions/safefunctions
* yellow state indicator for discrete objects
* mpng modal draw improvements
2017-10-23 Thomas Holder <thomas.holder@schrodinger.com>
* pse_export_version support with Python 3 (experimental)
* fix setup.py --use-msgpackc=guess: catch EnvironmentError
2017-10-18 Thomas Holder <thomas.holder@schrodinger.com>
* 1.9.0.0
* use PyMOL 2.0 setting defaults
* L > residues (oneletter)
* fix py3 crash in "A > copy to object"
* fix scene object visibility with hidden groups
* fix "ending" after loading movie session
2017-09-13 Thomas Holder, Piotr Rotkiewicz
* expose "oneletter" to label/iterate
* sequence viewer: MSE=M SEC=U
* wire/licorice rep aliases
* menu: A > copy to object
* new commands: copy_to, uniquify
* fix slow 'extract' performance
2017-08-02 Thomas Holder <thomas.holder@schrodinger.com>
* support "not ..." and "enabled" in name patterns.
(e.g.: delete not enabled)
* improve/fix unicode+utf-8 handling for labels
* iterate color settings: type int
(e.g.: iterate all, print(s.sphere_color))
* fix cmd.load with contents
https://sf.net/p/pymol/mailman/message/35966326/
* fix ray tracing of stick_ball + valence
https://sf.net/p/pymol/mailman/message/35928857/
* 1.8.7.0 (unstable/experimental)
2017-07-03 Thomas Holder <thomas.holder@schrodinger.com>
* web.pymolhttpd -> pymol.pymolhttpd
https://sf.net/p/pymol/bugs/148/
* make build reproducible
https://sf.net/p/pymol/patches/12/
2017-06-01 Thomas Holder <thomas.holder@schrodinger.com>
* new "label" selection operator
* alter_state: remove restriction on x/y/z/flags
* iterate/label: expose "state" for discrete atoms
* CTRL+L drag/click -> move/center in 3-Button-Viewing mode
* auto-detect $PREFIX/share/pymol as $PYMOL_PATH
* locale LC_NUMERIC=C float parsing/formatting
* Python 3: fix wrong PyCapsule_New destructor
2017-04-17 Thomas Holder <thomas.holder@schrodinger.com>
* Python 3: fix builder bond order buttons
(Red Hat Bug 1442127)
* fix MAE export PDB residue/atom names
* restored "scene_animation" setting (1.7.6 regression)
* restored "import cmd" prevention (1.8.6.0 regression)
* 1.8.6.1
2017-03-09 Thomas Holder, Piotr Rotkiewicz
* 1.8.6.0
2017-02-22 Thomas Holder <thomas.holder@schrodinger.com>
* fast MMTF load support in C++
* extra_fit: report RMS for method=cealign
Thanks to Hongbo Zhu
* CTRL-L ligand zoom
* preset > classified (auto_show_classified equivalent)
preset > interface (ported from Incentive PyMOL 1.8.0)
* set_key auto-completion
* command completion for selection language
* fix connect_mode=4 for N-H1 and N-H3
* fix CGO ALPHA and dup COLOR issue
* 1.8.5.1 (beta)
2017-01-19 Thomas Holder <thomas.holder@schrodinger.com>
* width/height arguments for movie export (mpng, movie.produce)
* fetch: support "fetch EMD-3489"
* auto_show_classified -1 => 3 for 500k+ atoms
* pick_shading => surface_color_smoothing off
* cleanup: eliminate pymol.pymol_launch variable
2016-12-14 Thomas Holder <thomas.holder@schrodinger.com>
* update molfile plugins to VMD version 1.9.3
* fetch 2fofc/fofc: update URLs, EDS will retire in 2017
* fix sf#102 pseudoatom multi-state problem
* editor.attach_amino_acid: fix PRO/N geometry
2016-12-05 Thomas Holder <thomas.holder@schrodinger.com>
* avoid selection keyword name conflicts, append underscore
* load: allow format=plugin (by extension) and format=plugin:PLUGIN
(with PLUGIN being a molfile plugin identifier)
* load format "vdb": VIPERdb PDB variant with retain_order=1
* load/load_traj: guess trajectory object
* fetch
* new setting "fetch_type_default"
* type=mmtf: fetch MMTF format
* type=2fofc/fofc: get spacegroup from PDBe API
* update download URLs
* new setting: editor_auto_measure
* new default: ray_transparency_oblique_power=4.0
* "update" command: support "current state" (-1)
* alter elem -> update protons and vdw
* don't allow "import cmd" (corrupts PyMOL namespace)
* support "python -m pymol" to launch PyMOL
* 1.8.5.0 (unstable/experimental)
2016-10-05 Thomas Holder <thomas.holder@schrodinger.com>
* 1.8.4.0
* setup.py: --no-launcher
2016-09-26 Thomas Holder <thomas.holder@schrodinger.com>
* pse_export_version: legacy scenes support
* use ignore_case setting with set_name command
* setup.py: detect anaconda prefix
* 1.8.3.3 (unstable/experimental)
2016-08-29 Thomas Holder <thomas.holder@schrodinger.com>
* experimental MMTF load support
* map export in CCP4 format
* SDF V3000 import/export support
* refactor molecular file formats export: Unified handling of PDB,
PQR, mmCIF, MOL2, SDF, XYZ, MAE
* PLY geometry import (as CGO)
* new command: unset_deep
* new setting: cartoon_all_alt: Create cartoon for every alt code
* stick_h_scale: default=1.0 (was: 0.4) but remove dependency on
negative stick_radius
* auto_show_classified: Visualize small (< 50 atoms) polymer
classified molecules like organic
* bymol selection operator: ignore zero-order bonds
* menu: isomesh/surface negative color
* improve alignment of residues with unknown resn (e.g. ligands):
give a match score of 5 to perfect matches of unknown residue codes.
Previously, those got match score -1.
* remove broken and obsolete "PMO" file support
* use "label_digits" setting with "label" command
* do not resize window when loading a session file
* fix ignored SCALE w/ identity rotation (e.g. 1WAP)
* fix "scene auto, clear" (Scene > Delete)
* new setting: pick_shading: do flat shading for programmable image
color analysis
* experimental cmd.raw_image_callback: post cmd.draw() callback
* 1.8.3.2 (unstable/experimental)
2016-05-26 Thomas Holder <thomas.holder@schrodinger.com>
* fix mutagenesis wizard "No Mutation" (update and rms commands)
* experimental FreeBSD support
* 1.8.2.1
2016-04-19 Thomas Holder <thomas.holder@schrodinger.com>
* 1.8.2.0
* get_sasa_relative (command ported from Incentive PyMOL)
* Color menu uses util.color_deep (ported from Incentive PyMOL)
* "C > by rep" (ported from Incentive PyMOL)
* fix crash when saving mesh PSE without map
2016-03-27 Jared Sampson
* new setting: collada_background_box (default 0)
https://sourceforge.net/p/pymol/mailman/message/34961984/
2016-03-21 Thomas Holder, Gabriel Marques
* pse_export_version: save 1.7.6 compatible PSEs by default
* forward "set" to "set_bond" for bond-level settings
* fetch: use http instead of ftp with default host
* MOL2 export
- chain support (write substructure record)
* MOL2 import
- more reliable resn reconstruction
- hetatm=0 for subst_type=RESIDUE
- don't use root atom id for substructure mapping
* set_name w/ map: update dependents (mesh, surface, volume)
* skip mmCIF "CA ATOMS ONLY" detection (not needed anymore)
* fix COLLADA export crash with transparency
* fix load_traj crash w/ state-level settings
* 1.8.1.2 (beta)
2016-03-03 Thomas Holder <thomas.holder@schrodinger.com>
* new setting: auto_show_classified
* cartoon/ribbon: auto-detect CA-only models
* mmCIF reading of full sequence now independent of cif_use_auth
* mmCIF ss assignment to full residue, not only CA
* fix selection macros with wildcards and colon (:) residue ranges
(1.8.0 regression)
* fix SCALE coordinate transformation for multi-model PDBs (e.g. 1hho)
* fix logging of expressions which contain '''
2016-02-08 Thomas Holder <thomas.holder@schrodinger.com>
* restore ignore_case=on default
* new setting: ignore_case_chain (default off)
https://sourceforge.net/p/pymol/mailman/message/34815599/
* new setting: cartoon_gap_cutoff
* increase PYMOL_MAX_THREADS
https://sourceforge.net/p/pymol/mailman/message/34787473/
* amber topology loading: bond order 1 for all bonds
https://sourceforge.net/p/pymol/mailman/message/34812536/
* improve MOL2 file handling
* new grid_mode=3: grid per object-state
2016-01-11 Thomas Holder <thomas.holder@schrodinger.com>
* distance mode=4: distance between centroids
* byring: new selection operator
* "Distances to Rings" mode in measurement wizard
* basic atom typing for MOL2 export
* cartoon dash: new dashed loop-like cartoon type
2015-12-14 Thomas Holder, Blaine Bell
* support segi, resn and name of arbitrary string length
* expose settings to iterate/alter via "s.<name>" (available
in Incentive PyMOL since 1.7.0)
* Python 3 compatibility for champ module
https://sf.net/p/pymol/bugs/172/
* apbs_tools: apply fixes from Pymol-script-repo
2015-12-09 Thomas Holder <thomas.holder@schrodinger.com>
* Python 3 compatibility, tested with Python 2.6, 2.7 and 3.4
* 1.8.1.0 (unstable/experimental)
2015-11-18 Thomas Holder, Blaine Bell, Gabriel Marques
* 1.8.0.0
* Tcl/Tk Settings GUI: feedback, radio buttons, font size dialog
* default alignment_as_cylinders changed to off
2015-10-15 Thomas Holder <thomas.holder@schrodinger.com>
* new default: scene_buttons=on
* normalize_ccp4_maps=2 -> use mean and stdev from file header
* fix alignment with atoms w/o coords in a state
2015-10-06 Thomas Holder <thomas.holder@schrodinger.com>
* new filetypes: pdbml, pdbqt, cml
* cell/symmetry: accept alpha=beta=gamma=0.0 as 90.0
* leave unknown protons as -1 instead of 0 (lonepair), fixes
vdw assingment for unknown elements (1.8 instead of 0.5)
* reimplement reading full sequence from mmCIF. Only with
cif_use_auth=off and retain_order=off. Fill in missing
CA atoms for polypeptides.
* new API function cmd.get_object_ttt()
* APBS Plugin: --whitespace argument for pdb2pqr
* fix scene next/previous, was broken on Windows 10
* fix split_states with non-unique titles
* fix "File > Run" fails if path has spaces
2015-08-30 Thomas Holder <thomas.holder@schrodinger.com>
* fix cartoon_trace_atoms for beta-sheets
* fast connect_mode=4: Add $PYMOL_DATA/chem_comp_bond-top100.cif
which is a subset of the components.cif dictionary and contains
only bond records for the 100 most frequent monomers in the PDB.
Download other monomers on-demand from PDBeChem.
2015-08-12 Thomas Holder <thomas.holder@schrodinger.com>
* cif_keepinmemory, pymol.querying.cif_get_array (experimental)
* ramp_update (new command)
* ramp objects now have "A > Range > ..." and "C > ..." menus
* mmCIF _chem_comp_atom:
- skip atoms with missing coordinates
- prefer ideal over model coordinates
* cmd.set_key() decorator support
2015-07-29 Thomas Holder <thomas.holder@schrodinger.com>
* fix isosurface all_states rendering
* pdb_hetatm_guess_valences for CIF loading
* mutagenesis wizard: improve "apply" performance
* fix measurement and alignment object partial PSE loading
* some load/save refactoring
* keep atom IDs when creating object from selection
* when renaming group "A" to "B", then also rename entry "A.X" to "B.X"
2015-07-02 Thomas Holder <thomas.holder@schrodinger.com>
* mmcif: match pdb1, pdb2, ... files with assembly generation
- fix handling of _pdbx_struct_assembly_gen with repeated asym_id
- create assembly for multi-state objects
- no pdb_insure_orthogonal for assemblies
* fix "File > Run"
2015-06-23 Thomas Holder <thomas.holder@schrodinger.com>
* fix assemblies for cases like 4f3r which have multiple entries in
the _pdbx_struct_assembly_gen table
* fix ref counts in iterate/alter subscripts
* improve side_chain_helper and nucleic_adic_mode situation
* eliminate all "try/catch" blocks for std::map lookups
* clean up some MemoryDebug stuff and remove unused jenarix wrapper
2015-06-17 Thomas Holder <thomas.holder@schrodinger.com>
* Experimental: cmd.get_assembly_ids
* mmCIF: support "_atom_site.pdbe_label_seq_id"
* mmCIF: set "ignore" flag for HETATMSs (no surface)
* improve memory usage and performance of components.cif parsing
2015-06-10 Thomas Holder <thomas.holder@schrodinger.com>
* fetch 'cif' by default (was: pdb)
* warn if selecting with lower-case arguments to help identifying
legacy selections which are incompatible with ignore_case=0
* port selection macro parsing from Python to C
* fix https://sf.net/p/pymol/bugs/169/ (cmd.fab() with existing object
name produces unexpected results and downstream segfault)
2015-05-20 Thomas Holder <thomas.holder@schrodinger.com>
* change default (!) of "ignore_case" setting to off. Case insensitve
identifier matching is not practical anymore with large structures
which use upper and lower case chain identifiers.
* new setting "assembly" to load assemblies from mmCIF as multi-state
objects with all_states=1
* new setting "cif_use_auth" controls whether mmCIF "auth" identifiers
are used or not (on by default)
* mmCIF "CA/P ATOMS ONLY" chains: set atom-level cartoon_trace_atoms
and ribbon_trace_atoms
* CIF discrete and irregular multi-model loading support
* support "pdb_honor_model_number" setting for CIF
* load multiple objects ("data_" blocks) from one CIF file (multiplex=-1)
* don't store AtmToIdx, DiscreteAtmToIdx or DiscreteCSet to PSE
(unless pse_export_version <= 1.76)
* 1.7.7.1 (unstable/experimental)
2015-05-04 Thomas Holder, Blaine Bell, Gabriel Marques
* 1.7.6.0
* VASP file support for: CHGCAR, OUTCAR, POSCAR, XDATCAR
* psf file support
* ignore SCALE matrices with negative determinant
* fix crash when loading malformed CIF file
* fix cif export for natoms = 0
* fix several memory leaks
* fix crash when saving PSE with deleted ramp
2015-04-20 Thomas Holder <thomas.holder@schrodinger.com>
* new setting: pse_export_version to save to old session formats
* fix memory leak in get_global_components_bond_dict
* change setting default: pdb_conect_nodup 0 -> 1
* fix Tcl/Tk File menu unicode handling
* fix auto-complete for filenames with spaces
* mmCIF: support CHEM_COMP_BOND from mmCIF file
* residue information for MOL2 export
2015-03-12 Thomas Holder, Blaine Bell, Gabriel Marques
* mmCIF _atom_sites.fract_transf support (SCALEn equivalent)
* Complete port of scenes to C++
* warn user if setting a setting on the wrong level
* cmd.extendaa: shortcut for cmd.extend with argument auto-completion
* reduced memory footprint of AtomInfoType
* expose "reps" to iterate/alter
* expose "protons" to iterate/alter
* adaptive cartoon quality and sampling, depending on number of atoms
* fix ring center color with cartoon_ring_color=default
* make SelectorGetTmp strictly molecular, fixes for example "dss" with
group names
* fix "copy" can cause crash
* fix "custom" selection operator
* consider spec_count in shaders
* don't invalidate shaders for lighting settings
* don't disable shaders for all Intel chips
* don't touch sphere_mode when disabling shaders
* map_new buffer == -1 -> gaussian_resolution
* fix all_states picking
* remove cylinder_shader_ff_workaround and cylinders_shader_filter_faces
* remove unused gl_ambient setting
* fix Tcl/Tk menu settings logging
* fix: grid mode scales down label size incorrectly
* fix: no animate argument for cmd.origin
* fix side_chain_helper for hetatm polymer atoms
* fix .mmd export
* refactor many function to take "const" pointer arguments
* 1.7.5.0 (unstable/experimental)
2014-12-03 Thomas Holder, Blaine Bell, Gabriel Marques
* 1.7.4.0
2014-12-02 Thomas Holder <thomas.holder@schrodinger.com>
* use COMPONENTS_CIF environment variable to look for components.cif
* update fetchHosts and hostPaths URLs
* 1.7.3.6 (unstable/experimental)
2014-11-20 Thomas Holder <thomas.holder@schrodinger.com>
* cif: read first_model_num
* fixed _foo?bar lookup could fail in mmCIF parsing
* deprecated full_screen setting (use full_screen command)
* 1.7.3.4 (unstable/experimental)
2014-10-19 Jared Sampson, Thomas Holder
* COLLADA (dae) export support.
Implemented by Jared Sampson as his POSF project.
* 1.7.3.2 (unstable/experimental)
2014-10-16 Thomas Holder, Blaine Bell
* fast PDBx/mmCIF and core CIF loading in C++
* new connect_mode=4 does bonding with components.cif dictionary
(mmCIF only, components.cif needs to be present in current
directory)
* gray out residues in the sequence viewer that are missing from the
current state; Read missing residues from mmCIF files
(_pdbx_unobs_or_zero_occ_residues records) so that they show up in
the sequence viewer
* add spider map reading support
* load "map" as ccp4 instead of throwing "ambiguous" error
* xyz write support
* Improve right-button zoom: use origin instead of clipping slab
center as depth indicator, fixes zoom speed when far clipping plane
is very far away
* don't use dynamic_width for nonbonded rep
* 1.7.3.1 (unstable/experimental)
2014-09-17 Thomas Holder, Blaine Bell
* ignore SCALEn if CRYST1 is 1x1x1 or invalid
* new/refactored API functions for accessing coordinates and maps
as numpy arrays:
* load_coords
* load_coordset (was: load_coords)
* get_coords
* get_coordset
* get_volume_field now returns numpy array
* new API function: cmd.set_state_order
* Session file (PSE) support for callback objects
* fix/silence many compiler warnings
* fix bg_rgb_top/bg_rgb_bottom side effects
* revert "fix setting surface_circumscribe"
* delete some obsolete files
2014-09-08 Thomas Holder <thomas.holder@schrodinger.com>
* migrate all C files to C++ (rename c -> cpp)
* multi-letter chain support
* added missing function pymol.menu.measurement_color
* fix small regression bug in pymol.creating.unquote
2014-09-04 Thomas Holder, Blaine Bell
* 1.7.3.0 (unstable/experimental)
* sync various pieces of code with Incentive PyMOL
* faster iterate/alter implementation ported from Incentive PyMOL
* experimental mmCIF write support (atoms only)
* partial multi-letter chain support
* super: use guide instead of CA, enables nuc acid alignment
* fix movie panel not shown until resize
* eliminate some deprecated parsing modes
* python: convert some files to absolute_import
* --help and --version
* dynamic_measures refactoring, fixes duplicated IDs bug
* get_type returns object:alignment and object:ramp
* new "command" Wizard ported from Incentive PyMOL
2014-08-15 Thomas Holder, Blaine Bell
* reimplement volume carving
- use a carve mask texture
* fix boxed volume around selection (with or without carving)
- this only worked for symmetry expanded volumes
- still limited to maps with symmetry information (TODO)
* removed ObjectVolumeGetIsUpdated, deprecate get_volume_is_updated
* refactored ObjectVolumeStateGetField, ObjectVolumeGetField
- don't keep a redundant vs->volume copy in memory
* revert a 1.7.2 opaque_background change
- real-time rendering background was always black with
opaque_background=0
- removes opaque_background support for "draw"
* 1.7.2.1
2014-08-04 Thomas Holder, Blaine Bell, Gabriel Marques
* 1.7.2.0
* chempy.cif: fix symmetry loading
2014-07-31 Thomas Holder, Blaine Bell, Gabriel Marques
* Improve ObjectVolume rendering latency
* Improve label edge pixel rounding
* alter_state auto completion
* improve "Label" wizard
* re-implemented ObjectMoleculeSetDiscrete
* 1.7.1.9 (release candidate)
2014-07-09 Thomas Holder, Blaine Bell
* fix label_digits crash
* fixed get_angle3f to use doubles internally
* avoid ZeroDivisionError in Volume Panel
* support opaque_background with "draw"
* fix spheroid command for use_shaders=0
* 1.7.1.7 (beta)
2014-06-30 Thomas Holder, Blaine Bell
* report clash score in mutagenesis wizard
* change defaults for settings "ribbon_as_cylinders" and
"nonbonded_as_cylinders" to 0
* new commands (ported from PSICO): join_states, alphatoall, loadall,
centerofmass, extra_fit, api
* pubchem and emd fetch support
* support to run pml and py script with the "load" command
* Fix text mode (text=1) with white background color
* 1.7.1.6 (beta)
2014-06-14 Thomas Holder <thomas.holder@schrodinger.com>
* refactor chempy.cif
- support for multi-model
- read secondary structure
- rewritten tokenizer
* atom sorting: make segi match case sensitive
* fix/improve:
A > compute > surface area > ...
A > generate > selection > surface atoms
* PDB parser: factor out SS handling for readability
* open file dialog in CWD until the first file was selected, then
remember that directory
* with -J immediatly cd to $HOME (or $HOME/Documents on Windows).
This allowes to put a "cd ..." in pymolrc
* fix stereo shader invalidation
* 1.7.1.4 (beta)
2014-05-13 Thomas Holder, Blaine Bell
* fix label depth issues with label_position
* fix label reappeared when zoomed in too far
* fix "scene auto, update" with wizard message
* fix setting surface_circumscribe
* 1.7.1.3 (beta)
2014-05-07 Thomas Holder, Blaine Bell
* volume improvments:
- grid_mode support
- adjust volume ramp alphas by number of layers
- support TTT matrix
- bind mouse wheel to volume panel to adjust all alphas at once
* CCP4 map type 0 support
* fixed polymer detection for intra-residue N->C and O3'->P bonds
* raise exception when assigning arbitrary string to int setting
* fix group visibility issue in movie making
2014-04-08 Thomas Holder, Blaine Bell
* never assign atom_type (noInvalidateMMStereoAndTextType)
* fix ExecutivePurgeSpec memory leak
* fix cartoon memory leak
* fixed small solvent_radius crashes surface generation
2014-03-12 Thomas Holder
* volume API and panel improvements
- volume presets
- new commands volume_color, volume_ramp_new
- improved volume panel/UI
- custom volume ramps/presets
- support for volumes from maps with transformation matrix
* 1.7.1.0 (beta)
2014-03-09 Thomas Holder, Blaine Bell
* updated splash
* cmd.label2 fixes
* fix: roving details linger for polar contacts
* fix crash in RepCylBond with order=0
* fix cylinder picking bug
2014-01-20 Thomas Holder <thomas.holder@schrodinger.com>
* mutagenesis wizard: use PYMOL_DATA (patch by Michael Banck)
* updating version 1.7.0.1
2014-01-14 Thomas Holder, Blaine Bell
* read space group from CCP4 maps
* handle empty space group like P1 (for best support of map formats
which do not have a space group)
* map_auto_expand_sym: take symmetry from map if molecular object
doesn't have symmetry information
* gracefully reject writing MOL format with >999 atoms
* fix: saving MOL2 format with empty atom name
* fix: ray+png in batch mode ray traces twice
* disable seq_view in mpng
* change movie_quality default to 90 (was 60)
* fix needs_alpha_reset
* apbs_tools PDB writing: disable putting spaces before dashes
2014-01-03 Thomas Holder, Blaine Bell
* fix ramp coloring when loaded from PSE
* don't set use_shaders with PSE or reinitialize
* delete duplicates when loading PSE w/ partial=1
* fix incomplete CGO loading from session file
* fix viewport logging syntax error
2013-12-19 Thomas Holder
* fix warnings about unused data argument; patch by Jack Howarth
https://sourceforge.net/p/pymol/bugs/144/
2013-12-14 Thomas Holder
* submenus can be callables which return a list
2013-12-13 Blaine Bell, Thomas Holder
* fix antialiasing internal edges, ray tracing
* fix clicking volume panel dots at zero alpha
* fix molecular weight w/ aromatic bonds & missing hydrogens
* fixed sequence text/background when scrollbar isn't shown
* remove deprecated mray command
2013-11-26 Blaine Bell, Thomas Holder
* remove self assignments
http://sourceforge.net/p/pymol/bugs/143/
* cmd.load_callback: import fixed version to api
* don't sort atoms in discrete objects
* fix resizing issue for lines on ATI cards
* fix reset stereo with reinitialize
* fix draw stereo
2013-11-21 Thomas Holder <speleo3@users.sf.net>
* fix label shader fog blending
2013-11-11 Blaine Bell, Thomas Holder
* fix segfault in SceneImagePrepareImpl
* fix dihedral rep for objects with >20 states
* cmd.png: consider image_dots_per_inch with _unit2px
* preset.py: delete temporary selections
* fixed CGO demo crash in CGOSimplify
* print OpenGL info not only to STDOUT, but to PyMOL text output
* fix tcl/tk window placement on OS X 10.9
* get_viewport: do not print int as float
* fix: do not set wiz.cmd to None when saving PSE
* fix cartoon picking bug
* fix crash during selection
* fix two_sided_lighting cartoon shader bug
* fix isolevel command for isosurface with shaders
* mol2 writing with multiple objects
* fix removing non-polar hydrogens
* fix crash during select bychain
* fixed line_as_cylinder bug
* fixed smooth half bonds with line as cylinders
* get_bond command
2013-10-31 Thomas Holder <speleo3@users.sf.net>
* fix splash.png sRGB profile (bug #136)
* improve Filter Wizard, "Create Filtered Object"
* consider "ignore_pdb_segi" setting when saving to PDB
* delete obsolete files (sglite, ExtensionClass)
2013-10-18 Thomas Holder <speleo3@users.sf.net>
* remove out-dated pymol.opengl module
* enhance get_version command, quiet=-1 gives build information
* remove max_triangles setting (was unused)
2013-10-04 Thomas Holder <speleo3@users.sf.net>
* fix segfault in OrthoRenderCGO
https://sourceforge.net/p/pymol/bugs/137/
* importing.load_coords
* improve util.chainbow
* fix plugin manager PyMOLWiki URL install: strip whitespace
2013-10-01 Thomas Holder <speleo3@users.sf.net>, Blaine Bell <blaine.bell@schrodinger.com>
* major re-work/organization of RepSphere.c and fixed sphere picking
* fix color type settings return format for hex colors (0x prefix)
* fix special keys in wizard input prompt
2013-09-09 Thomas Holder
* add "x" "y" "z" selection operators
Example: select foo, x < 12.3
2013-09-08 Blaine Bell, Thomas Holder
* fix seq viewer background color
* add "backbone" and "sidechain" selection keywords
* fix: cealign inverts target structure
2013-08-27 Thomas Holder <thomas.holder@schrodinger.com>
* fix [bugs:#135] array overrun
https://sourceforge.net/p/pymol/bugs/135/
* apply one part of [patches:#6]
https://sourceforge.net/p/pymol/patches/6/
* preserve "use_shaders" setting when loading session files
* simplify pymolrc search routine
* fix CtSh-M click on group members in object menu panel
* set_key string support
2013-08-13 Thomas Holder <thomas.holder@schrodinger.com>
* fix h_add atom sorting
* add "metals" keyword to selection language
2013-07-31 Thomas Holder <thomas.holder@schrodinger.com>
* improve amber rst/crd support
* fix pair_fitting with one atom pair
2013-07-23 Thomas Holder <thomas.holder@schrodinger.com>
* fix numpy/ndarrayobject.h import
* setup.py: add --osx-frameworks agument
* rpc server: use register_instance
2013-07-16 Thomas Holder <thomas.holder@schrodinger.com>
* fixed load_traj with stop/max arguments.
Thanks to David Osguthorpe for the patch.
* fix pymol.importing.read_mmodstr
* proper numpy support (ObjectMap.c)
* take out broken experimenting.expfit
* fetch_path: graceful error handling when writing file fails
2013-07-15 Blaine Bell <blaine.bell@schrodinger.com>
* fixed flickering ortho problems on some machines
2013-06-21 Blaine Bell <blaine.bell@schrodinger.com>
* fixed selection indicators
2013-06-18 Blaine Bell, Thomas Holder
* fixed loading in bg_rgb settings from old project pse files
* add URL support for run command
2013-06-13 Blaine Bell <blaine.bell@schrodinger.com>
* fixed labels when use_shaders is 0 and show_frame_rate is on
2013-06-12 Thomas Holder <thomas.holder@schrodinger.com>
* update APBS Tools plugin
* fix spectrumany when minimum/maximum are provided
2013-06-11 Blaine Bell <blaine.bell@schrodinger.com>
* Open Source PyMOL v1.6.0.0
* freeing VBOs properly when deleting volumes
* added quiet flag for SettingGenerateSideEffects() and SettingCheckUseShaders()
* fix 15bit color picking
* fix surface memory leak
* fix CGO demo
2013-06-10 Thomas Holder <thomas.holder@schrodinger.com>
* internal.file_read: use urllib2 instead of urllib
* fix ellipsoid transparency OpenGL rendering
2013-05-27 Thomas Holder, Blaine Bell
* fix surface normals
* fix Scripts ending with ...pymol.py do not execute
https://sourceforge.net/p/pymol/bugs/46/
* several CGO fixes
* several python fixes
2013-04-26 Thomas Holder <thomas.holder@schrodinger.com>
* refactored importing.fetch
* spectrum enhancements (arbitrary expressions and colors)
* pymol2.cmd2: implement proxy pattern
* chempy model improvements
* fix bg_color, which sometimes did not apply instantly
2013-04-17 Thomas Holder <thomas.holder@schrodinger.com>
* support full path for "matrix" argument
https://sourceforge.net/p/pymol/patches/4/
* use PyMOL API in pymol.rpc module
https://sourceforge.net/p/pymol/patches/3/
* doc string for cmd.find_pairs
https://sourceforge.net/p/pymol/patches/2/
2013-04-12 Blaine Bell <blaine.bell@schrodinger.com>, Thomas Holder <thomas.holder@schrodinger.com>
* rotate ANISOU vector when transforming objects
* new command: split_chains
* fix create/extract bug with movie
* fixed cartoon VBO memory leak
* always draw rounded caps with sticks shaders
* several shader fixes and performance improvements
* fixed screen z-offset for labels
2013-03-22 Blaine Bell <blaine.bell@schrodinger.com>, Thomas Holder <thomas.holder@schrodinger.com>
* improved rendering performance using shaders, including
dynamically updated shaders based on settings
(see data/shaders directory)
* implemented shaders for menus, labels, selection indicators,
background, and other graphics that were not using shaders.
* consolidated textures used for labels and selection indicators
to one texture, which helps performance
* added memory checking to help avoid crashing when memory is
low or not available
* cleaned up code base, took out extraneous preprocessor code and
code that was not used.
* refactor pmg_tk.Settings
* Do not clear atom names with chempy.champ.assign.amber99
* fix some plugin manager exception handling
* fix create with name=None
* Plugin override search path: Always include "startup"
from installation directory in plugin search path
* Movie > Program > Scene Loop > Nutate > by degrees
* ObjectMeshRenderImpl refactoring: color isomesh and isodot with
mesh_color and dot_color settings
* merging alignment objects: eliminate orphaned atoms
* fix cealign alignment object creation: rms_cur arguments swapped
* improved the alignto command to take additional keyword arguments
which get passed to the used method -> object=aln supported now
* remove _PYMOL_MODULE constant
* fix LITERAL mode command parsing: ignore leading whitespace
2013-02-14 Thomas Holder <thomas.holder@schrodinger.com>
* enable VMD plugins by default
* apply patch #120 "pymol" import in launcher ambiguous
http://sourceforge.net/p/pymol/bugs/120/
* always import _cmd from pymol or pymol.cmd instead of relative
* add bz2 support for reading PDB and some other file formats
* support width/height units with the png command
* support decorator syntax for cmd.extend
* setup.py refactoring, setup2.py no longer needed
2013-01-10 Thomas Holder <thomas.holder@schrodinger.com>
* Exit on error with "-y" flag
* shortcut and auto-completion refactoring
* fix setting angle_color or dihedral_color
* ramp_new: exception handling on argument parsing
2012-12-07 Thomas Holder <thomas.holder@schrodinger.com>
* feedback fixes
* speed up iterate and alter - https://sourceforge.net/p/pymol/patches/5/
* command line (Tk GUI) history improvements
* add angles to the Movie-Program-SceneLoop menu
* Fixed fab hydro argument
2012-11-12 Thomas Holder <thomas.holder@schrodinger.com>
* Fixed #3539436: right justified resn in PDB
* Fixed #3506103: alignment objects from "super" do not contain N atoms
* Fixed #3496006: END before ENDMDL bug reintroduced
2012-08-15 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed longstanding annoyance: 'as rep, vis' now works
2012-08-14 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Added autocomplete for 'group' command.
2012-08-14 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Adding autocomplete for 'dss'.
2012-08-14 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed bug where FASTA strings aren't returned for multiple objects.
2012-06-06 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixing up CEAlign (thanks to Thomas Holder)
* FIXED: fails to align chains of length < 2*window+1
* FIXED: if chain length is a multiple of window, only (length-window) residues get aligned
* FIXED: only evaluates every 2nd path of the best 20 (increments k twice in the loop)
* FIXED: if no alignment is found, the return value is NULL which raises a SystemError instead of a graceful error message.
* FIXED: finally, it's not possible to obtain the alignment as an object (like with align ..., object=aln)
* FIXED: fixed auto complete names on for cealign
2012-05-30 Blaine Bell <Blaine.Bell@schrodinger.com>
* Fixing the exception handling of get_names_of_type
2012-05-30 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixing get_unused_names
* Fixing locking on get_names_of_type
2012-04-06 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Adding checks for Quadro cards to enable cylinder shader workaround.
2012-04-06 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Improved PyMOL Plugin System; Thomas Holder's PyMOL OSFP project
2012-04-06 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Standard splash
2012-04-05 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Default all Intel cards to not use shaders
* Fixed ID:3513708, cmd.get_unused_name fix; thanks to Thomas Holder
* Added new splash image for open-source build
2012-03-20 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed ID: 3512313 TER records before residues like MSE, patch submitted by Thomas Holder
2012-03-05 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed crash when reading in long lines from stdin
2012-03-03 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* updating version 1.5.0.2 -> 1.5.0.3
* fixed error showing Cell on map with attached file
* fixed reading in symmetry
* fixed problem with symmetry copying/setting where map doesn't get updated
* get_symmetry should return None if argument is not an ObjectMolecule or ObjectMap
* stack trace when hiding everything for mesh
* fixed Volume extents only get shown when volume is rendered
* fixed copying Symmetry info into Objects (ObjectMap and ObjectMolecule)
* fixed reading in legacy sessions with version # less than 1
2012-02-17 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fink/Macport builds fixed; thanks to Jack Howarth for the patch.
2012-02-17 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Open Source PyMOL v1.5.0.2
* stack trace when saving movie as MPEG (ID: 3488608)
* error loading from pse that don't have Crystal/Symmetry info
(ID: 3488609)
2012-02-13 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* adding necessary files to build PyMOL v1.5.0.1
2012-02-13 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Open Source PyMOL v1.5.0.1
* improved rendering Performance
* improved rendering Quality
* bg_gradient now ray traces
* improved cartoon support for non-standard nucleotides
* surface color smoothing
* surface-based picking
* frame buffer-based antialiasing for real-time rendering
* optimized anaglyph colors and intensities for an improved 3D
viewing experience
* real-time and ray-traceable ambient occlusion
* molecular weight calculuations; A > Compute > Molceular Weight
* selection generation A > Generate > Selection
* new mouse mode for repositioning lights
* many bug fixes
2012-01-03 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* improved callback rendering
* improved cealign (thanks to Thomas Holder)
2011-12-16 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed object creation when merging two objects; thanks to James
Davidson for pointing out the error
2011-12-06 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed get_mass
2011-12-05 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed create to reorder IDs when combining objects; thanks to James
Davidson.
2011-12-05 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Cleaned up 'fitting.py' (untabified)
* alignto updated; can now take a method for alignment
* cealign updated; made faster and cleaner; thanks to Thomas
Holder for the ideas and patch
2011-10-05 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Added the get_viewport function and updated the viewport function
2011-10-05 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Added support for some non-standard nucleic acids (PSU)
2011-09-29 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed distance invalidation problem
2011-09-19 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Added Display > Roving Detail
* Removed AttributeError on coloring volumes; needs better
solution though
* Added polar contacts/hydrogen bonds to the Measurement wizard
2011-09-19 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Doc fix
2011-09-16 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* PyMOL now respects the h_bond_from_proton setting
2011-09-08 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Added A > Generate > Selection > polar, non_polar,
acceptor/donator options
2011-08-21 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed click-flash that happens when middle-clicking when
showing the background gradient (thanks, Blaine)
* Added A > Compute > Molecular Weight and cleaned up the
compute menu in general
2011-08-15 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed a conversion bug in util.cbc; thanks Hongbo.
2011-07-26 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* one more fread
2011-07-26 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixing bugs introduced by last commit for freads; and fixed another importing bug
2011-07-25 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixing more warnings; opengl bindings work again; thanks to Jack
Haworth for the patch
2011-07-20 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed lots of warnings on build; cleaning up code
2011-07-06 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Multi-model PDBs now write ENDMDL after models and END at end of file; thanks to Thomas Holder for the patch.
2011-06-23 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Code cleaning; reducing number of warnings
2011-06-22 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Small state bugfix
* Feedback bugfix
* Updated TNT to 3.0b
2011-06-16 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* suppress guess valences warning message to Blather
2011-06-09 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed volume shader; esp for Ubuntu
2011-06-08 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* "fix" for colored sticks problem
* fixed File > Save Molecule using object's state
* fog/shading in shaders
2011-05-18 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* bugfix for drawing ribbons, drastically increases their rendering (3x+)
2011-05-18 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed a bug where group names were clipped
2011-05-18 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed state bug in distances for (all)
* fixed ray trace bug when not using Python
* fixed nucleic acid residue naming (Thanks to Thomas Holder)
2011-05-12 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* more robust space group/pt group reading from maps
2011-05-02 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed state bug in distances for (all)
* fixed ray trace bug when not using Python
* fixed nucleic acid residue naming (Thanks to Thomas Holder)
2011-05-02 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed shader bug
* v1.4.1 release
2011-04-20 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* finished the state counter
* all measures now work inter-distance, and
honor object states
* selecting/picking now works as we'd expect, with
respect to states
* improved shaders; added fog, fixed rendering issues
* bug fix for possible crash
2011-04-20 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* freezing colors the states blue
* added out of bounds checks for showing states; those
beyond are shown as "--"
2011-04-20 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* state_counter_mode
* fixed bg_gradient coloring
* added small dictionary for xray space groups
* get_names and safe names
2011-04-01 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* transparent ribbons
* naive volume ray tracing; better version coming soon
* small bug fixes
2011-04-01 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* introducing gradient backgrounds (non-ray tracing; testing)
* Windows bug fixes
* Rlight-click Volumes fix
2011-04-01 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* PyMOL v1.4b1 -- adds volumes, glew, shaders, bug fixes, etc
2011-02-03 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Added PyMOL Web Services API; for information run
firefox pymol/modules/web/examples/index.html
2011-01-18 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Cygwin build fix (thanks Alex)
2011-01-18 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* mol2 atom types
2011-01-11 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* mol2 multi-state save bugfix
2011-01-11 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* added mol2.py
* File->Save Moleulce
2011-01-11 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* nascent mol2 writing
2011-01-11 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* removed duplicate function; thanks Thomas
2011-01-03 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed multi-state ray trace bug for CGO objects
2010-10-13 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed Glutamine label problem in Residue menu; now ALT-Q.
2010-10-13 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Trajectory fix
2010-10-08 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* charge wizard fix
2010-10-06 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* memory fix on angles and dihedrals
* documentation update on cealign
2010-10-02 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fully implemented dynamic measures; enable by turning on
"dynamic_measures"--disabled by default for testing
* Setting for surface residues
2010-10-02 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Measurement wizard dihedral fix
2010-09-23 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed degenerate super bug.
2010-08-12 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed the map fetching, again.
2010-08-12 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Added visibililty flag for Measurement Wizard
2010-08-11 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Fixed small bug with fetch.
* Moved surface area calculations to Compute > Surface area; these values still need to be validated!
* A > Action > Generate > Selection > Surface Residues
* New "surface_residue_cutoff" setting
* Removed one redundant option from Measurement wizard
* Added C > Color > Element > 6/H now colors by hydrogens, not carbons
* Yay for the new PyMOL website!
2010-08-05 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* Better support for biological units.
2010-08-05 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* For r1.3r1 (mostly due to fetch command)
* filtering on File > Save Molecule
* Mouse modes now tracked on measurement wizard
* Measurement wizard has surface area (beta!)
* typos
* fixed and cleaned up the fetch command
2010-05-28 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* dynamic_measures setting, for dynamic distances
* more complete neighbor finding and concomitant settings:
- neighbor_cutoff
- polar_neighbor_cutoff
- heavy_neighbor cutoff
* versioning
* new (internal) build system
2010-03-24 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fixed a cealign bug
* added 'alignto' command back in
2010-03-24 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* fetch_host setting (use 'pdb', 'pdbe', or 'pdbj')
* map fetching from EDS (eg. fetch 1cll, async=0; fetch 1cll, type=2fofc; fetch 1cll, type=fofc)
2010-02-18 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* label_anchor setting
2010-02-16 Jason Vertrees <Jason.Vertrees@schrodinger.com>
* movie_quality setting
* copyright notices and install paths
2009-06-14 Warren L. DeLano <warren@delsci.com>
* motions
2009-06-14 Warren L. DeLano <warren@delsci.com>
* reduced Z scale sensitivity and added mouse_z_scale setting
2009-06-14 Warren L. DeLano <warren@delsci.com>
* reindented source code using GNU indent for better readability
* ugly workarounds added for Radeon HD hardware -- warns user
2009-06-10 Warren L. DeLano <warren@delsci.com>
* updated the density wizard to reflect the current API
2009-06-09 Warren L. DeLano <warren@delsci.com>
* fixed rounding error bug with symmetry expansion of maps.
2009-05-18 Warren L. DeLano <warren@delsci.com>
* pseudoatom labeling via main menu right-click
2009-05-13 Warren L. DeLano <warren@delsci.com>
* fixed bug with names containing 'model' in selection macros
2009-05-11 Warren L. DeLano <warren@delsci.com>
* experimental movie_panel setting
* changed internal_gui_mode=0 appearance again
2009-05-03 Warren L. DeLano <warren@delsci.com>
* fixed internal_gui_mode, 1 and 2; added 2 rows to viewer window
* fixed bond color problem from maestro
* fixed 'ace' builder bug
2009-04-28 Warren L. DeLano <warren@delsci.com>
* fixed ramp bug for transformed maps
2009-04-26 Warren L. DeLano <warren@delsci.com>
* fixed bug with clicking on the sphere representation
2009-04-10 Warren L. DeLano <warren@delsci.com>
* changed 'import pymol' behavior to defer launch until
finish_launching is actually called
* added warnings for pml/py/pym run/@ confusion
2009-04-09 Warren L. DeLano <warren@delsci.com>
* added bycell selection operator
2009-03-26 Warren L. DeLano <warren@delsci.com>
* acnt map support
* fixed bug with selection argument to cmd.get_names
2009-03-23 Warren L. DeLano <warren@delsci.com>
* fixed problem unintentionally quashing "+" from filenames
* fixed selector bug parsing one+object as two + object
* added " + " selection operator to mitigate impact of bug
and added " - " operator to provide complement to " + "
2009-03-21 Warren L. DeLano <warren@delsci.com>
* added simple fasta output
* fixed major bug with 'domain' argument to select
* greatly improved the performance of the peptide builder
* fab command
2009-03-20 Warren L. DeLano <warren@delsci.com>
* very rough FASTA & ALN read support (full peptide builds)
2009-03-14 Warren L. DeLano <warren@delsci.com>
* updated the vmd molfile plugin code from current UIUC cvs
* addressing various strict-aliasing issues for GCC
2009-03-13 Warren L. DeLano <warren@delsci.com>
* field_of_view now interpolated via get_view/set_view matrix
(appears to be backwards & forwards compatible)
2009-03-11 Warren L. DeLano <warren@delsci.com>
* front and back colors, label_color now defaults to front
* fixed object duplication deadlock bug
* show_frame_rate setting
* valence_mode=1 setting for nicer valence display
2009-03-10 Warren L. DeLano <warren@delsci.com>
* dynamic_width settings and defaults
2009-03-06 Warren L. DeLano <warren@delsci.com>
* addressed problem reading mmod files
2009-02-08 Warren L. DeLano <warren@delsci.com>
* refactored multisave commmand
* improved read-in performance for concatenated PDB files
2009-02-08 Warren L. DeLano <warren@delsci.com>
* fixed stupid load-from-URL bug...
* GZ compression support for common input formats
* confirmed DLP Stereo 3D support
* fixed ray-tracing for checkboard, byrow, & bycolumn stereo 3D
2009-02-06 Warren L. DeLano <warren@delsci.com>
* saving .dat and .out now also default to mmod format
* extensive reworking of stereo 3D code to enable new encodings
2009-01-14 Warren L. DeLano <warren@delsci.com>
* found & fixed longstanding issue with psize.py in APBS plugin
* eliminated alternative conformation identifiers from PQR files
2009-01-09 Warren L. DeLano <warren@delsci.com>
* added PyMOL> prompt to the Tk Window
* addressed a couple of minor file saving issues
2009-01-05 Warren L. DeLano <warren@delsci.com>
* removing old X11-hybrid kludge, fixed a few python issues
* default .mpg extension handling for MPEG export
2009-01-02 Warren L. DeLano <warren@delsci.com>
* fixed click-through toggle for Leopard
2009-12-31 Warren L. DeLano <warren@delsci.com>
* various changes associated with getting 1.2b0 out the door
2008-12-23 Warren L. DeLano <warren@delsci.com>
* fixed tk-based session save problems reported by DB
2008-12-16 Warren L. DeLano <warren@delsci.com>
* fixed another object-name-dragging bug
* mpeg1 export menu item
* fixed putty scaling bugs
2008-12-14 Warren L. DeLano <warren@delsci.com>
* added support for writing ppm files (awkwardly: via png)
2008-12-13 Warren L. DeLano <warren@delsci.com>
* added error message for when align/super atom alignment fails
2008-12-07 Warren L. DeLano <warren@delsci.com>
* fixed split_states behavior to allow prefix to override titles
2008-12-07 Warren L. DeLano <warren@delsci.com>
* updated pymol/__init__.py OpenGL autoconfiguration
2008-12-04 Warren L. DeLano <warren@delsci.com>
* continued major overhaul of the builder
* fixed longstanding object name right-dragging bugs
2008-11-29 Warren L. DeLano <warren@delsci.com>
* various updates to the builder
* auto_overlay setting
* stick_ball_color, stick_h_scale settings
* added support for negative stick_radius, stick_ball_ratio
2008-11-22 Warren L. DeLano <warren@delsci.com>
* fixed incompatibility with Roche Pocket Viewer
2008-11-12 Warren L. DeLano <warren@delsci.com>
* added max_ups setting to govern excessive geometry flux
2008-11-10 Warren L. DeLano <warren@delsci.com>
* further work on the builder
* sculpting engine now respects atom flag 3 (fixed atoms)
2008-11-05 Warren L. DeLano <warren@delsci.com>
* added Mac-only menu for configuring X11 click-through behavior
* updated open-source splash image
2008-10-04 Warren L. DeLano <warren@delsci.com>
* first rough attempt at IDTF export for U3D / 3D-PDF support
2008-09-29 Warren L. DeLano <warren@delsci.com>
* fixed subtle div-zero bug in the view interpolation code
2008-09-24 Warren L. DeLano <warren@delsci.com>
* fixed crash bug with blank CGO object
2008-09-12
* added menu option & mechanism for removing plugins
* fixed bugs with defer_builds_mode 5
2008-09-12 Warren L. DeLano <warren@delsci.com>
* added multipled FSAA to MacPyMOL
* added experimental defer_builds_mode 5 for trajectory viewing
2008-09-07 Warren L. DeLano <warren@delsci.com>
* improved ability to write images asynchronously as a web server
2008-09-05 Warren L. DeLano <warren@delsci.com>
* fixed a couple of bugs introduced when making changes below
2008-08-22 Warren L. DeLano <warren@delsci.com>
* addressed some performance issues with byres, bychain, & byseg
* added a new cookbook example for a composited multi-clip
raytraced image examples/cookbook/multiclip_ray.pml
2008-08-21 Warren L. DeLano <warren@delsci.com>
* fixed indexes output by get_raw_alignment: now 1-based
* added new cookbook example for grafting selections across
alignments: examples/cookbook/seq_match_sele.pml
2008-08-04 Warren L. DeLano <warren@delsci.com>
* added map_auto_expand_sym setting to optionally prevent expansion
* fixed problems with out-of-order execution with pasted scripts
2008-07-28 Warren L. DeLano <warren@delsci.com>
* added support for apbs provided as part of FreeMOL
2008-07-25 Warren L. DeLano <warren@delsci.com>
* fixed problem with scene name completion
* added buttons options to the scene menu
* fixed major bug in scene_order command
2008-07-24 Warren L. DeLano <warren@delsci.com>
* added scene_buttons, scene_buttons_mode
* fixed bug found in the previous implicit OR bug fix
* fixed bug with unitialized memory in surfacing routines
2008-07-23 Warren L. DeLano <warren@delsci.com>
* fixed bugs with transparency and interior color
* nonbonded_tranpsparency now works per atom for nb_spheres
2008-07-22 Warren L. DeLano <warren@delsci.com>
* fixed improper selection behavior for wizard with sequence view
2008-07-21 Warren L. DeLano <warren@delsci.com>
* continued work on the builder
* Added "Abort" and "Rebuild" buttons on the external GUI
2008-07-16 Warren L. DeLano <warren@delsci.com>
* in the process of overhauling builder
* added support for mengine as part of the "freemol" package
2008-07-08 Warren L. DeLano <warren@delsci.com>
* fixed order-of-operations bug with implicit OR in selections
2008-07-06 Warren L. DeLano <warren@delsci.com>
* fixed alignment/superposition crash bug
2008-06-20 Warren L. DeLano <warren@delsci.com>
* fixed problem launching browser under Mac OS X / X11
* updated the MacPyMOL UI & fixed various glitches
* added a Grid section to the Display menu
2008-06-17 Warren L. DeLano <warren@delsci.com>
* added support for multiple objects/selections in save dialog
2008-06-16 Warren L. DeLano <warren@delsci.com>
* fixed missing define when building via autotools
* improved compatibility when building under OSX/X11 w/o Fink
2008-06-01 Warren L. DeLano <warren@delsci.com>
* session_cache_optimize setting
* fixed cache optimize
* added Ctrl-Fkey and Ctrl-PgDn/Up support inside Tcl/Tk
2008-05-31 Warren L. DeLano <warren@delsci.com>
* updated help menu
* mouse_grid setting
2008-05-28 Warren L. DeLano <warren@delsci.com>
* added mesh_cutoff and related mesh settings
* added mouse_grid setting for hiding the mouse/keyboard info
2008-05-28 Warren L. DeLano <warren@delsci.com>
* finished .MAE reader (at least for now...)
* quashed race conditions associated with the geometry cache
2008-05-22 Warren L. DeLano <warren@delsci.com>
* create copies object color if source atoms are from one object
2008-05-21 Warren L. DeLano <warren@delsci.com>
* valence command enhanced for guessing & copying valences
2008-05-20 Warren L. DeLano <warren@delsci.com>
* now assumes HETATM c1ccnc1 is c1ccn[H]c1
2008-05-19 Warren L. DeLano <warren@delsci.com>
* skins now working better
2008-05-15 Warren L. DeLano <warren@delsci.com>
* increased surface generation performance
2008-05-09 Warren L. DeLano <warren@delsci.com>
* new setting: geometry_export_mode partially implemented
* initial 3Dconnexion SpaceNavigator support for Mac (others coming)
2008-05-02 Warren L. DeLano <warren@delsci.com>
* fixed nasty crash bug with distance command & multistate objs
* incorporated various fixes for pymol2.PyMOL instances.
2008-05-01 Warren L. DeLano <warren@delsci.com>
* converted color names storage over to a dictionary (lexicon)
* fixed bug with color redefinition in the external gui
2008-04-30 Warren L. DeLano <warren@delsci.com>
* more fixes for Vista compatibility
2008-04-25 Warren L. DeLano <warren@delsci.com>
* capture command/method for obtaining the entire OpenGL window
* adjusted save behavior so that selections exclusively comprised
of static singleton atoms are written out even when the global
state index is not unity
* changed behavior of multiplex=0 option for concatenated PDBs
2008-04-23 Warren L. DeLano <warren@delsci.com>
* made additional tweaks to command flushing
2008-04-23 Warren L. DeLano <warren@delsci.com>
* fixed more logging-related bugs
* optimized command-queue flushing for better performance
2008-04-19 Warren L. DeLano <warren@delsci.com>
* added support for PDB formal charges.
2008-04-17 Warren L. DeLano <warren@delsci.com>
* fixed bug with GL_BLEND for distance labels
* repaired proper logging for various selection-related actions
* migrated to session-based storage for the measurement wizard
2008-04-16 Warren L. DeLano <warren@delsci.com>
* tweaked behaviors for better ActiveX usage
* ESC now exits presentation mode (instead of toggling text)
2008-04-12 Warren L. DeLano <warren@delsci.com>
* added new movie program menus
2008-04-11 Warren L. DeLano <warren@delsci.com>
* added vdw radii for additional elements
* fixed problem with saving session/show file ext on Windows.
2008-04-04 Warren L. DeLano <warren@delsci.com>
* fixed exception on windows when home directory is inaccessible
2008-03-31 Warren L. DeLano <warren@delsci.com>
* scene_order command
* improved hash compatibility for cached surfaces
* $PYMOL_DATA now used instead of $PYMOL_PATH for align matrix
2008-03-28 Warren L. DeLano <warren@delsci.com>
* Cleaned up a launch issue under Centos 4.5
* Accomodating default Gnome Panel window positioning under Linux
2008-03-27 Warren L. DeLano <warren@delsci.com>
* Fixed quirky group-dragging behavior
2008-03-26 Warren L. DeLano <warren@delsci.com>
* Eliminated a longstanding GC bug (problematic on 64bit/py251)
2008-03-22 Warren L. DeLano <warren@delsci.com>
* Fixed bugs with label sizes & positions in orthoscopic mode
2008-03-22 Warren L. DeLano <warren@delsci.com>
* PTR, SEP, TPO now included in alignments
2008-03-12 Warren L. DeLano <warren@delsci.com>
* cones are now working (flat-capped only...)
2008-03-09 Warren L. DeLano <warren@delsci.com>
* added Movie->Program submenus and make other changes to Movie
* updated buttons in upper right panel -- added 'orient' button
* movie_rock modified so as to defer to rock setting by default
* reduced Tcl/Tk pause on startup from 1 sec to 0.1 sec
* rock setting (replaces hardcoded Control->Rocking property)
2008-03-08 Warren L. DeLano <warren@delsci.com>
* added "modal" draw loop to deal with Windows GL update bugs
2008-03-07 Warren L. DeLano <warren@delsci.com>
* added cartoon_putty_transform setting for comparison tasks
2008-02-24 Warren L. DeLano <warren@delsci.com>
* select now applies validate_object_names to selection name
2008-02-23 Warren L. DeLano <warren@delsci.com>
* fixed a fitting bug with degenerate cases
* various activex compatibility fixes integrated over past weeks
2008-02-05 Warren L. DeLano <warren@delsci.com>
* eliminated rare but serious bug with fog plus selections
2008-01-31 Warren L. DeLano <warren@delsci.com>
* grid_slot experimental setting
* grid_mode 2 for viewng multiple states
2008-01-30 Warren L. DeLano <warren@delsci.com>
* grid_mode 1 for viewing multiple objects
* dash_color, angle_color, dihedral_color settings
* surface_mode 3 and 4 added (thanks Nidhi!)
2008-01-29 Warren L. DeLano <warren@delsci.com>
* added experimental surface caching implementation
* cache_mode experimentation setting
2008-01-28 Warren L. DeLano <warren@delsci.com>
* fixed minor compatibility bug with vrml (shininess value)
* addressed performance issue when changing representations
for large objects with many states (e.g. 1sva.pdb1)
2008-01-24 Warren L. DeLano <warren@delsci.com>
* spacebar now advances scene when in presentation mode
2008-01-20 Warren L. DeLano <warren@delsci.com>
* additional work towards multiple PyMOLs in one Python.
2008-01-18 Warren L. DeLano <warren@delsci.com>
* improved Python 2.5 / 64-bit compatibility (PyDict_Next, etc.)
* migrated to numpy
2008-01-18 Warren L. DeLano <warren@delsci.com>
* extensive refactoring for PyMOL2 & ActiveX
2008-01-16 Warren L. DeLano <warren@delsci.com>
* fixed surface_type=1, broken in the previous beta
* refactored molecular surfacing routines
2008-01-15 Warren L. DeLano <warren@delsci.com>
* ExtensionClass & sglite broke on 64 bit with Python 2.5.1 so
they have been replaced with simple Python symmetry tables.
2008-01-02 Warren L. DeLano <warren@delsci.com>
* added automatic xtal symm expansion for maps about molecules
2007-12-15 Warren L. DeLano <warren@delsci.com>
* rock now works within movies
* movie_rock setting
2007-12-11 Warren L. DeLano <warren@delsci.com>
* anisotropic temperature factors now "u_aniso" in chempy model.
2007-12-10 Warren L. DeLano <warren@delsci.com>
* fixed object name validation for "create"
2007-12-06 Warren L. DeLano <warren@delsci.com>
* first CIF reading code (barely functional)
2007-12-05 Warren L. DeLano <warren@delsci.com>
* anisotropic B factors now preserved in session files
* cartoon_ladder_mode, cartoon_ladder_color, cartoon_ring_color,
cartoon_ring_width, cartoon_ring_radius, cartoon_ladder_radius
can all now be set per-atom (per-residue, really)
2007-12-04 Warren L. DeLano <warren@delsci.com>
* added additional workaround for reading tricky PQR files
* cartoon_ring_mode can now be set per-atom (per-residue, really)
2007-11-30 Warren L. DeLano <warren@delsci.com>
* ANISOU records now supported in PDB files
* ellipsoid representation (show ellipsoid, if ANISOU provided)
2007-11-29 Warren L. DeLano <warren@delsci.com>
* restored Tcl8.3 compatibility with file open
2007-11-28 Warren L. DeLano <warren@delsci.com>
* added support for simple raster3d ellipsoids (rastep compat.)
2007-11-27 Warren L. DeLano <warren@delsci.com>
* warning added for attempted bond creation between objects
2007-11-19 Warren L. DeLano <warren@delsci.com>
* validated binary GRD reader (versus GVIEW with .kont files)
* fixed crash bug with errorneous pseudoatom input
2007-11-16 Warren L. DeLano <warren@delsci.com>
* fixed bug in binary .grd reader code (or NOT...still unclear)
2007-11-11 Warren L. DeLano <warren@delsci.com>
* retain_order is now object-specific
* restricted geom rebuilds after mask
2007-10-31 Warren L. DeLano <warren@delsci.com>
* added a couple of new CGO examples
2007-10-30 Warren L. DeLano <warren@delsci.com>
* direct SDF output for single and multi-state objects
2007-10-29 Warren L. DeLano <warren@delsci.com>
* added workaround for writing PQR files with long coordinates
2007-10-29 Warren L. DeLano <warren@delsci.com>
* improved memory consumption when rendering lots of triangles
2007-10-28 Warren L. DeLano <warren@delsci.com>
* implemented changed to help support MAEstro format
* colorspaces now apply to ramps as well
2007-10-24 Warren L. DeLano <warren@delsci.com>
* quashed session save bug discovered by GT (PyNone refcnting)
2007-10-22 Warren L. DeLano <warren@delsci.com>
* fixed command synchronization problem with async pdb fetch
2007-10-17 Warren L. DeLano <warren@delsci.com>
* incorporated various changes for improved JyMOL capabilities
2007-10-15 Warren L. DeLano <warren@delsci.com>
* improved behavior of blended ramps based on atomic distances
* added map-related methods to the PyMOL_* internal C-API
2007-10-05 Warren L. DeLano <warren@delsci.com>
* fixed some issues regarding .MAE support
* added support for multistate XYZ files
2007-09-26 Warren L. DeLano <warren@delsci.com>
* bug fix with auto_defer_builds
* can now open multiple files at once (tcl/tk file open)
2007-09-24 Warren L. DeLano <warren@delsci.com>
* added auto_defer_builds setting
* fixed performance bug w/ large discrete objects (10^3 states)
2007-09-20 Warren L. DeLano <warren@delsci.com>
* fixed starup problem with "Documents" folder on Windows Vista
2007-09-06 Warren L. DeLano <warren@delsci.com>
* added -k option to suppress use of .pymolrc, etc.
2007-09-04 Warren L. DeLano <warren@delsci.com>
* eliminated some performance bottlenecks affecting virtualized
OpenGL contexts with texture_fonts enabled
2007-08-30 Warren L. DeLano <warren@delsci.com>
* fixed VRML2 normals for rotated views (thanks Aaron Bryden!)
2007-08-29 Warren L. DeLano <warren@delsci.com>
* fixed mistake with new double-hypen argument parsing
* fixed problem with windows HOMEPATH ending in backslash
2007-08-28 Warren L. DeLano <warren@delsci.com>
* added ramp_blend_nearby_colors setting (for LigandScout-like
coloring via ramps)
* movie_animate_by_frame setting controls whether animations
are interpolated based on wall-clock or movie time
* added support for smooth camera interpolation within movies
(using scenes, views, animate options, etc.) for mpng, etc.
2007-08-26 Warren L. DeLano <warren@delsci.com>
* added store_defaults & related options to reinitialize command
2007-08-25 Warren L. DeLano <warren@delsci.com>
* implemented auto_rename_duplicate_objects setting
2007-08-24 Warren L. DeLano <warren@delsci.com>
* added ellipsoid_quality and cgo_ellipsoid_quality settings
* added CGO ellipsoids
2007-08-15 Warren L. DeLano <warren@delsci.com>
* implemented some fixes to deal with new PDB nomenclature
* now guessing approximate valences for PDB hetatm ligands in
order to improve hydrogen-bond display (setting:
pdb_hetatm_guess_valences) -- the guesses are often
wrong but are much better than nothing!
* added sys.stdout.writelines emulation
2007-08-14 Warren L. DeLano <warren@delsci.com>
* sys.argv if not definied, now set using __main__.pymol_argv
* added util.cnc keyword (formerly just an api function)
2007-08-02 Warren L. DeLano <warren@delsci.com>
* incorporated Michael Lerner's suggestion for argument handling
pymol -c script.py --do=something --when=now
sys.argv = [ 'script.py', '--do=something' , '--when=now' ]
2007-07-30 Warren L. DeLano <warren@delsci.com>
* fixed memory leak with gradients
2007-07-25 Warren L. DeLano <warren@delsci.com>
* fixed bug with command-line rendering with groups
* worked-around problem with .MOE triple-bond valence info
* fixed bug in .MOE reader with duplicate graphics object names
2007-07-23 Warren L. DeLano <warren@delsci.com>
* fixed bug (mostly) harmless bug unpacking colors from sessions
* fixed problems with box selecting when using non-default stereo
parameters
2007-07-18 Warren L. DeLano <warren@delsci.com>
* fixed problems with atomic picking when using non-default
stereo parameters
2007-07-09 Warren L. DeLano <warren@delsci.com>
* DrgO mouse action added
* PyMOL 1.0 branch created
2007-07-08 Warren L. DeLano <warren@delsci.com>
* fixed atom picking in stereo modes with customized parameters
* adjusted idle behavior when playing movies, sculpting, etc.
* added new selection operators: masked and protected
2007-07-03 Warren L. DeLano <warren@delsci.com>
* select no longer
* missing more changelogs!
2007-06-21 Warren L. DeLano <warren@delsci.com>
* issued PyMOL 1.0, with updates to the help menu
* updated numerous command entries in code for online support
* missing ChangeLog entries for the past few weeks...ugh.
2007-05-30 Warren L. DeLano <warren@delsci.com>
* align command now has default max_gap of 50 (for performance)
* various updates to the sequence viewer to improve behavior
* added "super" command to enable more robust alignments
2007-05-29 Warren L. DeLano <warren@delsci.com>
* added hide_long_bonds setting to help with animating rxns
* fixed problem reading NMR structures with HETATM/CONECT combo
2007-05-27 Warren L. DeLano <warren@delsci.com>
* fixed map_set "average" action (which was broken..)
2007-05-24 Warren L. DeLano <warren@delsci.com>
* subtle change to the behavior of "create": only atoms present in
the source state are added to the target object
* discovered and corrected flaw in state-based selection handling
2007-05-20 Warren L. DeLano <warren@delsci.com>
* adjusted performance, idle, and framerate measuring
2007-05-20 Warren L. DeLano <warren@delsci.com>
* added global transparency sort
2007-05-16 Warren L. DeLano <warren@delsci.com>
* fixed mpng export
* cObjectDist now cObjectMeasurement (no C names/files renamed)
* additional show/hide menu options for measurement objects
2007-05-16 Warren L. DeLano <warren@delsci.com>
* fixed bug with selection modification menus
2007-05-14 Warren L. DeLano <warren@delsci.com>
* fixed enable with selection-expression arguments
2007-05-10 Warren L. DeLano <warren@delsci.com>
* added PyMOL_CmdCreate
2007-05-09 Warren L. DeLano <warren@delsci.com>
* modified create to allow shifted multi-state object creation
2007-05-06 Warren L. DeLano <warren@delsci.com>
* damage control galore... many bugs created, many bugs quashed.
2007-05-05 Warren L. DeLano <warren@delsci.com>
* created some basic tests cases for use of multiple instances
* support for multiple PyMOL instances now largely complete
2007-05-04 Warren L. DeLano <warren@delsci.com>
* fixed various GUI annoyances
* fixed scene insert before/after actions
* fixed mpng command-line action
* OVERHAULED the Python/C API to reduce global state
* REFACTORED cmd.py into a number of new .py files
2007-05-03 Warren L. DeLano <warren@delsci.com>
* converted parser to instance-based while retaining global use
* continued work on PyMOL as a Python object
2007-05-01 Warren L. DeLano <warren@delsci.com>
* threads limit increased to 32
2007-04-30 Warren L. DeLano <warren@delsci.com>
* starting to reduce global Python state, enable PyMOL objects
* fixed near_to selection operator
* enabled per-state geometric criteria (within, expand, etc.)
* added state and domain options to the select command
2007-04-23 Warren L. DeLano <warren@delsci.com>
* added state=-1 and state=0 options for alter_state
2007-04-22 Warren L. DeLano <warren@delsci.com>
* fixed pdb_unbond_cations for automatic bond detection
* fixed static_singletons for distance objects
2007-04-21 Warren L. DeLano <warren@delsci.com>
* fixed wrapping problems for movies & objects
* fixed "mview reset" for object matrices
2007-04-18
* fixed bug with aligning selections using the menus
2007-04-03 Warren L. DeLano <warren@delsci.com>
* ray option to png
2007-04-01 Warren L. DeLano <warren@delsci.com>
* unsupported surface_types: 4,5 ->5,6; 4 now related to 3
* fixed mouse_wheel_scale bug
2007-03-30 Warren L. DeLano <warren@delsci.com>
* modified multithreaded async_builds to improve parallelism
2007-03-24 Warren L. DeLano <warren@delsci.com>
* allow blank argument values in the command parser
* added skip argument to python block command
2007-03-23 Warren L. DeLano <warren@delsci.com>
Changes up to 1.00b19
* minor changes to better comply with GNU Build System: CHANGES is
now ChangeLog, also added NEWS, COPYING, AUTHORS.
* added autoconf-based build (for in-place install only) -- just
Linux for starters missing macros for Mac OS X / X11 / Fink.
* renamed all Makefile to Makefile.delsci in order to make room
for an autoconf-based build
* fixed bug with scenes in interpolated views
* pymol now draws h_bonds from proton to acceptor if proton
present and provided that h_bond_from_proton setting is true
* ray_scatter setting (gives a nice increase in image realism)
* ray_trace_trans_cutoff, ray_trace_persist_cutoff settings
* improved transparency model with ray_transparency_oblique
* alignment objects now created by alignment menus
* support for scenes in interpolated views (wow that is cool).
* new movie_fps setting subordiantes movie_delay
* support for session file compression
(default off for backwards compatibility)
Changes up to 1.00b16-18
* fixed shadow transparency for per-atom triangle transparency
* partial session saves & restores (objects only)
* group members starting with internal ._ are now hidden too
* group_arrow_prefix setting
* new 'extract object' item in selection menus
* fixed scroll bar bug with groups
* fixed ray_trace_mode bug (bp099)
* object:group now returned
* ray_trace_color setting
* switched from Vera to DejaVu fonts in order to get symbols.
* dot representation for quick previewing of map contents
* "gradient" command for visualizing maps as gradient fields
* "reinitialize settings" for global & object settings (only, for
now)
* fixed mesh_type = 1 for molecular objects
* fixed bug when rendering spheres alone
Changes up to 1.00b15
* fixed bug with dragging back clip plane (bp099)
* fixes for proprietary code (.MOE file reading & embedding)
Changes up to 1.00b14
* matrix handling for groups
* bug fixes for matrix_mode=1, but more remain so 0 stays the
default
* improvements to the mutagenesis wizard (caps, charges, &
hydrogens).
* fixed serious reference-thrashing flaw in the molecular editor
Changes up to 1.00b13
* fixed geometry-based atom selection processing bug for last
small objects
* support for some Gaussian cube files (orthognal
cartesian-aligned)
* pseudoatoms
* fixed some logging bugs (yet many more remain...)
* fixed 'fetch' and the Remote PDB Loader plugin
Changes up to 1.00b12
* groups
* fixed bond setting selection processing issue
* fixed memory leak in surface algorithm (bp099)
* fixed session file chaining bug on Windows
Changes up to 1.00b11
* fixed stick_ball / transparency bug
Changes up to 1.00b10
* label_digits settings
* surface_negative_visible and _color settings
* mesh_negative_visible and _color settings
Changes up to 1.00b09
* ray_label_specular setting
* mesh_skip setting
* bug fix for label scaling (bp099)
* bug fix for ramp_new
Changes up to 1.00b07
* fixed normal refinement glitch
* fixed cartoon assignment for objects without a state 0
* bug fixes for surface representation
Changes up to 1.00b06
* bug fixes for plugin-based load_traj
Changes up to 1.00b05
* support for trajectory input via VMD plugins
[tested: XTC, TRR, TRJ; to test: GRO, G96, DCD]
* fixed wildcard array overrun segfault
* tuned VRML2 export
Changes up to 1.00b04
* fixed cartoon_trace_atoms crash bug
* fixed some horridly complicated rendering bugs with labels
* fixed some cartoon drawing glitches
* python blocks
* fixed formal charges & valences on nucleic acid backbone
* fixed race condition in color querying
Changes up to 1.00b03
* near_to selection operator
* surface_carve_normal_cutoff setting
Changes up to 1.00b02
* MOL2 fixes
* CVS->SVN migration
* preliminary sequence alignment objects (incomplete)
* UTF8 support with two new fonts having Greek symbols
Changes up to 1.00b01
* VMRL2 export with correct normals for all geometry except
labels!
Changes up to 0.99rcX
* one-button viewing mode
* fixed 32-bit memory allocation bug
* fixed selection argument to rotate command
* fixed mview-based object animation loops
* mol2 file reading fixes
* single-molecule mol, mol2, sdf now not discrete by default.
* parallel geometry builds
* massive reworking of ramp_new for molecular objects
* VRML2 support from Chris Want.
* fixed button in benchmark wizard
Changes up to 0.99
pre01
* WARNING: One annoying GOTCHA! Launch script "./pymol.com" is
now just plain old "./pymol" -- sorry for the resulting config
hassles.
* Now running Python 2.4 on Windows, Linux, IRIX, and Solaris Mac
remains at 2.3 in order to match built-in Mac OS X Python
* fixed GUI bug in pmg/tk & added new alignment option for states.
beta38
* fixed field width bug in PDB writer
beta37
beta36
* fetch no longer loads PDB as discrete
beta35
* MacPyMOL drag & drop fixes
beta34
* "fetch" command
beta33
* fixed SS assignment crash bug on Win32
beta32
* numerous minor PDB reading, threading, and cartoon glitches
eliminated during validation phase
* optimized PDB read performance
* ray_legacy_lighting setting to enable blending of previous
lighting algorithm with new (more correct) lighting
* dss state=0 on a multi-state obj now assigns consensus dss
state=-x1 on a multi-state obj now assigns union
* fixed subtle logic bug in match & merge of highly similar PDB
files
* various fixed to the alignment & matrix handling code
* non-textured label positioning
* label_position x,y values <-1 or >1
* multiple lights now work with multiple processors
* label position for dashes
* label positing finally dealt with for atoms.
* fixed defer_builds_mode=2, FINALLY.
* depth information for selective antialiasing -- more efficient!
beta31
* B & W Molscript & David Goodsell look-alike modes
* light4, light5, light6, light7
* fixed line width for perspective ray tracing for better WYSIWYG
* label_shadow_mode setting
* draggable atom labels
* fixed handedness of triangles in CGO cylinders
* improved hydrogen bond detection for alcohols and added
h_bond_exclusion setting for limiting intramolecular h_bonds
* labels argument to distance, angle, dihedral changed to 'label'
* introduced wrapping and handedness into interpolations
* fixed yet another eigenbug
* new color named "object" for stick_color...(should add others
later)
* fixed surface object show and hide menus
* fixed gadget picking/dragging broken in beta30
beta30
* fixed session-reading bug from old (0.96) sessions
* support for multiple lights, and increased rationalization of
OpenGL and renderer lighting models
* FreeType2 integration -- scalable fonts
beta28
* double-click on internal gui tab to hide it
* fixed annoying problem with pop-up menus that fold back on self
beta27
* finished adding nucleic acid representations
beta26
* reworked some of the rendering code to work around OpenGL bugs
beta24
* proof of concept: molecular "Maya"
* restored ability to move slice objects using shift actions
beta23
* fixed newly introduced scene bugs from beta22
* binary GRD file fixes
beta22
* bump check
* fixed busted GLU and GLN rotamers in library
* dragging wizard, drag molecule (DrgM) mouse action
* drag command & reconfigured editing mode mouse controls
* reversed camera zoom behavior, added legacy_mouse_zoom setting
* fixed longstanding scene/movie synchronization bug
beta21
* worked around depth_cue/fog bug in recent ATI drivers.
* added ability to "import pymol" and finish_launching from a
method
* added general XYZ file support (not just Tinker XYZ)
beta20
* -j startup option for use with "geowalls", geowall stereo
support
* "Opaque" option in background menu
* checker background patter for alpha channel: show_alpha_checker
beta19
* fixed alpha channel handling for edges -- now combining
correctly
* opaque_background setting for OpenGL rendering
beta17 & beta18
* "import pymol" finally works -- worked around _tkinter gotcha!
beta16
* dpi option to png command and image_dots_per_inch setting
* reading and saving of stereo images
* now renders stereo pairs in both side-by-side and QB stereo
modes
* fixed valence assignment for HIS and other polymeric residues
with various names
* some fixes and extra residues added to parameter assignment code
* color by explicit 24-bit hex RGB triplets: 0xffffff
* unicode hyphens in selections now converted to ASCII dashes
* patched memory leak with dihedral display
beta15
* possible bug fix for settings storage related to corrupted
sessions?
beta14
* delete command no longer allows partial names
* updates for chempy bricks
* fixed bug in case matching for the selection engine
* Python API work
beta13
* fixed botched beta12 build for windows
beta12
* better mouse-handling in horizontal split-screen stereo
* fixed setting side effects bug introduced in beta 11
* faster transparency drawing (sorting)
beta11
* fixed some longstanding but minor ranging errors in isomesh and
isosurf
* map_trim command
beta10
* cartoon_loop_cap and cartoon_tube_cap settings
* fixed latent memory-crash bug in align
* fixed min/max issues with maps, alignment, and extents (blush)
* fixed a couple bugs in p1m parsing
* now supporting wildcards and name lists for most commands which
previously took either a name or selection updates...massive
changes to "executive" source code, so there may be new bugs...
* new workaround for amber-like PDB files.
* incorporated a sampled subset of the Dunbrack backbone-dependent
rotamers at 10, 20, and 60 degrees based on > 1% occurence
* incorporated the Dunbrack backbone independent rotamers
* better cartoons for nucleic acids
ribbon/cartoon_nucleic_acid_modes: 0, 1, 2, 3, and 4
cartoon_ring_mode: 0, 1, 2 cartoon_ring_finder: 1, 2, 3
cartoon_ring_color, cartoon_ring_width
* normals now generated in a more sensible fashion for nucleic
acid cartoons */
* rank_assisted_sorts enables us to handle those insane PDB
structures where residue 118 preceeds 118A and 123A preceeds 123,
without introducing breaks in the ribbon or cartoon structure
* fixed attachment of amino acids at the N-terminus
* fixed a few bugs in the molecular editor
* preliminary work on "h_fix" command
beta09
* now ignoring SCALEn if it is the identity matrix
* pdb parser now pays attention to column information in the atom
name field for inferring ambiguous element symbols
* pdb_literal_names now works for real, taking the literal
contents of the 4-character atom field including spaces
beta08
* eliminated annoying exception on blank command input
* fixed crasher bug in phi_psi command
* exceptions not caught for startup/command-line actions
* improved behavior of "multiplex" option for PDB file loads
* made some changed to apbs_tools.py
* updated apbs_tools.py also fixed or added NME, NHE, ACE, TIP
resns.
* added save/restore of state-specific settings for molecule and
distance (measurement) objects.
* fixed bug with label font & colors when editing
beta07
* my first shader program -- "perfect" CPK spheres for PYMOL
* sphere_mode setting for increased performance including use of
GL_POINT based sphere impostors
* -O option for when you've just got to squeeze a few million
atoms into PyMOL for CPK/sphere rendering...
* slightly reduced RAM usage when rendering complex scenes
* converted all the Python code to 4-space indentation (more
standard)
* viewport can now take a single argument (height or width)
* oversize images are now downsampled and displayed
beta06
* draw command -- enables OpenGL rendering of large images
* fixed state argument for cmd.get_distance
* support for windows hidden folders with terminal dollar sign:
//share/folder$/path/file
beta05
* ray now stops and movie and turns off sculpting
* Better return conventions for the PyMOL API: errors return
negatives, success returns None, and boolean queries return 0 or
1. Exceptions are raised by default on error conditions unless
the raise_exceptions setting is disabled
beta03
* fixes to presets and polar contact finding code
* changes to the action menu for selections
* addressed single-click select and menu with slow refresh
* fixed serious race condition / threading bug in popup menus --
this explains & eliminate the sporadic crashes observed on smp
machines
beta02
* fixed broken reading of multistate objects from strings
beta01
* identified cause and temporary workaround for bad nVidia drivers
on linux
* fixed performace issue with torsion update mechanism when
rotating torsions
Changes up to 0.98
beta35
* isosurface and isomesh now use the same ranging criteria
* matrix_transfer, matrix_reset commands (WHAT A PAIN)
* added support for row-major 4x4 homogenous transformation
matrices, and in resolving internal conflicts with TTT matrices,
made them more compatible with homogenous matrices
* internal matrix code cleaned up somewhat -- conventions used
are now explicit in most cases.
* distance wizard becomes measurement wizard
beta34
* fixed glitch in handling bogus CRYST records
* patched up some memory leaks
beta33
* wildcards for model and selection names
* auto disable atom name wildcard for files with asterisks in
the atom name field
beta32
* psw files now start from first scene by default
* scene animation duration default = 2.25
* async option to ray, now default for gui "ray" button
* increased output buffering for script output
* fixed sdf url support
beta31
* scene renaming
* dihedral display during dihedral bond torsion editing
beta30
* presentation mode now auto-quits after blank screen on either end.
* fixed (or rather worked around) two bugs with nVidia on Mac
* wildcards for the main selection operations (alt, name, resi, resn,
chain, segi, text_type)
* wildcard, atom_name_wildcard, ignore_case settings
* pushed selection property list and range handling down into C
(selections should now run much faster)
* defer_builds_mode setting for improved performance with long
trajectories -- now possible to work with files containing
thousands of states, and to render impossibly long movies piecewise.
* switched SDF parsing into C -- "way faster dude!"
* new "move" option for the fuse command
* url support for pdb, mol, mol2, xplor, ccp4, pkl, and pse files.
beta29
* angle & dihedral visualization
* fixed control-panel click bug
* reorganized the Tcl/Tk modules to better enable customized
user interfaces
* fixed long-standing transparency shadow bug
* improved 64-bit cleanliness
* fixed stereo rendering for selections and edit indicators
* added support for embedded data on stdin
* support for 4-letter residue codes in PDB files
* new selection operator for proteins "pepseq/ps." with 1-letter
peptide codes
* streamlined launch time in various ways
* updated lighting model to increase WYSIWG characteristics
between OpenGL and ray-tracing
* fixed major bug with symmetry expansion
* overhaul of the scene subsystem to create some order
* orient command now chooses the least perturbation from the
current view
* "as" command for more efficient changing of representations
* reorganized color menus and added some new colors
* selections now more visible
* ribbon_side_chain_helper
* new scroll wheel capabilities (MvSZ, MovZ)
* used CHUD to optimize the new raytracer code
* ray tracer now supports perspective by default. Unfortunately,
this significantly slows down raytracing...
* single-click actions
* continued elimination of global state information
* texture_fonts for better performance on low-end ATI hardware
* fixed F10 action in external gui
* added colors for each atomic element, plus deuterium
* added 32 new automatic colors
* fixed bugs with import pymol launch approach
* fixed bug with TRJCONV multimodel PDB files
* order command for managing entries in the control panel
* P1M script format with embedded data & extra security
* increased compatibility for variant MOL2 usage
* various performance enhancements, esp. to MOL2 and SDF loads
* fixed quiet setting for align function
* surface optimize subsets setting
* .pov file via save command
* fixed bug with gadgetramp events
* updated presets
* cartoon_side_chain_helper setting
* putty, and associated selections (thanks in part to Cameron Mura)
* selection dots no longer fogged
* new actions in the names list
* fixed rare system crash on certain ATI Radeon hardware when
picking or selecting atoms.
* huge performance boost for large systems/heavily loaded PyMOL
* ray_direct_shade setting
* adjusted povray camera and light settings
* povray export now supports mesh2 -- no more need for MegaPOV.
* performance increase for atom selections
* updated output generated by PyMOL when loading various files...
* rank as the final arbiter of atom sorts (if everything else matches)
* handling of PDB files with mismatched SCALE and CRYST
* special handling for CCP4 maps with missing symmetry blocks
* long-term code changes: elimination of global state from PyMOL and
allow for option of separating PyMOL graphics from Python top level
* support for residue names and identifiers in mol2 files
* dynamic grid for slice module
* rank attribute for atoms ( = rank/row from input file)
* additional safety margins around glReadPixels...
* cmd.get_color_index
* passive motion outside of window kills passive menus...
* faster coulomb_local + menu changes
* fixed bug with object/selection renaming
* fixed bug with sequence viewer segment/chain display & spacing
* slices + associated settings (thanks in part to Filipe Maia)
* fixed bug with symexp for when template atoms are outside the
target cell...
Changes up to 0.97
* install plugin menu item
* fixed sequence viewer bug -- GLU now shown as 'E' not 'D'!
* included Remote PDB loader and APBS plugin
Changes up to 0.96
* more VDW parameters & updated bond info for DNA/RNA
* fixed a colossal memory leak in the champ module.
* aromatic bond display
* mol2 and multi-mol2 reading capability
-- beta 16
* added experimental ability to calculate vacuum electrostatic
potentials
* fixed bugs with map_double, map_new, and color ramping
-- beta 15
* annotation wizard (e.g. for SD files -- experimental)
-- beta 14
* additional support for weird concatenated PDB files such as those
output by MOE
* fixed problem with rendering of discontinuous surfaces
-- beta13
* get_angle, get_distance commands
* fixed pasting to OpenGL window under X11
* fixed "Get View" button in MacPyMOL, now also copying
matrix direct to the clipboard in all versions.
* API load actions now run quietly by default, like other functions.
* pdb_reformat_names_mode = 3 gives IUPAC internally with PDB I/O
pdb_reformat_names_mode = 1 (PDB) & 2 (Amber/IUPAC), now
correctly handle 3-letter names correctly for various hydrogens
* fixed occasional "snail track" bug with surfaces
* seq_view_label_mode setting
* wizard prompt now avoids overlap with sequence browser
* double-click-to-center now uses current state coordinates only
* tentative PQR file reading support
* fixed major bug in map ranging code
-- beta 11
* updated color handling for sequence viewer
* new settings: auto_classify_atoms, selection operators:
polymer, solvent, organic, inorganic
* transparency_mode now subordinates backface_cull and
two_sided_lighting in OpenGL and the ray tracer
* seq_view settings
* sequence viewer is now "in"
* mouse_selection_mode setting
* got real busy on the sequence viewer
* created plugin menu
* further menu consolidation to make room for plugin menus
* fixed "use display lists" menu option
* fixed "stereo swap" and Display->Stereo->Swap Sides menu item.
* ray_transparency contrast back to default of 1.0 default (WYSIWYG).
* fixed a few minor bugs with picked atom selection indices
* menus now stay without mouse being held down (what an improvement!)
* fixed a couple of scroll-bar glitches
-- beta 5
* movie.sweep convenience function for simple back & forth movies
* PyMOL can now write multi-model PDB files (save with state=-2)
* atoms with the name resi, but not the same resn are now considered
to be in different residues (fixed byres bugs).
* ray_transparency_contrast setting, default=2.0, improves contrast
of the transparent surface relative to objects inside.
* set_name command
* fixed save_session behavior to avoid accidental overwrites after
opening a new session (mac & tcl GUIs)
* active_selections setting & changes to the selection paradigm
in preparation for the sequence alignment tool : )
* fixed minor bug in fitting code (faster convergence?)
* added surface_trim_factor and surface_trim_factor settings
in order to hard-to-tesselate peaks on the surface
* taught PyMOL bond valences for G,A,T,C,U residues
* greatly improved quality of the surface rendering algorithm for
surface_quality = 2, 3, 4, etc.
* fixed over-zealous movie security warning: no longer warns if
there weren't any commands defined
* surface_carve_cutoff, surface_carve_selection, surface_carve_state
surface_clear_cutoff, surface_clear_selection, surface_clear_state
settings, to enable sub-atomic culling of surfaces...
* stick_transparency opengl rendering fixed
* passive stereo GLUT support (extra-wide desktop) for Windows
* adjusted reflectivity of interior color to better match exterior
* minor fixes to depth_cue and ray_trace_fog control and input
* now uses 3X less memory when rendering surface_type=2 (meshes)
* fixed bug in surface generation code, & treaked surface modes
* various changes to surfacing algorithm greatly increase robustness
when surfacing crevaces -- can now handle small(er) solvent probes.
* surface_solvent, triangle_max_passes settings
* mesh_type, mesh_lighting, dot_lighting settings
* reinitialize now stops rocking
* fixed logging of button presses in MacPyMOL
* added multi-line command paste support to MacPyMOL
* dropped support for "del all" in favor of "dele all"
* StereoPyMOL1280 mode on mac for higher-resolution stereo
* fixed a race condition that was causing OSX-X11-hybrid to crash
when "quit" was typed into the external Tcl/Tk GUI
* added numarray into the osx-x11-hybrid version for BSI use
* increased the session file version # to account for the new colors
* added a "perceptive space" rainbow & switched this over to default
* fixed ray-tracing bug with infinite loops on transparent surfaces
* fixed logging for new molecular editing features
* pdb1 extension support
* fixed unintentional default OpenGL bug reporting
Changes up to 0.95
* changed cartoon_tube_radius to a more aestically pleasing 0.5A
* ribbon now shows nuc. acid backbone too
* added presets for ligand sites, including our new surface reps.
* fixed bug with scene coloring
* adjusted clipping plane bounds to eliminate shingle effect from
excessive depth ranges.
* mesh_normals setting for surface_type 2
* launch option: -P # enables multisampling on Macs & Windows.
NOTE: on Windows, only "-P 4" works, and only tested on ATI cards.
* session_migration setting
* fixed problem with view matrix exploding on some proteins -- now
allow front clipping plane to go negative with suitable safeguards
* fixed bug with raytracing transparent surfaces using intermediate
backgrounds
* surface code now tolerates superimposed identical atoms more gracefully
* dot_normals setting
* bound_to selection operator now complements neighbor...
* fixed stereo opengl bug & improved opengl debugging capability
* extended editor to support multiple picked atoms in different objects
* fixed major bug in mesh representation
* updated setup.py
* surface_type setting: 0 = solid, 1 = dot, 2 = mesh
* fixed off-center behavior of center command with respect to clipping planes
* fixed label representation memory (on/off only) in scenes
* added support for explicit RESN and RESI specification in selection
macros: RESN`RESI/, RESN`/, `RESI/ vs semi-ambiguous RESN/ or RESI/
* fixed nonbonded detection problem with discrete objects
* fixed serious bug with "state" selection operator and discrete objects.
* improved ray-tracer's ability to handle multiple transparent objects
* "Virtual trackball" toggle now in menu
* added variety of new functionality to pop-up menus
* fixed segmentation fault bug in atom picking (only seen on Mac?)
* much-improved support for raytracing of large structures;
various bugs fixed
* fixed memory management issues on OS-X
* endianness check for .phi files
* test cases updated to reflect new molecular editing behavior
* default arguments (and behavior) changed for dist and bond commands
* pdb_standard_order now default on
* textual button mode indicator, more button changes...
* ray-tracing of RGBA pixmap text now supported FINALLY.
* pk1-4 now have different visual representations...
* fixed hydrogen adding for amides/ureas
* changed PyMOL file output to comply with PDB standards with respect
to placement of the atomic symbol in the atom name field
* overhauled C0700 test case
* pdb_reformat_names_mode setting (for PDB and AMBER conversions)
* appearance wizard
* toggle command
* virtual_trackball setting
* many new menus to support viewer pop-up actions
* pop-up menus in viewer
* cascading pop-up menus
* made spheres pickable
* made cartoons pickable using pickable CGOs : )))
* finally fixed visible operator to behave as expected
* massive overhaul of user interface appearance
* double-clicking actions
* scrolling actions
* new selection operations
byfragment (byfrag, bf.)
bysegment (byseg, bs.)
bymolecule (bymol, bm. )
* added setting internal_gui_control_size so that users can decide how
many lines of buttons they'd like to see.
* revamped GUI, made buttons look like buttons
* added ray_blend_colors setting to provide a simple way of
reducing oversaturation
* fixed major bug in GRD map reading code & added normalization option
* fix potential crasher bug with stick_balls
* SHFT-F# key support, for set_key, scenes, and views
* cmd.extend now adds help for function (updated test case).
* various changes here and there for Mac OS/MacPyMOL compatibility
* extensive work on the metaphorics P5M file format/Fedora stuff
* massive tinkering with sequence visualization ideas, but nothing
to show for it yet : (
Changes up to 0.94
* no_smooth flag to make it easier to combine cartoon and atomistic
representations
* fixed yet another ray-tracing alpha channel bug with mixed
transparent/opaque objects.
* new setting overlay_lines, overlay becomes a boolean toggle
* specular now acts as a binary veto over spec_reflect and
specular_intensity holds the OpenGL spec. intensity
* ray_trace_fog deprecated (subservient to depth_cue)
* Mac OSX native port completed as "MacPyMOL" Incentive Product
- support for additional file extensions
- GUI remembers last open location
- QuickTime movie export
- Cut and Paste image export
* fixed bug in SelectorCountStates
* default roving_polar_cutoff increased to 3.31 in order to show
marginal/potential hydrogen bonds
* adjusted Z origin movement strategy again, and fixed problem
with undesirable apparent z-translation in orthoscopic mode
* pdb_insertions_go_first setting for handling structures where
inserted residues come before, not after, the numbered residue.
* Added support for older, binary-header O/DSN6 maps, including
swap_dsn6_bytes setting (for unlikely scenarios).
Changes up to 0.93
* Restored ability to read version 0.86 sessions with CGOs.
* Fixed bug with O/BRIX map reading code.
* Changed roving_origin behavior with respect to Z axis.
* P5M file handling for browser helper (for Metaphorics, mostly).
Changes up to 0.92
* added RPM support for "import pymol", fixed several bugs running
PyMOL in this fashion, with or without a GUI.
* fixed alpha channel handling for transparent surfaces in ray tracer
with a non-opaque background, with fog, and with both together.
* added defer_updates setting to provide a gentler alternative
to suspend_updates and which can allow a threading applications
to process a series of cmd.do commands without unnecessary
updates
* fixed a couple annoying bugs in mpng command movie rendering
COMPATIBILITY WARNING: mpng no longer automatically adds an
underscore to the movie filename prefix!
* fixed Calcium detection for "CA+" residues
* cmd.do updated to take multiple commands as a string or list of strings
* increase the word length limit in the selector so that long lists
of residues can be supplied.
* new test case for PDB file IO (C0700odd), do command (c1100do)
* WARNING: cmd.select API argument reordering may break existing code
* adjusted behavior of "set" and "unset" to enable more concise
changes of global settings: "set setting-name" "unset setting-name"
WARNING: API changes to "set" and "unset" argument ordering may
break existing code
* pdb_retain_ids setting
* Deuterium atom support, including DOD
* split_states command
* much faster loading of multi-model PDB trajectories
* get_symmetry & set_symmetry commands for molecule objects
* mutagenesis wizard now preserves cartoon display
* fixed alpha channel handling for transparency OpenGL objects
* get_pdbstr API function
* movie_loop setting
* changed behavior of movie controls in the internal gui so that
the movie commands will run more consistently
Changes up to 0.91
* fixed separate cartoon rendering bugs with helices and strands
* added a fast C-based secondary structure assignment algorithm
acessible through the "dss" command
* cartoon_transparency setting
* fixed "cake bug" in ray tracter for cylinders directly aligned
with incident light ray
* taught sculpting engine to treat unbound waters as donor/acceptors */
* stick_ball, and stick_ball_ratio can be used to quikly generate ball
and stick representation without messing around with spheres...
* NEW: display of valences for sticks (controlled by valence setting).
stick_fixed_radius determines whether they are inscribed or not
* pdb HETATMS are no longer sorted by default
* Torsional term added to sculpting engine...not perfect, but it's
probably better than allowing for eclipsed conformations all over the place.
* Optimized sculpting engine using CHUD/Shark -- now much faster.
* Fixed CENT action with multi-state object
* Adjusting Z scaling for mouse to provide finer control
* Better WYSIWYG: If they are set to zero, then the settings:
mesh_radius, line_radius, ribbon_radius, dot_radius, dash_radius
are now subordinated to:
mesh_width, line_width, ribbon_width, dot_width, and dash_width.
However, if changed to a non-zero value, they will take priority.
This behavior provides better WYSIWYG for raytracing, but will break
some scripts.
* fixed map_new ...,gaussian,... command and added options
gaussian_resolution
gaussian_b_adjust
gaussion_b_floor
default "map_new name" now creates a 2 A electron density map using
current atomic Q and B for direct comparison with experimental density
* updated ray tracer to support edge oversampling -- Antialiased rendering
is now SIGNIFICANTLY FASTER for simple scenes and is now enabled by
default. Full scene supersampling is no longer necessary in most cases, but
if activated, it will provide even better image quality.
Antialias setting can now have values of 0-4:
antialias 0: no antialiasing
antialias 1: edge-oversampling (as per ray_oversample_cutoff)
antialias 2: 2X full scene supersample plus edge oversampling
antialias 3: 3X full scene supersample plus edge oversampling
antialias 4: 4X full scene supersample plus edge oversampling
* restored CRLFs on Windows versions of PyMOL so that
python code can be viewed/edited with Notepad, etc.
* added quiet parameter to alter and iterate commands
* fixed raytracing bug with one residue cylindrical helices
* fixed raytrace border bug
* fixed isosurface session save bug
* added high-quality transparency support to "isosurface"s
* greatly improved quality of surface output by "isosurface"
* added support for Biosym/InsightII ASCII grid files
* support for BRIX map format
* fixed endianness problems with map files
* pdb_use_ter_records: setting disables TER records in PDB output
* improved default hydrogen atom ordering in PyMOL
* fixed bug in hydrogen name conversion -- this may break some scripts : (
* pdb_hetatm_sort: disable and sort to see cartoons for
non-canonical PDB residues
* retain_order: enable and sort to preserve input atom ordering.
NOTE: may prevent some residue-based operations from working
* Fixed processor mis-detection bug on Linux with certain P4s
* PyMOL now building warning-free on VC++ warning level 3
(catches sloppy precision handling and conversion)
Changes up to 0.90
* Fixed IRIX and Linux minimal dependency Python launch context.
* Added CPU detection for IRIX and Linux
* Fixed ribbon color and rendering bugs
* Put in checking for overly long selection words to avoid seg.fault.
* Incorporated Tom Lee's density wizard changes.
* TCL_LIBRARY not overridden by PyMOLWin.exe if it exists
* Various NULL POINTER Errors removed
* Memory debugger disabled by default to support multithreading
* initial support for display lists -- not yet enabled by default
* partial surface calculations are now much much faster
* intensive optimization of ray tracer, incl. inlining
* updated online documentation & tests for the following commands
feedback
extend
alias
(python_help)
get_view
view
scene
Changes up to 0.89
* Fixed major session save and restore bugs
* Updated ExtensionClass for improved Python 2.2 and 2.3 compatibility.
* Improving hash-table construction performance in ray tracer.
* Added CPU and RAM autodetection for OSX Mac
* Added multithreading support to raytracter (set max_threads,n)
* Fixed various bugs on Mac including TAB-crash in external GUI
Changes up to 0.88
* fixed numerous bugs
* validated current test suite and source code build against:
Linux, Win32, IRIX, Mac OSX, and OSF
* new cartoon settings controls & tweaks
* reinit command
* Moved demo code into a Wizard
* Fixed an ancient memory trasher bug in Isosurface, thank God for
test cases!
* Wizards, as Python objects, are now saved with sessions! : )
* Wizard stack
* scene annotation
* tearoff menus
* pdb_standard_order setting
* calibrated CGO line widths to produce consistent results
* added color support to scenes
* updated demonstrations
* fixed suspend_updates setting
* added map support to roving facility
* enabled distance objects to persist through redefinition
* fixed various geometry and rendering glitches with cartoon ribbons
* ray_interior_texture, ray_interior_shadows
* get command allows settings to be queried from the command line
* added angle and shift options onto "ray" command for stereo figures
(this automatically adjusts the light position)
* added walleye stereo support
* can now pick and rotate bonds with a single click-and-drag
* overhauled map_new, isomesh, isosurface. added new test case
* scene commands
* "rep" and "color" selectors
* $TUT environment variable points at $PYMOL_PATH/data/tut
* fixed quadro stereo support with sessions...
* cartoon_highlight_color now provides Molscript-like cartoon coloring
which provides for an alternate color inside of helices and on the
sides of beta strands.
* ray_interior_color can enable solid interiors in the ray tracer!
* fixed truncation error in view matrix composition.
* Roving details. Many new settings.
* Roving origin.
* Added ribbon_color, cartoon_color settings.
* overhauled color menu, improved performance of rainbow and color by chain
* added color space menu to Tcl/Tk Ext. GUI
* added color space clamping to better enable CMYK color matching as well
as improve rendering quality
* added z-ordered transparency (nice!) with menu controls
* finished session save support for color ramps and gadgets
* debugged and tested Quadro hardware support
* Added mouse_scale and mouse_limit settings. Reduced "jumping" of
virtual trackball.
* Worked to resolve threading issues with multiple demanding
clients...
* Finally fixed sporadic "GC object already in linked list" bug on
mac.
* huge cleanup of code to eliminate compiler warnings on VisualC
and Windows & GCC32
- at least one bug fixed
- more careful handling of precision
* updated acknowledgements in the README file
* Tcl/Tk external gui now also follows -X, -Y, -W, and -V window parameters
"-V value" controls the size of the external Tcl/Tk GUI (if present)
* INCOMPABILITY WARNING: "-X" option for launching rpcserver changed to "-R"
in order to make room for "-X" and "-Y" options for positioning GLUT window.
* command line options: "-X value" and "-Y value" along with
"-W value" and "-H value" can now be used to determine the position and size
of the GLUT OpenGL window.
* fixed session restore bug with editing mode
* worked around Solaris compiler limitations.
Changes up to 0.87
* improved launch speed by hard-coding sphere definitions
* improved surfacing algorithm performance by about 12%
* dot_solvent, mesh_solvent, and sphere_solvent settings
* simplified and improved mesh quality, added mesh_quality setting
* fixed session restore crash with objects having multiple states.
* improved specular reflection on transparent surfaces
(ray_transparency_specular=0) will restore original behavior.
* stick_transparency setting
* ray_transparency_shadows setting
Changes up to 0.86
* added command history feature to external gui
* added security warning and mechanism for session files
containing movie commands.
* session saves completed -- boy that was a lot of work!
* reorganized tcltk menu structure
* minimal texture options exposed in menu (slow!)
* better support for Python in PyMOL command scripts ('\' works for multiline blocks).
* freeze state and thaw state added to mol_action menu
* added xmlrpc01.py demonstration program to examples/devel
* ribbon_trace can be used to view CA-only models
* ray_shadows setting can disable shadows in raytracer (slight performance inc.)
* added secondary structure to chemical python model data structure
* fixed slab mode of clip statement
* update 'expand' and 'attach' can now take an atom name as well as an element symbol
Changes up to 0.85
* mmatrix now stores the complete view instead of just the rotation matrix
* unset command
* fixed handling of calcium atoms
* added automatic scroll bar for when you get too many objects/selections
* added handle to manually adjust internal gui width
* updated OpenGL depth_cue setting to more closely match those of raytracer
* "center" command
* PyMOL no longer wraps output lines by default "set wrap_output=78"
to get previous behavior
* relocated binary shared objects from modules into the modules/pymol
tree
* data files now separated from the modules directory into a parallel data
tree in $PYMOL_PATH
* added ability to build PyMOL using Python distutils
* revamped the PyMOL launch process. It should now be possible
to launch pymol simply with an "import pymol" statement, provided
that the modules are in the Python search path
* fixed get_dihedral to use current state index
* revamped smooth command and added documentation
* added some nasty code to handle quotes and apostrophes in atom selections
so that nucleic acids and sugars with apostrophes will work right while
you can also still explicitly use apostrophes or quotes
* added "safe" option to zoom command in order to provide a mode
which will guarantee against clipping
Changes up to 0.84
* updated SPHEROID command for use with trajectories
* Can now read AMBER topology, coordinate, trajectory, and restart files
* PyMOL now transforms 4-character atom names appropriately by default.
Thus, 3HG2 in PDB file becomes an atom named "HG23"
If you don't like this, "set pdb_literal_names=1".
* PyMOL now preserves stereo field on MOL-files to better enable
shuttling of 2D structures through PyMOL...
* fixed bug with dumping of dot surfaces...
* fixed bug reading element identifer from PDB files
* fixed bug with alternate conformations
Changes up to 0.83
* various tweaks to the semistatic minimal dependencies build...
* fixed bug in startup file reading
* first inclusion of cex file support
Changes up to 0.82
* WARNING: default behavior of isomesh and isosurf changed! By default, they
will now always load the mesh into state 1. If you need the previous behavior,
then set the state argument to zero.
Changes up to 0.82
* modified "cmd.system" to take an argument for asynchronous execution
* flag command no longer indicates atoms by default -- set "auto_indicate_flags"
* cross-eye side-by-side stereo support
* fixed bug in valency display code
* fixed major bug in "create"
* raytracing bugfix for bond with zero length
* complicated workaround for mouse atom selections with Radeon 8500 and WinXP
PyMOL may now be somewhat resistant to broken OpenGL ReadPixels implementations
* improved water handling for "non-canonical" situations (i.e. real life muck)
* moved configuration files to a subdirectory "setup"
* mpng now can support a range in order to enable coarse-grained parallelism
(distributed movie rendering)
* "within" operator added to selection language
* visible selection operator no longer hits disabled objects
* origin, zoom, and orient now take "state" as optional argument with special
handling for 0 (all states) and -1 (current state)
* eigensolve output now considered blather
* important bug-fix on rotate and translate commands
* "present" operator in selection language and tests for "state" operator
Changes up to 0.81
* fixed bug in bg_color API function
Changes up to 0.80
* major bug fix to "carve" in isomesh
* "command ?" now gives a list of arguments
* fix spurious bugs reading files under unix
* added support for alternate residue id codes in secondary structure records
* cylinders have become sausages, and...
...we now have flat-capped cylinders (0203)!
* fixed duplicate logging with Run command
* create a simple vector-based font (0203)
* 3D text in CGOs
* linear constraints in molecular sculpting engine
* acetylene buidling block
Changes up to 0.79
* internal character set
* solid isosurface rendering algorithm: "isosurface" command
* parser updated to handle selections like "resi 10 and (name c,n,o) and chain A"
which lack surrounding parentheses, but which have delimiters inside
* parser updated to handle (alt A+'') and similar constructs (previously DOA).
* fixed ribbon & cartoon display when N-terminal atom is the CA
* changes to support MacOSX port (0203)
* ALIGN command
Changes up to 0.78
* revamped Makefiles for better portability and dependency handling.
Changes up to 0.77
* sculpting information now cached between changes to molecular structures
* optimized sculpting for small regions of large proteins
* FINALLY, modes for two-button mice
Changes up to 0.76
* VDW radii adjusted. Use "set legacy_vdw_radii=1" on start-up for old values.
* Sculpt functionality. Who needs gummy bears when you can have gummy molecules?
* Numerous back-end bugs addressed.
* transparent spheres
Changes up to 0.75
* enabled automatic completion in the tcl/tk command window
* altered settings for dot representation
* created stop_on_exception and raise_exceptions settings.
WARNING: stop_on_exceptions is NOT set by default (this is so that
log files which contain errors will continue to function).
* gutted cmd.py, and created a bunch of sub-modules which contain the
code previously in cmd.py.
* superposition bugs fixed with multi-state objects (fit and intra_fit)
* cmd.set_key can now be used to redefine ALT and CTRL keys in addition
to function keys and other specials.
Changes up to 0.74
* very minor bug/doc fixes
Changes up to 0.73
* improved fragment and residue building capabilities
Changes up to 0.72
* fixed some logging issues with dragging pieces
* now possible to create empty objects, fixed mutagenesis wizard in response
* all readable files are shown by default in the Tkinter file dialogs.
Changes up to 0.71
* seg. fault bug fix in ObjectMoleculeConnect
* two_sided_lighting option to help Jun at CCI project
* fixed triangle rendering on lower-end graphics cards
* revamped PyMOL's internal bond handling data structure. I've done my best
to insure that this doesn't break anything, but it is a major change
and has the potential to create huge problems...
* empirically synchronized PyMOL and PovRay's perspective transformations...
Changes up to 0.70
* fixed symmetry bug with multiple state objects
* symmetry now carried through create operations
Changes up to 0.69
* PNG reading
* First generation PovRay interface...whoopee!
* Tweaked util.ray_shadow and added some new settings
Changes up to 0.68
* HETATMS are no longer surfaced by default. Clear the "ignore" flag or
set surface_mode=1 to restore their surfaces.
* flag command now takes name arguments and can now reset, set, and clear
flags
* established some standard flag names and conventions
* Upgrading OpenGL Pop-up menus, since it looks like the internal GUI
will be widely used despite its original limited role (oh well...)
* Fixed element name guessing
* added ray_improve_shadows setting for improving shadows by
projecting outward from triangles.
* Fixed a major bug in the raytracer which was causing bogus shadows to appear
on surfaces
* Fixed a huge bug in surfacing of subsets. That function was totally whacked,
but no one had noticed or complained!!! Revised the function of the
surface_proximity setting
* by default, PDB HETATMs are no longer surfaced -- if you want them to be, then
please "set surface_mode=1"
* "transparent" renamed to "transparency"
* switched to a three-pass OpenGL rendering model in order to properly display opaque,
transparent, and antialiased objects
* OpenGL transparency now works too! See "help transparency".
* nonbonded spheres are now pickable
* surface_color and mesh_color override the default atom colors
for uniform surface coloring -- added support for color names
into the settings module
* flags 24 and 25 now work with surfaces and meshes. See "help flags"
Changes up to 0.67
* Transparency support in rendering has been added, but it doesn't yet
exist yet in opengl mode.
Changes up to 0.66
* numerous bug-fixes
Changes up to 0.65
* numerous bug-fixes
Changes up to 0.64
* stage 1 API enhancements -- consistent return conventions adopted
(many will not follow conventions until stage 2 though)
* more surface_qualities: -3 to 2, surface_quality=1 is now even better
* click-and-drag a box to select atoms
* PyMOL now builds w/o warning in VC++6
* LOG FILE CAPABILITIES: logging of both PyMOL scripts (.pml) and
PyMOL program files (.pym). The "resume" command allows propagation
of session-like behavior. This makes a huge difference in PyMOL
user-friendliness.
* autocompletion bug fixed, generalized autocompletion added
* mesh_radius cut in half, for better default density figures
* carve command on isomesh
* pymolrc support
* isosurface speed boosted by about 33% using C-oriented field object.
* fixed bugs with internal_gui options
* internal_feedback setting
* simple cartoon ribbon for DNA/RNA
* selection language now supports '+' as substitute for commas, and '-'
as substitute for ':' in residue identifiers (more user friendly)
* selections no longer require parentheses unless they have commas or
semicolons
* unit cell display for molecules and meshes
Changes up to 0.63
* Density wizard
* isomesh meshes now use mesh_width instead of line_width
* fixed rendering background color bug on BigEndian machines
* fixed fatal bug with symexp
* first attempt at support for CCP4's binary maps -- it works with my
test maps, but will it work with others?
Changes up to 0.62
* tuned up the util.ray_shadows function, added a "matte" mode for better
definition of ribbons...
* integrated workaround for an apparent GCC serial optimizer bug on x86.
Changes up to 0.61
* bg_color command for easier background adjustments...
* depth cue menu item and ray_trace_fog linked
* cartoon_discrete_colors hack for coloring secondary structure properly
* (ss ...) primitive in selector for selecting helices, etc.
* many cartoon ribbons improvements -- flat fancy sheets now VERY nice.
Changes up to 0.60
* third generation fancy helices complete -- revamped interpolation code.
* ray now takes dimensions for rendering larger than screen
* unpick and hide selection buttons
* various new menu items...
* preparing for GLUT independence on selected platforms...
* choice of lighting modes for ray-tracing (improved shadows, contrast)
* settings renames (gl_ambient, dot_radius)
* settings changes (hash_max) and ray-tracing feedback
* "help faster"
* fixed minor glitch with fancy helices
Changes up to 0.59
* fixed valency display bug...
Changes up to 0.58
* second generation cartoon ribbons are in -- Goodbye Molscript!
* fixed half-decade old logic bug in MemoryDebug (blush!).
* "alter" and "alter_state" given a 50% performance boost
* added a coarse hydrogen-bond assessment feature (internal)
* added phi/psi measuring capability
* fixed selector memory leak on errors
* added first-generation cartoon riboons
(higher-quality to come later)
* added more specific settings for mesh and ribbon width, etc.
* add more settings-change side-effects
* fix bugs with saving pkl files for state > 1
* added a concise notation into the selection language
model/segment/chain/residue/name
*/name
residue/
residue/name
chain/ /
chain/residue/
chain/ /name
chain/residue/name
segment/ /
segment/ / /name
segment/ /residue
segment/ /residue/name
segment/chain/ /
segment/chain/ /name
segment/chain/residue/
segment/chain/residue/name
/model
/model/ / / /name
/model/ / /residue
/model/ / /residue/name
/model/ /chain
/model/ /chain/ /name
/model/ /chain/residue
/model/ /chain/residue/name
/model/segment
/model/segment/ / /name
/model/segment/ /residue
/model/segment/ /residue/name
/model/segment/chain
/model/segment/chain/ /name
/model/segment/chain/residue
Changes up to 0.57
* mutagenesis module
* finished the set_dihedral command
Changes up to 0.56
* fixed a serious parser bug with the mdo command
Changes up to 0.55
* fixed and enhanced util.mroll, util.mrock
Changes up to 0.54
* ID and elem fields in alter, iterate
Changes up to 0.53
* change order of drawing within object to improve the
interaction with antialiased lines.
* thread safety improvements (fixed bug involving serial
manipulations of the same object)
* bug fix with stick representations
* fixed minor goof with cmd.dist retval in 0.52
Changes up to 0.52
* many improvements to online help
* fixed discrete objects created from PDB files
* prevented deadlock condition with re-entrant API locks
* fixed couple of logic-bugs in threading
* changed output format from mouse click to a valid selection
* finished retrofit of the parser.
* formal charge now read from MOL files -- need to consider full
implementation of MOL file reading capability (incl stereo)
Changes up to 0.51
* Tcl/Tk GUI now contains a save molecule option
* Tcl/Tk GUI help improved
* performance/quality options in the display menu
* sphere quality setting
* depth_cue toggle setting (important for low-end PC hardware)
* specular reflections
* fog setting
Changes up to 0.50
* can now "pick" C-alphas in the ribbon
* can now "pick" atoms and bonds in the stick representation
* improved clipping plane control command "clip"
* pym file extension support, for PyMOL-specific .py files
* better windows NT compatibility
* settings browser
* view, view_get, view_set commands
* Parser now contains a general shortcut handling module to
further help in reducing typing
* Slight tweak of the virtual trackball
* Saving and restoring matrix, center, origin, zoom, clip
* Internal program output no longer includes python's stderr
* New thread management solution -- simple and stable -- plus
it even works (I've even got test cases to prove it)!
* Fixed memory-trashing bug in the selector
* Found a workaround for KDE/Gnome/Tkinter/Tcl/Tk problems under linux
* Created Save option on the Tkinter menu, and added additional file types.
* TAB-activated filename and command completion (CTRL-D too)
* Former TAB functionality moved to ESC (text/graphics toggle)
* Auto-detection of stereo capability
* Created a robust Feedback control mechanism
* Eliminated hangs and crashes upon program termination with Win2k/NT.
* "Distances" wizard (internal gui;replace with external version later)
* "Pair Fit" wizard (internal gui; replace with external version later)
* Mesh objects now have states, and new meshes are appended.
* Modified raytrace antialiasing transfer function to improve sharpness.
* Created alias and extend commands so that python scripts can extend the
pymol language on the fly.
* Additional test cases.
* Parser improved with a new argument parsing subsystem which has a
better mapping to standard Python arguments. This has significant
potential to break existing code if there are any bugs, but I am
shooting for 100% backwards compatibility.
Changes up to 0.49
* Improved editor, hydrogens now auto-deleted.
* Visible selections.
* Default mouse actions changed for editing and atom selecting.
* Callback objects (for use with PyOpenGL) now have extents.
* get_state and get_frame API functions
Important Changes 0.42-0.48
Too numerous to list them all...
* Addition of support for PyOpenGL-based GL calls with callback objects
* Wizard feature, for grabbing mouse input -- still needs flushing out.
====================================
See below for changes implemented in specific releases
------------------------------------------------------
PyMOL Architecture and Development Status
OpenGL Core ( _cmd.so/.a/.dll/.lib and modules/pymol )
Currently, deployed only in glutPyMOL (a.k.a. standard "PyMOL").
Syndicated Application Ideas...
glutPyMOL (PyMOL in GLUT window with an external GUI)
Deployed -- the current standard, in use globally.
ePyMOL Lite (EasyPyMOL, free version, win32 only)
Planned for mid 2003
ePyMOL Pro (EasyPyMOL, professional version, win32 only)
Planned for mid 2003
axPyMOL (PyMOL inside of an ActiveX Control)
Working prototype partially completed
wxPyMOL (PyMOL inside of a wxPython Widget)
Working prototype near completion.
MacPyMOL (fully Aqua-based native version of PyMOL)
Planned for late 2003
tkPyMOL (PyMOL inside of a Tcl/Tk TOGL widget)
Planned for late 2003.
qtPyMOL (PyMOL inside of a Qt/PyQt Widget)
Planned late 2003 or 2004.
perlMOL (PyMOL wrapped into a Perl module)
Under consideration.
jPyMOL (PyMOL wrapped inside a Java class as an external C module)
Under consideration.
External GUIs for glutPyMOL
Default PyMOL Tcl/Tk GUI
Deployed -- the current standard, in use globally.
Tcl/Tk GUI for GAMESS-UK (CCP1)
In development, under direction of Paul Sherwood.
Stanford Java Teaching GUI (iRoom, etc.)
In development by team of Stanford students.
UT Southwestern Bioinformatics Project
In development, under direction of Rama Ragnanathan.
PHENIX
In development, under direction of Paul Adams.
OpenGL Core
Changes planned
* Add support for HKEY_USERS entries into PyMOLWin
* IO routine for a generic volume data object (to supplement bricks and maps)
* Real Edit Menu in Tk (with normal cut/paste, etc)
* support anisotropic B-factor renditions (ellipsoids)
* support MOL2 and multi-MOL2 file formats
* add an interactive tutorial
* finish abstracting GLUT away from PyMOL
* Solid clipped spheres and surfaces (how?)
* Completely black/opaque underside of surfaces
* Finish 3D label support
* Enable specific xyz positioning of labels (w/ mouse)
* Cutting of images to the MS Window's clipboard for easy
pasting into Powerpoint
* clean up return values in the API and qualify exceptions.
Include the source module name in messages, and provide proper
feedback conditionals
* add thorough test suite
* matrix-based object translation and rotation
* place feedback conditionals around all output.
* create alter_state_atom command (combine PAlter and
PAlterState into one function)
Changes Under Consideration
NOTE: Some of these are mutually exclusive, and many of them will
never be carried out -- they are listed here so that we don't
forget about them and so that you can see ways in which core PyMOL
might evolve.
* Allow multiple, parallel transformation matrices for each object
* Create a Rasmol translator in Python
* Support mapping of additional dimensions into volume data sets
* "Fragment" wizard, tied into the fragments subsystem.
* CTRL and CTRL/SHIFT numbers should add aromatic and aliphatic
ring systems in the builder
* support reading and writing of XPLOR PSF/PDB files to enable
direct use of NAMD with PyMOL. Note that this will require
integration of basic force-field structures into PyMOL...not a
lightweight task, but something I think should be done in a
general way to facilitate use of PyMOL as a molecular modeling
tool...
* support direct reading of DCD, and/or Gromacs trajectory files
* fold MMTK into the main PyMOL distribution, and merge the two
programs in a way which allow the user to "see" into MMTK's
internal data structures using PyMOL while calculations are
being performed.
* create a VRML->CGO converter so that VRML can be displayed
inside of PyMOL
* create a VRML writer to facilitate export of PyMOL geometries.
* support CML via some "swallowable" python XML parser
* make PyMOL a compliant extension for the Chimera environment
* statistics module, applicable to maps
Main Goals for 1.0 Release
* MOL2 and CML file formats
* Generalized volumetric rendering: (1) mesh (2) solid (3) colormaps
* Integrated tutorial/demonstration system
* Fully consistent API (defined and correct return values)
Current Bugs to Fix
* superposition system fails with degenerate sets (planer systems,
etc). sometimes it just fails period
|