File: ChangeLog

package info (click to toggle)
ghemical 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,784 kB
  • sloc: cpp: 13,442; sh: 9,881; makefile: 184
file content (6263 lines) | stat: -rw-r--r-- 251,565 bytes parent folder | download | duplicates (4)
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
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
2011-09-14 17:14  thassine

	* Makefile.in, autogen.sh, configure, docs/Makefile.in,
	  docs/user-docs/Makefile.in, docs/user-docs/images/Makefile.in,
	  examples/Makefile.in, examples/TSS/E2-reaction/Makefile.in,
	  examples/TSS/Makefile.in, examples/TSS/SN2-reaction/Makefile.in,
	  examples/TSS/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/TSS/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/TSS/cycloaddition_Diels-Alder/Makefile.in,
	  examples/TSS/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/TSS/tautomeric_shift_keto_enol/Makefile.in, po/LINGUAS,
	  po/Makefile.in, po/Makefile.in.in, po/de.po, src/Makefile.in,
	  src/ghemicalconfig.h.in, src/res_gtk/Makefile.in: add german
	  translation, update configuration files.

2009-11-02 15:02  thassine

	* po/LINGUAS, po/fi.po, po/ru.po: russian translation added.

2009-09-16 08:40  thassine

	* configure, configure.ac, po/Makefile.in: this is version 2.99.2

2009-09-16 08:36  thassine

	* src/eldview_wcl.cpp, src/pangofont_wcl.cpp: an infinite loop in
	  pangofont.cpp string width calculation.

2009-09-11 12:51  thassine

	* configure, configure.ac, po/Makefile.in, src/Makefile.am,
	  src/Makefile.in: version 2.99.1 released due to a missing file.

2009-09-04 12:41  thassine

	* ChangeLog: ChangeLog update

2009-09-04 12:28  thassine

	* configure, configure.ac, po/Makefile.in: release the version
	  2.99.1

2009-08-10 11:22  thassine

	* po/LINGUAS, po/pt_BR.po: translation pt_BR added (thanks to
	  Ulisses)

2009-05-20 10:51  thassine

	* configure, configure.ac, src/fileio.cpp, src/gtk_app.cpp,
	  src/project.cpp: change atom and other indexes so that they
	  appear starting from 1 rather than from 0 to the user.

2009-04-30 11:03  thassine

	* po/mk.po, po/sq.po: minor cleanups.

2009-04-21 11:34  thassine

	* po/LINGUAS, po/POTFILES, po/POTFILES.in, po/fi.po, po/mk.po,
	  po/sq.po, src/gtk_app.cpp, src/gtk_eldview_wnd.cpp,
	  src/gtk_gpcview_wnd.cpp, src/gtk_main.cpp,
	  src/gtk_oglview_wnd.cpp, src/gtk_p1dview_wnd.cpp,
	  src/gtk_p2dview_wnd.cpp, src/gtk_project.cpp,
	  src/gtk_rcpview_wnd.cpp, src/gtk_simple_dialogs.cpp,
	  src/ogl_ribbon.cpp, src/ogl_ribbon.h, src/project.cpp,
	  src/res_gtk/gtk_file_export_dialog.glade,
	  src/res_gtk/gtk_file_import_dialog.glade,
	  src/res_gtk/gtk_geomopt_dialog.glade,
	  src/res_gtk/gtk_moldyn_dialog.glade,
	  src/res_gtk/gtk_progress_dialog.glade,
	  src/res_gtk/gtk_setup_dialog.glade,
	  src/res_gtk/gtk_stereo_dialog.glade,
	  src/res_gtk/gtk_trajview_dialog.glade: added translations mk + po
	  ; translation fi updated.

2009-04-01 05:51  thassine

	* src/ac_stor_wcl.cpp, src/filetrans.cpp, src/gtk_app.cpp,
	  src/gtk_glade_dialog.cpp, src/gtk_project.cpp,
	  src/gtk_setup_dialog.cpp, src/gtk_simple_dialogs.cpp,
	  src/gtk_wnd.cpp, src/ogl_ribbon.cpp, src/p1dview_wcl.cpp,
	  src/p2dview_wcl.cpp, src/pangofont_wcl.cpp, src/project.cpp:
	  added assertion_failed() method.

2008-12-09 10:44  thassine

	* po/Makefile.in, po/fi.po, src/ac_stor_wcl.cpp,
	  src/custom_app.cpp, src/eldview_wcl.cpp, src/fileio.cpp,
	  src/filetrans.cpp, src/gtk_app.cpp, src/gtk_eldview_wnd.cpp,
	  src/gtk_file_export_dialog.cpp, src/gtk_file_import_dialog.cpp,
	  src/gtk_geomopt_dialog.cpp, src/gtk_glade_dialog.cpp,
	  src/gtk_gpcview_wnd.cpp, src/gtk_main.cpp,
	  src/gtk_moldyn_dialog.cpp, src/gtk_oglview_wnd.cpp,
	  src/gtk_p1dview_wnd.cpp, src/gtk_p2dview_wnd.cpp,
	  src/gtk_progress_dialog.cpp, src/gtk_project.cpp,
	  src/gtk_rcpview_wnd.cpp, src/gtk_setup_dialog.cpp,
	  src/gtk_simple_dialogs.cpp, src/gtk_stereo_dialog.cpp,
	  src/gtk_trajview_dialog.cpp, src/gtk_wnd.cpp, src/ogl_plane.cpp,
	  src/ogl_ribbon.cpp, src/ogl_surface.cpp, src/oglview_wcl.cpp,
	  src/p1dview_wcl.cpp, src/p2dview_wcl.cpp, src/pangofont_wcl.cpp,
	  src/project.cpp, src/rcpview_wcl.cpp: translations added ; Vlado
	  Peshov.

2008-11-26 11:48  thassine

	* src/gtk_app.cpp: a comment added.

2008-11-26 11:18  thassine

	* Makefile.am, Makefile.in, autogen.sh, configure, configure.ac,
	  docs/Makefile.in, docs/user-docs/Makefile.in,
	  docs/user-docs/images/Makefile.in, examples/Makefile.in,
	  examples/TSS/E2-reaction/Makefile.in, examples/TSS/Makefile.in,
	  examples/TSS/SN2-reaction/Makefile.in,
	  examples/TSS/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/TSS/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/TSS/cycloaddition_Diels-Alder/Makefile.in,
	  examples/TSS/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/TSS/tautomeric_shift_keto_enol/Makefile.in, po,
	  po/LINGUAS, po/Makefile.in, po/Makefile.in.in, po/POTFILES,
	  po/POTFILES.in, po/fi.po, po/stamp-it, src/Makefile.am,
	  src/Makefile.in, src/ghemicalconfig.h.in, src/gtk_app.cpp,
	  src/gtk_main.cpp, src/local_i18n.h, src/pangofont_wcl.cpp,
	  src/res_gtk/Makefile.in, src/res_gtk/gtk_geomopt_dialog.glade:
	  started adding gettext()-translations ; Vlado Peshov + others.

2008-10-22 09:42  thassine

	* INSTALL, Makefile.in, configure, configure.ac, docs/Makefile.in,
	  docs/user-docs/Makefile.in, docs/user-docs/images/Makefile.in,
	  examples/Makefile.in, examples/TSS/E2-reaction/Makefile.in,
	  examples/TSS/Makefile.in, examples/TSS/SN2-reaction/Makefile.in,
	  examples/TSS/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/TSS/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/TSS/cycloaddition_Diels-Alder/Makefile.in,
	  examples/TSS/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/TSS/tautomeric_shift_keto_enol/Makefile.in,
	  src/Makefile.in, src/ghemicalconfig.h.in, src/gtk_app.cpp,
	  src/project.cpp, src/res_gtk/Makefile.in: configuration update
	  (Daniel Leidert) + minor fixes

2008-08-06 12:26  thassine

	* Makefile.am, Makefile.in, configure, configure.ac,
	  docs/Makefile.in, docs/user-docs/Makefile.in,
	  docs/user-docs/images/Makefile.in, examples/Makefile.in,
	  examples/TSS/E2-reaction/Makefile.in, examples/TSS/Makefile.in,
	  examples/TSS/SN2-reaction/Makefile.in,
	  examples/TSS/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/TSS/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/TSS/cycloaddition_Diels-Alder/Makefile.in,
	  examples/TSS/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/TSS/tautomeric_shift_keto_enol/Makefile.in,
	  src/Makefile.in, src/ghemicalconfig.h.in, src/pangofont_wcl.cpp,
	  src/res_gtk/Makefile.in: pangofont_wcl.cpp fix ; autogen.sh added
	  to EXTRA_DIST ; configure-scripts update.

2008-08-01 06:43  thassine

	* src/gtk_main.cpp, src/pangofont_wcl.cpp: added win32 relocation
	  code + patches for more reliable compilation.

2008-07-31 10:34  thassine

	* configure, configure.ac: version number changed to 2.98

2008-07-31 08:38  thassine

	* src/pangofont_wcl.cpp, src/pangofont_wcl.h: ooops ; here are the
	  new pango-files

2008-07-31 08:37  thassine

	* INSTALL, configure, configure.ac, src/Makefile.am,
	  src/Makefile.in, src/ac_stor_wcl.cpp, src/ac_stor_wcl.h,
	  src/eldview_wcl.cpp, src/eldview_wcl.h, src/ghemicalconfig.h.in,
	  src/gpcview_wcl.cpp, src/gpcview_wcl.h, src/gtk_main.cpp,
	  src/gtk_wnd.cpp, src/oglview_wcl.cpp, src/oglview_wcl.h,
	  src/p1dview_wcl.cpp, src/p2dview_wcl.cpp, src/project.cpp: added
	  OpenGL text rendering using gtkglext/pango ; removed dependencies
	  to glut library.

2008-07-31 06:02  thassine

	* Makefile.in, configure, docs/Makefile.in,
	  docs/user-docs/Makefile.in, docs/user-docs/images/Makefile.in,
	  examples/Makefile.in, examples/TSS/E2-reaction/Makefile.in,
	  examples/TSS/Makefile.in, examples/TSS/SN2-reaction/Makefile.in,
	  examples/TSS/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/TSS/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/TSS/cycloaddition_Diels-Alder/Makefile.in,
	  examples/TSS/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/TSS/tautomeric_shift_keto_enol/Makefile.in,
	  src/Makefile.in, src/res_gtk/Makefile.in: added Makefile.in files
	  for clarity

2008-07-31 05:55  thassine

	* configure.ac, src/fileio.cpp, src/filetrans.cpp, src/filetrans.h,
	  src/ghemicalconfig.h.in, src/gtk_app.cpp, src/gtk_app.h,
	  src/gtk_main.cpp, src/gtk_oglview_wnd.cpp, src/gtk_project.cpp,
	  src/gtk_project.h, src/gtk_setup_dialog.cpp,
	  src/gtk_simple_dialogs.cpp, src/gtk_wnd.cpp, src/ogl_plane.cpp,
	  src/ogl_surface.h, src/oglview_wcl.cpp, src/project.cpp,
	  src/project.h, src/res_w32, src/w32_app.cpp, src/w32_app.h,
	  src/w32_bondtype_dialog.cpp, src/w32_bondtype_dialog.h,
	  src/w32_command_dialog.cpp, src/w32_command_dialog.h,
	  src/w32_eldview_wnd.cpp, src/w32_eldview_wnd.h,
	  src/w32_element_dialog.cpp, src/w32_element_dialog.h,
	  src/w32_gpcview_wnd.cpp, src/w32_gpcview_wnd.h, src/w32_main.cpp,
	  src/w32_main.h, src/w32_oglview_wnd.cpp, src/w32_oglview_wnd.h,
	  src/w32_p1dview_wnd.cpp, src/w32_p1dview_wnd.h,
	  src/w32_p2dview_wnd.cpp, src/w32_p2dview_wnd.h,
	  src/w32_progress_dialog.cpp, src/w32_progress_dialog.h,
	  src/w32_project.cpp, src/w32_project.h, src/w32_rcpview_wnd.cpp,
	  src/w32_rcpview_wnd.h, src/w32_simple_dialogs.cpp,
	  src/w32_simple_dialogs.h, src/w32_tb_button.cpp,
	  src/w32_tb_button.h, src/w32_wnd.cpp, src/w32_wnd.h: changes
	  required for porting to win32 ; the win32-API-target and files
	  w32_something.cpp removed.

2008-07-18 08:52  thassine

	* src/fileio.cpp, src/gtk_app.cpp, src/gtk_main.cpp,
	  src/gtk_moldyn_dialog.cpp, src/gtk_moldyn_dialog.h,
	  src/gtk_setup_dialog.cpp, src/ogl_ribbon.cpp, src/project.cpp,
	  src/res_gtk/gtk_moldyn_dialog.glade: MD changes in libghemical +
	  other minor stuff.

2008-03-14 12:12  thassine

	* INSTALL: update INSTALL

2008-02-26 11:37  thassine

	* src/fileio.cpp, src/gtk_app.cpp, src/gtk_moldyn_dialog.cpp,
	  src/gtk_simple_dialogs.cpp, src/ogl_plane.cpp,
	  src/ogl_surface.cpp, src/p1dview_wcl.cpp, src/p2dview_wcl.cpp,
	  src/project.cpp, src/w32_app.cpp, src/w32_command_dialog.cpp,
	  src/w32_progress_dialog.cpp, src/w32_tb_button.cpp: should now
	  compile with g++ v4.3 (not tested though).

2008-02-25 09:47  thassine

	* src/gtk_setup_dialog.cpp: GUI : spin multiplicity is not yet used
	  so block access to it.

2008-01-09 12:06  thassine

	* src/ac_stor_wcl.cpp, src/ac_stor_wcl.h, src/appdefine.h,
	  src/color.h, src/custom_app.cpp, src/custom_app.h,
	  src/custom_camera.cpp, src/custom_camera.h,
	  src/custom_lights.cpp, src/custom_lights.h, src/eldview_wcl.cpp,
	  src/eldview_wcl.h, src/fileio.cpp, src/filetrans.cpp,
	  src/filetrans.h, src/gpcview_wcl.cpp, src/gpcview_wcl.h,
	  src/gtk_app.cpp, src/gtk_app.h, src/gtk_eldview_wnd.cpp,
	  src/gtk_eldview_wnd.h, src/gtk_file_export_dialog.cpp,
	  src/gtk_file_export_dialog.h, src/gtk_file_import_dialog.cpp,
	  src/gtk_file_import_dialog.h, src/gtk_geomopt_dialog.cpp,
	  src/gtk_geomopt_dialog.h, src/gtk_glade_dialog.cpp,
	  src/gtk_glade_dialog.h, src/gtk_gpcview_wnd.cpp,
	  src/gtk_gpcview_wnd.h, src/gtk_main.cpp, src/gtk_main.h,
	  src/gtk_moldyn_dialog.cpp, src/gtk_moldyn_dialog.h,
	  src/gtk_oglview_wnd.cpp, src/gtk_oglview_wnd.h,
	  src/gtk_p1dview_wnd.cpp, src/gtk_p1dview_wnd.h,
	  src/gtk_p2dview_wnd.cpp, src/gtk_p2dview_wnd.h,
	  src/gtk_progress_dialog.cpp, src/gtk_progress_dialog.h,
	  src/gtk_project.cpp, src/gtk_project.h, src/gtk_rcpview_wnd.cpp,
	  src/gtk_rcpview_wnd.h, src/gtk_setup_dialog.cpp,
	  src/gtk_setup_dialog.h, src/gtk_simple_dialogs.cpp,
	  src/gtk_simple_dialogs.h, src/gtk_stereo_dialog.cpp,
	  src/gtk_stereo_dialog.h, src/gtk_trajview_dialog.cpp,
	  src/gtk_trajview_dialog.h, src/gtk_wnd.cpp, src/gtk_wnd.h,
	  src/ogl_plane.cpp, src/ogl_plane.h, src/ogl_ribbon.cpp,
	  src/ogl_ribbon.h, src/ogl_surface.cpp, src/ogl_surface.h,
	  src/oglview_wcl.cpp, src/oglview_wcl.h, src/p1dview_wcl.cpp,
	  src/p1dview_wcl.h, src/p2dview_wcl.cpp, src/p2dview_wcl.h,
	  src/project.cpp, src/project.h, src/rcpview_wcl.cpp,
	  src/rcpview_wcl.h, src/simple_test/container.cpp,
	  src/simple_test/container.h, src/spline.cpp, src/spline.h,
	  src/w32_app.cpp, src/w32_app.h, src/w32_bondtype_dialog.cpp,
	  src/w32_bondtype_dialog.h, src/w32_command_dialog.cpp,
	  src/w32_command_dialog.h, src/w32_eldview_wnd.cpp,
	  src/w32_eldview_wnd.h, src/w32_element_dialog.cpp,
	  src/w32_element_dialog.h, src/w32_gpcview_wnd.cpp,
	  src/w32_gpcview_wnd.h, src/w32_main.cpp, src/w32_main.h,
	  src/w32_oglview_wnd.cpp, src/w32_oglview_wnd.h,
	  src/w32_p1dview_wnd.cpp, src/w32_p1dview_wnd.h,
	  src/w32_p2dview_wnd.cpp, src/w32_p2dview_wnd.h,
	  src/w32_progress_dialog.cpp, src/w32_progress_dialog.h,
	  src/w32_project.cpp, src/w32_project.h, src/w32_rcpview_wnd.cpp,
	  src/w32_rcpview_wnd.h, src/w32_simple_dialogs.cpp,
	  src/w32_simple_dialogs.h, src/w32_tb_button.cpp,
	  src/w32_tb_button.h, src/w32_wnd.cpp, src/w32_wnd.h: copyright
	  notice update.

2008-01-09 11:37  thassine

	* autogen.sh, src/project.cpp, src/w32_app.cpp, src/w32_app.h,
	  src/w32_project.cpp, src/w32_simple_dialogs.cpp,
	  src/w32_simple_dialogs.h, src/w32_wnd.cpp: NEWLINE is removed
	  from libghemical ; also autogen.sh update.

2008-01-02 09:25  thassine

	* src/res_gtk/Makefile.am: make dist now includes also the xpm
	  files

2007-09-21 10:36  thassine

	* autogen.sh, configure.ac, src/custom_app.cpp, src/custom_app.h,
	  src/gtk_app.cpp, src/gtk_app.h, src/gtk_oglview_wnd.h,
	  src/gtk_progress_dialog.cpp, src/gtk_project.cpp,
	  src/gtk_project.h, src/gtk_simple_dialogs.h, src/oglview_wcl.h,
	  src/project.cpp, src/project.h, src/res_w32/angle.bmp,
	  src/res_w32/bond.bmp, src/res_w32/bondtype.bmp,
	  src/res_w32/chain.bmp, src/res_w32/clipping.bmp,
	  src/res_w32/dihedral.bmp, src/res_w32/distance.bmp,
	  src/res_w32/draw.bmp, src/res_w32/element.bmp,
	  src/res_w32/erase.bmp, src/res_w32/invert.bmp,
	  src/res_w32/measure.bmp, src/res_w32/molecule.bmp,
	  src/res_w32/orbit_xy.bmp, src/res_w32/orbit_z.bmp,
	  src/res_w32/residue.bmp, src/res_w32/resource.h,
	  src/res_w32/resource.rc, src/res_w32/rotate_xy.bmp,
	  src/res_w32/rotate_z.bmp, src/res_w32/select.bmp,
	  src/res_w32/setup.bmp, src/res_w32/transl_xy.bmp,
	  src/res_w32/transl_z.bmp, src/res_w32/zoom.bmp, src/w32_app.cpp,
	  src/w32_app.h, src/w32_bondtype_dialog.cpp,
	  src/w32_bondtype_dialog.h, src/w32_command_dialog.cpp,
	  src/w32_command_dialog.h, src/w32_eldview_wnd.cpp,
	  src/w32_eldview_wnd.h, src/w32_element_dialog.cpp,
	  src/w32_element_dialog.h, src/w32_gpcview_wnd.cpp,
	  src/w32_gpcview_wnd.h, src/w32_main.cpp, src/w32_oglview_wnd.cpp,
	  src/w32_oglview_wnd.h, src/w32_p1dview_wnd.cpp,
	  src/w32_p1dview_wnd.h, src/w32_p2dview_wnd.cpp,
	  src/w32_p2dview_wnd.h, src/w32_progress_dialog.cpp,
	  src/w32_progress_dialog.h, src/w32_project.cpp,
	  src/w32_project.h, src/w32_rcpview_wnd.cpp,
	  src/w32_rcpview_wnd.h, src/w32_simple_dialogs.cpp,
	  src/w32_simple_dialogs.h, src/w32_tb_button.cpp,
	  src/w32_tb_button.h, src/w32_wnd.cpp, src/w32_wnd.h: commit
	  20070921

2007-05-23 10:03  thassine

	* src/Makefile.am, src/custom_app.h, src/gtk_dialog.cpp,
	  src/gtk_dialog.h, src/gtk_oglview_wnd.cpp, src/gtk_oglview_wnd.h,
	  src/gtk_project.cpp, src/gtk_project.h,
	  src/gtk_simple_dialogs.cpp, src/gtk_simple_dialogs.h,
	  src/gtk_stereo_dialog.cpp, src/gtk_stereo_dialog.h,
	  src/gtk_trajview_dialog.cpp, src/oglview_wcl.h,
	  src/res_gtk/Makefile.am, src/res_gtk/gtk_stereo_dialog.glade,
	  src/res_gtk/gtk_stereo_dialog.gladep, src/res_w32/resource.h,
	  src/res_w32/resource.rc, src/w32_app.cpp, src/w32_dialog.cpp,
	  src/w32_dialog.h, src/w32_main.cpp, src/w32_oglview_wnd.cpp,
	  src/w32_oglview_wnd.h, src/w32_project.cpp, src/w32_project.h,
	  src/w32_simple_dialogs.cpp, src/w32_simple_dialogs.h,
	  src/w32_wnd.cpp: new stuff added to the win32 version ; the menus
	  should work better now.

2007-05-02 11:50  thassine

	* src/gtk_main.cpp, src/w32_app.cpp: the glutInit() call was
	  missing.

2007-03-13 09:30  thassine

	* src/project.cpp: SortGroups() has changed in libghemical ; sync.

2007-01-25 10:13  thassine

	* src/w32_dialog.cpp, src/w32_dialog.h: forgot to add w32
	  dialogs...

2007-01-19 07:40  thassine

	* src/ac_stor_wcl.cpp, src/ac_stor_wcl.h: improved the way how
	  structures are stored in plots.

2007-01-16 09:08  thassine

	* src/project.cpp: changes at lib side.

2007-01-15 10:27  thassine

	* src/project.cpp: changed the SetTorsionConstraint() method
	  parameters.

2007-01-15 07:56  thassine

	* src/gtk_dialog.cpp, src/project.cpp, src/res_w32/resource.h,
	  src/res_w32/resource.rc, src/w32_app.cpp, src/w32_app.h,
	  src/w32_wnd.cpp: changes for the win32 version.

2006-12-21 10:52  thassine

	* configure.ac, src/Makefile.am, src/gtk_app.cpp, src/gtk_app.h,
	  src/gtk_eldview_wnd.cpp, src/gtk_gpcview_wnd.cpp,
	  src/gtk_oglview_wnd.cpp, src/gtk_oglview_wnd.h,
	  src/gtk_p1dview_wnd.cpp, src/gtk_p2dview_wnd.cpp,
	  src/gtk_project.cpp, src/gtk_project.h, src/gtk_rcpview_wnd.cpp,
	  src/gtk_wnd.cpp, src/oglview_wcl.cpp, src/project.cpp,
	  src/project.h, src/res_w32, src/res_w32/resource.h,
	  src/res_w32/resource.rc, src/w32_app.cpp, src/w32_app.h,
	  src/w32_main.cpp, src/w32_main.h, src/w32_oglview_wnd.cpp,
	  src/w32_oglview_wnd.h, src/w32_project.cpp, src/w32_project.h,
	  src/w32_wnd.cpp, src/w32_wnd.h: added a win32 target.

2006-11-15 11:41  thassine

	* autogen.sh, configure.ac, src/custom_lights.cpp,
	  src/ghemicalconfig.h.in: configuration fixes.

2006-11-15 08:47  thassine

	* src/gtk_app.cpp, src/gtk_eldview_wnd.cpp,
	  src/gtk_gpcview_wnd.cpp, src/gtk_p1dview_wnd.cpp,
	  src/gtk_p2dview_wnd.cpp, src/gtk_rcpview_wnd.cpp,
	  src/gtk_wnd.cpp: show the correct view names + some bugfixes.

2006-11-14 13:40  thassine

	* src/eldview_wcl.cpp, src/gpcview_wcl.cpp, src/gtk_app.cpp,
	  src/gtk_eldview_wnd.cpp, src/gtk_eldview_wnd.h,
	  src/gtk_gpcview_wnd.cpp, src/gtk_gpcview_wnd.h,
	  src/gtk_p1dview_wnd.cpp, src/gtk_p1dview_wnd.h,
	  src/gtk_p2dview_wnd.cpp, src/gtk_p2dview_wnd.h,
	  src/gtk_project.cpp, src/gtk_rcpview_wnd.cpp,
	  src/gtk_rcpview_wnd.h, src/p1dview_wcl.cpp, src/p2dview_wcl.cpp,
	  src/project.cpp: added new view management features.

2006-11-08 13:00  thassine

	* examples/TSS/E2-reaction/READ_ME.txt,
	  examples/TSS/E2-reaction/products.gpr,
	  examples/TSS/E2-reaction/reactants.gpr,
	  examples/TSS/SN2-reaction/READ_ME.txt,
	  examples/TSS/SN2-reaction/products.gpr,
	  examples/TSS/SN2-reaction/reactants.gpr,
	  examples/TSS/carbocation_rearrangement_hydride_shift/READ_ME.txt,
	  examples/TSS/carbocation_rearrangement_methide_shift/READ_ME.txt,
	  examples/TSS/cycloaddition_Diels-Alder/READ_ME.txt,
	  examples/TSS/cycloaddition_Diels-Alder/products.gpr,
	  examples/TSS/cycloaddition_Diels-Alder/reactants.gpr,
	  examples/TSS/sigmatropic_rearrangement_Cope/READ_ME.txt,
	  examples/TSS/sigmatropic_rearrangement_Cope/products.gpr,
	  examples/TSS/sigmatropic_rearrangement_Cope/reactants.gpr,
	  examples/TSS/tautomeric_shift_keto_enol/READ_ME.txt: TSS examples
	  updated.

2006-11-08 12:36  thassine

	* AUTHORS, configure.ac, src/ghemicalconfig.h.in, src/gtk_app.cpp,
	  src/gtk_main.cpp: some fixes added (thanks Jean).

2006-10-31 13:49  thassine

	* src/gtk_app.cpp, src/gtk_app.h: the separate views + objects
	  pages are combined into a single views/objects page at the
	  project view.

2006-10-31 12:26  thassine

	* src/color.h, src/custom_app.cpp, src/custom_app.h,
	  src/custom_camera.h, src/custom_lights.h, src/gtk_app.cpp,
	  src/gtk_app.h, src/gtk_oglview_wnd.h, src/gtk_project.cpp,
	  src/gtk_project.h, src/gtk_trajview_dialog.cpp, src/gtk_wnd.cpp,
	  src/gtk_wnd.h, src/ogl_plane.h, src/ogl_surface.h,
	  src/oglview_wcl.cpp, src/project.cpp, src/project.h: cleanups and
	  missing stuff added.

2006-10-31 10:59  thassine

	* src/fileio.cpp, src/gtk_file_export_dialog.cpp,
	  src/gtk_file_import_dialog.cpp, src/gtk_project.cpp,
	  src/oglview_wcl.cpp, src/project.cpp, src/project.h: cleanups
	  added ; a minor file format tweak added.

2006-10-31 09:05  thassine

	* src/gtk_app.cpp, src/gtk_app.h, src/gtk_dialog.cpp,
	  src/gtk_project.cpp, src/gtk_project.h, src/gtk_wnd.cpp,
	  src/oglview_wcl.cpp, src/oglview_wcl.h, src/project.cpp,
	  src/project.h: made the detached windows transient for the main
	  window.

2006-10-30 13:52  thassine

	* src/ac_stor_wcl.cpp, src/ac_stor_wcl.h, src/fileio.cpp,
	  src/gtk_oglview_wnd.cpp, src/gtk_project.cpp, src/gtk_project.h,
	  src/p1dview_wcl.cpp, src/p1dview_wcl.h, src/project.cpp,
	  src/rcpview_wcl.cpp, src/rcpview_wcl.h: TSS works now.

2006-10-24 12:45  thassine

	* configure.ac, examples/Makefile, examples/Makefile.in,
	  examples/TSS/Makefile, examples/TSS/Makefile.in, src/Makefile.am,
	  src/ac_stor_wcl.cpp, src/ac_stor_wcl.h, src/filetrans.cpp,
	  src/filetrans.h, src/gtk_oglview_wnd.cpp, src/p1dview_wcl.cpp,
	  src/p1dview_wcl.h, src/p2dview_wcl.cpp, src/p2dview_wcl.h,
	  src/project.cpp, src/project.h, src/res_gtk/Makefile.am,
	  src/res_gtk/ghemical.png: libghemical-features.h ; p1d/p2d
	  changes ; unnecessary files removed.

2006-10-19 12:29  thassine

	* ghemical.desktop, ghemical.spec: .spec and .desktop files
	  updated.

2006-10-11 10:49  thassine

	* src/eldview_wcl.cpp, src/gtk_oglview_wnd.cpp,
	  src/oglview_wcl.cpp, src/p1dview_wcl.cpp, src/p1dview_wcl.h,
	  src/p2dview_wcl.cpp, src/p2dview_wcl.h, src/project.cpp,
	  src/project.h, src/rcpview_wcl.cpp, src/rcpview_wcl.h: started to
	  port 1D/2D plotting views.

2006-10-10 10:24  thassine

	* src/Makefile.am, src/gpcview_wcl.cpp, src/gpcview_wcl.h,
	  src/gtk_gpcview_wnd.cpp, src/gtk_gpcview_wnd.h,
	  src/gtk_p1dview_wnd.cpp, src/gtk_p1dview_wnd.h,
	  src/gtk_p2dview_wnd.cpp, src/gtk_p2dview_wnd.h,
	  src/gtk_project.cpp, src/gtk_project.h, src/gtk_rcpview_wnd.cpp,
	  src/gtk_sscview_wnd.cpp, src/gtk_sscview_wnd.h,
	  src/p1dview_wcl.cpp, src/p2dview_wcl.cpp, src/project.cpp,
	  src/project.h, src/rcpview_wcl.cpp, src/sscview_wcl.cpp,
	  src/sscview_wcl.h: a filaname change : ssc -> gpc (Generic
	  Protein Chain view in future).

2006-10-10 08:51  thassine

	* src/gtk_oglview_wnd.cpp, src/gtk_wnd.cpp, src/oglview_wcl.cpp:
	  minor tweaks in idle animator and OpenGL code.

2006-10-10 08:10  thassine

	* configure.ac, examples/Makefile, examples/Makefile.in,
	  examples/TSS/Makefile, examples/TSS/Makefile.in,
	  src/custom_app.cpp, src/custom_app.h, src/custom_camera.cpp,
	  src/custom_camera.h, src/custom_lights.cpp, src/custom_lights.h,
	  src/eldview_wcl.cpp, src/eldview_wcl.h, src/gtk_app.cpp,
	  src/gtk_app.h, src/gtk_eldview_wnd.cpp, src/gtk_eldview_wnd.h,
	  src/gtk_oglview_wnd.cpp, src/gtk_oglview_wnd.h,
	  src/gtk_p1dview_wnd.h, src/gtk_p2dview_wnd.h,
	  src/gtk_project.cpp, src/gtk_project.h, src/gtk_rcpview_wnd.h,
	  src/gtk_sscview_wnd.h, src/gtk_wnd.cpp, src/gtk_wnd.h,
	  src/ogl_plane.cpp, src/ogl_ribbon.cpp, src/ogl_ribbon.h,
	  src/ogl_surface.cpp, src/oglview_wcl.cpp, src/oglview_wcl.h,
	  src/p1dview_wcl.cpp, src/p1dview_wcl.h, src/p2dview_wcl.cpp,
	  src/p2dview_wcl.h, src/project.cpp, src/project.h,
	  src/rcpview_wcl.cpp, src/rcpview_wcl.h, src/sscview_wcl.cpp,
	  src/sscview_wcl.h: improvements in proj-view + other views,
	  bugfixes, added an idle timer in OrbitXY tool that rotates the
	  view.

2006-08-29 08:13  thassine

	* ChangeLog: updated the changelog

2006-08-28 12:26  thassine

	* configure.ac, src/project.cpp: changes at lib side

2006-08-07 12:33  thassine

	* ChangeLog: changelog updated using svn2cl v0.7

2006-08-07 12:22  thassine

	* .cvsignore, docs/.cvsignore, docs/user-docs/.cvsignore,
	  docs/user-docs/images/.cvsignore, examples/.cvsignore,
	  examples/TSS/E2-reaction/.cvsignore, examples/TSS/Makefile,
	  examples/TSS/Makefile.in, examples/TSS/SN2-reaction/.cvsignore,
	  examples/TSS/carbocation_rearrangement_hydride_shift/.cvsignore,
	  examples/TSS/carbocation_rearrangement_methide_shift/.cvsignore,
	  examples/TSS/cycloaddition_Diels-Alder/.cvsignore,
	  examples/TSS/sigmatropic_rearrangement_Cope/.cvsignore,
	  examples/TSS/tautomeric_shift_keto_enol/.cvsignore,
	  src/.cvsignore, src/res_gtk/Makefile.in: removed .cvsignore +
	  other old files.

2006-07-31 10:56  thassine

	* src/gtk_app.cpp, src/project.cpp: seqbuild code changed at
	  libghemical

2006-07-24 11:45  thassine

	* configure.ac, examples/TSS/Makefile, src/gtk_app.cpp,
	  src/project.cpp: adapted to changes at lib side.

2006-07-12 09:42  thassine

	* examples/TSS/Makefile, examples/TSS/Makefile.in: added some
	  missing files.

2006-06-06 11:06  thassine

	* configure.ac, examples/Makefile.am, examples/TSS/Makefile.am:
	  subdirs examples/TSS and examples/tss were mixed up ; now only
	  TSS used (like in v2.00)

2006-04-11 09:39  thassine

	* INSTALL, configure.ac, src/gtk_app.cpp: updated INSTALL

2006-04-10 13:24  thassine

	* Makefile.am, configure.ac, docs, docs/.cvsignore,
	  docs/Makefile.am, src/gtk_app.cpp, src/pui_app.cpp,
	  src/pui_app.h, src/pui_main.cpp, src/pui_main.h,
	  src/pui_oglview_wnd.cpp, src/pui_oglview_wnd.h, src/pui_wnd.cpp,
	  src/pui_wnd.h: updated docs, docs viewed now using a browser.

2006-04-10 13:22  thassine

	* docs/user-docs, docs/user-docs/.cvsignore,
	  docs/user-docs/Makefile.am, docs/user-docs/images,
	  docs/user-docs/images/.cvsignore,
	  docs/user-docs/images/2atoms_bond.png,
	  docs/user-docs/images/Makefile.am,
	  docs/user-docs/images/change_bond_select.png,
	  docs/user-docs/images/clipping1.png,
	  docs/user-docs/images/clipping2.png,
	  docs/user-docs/images/draw_button.png,
	  docs/user-docs/images/draw_hydrogens.png,
	  docs/user-docs/images/first_atom.png,
	  docs/user-docs/images/new_mm.png,
	  docs/user-docs/images/periodic_button.png,
	  docs/user-docs/images/periodic_table.png,
	  docs/user-docs/images/setup1.png,
	  docs/user-docs/images/setup2.png,
	  docs/user-docs/images/setup_select.png,
	  docs/user-docs/images/using_mm_01.png,
	  docs/user-docs/images/using_mm_02.png,
	  docs/user-docs/images/using_mm_03.png,
	  docs/user-docs/images/using_mm_04.png,
	  docs/user-docs/images/using_mm_05.png,
	  docs/user-docs/images/using_mm_06.png,
	  docs/user-docs/images/using_mm_07.png,
	  docs/user-docs/images/using_mm_08.png,
	  docs/user-docs/images/using_mm_09.png,
	  docs/user-docs/images/using_mm_10.png,
	  docs/user-docs/images/using_mm_11.png, docs/user-docs/index.html,
	  docs/user-docs/introduction.html, docs/user-docs/mdi_mode.html,
	  docs/user-docs/perspective.html, docs/user-docs/ribbon.html,
	  docs/user-docs/setup_dialog.html, docs/user-docs/using_mm.html,
	  docs/user-docs/visualization.html: updated the docs.

2006-04-05 12:59  thassine

	* src/Makefile.am, src/custom_camera.cpp, src/custom_camera.h,
	  src/custom_lights.cpp, src/custom_lights.h, src/ogl_plane.cpp,
	  src/ogl_plane.h, src/ogl_surface.cpp, src/ogl_surface.h,
	  src/oglview_wcl.cpp, src/project.cpp, src/project.h: many
	  improvements + bugfixes ; the GL selection and zoom tool should
	  work now.

2006-03-28 12:25  thassine

	* configure.ac, examples/Makefile.am, examples/TSS,
	  examples/TSS/E2-reaction, examples/TSS/E2-reaction/.cvsignore,
	  examples/TSS/E2-reaction/Makefile.am,
	  examples/TSS/E2-reaction/products.gpr,
	  examples/TSS/E2-reaction/reactants.gpr,
	  examples/TSS/E2-reaction/ts.gpr, examples/TSS/README,
	  examples/TSS/SN2-reaction, examples/TSS/SN2-reaction/.cvsignore,
	  examples/TSS/SN2-reaction/Makefile.am,
	  examples/TSS/SN2-reaction/products.gpr,
	  examples/TSS/SN2-reaction/reactants.gpr,
	  examples/TSS/SN2-reaction/ts.gpr,
	  examples/TSS/carbocation_rearrangement_hydride_shift,
	  examples/TSS/carbocation_rearrangement_hydride_shift/.cvsignore,
	  examples/TSS/carbocation_rearrangement_hydride_shift/Makefile.am,
	  examples/TSS/carbocation_rearrangement_hydride_shift/products.gpr,
	  examples/TSS/carbocation_rearrangement_hydride_shift/reactants.gpr,
	  examples/TSS/carbocation_rearrangement_hydride_shift/ts.gpr,
	  examples/TSS/carbocation_rearrangement_methide_shift,
	  examples/TSS/carbocation_rearrangement_methide_shift/.cvsignore,
	  examples/TSS/carbocation_rearrangement_methide_shift/Makefile.am,
	  examples/TSS/carbocation_rearrangement_methide_shift/products.gpr,
	  examples/TSS/carbocation_rearrangement_methide_shift/reactants.gpr,
	  examples/TSS/carbocation_rearrangement_methide_shift/ts.gpr,
	  examples/TSS/cycloaddition_Diels-Alder,
	  examples/TSS/cycloaddition_Diels-Alder/.cvsignore,
	  examples/TSS/cycloaddition_Diels-Alder/Makefile.am,
	  examples/TSS/cycloaddition_Diels-Alder/products.gpr,
	  examples/TSS/cycloaddition_Diels-Alder/reactants.gpr,
	  examples/TSS/cycloaddition_Diels-Alder/ts.gpr,
	  examples/TSS/sigmatropic_rearrangement_Cope,
	  examples/TSS/sigmatropic_rearrangement_Cope/.cvsignore,
	  examples/TSS/sigmatropic_rearrangement_Cope/Makefile.am,
	  examples/TSS/sigmatropic_rearrangement_Cope/products.gpr,
	  examples/TSS/sigmatropic_rearrangement_Cope/reactants.gpr,
	  examples/TSS/sigmatropic_rearrangement_Cope/ts.gpr,
	  examples/TSS/tautomeric_shift_keto_enol,
	  examples/TSS/tautomeric_shift_keto_enol/.cvsignore,
	  examples/TSS/tautomeric_shift_keto_enol/Makefile.am,
	  examples/TSS/tautomeric_shift_keto_enol/products.gpr,
	  examples/TSS/tautomeric_shift_keto_enol/reactants.gpr,
	  examples/TSS/tautomeric_shift_keto_enol/ts.gpr: added
	  examples/tss

2006-03-28 12:08  thassine

	* configure.ac, examples/Makefile.am, src/gtk_app.cpp: renamed the
	  examples/transition_state_search to examples/TSS (make dist
	  limits filenames to 99 characters).

2006-03-28 12:01  thassine

	* examples/transition_state_search: removed the
	  transition_state_search directory.

2006-03-28 11:25  thassine

	* ., .cvsignore: removed some unnecessary files.

2006-03-28 10:38  thassine

	* config.guess, config.sub, ltmain.sh: removed some unnecessary
	  files.

2006-03-20 11:22  thassine

	* src/gtk_app.cpp, src/gtk_app.h: added optional long/short toolbar
	  labels.

2006-03-16 06:48  thassine

	* INSTALL, configure.ac: documentation updates.

2006-03-14 14:14  thassine

	* src/gtk_moldyn_dialog.cpp, src/gtk_moldyn_dialog.h,
	  src/res_gtk/gtk_moldyn_dialog.glade: updated the mol.dyn. dialog

2006-03-10 12:23  thassine

	* src/project.cpp: added a new orient-command.

2006-03-08 10:37  thassine

	* ., .cvsignore: cvsignore updated.

2006-03-08 08:58  thassine

	* aclocal.m4, autogen.sh: removed acloca.m4 and updated autogen.sh

2006-03-07 09:11  thassine

	* aclocal.m4, src/gtk_app.cpp, src/gtk_app.h,
	  src/gtk_setup_dialog.cpp, src/res_gtk/gtk_setup_dialog.glade:
	  synchronized with libghemical.

2006-03-03 13:41  thassine

	* aclocal.m4, src/gtk_app.cpp, src/gtk_app.h: ported Donald's
	  frozen atom improvements.

2006-03-03 12:37  thassine

	* ., .cvsignore, Makefile.in, aclocal.m4, autogen.sh, configure,
	  examples, examples/.cvsignore, examples/Makefile.in,
	  examples/transition_state_search,
	  examples/transition_state_search/.cvsignore,
	  examples/transition_state_search/E2-reaction,
	  examples/transition_state_search/E2-reaction/.cvsignore,
	  examples/transition_state_search/E2-reaction/Makefile.in,
	  examples/transition_state_search/Makefile.in,
	  examples/transition_state_search/SN2-reaction,
	  examples/transition_state_search/SN2-reaction/.cvsignore,
	  examples/transition_state_search/SN2-reaction/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/.cvsignore,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/.cvsignore,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/transition_state_search/cycloaddition_Diels-Alder,
	  examples/transition_state_search/cycloaddition_Diels-Alder/.cvsignore,
	  examples/transition_state_search/cycloaddition_Diels-Alder/Makefile.in,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/.cvsignore,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/transition_state_search/tautomeric_shift_keto_enol,
	  examples/transition_state_search/tautomeric_shift_keto_enol/.cvsignore,
	  examples/transition_state_search/tautomeric_shift_keto_enol/Makefile.in,
	  src, src/.cvsignore, src/Makefile.in, src/gtk_moldyn_dialog.cpp,
	  src/gtk_trajview_dialog.cpp, src/project.cpp, src/project.h,
	  src/res_gtk/gtk_moldyn_dialog.glade: many changes at the lib side
	  ; autogen.sh added

2006-03-01 12:31  thassine

	* Makefile.in, aclocal.m4, src/gtk_moldyn_dialog.cpp,
	  src/gtk_moldyn_dialog.h, src/project.cpp,
	  src/res_gtk/gtk_moldyn_dialog.glade: the mol.dyn. code was
	  changed at lib side.

2006-02-27 14:03  thassine

	* src/custom_camera.cpp, src/gtk_app.cpp, src/gtk_glade_dialog.cpp,
	  src/ogl_plane.cpp, src/ogl_ribbon.cpp, src/ogl_surface.cpp,
	  src/project.cpp: the stringstream code was made safer ; avoid
	  c_str() calls in which a reference to buffer is stored (for
	  possbile re-use).

2006-02-24 14:01  thassine

	* src/project.cpp: fixed a bug in box solvation.

2006-02-23 12:29  thassine

	* src/gtk_trajview_dialog.cpp: a trajview dialog bug temporarily
	  fixed

2006-02-23 08:29  thassine

	* bin: remove the bin subdir.

2006-02-21 10:26  thassine

	* Makefile.in, src/fileio.cpp: file i/o cleanups added.

2006-02-21 08:00  thassine

	* aclocal.m4, src/custom_camera.cpp, src/fileio.cpp,
	  src/filetrans.cpp, src/gtk_app.cpp,
	  src/gtk_file_export_dialog.cpp, src/gtk_file_import_dialog.cpp,
	  src/gtk_geomopt_dialog.cpp, src/gtk_glade_dialog.cpp,
	  src/gtk_moldyn_dialog.cpp, src/gtk_progress_dialog.cpp,
	  src/gtk_project.cpp, src/gtk_setup_dialog.cpp,
	  src/gtk_trajview_dialog.cpp, src/ogl_plane.cpp,
	  src/ogl_ribbon.cpp, src/ogl_surface.cpp, src/project.cpp,
	  src/pui_app.cpp: changed strstream into stringstream.

2006-02-17 19:55  hutchisn

	* bin, bin/.cvsignore: Update to remove spurious CVS warnings.

2006-02-17 11:31  thassine

	* Makefile.in, aclocal.m4, configure, configure.ac, ltmain.sh,
	  src/Makefile.am, src/Makefile.in, src/custom_app.cpp,
	  src/custom_app.h, src/custom_camera.cpp, src/custom_camera.h,
	  src/eldview_wcl.cpp, src/eldview_wcl.h, src/gtk_app.cpp,
	  src/gtk_app.h, src/gtk_eldview_wnd.cpp, src/gtk_eldview_wnd.h,
	  src/gtk_file_export_dialog.cpp, src/gtk_file_export_dialog.h,
	  src/gtk_file_import_dialog.cpp, src/gtk_file_import_dialog.h,
	  src/gtk_geomopt_dialog.cpp, src/gtk_geomopt_dialog.h,
	  src/gtk_glade_dialog.cpp, src/gtk_glade_dialog.h,
	  src/gtk_main.cpp, src/gtk_main.h, src/gtk_moldyn_dialog.cpp,
	  src/gtk_moldyn_dialog.h, src/gtk_oglview_wnd.cpp,
	  src/gtk_oglview_wnd.h, src/gtk_p1dview_wnd.cpp,
	  src/gtk_p1dview_wnd.h, src/gtk_p2dview_wnd.cpp,
	  src/gtk_p2dview_wnd.h, src/gtk_progress_dialog.cpp,
	  src/gtk_progress_dialog.h, src/gtk_rcpview_wnd.cpp,
	  src/gtk_rcpview_wnd.h, src/gtk_setup_dialog.cpp,
	  src/gtk_setup_dialog.h, src/gtk_sscview_wnd.cpp,
	  src/gtk_sscview_wnd.h, src/gtk_trajview_dialog.cpp,
	  src/gtk_trajview_dialog.h, src/gtk_wnd.cpp, src/gtk_wnd.h,
	  src/oglview_wcl.cpp, src/oglview_wcl.h, src/p1dview_wcl.cpp,
	  src/p1dview_wcl.h, src/p2dview_wcl.cpp, src/p2dview_wcl.h,
	  src/pui_app.cpp, src/pui_app.h, src/pui_main.cpp, src/pui_main.h,
	  src/pui_oglview_wnd.cpp, src/pui_oglview_wnd.h, src/pui_wnd.cpp,
	  src/pui_wnd.h, src/rcpview_wcl.cpp, src/rcpview_wcl.h,
	  src/res_gtk, src/res_gtk/Makefile.am, src/res_gtk/Makefile.in,
	  src/res_gtk/angle.xpm, src/res_gtk/bond.xpm,
	  src/res_gtk/bondtype.xpm, src/res_gtk/chain.xpm,
	  src/res_gtk/clipping.xpm, src/res_gtk/dihedral.xpm,
	  src/res_gtk/distance.xpm, src/res_gtk/draw.xpm,
	  src/res_gtk/element.xpm, src/res_gtk/erase.xpm,
	  src/res_gtk/gtk_file_export_dialog.glade,
	  src/res_gtk/gtk_file_export_dialog.gladep,
	  src/res_gtk/gtk_file_import_dialog.glade,
	  src/res_gtk/gtk_file_import_dialog.gladep,
	  src/res_gtk/gtk_geomopt_dialog.glade,
	  src/res_gtk/gtk_geomopt_dialog.gladep,
	  src/res_gtk/gtk_moldyn_dialog.glade,
	  src/res_gtk/gtk_moldyn_dialog.gladep,
	  src/res_gtk/gtk_progress_dialog.glade,
	  src/res_gtk/gtk_progress_dialog.gladep,
	  src/res_gtk/gtk_setup_dialog.glade,
	  src/res_gtk/gtk_setup_dialog.gladep,
	  src/res_gtk/gtk_trajview_dialog.glade,
	  src/res_gtk/gtk_trajview_dialog.gladep, src/res_gtk/invert.xpm,
	  src/res_gtk/measure.xpm, src/res_gtk/molecule.xpm,
	  src/res_gtk/orbit_xy.xpm, src/res_gtk/orbit_z.xpm,
	  src/res_gtk/residue.xpm, src/res_gtk/rotate_xy.xpm,
	  src/res_gtk/rotate_z.xpm, src/res_gtk/select.xpm,
	  src/res_gtk/setup.xpm, src/res_gtk/transl_xy.xpm,
	  src/res_gtk/transl_z.xpm, src/res_gtk/zoom.xpm,
	  src/sscview_wcl.cpp, src/sscview_wcl.h: added the new stuff ; now
	  most of the OpenGL-related code is in a separate libarary called
	  liboglappth.

2006-02-16 13:24  thassine

	* Makefile.in, aclocal.m4, configure, configure.ac,
	  examples/Makefile.in,
	  examples/transition_state_search/E2-reaction/Makefile.in,
	  examples/transition_state_search/Makefile.in,
	  examples/transition_state_search/SN2-reaction/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/transition_state_search/cycloaddition_Diels-Alder/Makefile.in,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/transition_state_search/tautomeric_shift_keto_enol/Makefile.in,
	  src/Makefile.am, src/Makefile.in, src/base_app.cpp,
	  src/base_app.h, src/base_wnd.cpp, src/base_wnd.h, src/fileio.cpp,
	  src/ghemicalconfig.h.in, src/gtk_dialog.cpp, src/gtk_dialog.h,
	  src/gtk_project.cpp, src/gtk_project.h, src/ogl_camera.cpp,
	  src/ogl_camera.h, src/ogl_objects.cpp, src/ogl_objects.h,
	  src/ogl_plane.cpp, src/ogl_plane.h, src/ogl_ribbon.cpp,
	  src/ogl_ribbon.h, src/ogl_surface.cpp, src/ogl_surface.h,
	  src/pixmaps, src/project.cpp, src/project.h: removed some old
	  files ; does not compile right now...

2006-01-05 13:07  thassine

	* GNOME_Ghemical.server, configure, configure.ac, src/Makefile.am,
	  src/Makefile.in: removed the bonobo-related files ; there seems
	  to be no sufficient resources for bonobo stuff. :(

2006-01-05 11:08  thassine

	* Makefile.in, configure, configure.ac, examples/Makefile.in,
	  examples/transition_state_search/E2-reaction/Makefile.in,
	  examples/transition_state_search/Makefile.in,
	  examples/transition_state_search/SN2-reaction/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/transition_state_search/cycloaddition_Diels-Alder/Makefile.in,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/transition_state_search/tautomeric_shift_keto_enol/Makefile.in:
	  minor changes.

2006-01-05 11:07  thassine

	* src/Makefile.am, src/Makefile.in, src/base_app.cpp,
	  src/base_app.h, src/base_wnd.cpp, src/base_wnd.h,
	  src/file_export_dialog.cpp, src/file_export_dialog.glade,
	  src/file_export_dialog.gladep, src/file_export_dialog.h,
	  src/file_import_dialog.cpp, src/file_import_dialog.glade,
	  src/file_import_dialog.gladep, src/file_import_dialog.h,
	  src/geomopt_dialog.cpp, src/geomopt_dialog.glade,
	  src/geomopt_dialog.gladep, src/geomopt_dialog.h,
	  src/ghemicalconfig.h.in, src/glade_dialog.cpp,
	  src/glade_dialog.h, src/gtk_app_main.cpp, src/gtk_app_main.h,
	  src/gtk_dialog.cpp, src/gtk_dialog.h, src/gtk_graphics_view.cpp,
	  src/gtk_graphics_view.h, src/gtk_plot_views.cpp,
	  src/gtk_plot_views.h, src/gtk_project.cpp, src/gtk_project.h,
	  src/gtk_project_view.cpp, src/gtk_project_view.h,
	  src/gtk_views.cpp, src/gtk_views.h, src/moldyn_dialog.cpp,
	  src/moldyn_dialog.glade, src/moldyn_dialog.gladep,
	  src/moldyn_dialog.h, src/mtools.cpp, src/mtools.h,
	  src/ogl_camera.cpp, src/ogl_camera.h, src/ogl_objects.cpp,
	  src/ogl_objects.h, src/ogl_plane.cpp, src/ogl_surface.h,
	  src/progress_dialog.cpp, src/progress_dialog.glade,
	  src/progress_dialog.gladep, src/progress_dialog.h,
	  src/project.cpp, src/project.h, src/setup_dialog.cpp,
	  src/setup_dialog.glade, src/setup_dialog.gladep,
	  src/setup_dialog.h, src/trajview_dialog.cpp,
	  src/trajview_dialog.glade, src/trajview_dialog.gladep,
	  src/trajview_dialog.h, src/views.cpp, src/views.h,
	  src/wnd_client.cpp, src/wnd_client.h: removed some obsolete files
	  ; NEW FILES NOT YET ADDED

2005-12-14 13:45  thassine

	* Makefile.in, aclocal.m4, configure, examples,
	  examples/.cvsignore, examples/Makefile.in,
	  examples/transition_state_search,
	  examples/transition_state_search/.cvsignore,
	  examples/transition_state_search/E2-reaction,
	  examples/transition_state_search/E2-reaction/.cvsignore,
	  examples/transition_state_search/E2-reaction/Makefile.in,
	  examples/transition_state_search/Makefile.in,
	  examples/transition_state_search/SN2-reaction,
	  examples/transition_state_search/SN2-reaction/.cvsignore,
	  examples/transition_state_search/SN2-reaction/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/.cvsignore,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/.cvsignore,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/transition_state_search/cycloaddition_Diels-Alder,
	  examples/transition_state_search/cycloaddition_Diels-Alder/.cvsignore,
	  examples/transition_state_search/cycloaddition_Diels-Alder/Makefile.in,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/.cvsignore,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/transition_state_search/tautomeric_shift_keto_enol,
	  examples/transition_state_search/tautomeric_shift_keto_enol/.cvsignore,
	  examples/transition_state_search/tautomeric_shift_keto_enol/Makefile.in,
	  src, src/.cvsignore, src/Makefile.in: some makefile stuff
	  added/updated.

2005-12-14 13:30  thassine

	* Makefile.am, Makefile.in, NEWS, README, aclocal.m4, config.guess,
	  config.sub, configure, configure.ac, depcomp, install-sh,
	  missing, mkinstalldirs: added some missing/new files.

2005-12-14 13:26  thassine

	* src/Makefile.am, src/Makefile.in, src/base_app.cpp,
	  src/base_app.h, src/base_wnd.cpp, src/base_wnd.h,
	  src/file_export_dialog.cpp, src/file_export_dialog.glade,
	  src/file_export_dialog.gladep, src/file_export_dialog.h,
	  src/file_import_dialog.cpp, src/file_import_dialog.glade,
	  src/file_import_dialog.gladep, src/file_import_dialog.h,
	  src/fileio.cpp, src/geomopt_dialog.cpp, src/geomopt_dialog.glade,
	  src/geomopt_dialog.gladep, src/geomopt_dialog.h,
	  src/ghemicalconfig.h.in, src/gtk_app_main.cpp,
	  src/gtk_app_main.h, src/gtk_dialog.cpp, src/gtk_dialog.h,
	  src/gtk_project.cpp, src/gtk_project.h, src/gtk_views.h,
	  src/moldyn_dialog.cpp, src/moldyn_dialog.glade,
	  src/moldyn_dialog.gladep, src/moldyn_dialog.h, src/mtools.h,
	  src/ogl_camera.cpp, src/ogl_camera.h, src/ogl_objects.cpp,
	  src/ogl_objects.h, src/ogl_plane.cpp, src/ogl_plane.h,
	  src/ogl_ribbon.cpp, src/ogl_ribbon.h, src/ogl_surface.cpp,
	  src/ogl_surface.h, src/progress_dialog.cpp,
	  src/progress_dialog.glade, src/progress_dialog.gladep,
	  src/progress_dialog.h, src/project.cpp, src/project.h,
	  src/setup_dialog.cpp, src/setup_dialog.glade,
	  src/setup_dialog.gladep, src/setup_dialog.h,
	  src/trajview_dialog.cpp, src/trajview_dialog.glade,
	  src/trajview_dialog.gladep, src/trajview_dialog.h, src/views.cpp,
	  src/wnd_client.cpp, src/wnd_client.h: added the renamed source
	  files.

2005-12-14 13:17  thassine

	* src/camera.cpp, src/camera.h, src/main.cpp, src/main.h,
	  src/objects.cpp, src/objects.h, src/plane.cpp, src/plane.h,
	  src/ribbon.cpp, src/ribbon.h, src/surface.cpp, src/surface.h:
	  removed some renamed source files

2005-12-14 13:14  thassine

	* src/glade: removed the glade subdir from src

2005-12-14 13:11  thassine

	* docs, docs/user-docs, docs/user-docs/MD.html,
	  docs/user-docs/MD_viewer.html, docs/user-docs/aa_table.html,
	  docs/user-docs/add_hydrogens.html,
	  docs/user-docs/conf_search_tools.html,
	  docs/user-docs/documentation.css,
	  docs/user-docs/energy_vs_torsion.html,
	  docs/user-docs/filetypes.html, docs/user-docs/formula.html,
	  docs/user-docs/geometry_optimization.html, docs/user-docs/images,
	  docs/user-docs/images/2atoms_bond.png,
	  docs/user-docs/images/2atoms_unbonded.png,
	  docs/user-docs/images/aa_builder_ci.png,
	  docs/user-docs/images/aa_builder_menu.png,
	  docs/user-docs/images/aa_builder_note.png,
	  docs/user-docs/images/aa_builder_w_h.png,
	  docs/user-docs/images/aa_builder_wo_h.png,
	  docs/user-docs/images/add_hydrogens.png,
	  docs/user-docs/images/add_hydrogens_select.png,
	  docs/user-docs/images/change_bond_dialog.png,
	  docs/user-docs/images/change_bond_select.png,
	  docs/user-docs/images/ci_plane.png,
	  docs/user-docs/images/cyclohexane1.png,
	  docs/user-docs/images/cyclohexane2.png,
	  docs/user-docs/images/cyclohexane_optimized.png,
	  docs/user-docs/images/cyclohexane_unoptimized.png,
	  docs/user-docs/images/draw_button.png,
	  docs/user-docs/images/draw_hydrogens.png,
	  docs/user-docs/images/energy_vs_torsion1.png,
	  docs/user-docs/images/energy_vs_torsion2.png,
	  docs/user-docs/images/energy_vs_torsion3.png,
	  docs/user-docs/images/energy_vs_torsion4.png,
	  docs/user-docs/images/enlevdiag.png,
	  docs/user-docs/images/esp-plane_mm.png,
	  docs/user-docs/images/esp-plane_qm.png,
	  docs/user-docs/images/esp-plane_select.png,
	  docs/user-docs/images/esp-plane_select_obj.png,
	  docs/user-docs/images/first_atom.png,
	  docs/user-docs/images/formula.png,
	  docs/user-docs/images/formula_select.png,
	  docs/user-docs/images/geometry_op_dialog.png,
	  docs/user-docs/images/geometry_optimization_select.png,
	  docs/user-docs/images/labels_menu.png,
	  docs/user-docs/images/mainmenu.png,
	  docs/user-docs/images/maintools.png,
	  docs/user-docs/images/md_dialog.png,
	  docs/user-docs/images/modal.png,
	  docs/user-docs/images/new_mm.png,
	  docs/user-docs/images/notebook.png,
	  docs/user-docs/images/optimized_ethane.png,
	  docs/user-docs/images/periodic_button.png,
	  docs/user-docs/images/periodic_table.png,
	  docs/user-docs/images/remove_hydrogens.png,
	  docs/user-docs/images/ribbon.png,
	  docs/user-docs/images/sequence_builder.png,
	  docs/user-docs/images/toplevel.png,
	  docs/user-docs/images/traj_dialog.png,
	  docs/user-docs/images/window.png,
	  docs/user-docs/import_types.html, docs/user-docs/index.html,
	  docs/user-docs/introduction.html, docs/user-docs/labels.html,
	  docs/user-docs/mdi_mode.html, docs/user-docs/measure.html,
	  docs/user-docs/perspective.html, docs/user-docs/references.html,
	  docs/user-docs/ribbon.html, docs/user-docs/sequence_builder.html,
	  docs/user-docs/using_mm.html, docs/user-docs/using_qm.html,
	  docs/user-docs/using_sf.html, docs/user-docs/visualization.html:
	  re-added the user-docs directory, in a new docs directory

2005-12-14 13:09  thassine

	* examples, examples/2-chlorobutane.gpr,
	  examples/3-phenylpropanal.gpr, examples/Makefile.am,
	  examples/Makefile.in, examples/PeriodicTable.gpr,
	  examples/acetylsalicylic_acid.gpr, examples/alpha-pinene.gpr,
	  examples/bromobenzene.gpr, examples/camphor.gpr,
	  examples/cinnamaldehyde.gpr, examples/cis-2-pentene.gpr,
	  examples/cyclohexane.gpr, examples/dna_AGTC.gpr,
	  examples/naphtalene.gpr, examples/rna_aguc.gpr,
	  examples/transition_state_search,
	  examples/transition_state_search/E2-reaction,
	  examples/transition_state_search/E2-reaction/Makefile.am,
	  examples/transition_state_search/E2-reaction/Makefile.in,
	  examples/transition_state_search/E2-reaction/products.gpr,
	  examples/transition_state_search/E2-reaction/reactants.gpr,
	  examples/transition_state_search/E2-reaction/ts.gpr,
	  examples/transition_state_search/Makefile.am,
	  examples/transition_state_search/Makefile.in,
	  examples/transition_state_search/SN2-reaction,
	  examples/transition_state_search/SN2-reaction/Makefile.am,
	  examples/transition_state_search/SN2-reaction/Makefile.in,
	  examples/transition_state_search/SN2-reaction/products.gpr,
	  examples/transition_state_search/SN2-reaction/reactants.gpr,
	  examples/transition_state_search/SN2-reaction/ts.gpr,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/Makefile.am,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/products.gpr,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/reactants.gpr,
	  examples/transition_state_search/carbocation_rearrangement_hydride_shift/ts.gpr,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/Makefile.am,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/Makefile.in,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/products.gpr,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/reactants.gpr,
	  examples/transition_state_search/carbocation_rearrangement_methide_shift/ts.gpr,
	  examples/transition_state_search/cycloaddition_Diels-Alder,
	  examples/transition_state_search/cycloaddition_Diels-Alder/Makefile.am,
	  examples/transition_state_search/cycloaddition_Diels-Alder/Makefile.in,
	  examples/transition_state_search/cycloaddition_Diels-Alder/products.gpr,
	  examples/transition_state_search/cycloaddition_Diels-Alder/reactants.gpr,
	  examples/transition_state_search/cycloaddition_Diels-Alder/ts.gpr,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/Makefile.am,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/Makefile.in,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/products.gpr,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/reactants.gpr,
	  examples/transition_state_search/sigmatropic_rearrangement_Cope/ts.gpr,
	  examples/transition_state_search/tautomeric_shift_keto_enol,
	  examples/transition_state_search/tautomeric_shift_keto_enol/Makefile.am,
	  examples/transition_state_search/tautomeric_shift_keto_enol/Makefile.in,
	  examples/transition_state_search/tautomeric_shift_keto_enol/products.gpr,
	  examples/transition_state_search/tautomeric_shift_keto_enol/reactants.gpr,
	  examples/transition_state_search/tautomeric_shift_keto_enol/ts.gpr:
	  re-added the examples directory

2005-12-14 13:01  thassine

	* bin: removed bin from CVS

2005-12-14 12:58  thassine

	* bin/examples: removed examples from CVS

2005-12-14 12:55  thassine

	* bin/examples/transition_state_search: removing tss examples form
	  CVS

2005-12-14 12:49  thassine

	* bin/user-docs: remove the user docs from CVS

2005-12-09 18:35  thassine

	* src/main.cpp: added a missing glutInit() call.

2005-11-29 12:42  thassine

	* src/fileio.cpp, src/gtk_graphics_view.cpp, src/gtk_project.cpp,
	  src/gtk_project.h, src/gtk_project_view.cpp, src/project.cpp,
	  src/project.h: some new selection-based features were added.

2005-11-10 10:03  thassine

	* configure, configure.ac: changed the version number to 1.92 after
	  a release.

2005-11-10 09:04  thassine

	* aclocal.m4, configure, configure.ac: changed the version numbmer
	  to 1.91 ; released.

2005-11-03 23:08  hutchisn

	* ., .cvsignore: Updated to make sure all configure / autoconf
	  temporary files are ignored.

2005-11-03 23:08  hutchisn

	* src, src/.cvsignore, src/filetrans.cpp, src/filetrans.h: Changes
	  to use Open Babel 2.0 for import / export.
	  (May have memory leaks -- haven't checked thoroughly yet.)

2005-11-02 12:29  thassine

	* src/gtk_graphics_view.cpp, src/gtk_plot_views.cpp,
	  src/gtk_plot_views.h, src/gtk_project.cpp, src/gtk_project.h,
	  src/gtk_views.cpp, src/gtk_views.h, src/project.cpp,
	  src/project.h, src/views.cpp, src/views.h: started adding a
	  secondary structure constraints view.

2005-10-13 12:15  thassine

	* src/project.cpp: bugfix : plotting views are closed when a
	  project is closed. earlier this was forgotten, which easily lead
	  to program crashes. still not OK yet since the view windows are
	  not closed ; no way to close them from project view either.
	  leaves orphaned windows behind now but should not crash anymore.

2005-10-11 10:36  thassine

	* src/main.cpp: minor changes in main.cpp ; do not allow the
	  menubar and toolbar to expand when the main window is resized.

2005-10-08 15:14  thassine

	* configure, configure.ac, src/camera.cpp, src/plane.cpp,
	  src/plane.h, src/project.cpp, src/project.h, src/surface.cpp,
	  src/surface.h: OpenGL bugfixes on 64-bit platforms

2005-09-28 00:32  hutchisn

	* TODO: Added request for polysaccharide builder

2005-09-27 09:37  thassine

	* src/objects.h: just some minor changes to adapt for different
	  compilers.

2005-08-24 09:56  thassine

	* src/fileio.cpp, src/glade/setup_dialog.cpp, src/project.cpp: the
	  mm_sf model type was removed from lib.

2005-08-23 11:30  thassine

	* aclocal.m4, configure, src/gtk_project.h: small fixes added
	  (should work with gcc-4 now.)

2005-07-14 11:43  thassine

	* src/main.cpp, src/main.h, src/project.cpp: added the -f and -i
	  command line options for opening a file and importing a file.

2005-07-06 09:04  thassine

	* aclocal.m4, configure, configure.ac, src/appconfig.h.in,
	  src/appdefine.h, src/camera.cpp, src/camera.h, src/color.h,
	  src/filetrans.h, src/ghemicalconfig.h.in,
	  src/glade/file_export_dialog.h, src/glade/file_import_dialog.h,
	  src/glade/geomopt_dialog.h, src/glade/moldyn_dialog.h,
	  src/glade/progress_dialog.h, src/glade/setup_dialog.h,
	  src/glade/trajview_dialog.h, src/glade_dialog.h,
	  src/gtk_dialog.h, src/gtk_graphics_view.cpp,
	  src/gtk_graphics_view.h, src/gtk_plot_views.cpp,
	  src/gtk_plot_views.h, src/gtk_project.h, src/gtk_project_view.h,
	  src/gtk_views.h, src/main.h, src/mtools.h, src/objects.cpp,
	  src/objects.h, src/plane.cpp, src/plane.h, src/project.h,
	  src/ribbon.h, src/spline.h, src/surface.h, src/views.cpp,
	  src/views.h: config headers changed to avoid multiple PACKAGE
	  definitions.

2005-07-05 09:23  thassine

	* INSTALL, aclocal.m4, configure, src/Doxyfile, src/fileio.cpp,
	  src/objects.h: now compiles with g++-3.4

2005-07-01 13:00  thassine

	* CHANGES, ChangeLog, INSTALL, aclocal.m4, configure, configure.ac,
	  src/appdefine.h, src/camera.h, src/color.h, src/filetrans.h,
	  src/glade_dialog.h, src/gtk_dialog.h, src/gtk_graphics_view.cpp,
	  src/gtk_graphics_view.h, src/gtk_plot_views.h, src/gtk_project.h,
	  src/gtk_project_view.h, src/gtk_views.h, src/main.h,
	  src/mtools.h, src/objects.h, src/plane.h, src/project.h,
	  src/ribbon.h, src/spline.h, src/surface.h, src/views.h: changes
	  for a release 1.90 ; there remains an unsolved conflict with
	  OpenBabel since superimpose class is perhaps mixed with a
	  superimpose() function in OB ; but this needs to be studied
	  later.

2005-06-30 13:04  thassine

	* Makefile.in, acconfig.h, acinclude.m4, aclocal.m4, configure,
	  configure.ac, configure.in, src/Makefile.in, src/appconfig.h.in,
	  src/filetrans.cpp, src/filetrans.h, src/glade/Makefile.in,
	  src/glade/file_export_dialog.cpp,
	  src/glade/file_import_dialog.cpp, src/gtk_graphics_view.cpp,
	  src/project.cpp, src/project.h: a lot of changes in configuration
	  scripts.

2005-06-23 13:27  thassine

	* src/glade/setup_dialog.cpp, src/glade/setup_dialog.glade,
	  src/project.cpp, src/ribbon.cpp: the lib/app interface has
	  changed somewhat.

2005-06-20 09:34  thassine

	* src/glade/geomopt_dialog.glade, src/glade/progress_dialog.cpp,
	  src/glade/progress_dialog.h, src/gtk_project.cpp,
	  src/gtk_project.h, src/project.cpp: added progress dialogs for
	  GO, MD, random search.

2005-06-17 08:39  thassine

	* src/gtk_project.cpp, src/project.cpp, src/project.h: bugfix added
	  to GO/MD initialization code.

2005-06-14 10:28  thassine

	* src/glade/file_export_dialog.cpp,
	  src/glade/file_import_dialog.cpp, src/glade/geomopt_dialog.cpp,
	  src/glade/moldyn_dialog.cpp, src/glade/progress_dialog.cpp,
	  src/glade/progress_dialog.glade, src/glade/progress_dialog.h,
	  src/glade/setup_dialog.cpp, src/glade/trajview_dialog.cpp,
	  src/gtk_dialog.cpp, src/gtk_project.cpp, src/gtk_project.h,
	  src/project.cpp, src/project.h: started converting GO and MD into
	  multithreaded versions ; added the files that left out yesterday.

2005-06-13 10:19  thassine

	* src/glade/Makefile.in, src/gtk_project.cpp, src/gtk_project.h,
	  src/project.cpp, src/project.h: the Random Search is now
	  completely multi-threaded.

2005-06-13 07:16  thassine

	* src/Makefile.in, src/gtk_graphics_view.cpp, src/gtk_views.cpp,
	  src/main.cpp, src/project.cpp, src/project.h: added an initial
	  framework for multithreading ; switch off from the beginning of
	  project.h if needed (the ENABLE_THREADS macro).

2005-06-09 15:33  thassine

	* src/gtk_project.cpp, src/gtk_project.h: now the text buffer
	  scrolling works and is smooth but does not update for example
	  when lengthy calculations ; add threading?

2005-06-09 12:47  thassine

	* src/gtk_dialog.cpp, src/gtk_dialog.h, src/gtk_project.cpp,
	  src/gtk_project.h: some missing files added ; the text widget
	  scrolling problems have now a partial solution that works in most
	  cases but flickers and is slow.

2005-06-09 11:16  thassine

	* src/fileio.cpp, src/glade/file_export_dialog.cpp,
	  src/glade/file_export_dialog.glade,
	  src/glade/file_export_dialog.h, src/glade/file_import_dialog.cpp,
	  src/glade/file_import_dialog.glade,
	  src/glade/file_import_dialog.h, src/glade/geomopt_dialog.cpp,
	  src/glade/geomopt_dialog.glade, src/glade/moldyn_dialog.cpp,
	  src/glade/moldyn_dialog.glade, src/glade/moldyn_dialog.h,
	  src/glade/setup_dialog.cpp, src/glade/setup_dialog.glade,
	  src/glade/trajview_dialog.cpp, src/project.cpp, src/project.h:
	  fixed the glade dialogs ; the file i/o should now work with
	  openbabel-1.100.2

2005-06-08 08:49  thassine

	* src/main.cpp, src/project.cpp, src/ribbon.cpp, src/views.cpp:
	  minor fixes added, now in sync with the lib.

2005-05-24 12:00  thassine

	* src/gtk_plot_views.cpp, src/gtk_plot_views.h,
	  src/gtk_project_view.cpp, src/gtk_project_view.h,
	  src/gtk_views.h, src/project.cpp, src/project.h, src/views.cpp,
	  src/views.h: plotting view popup menus should work now ; TSS
	  broken?

2005-05-19 10:46  thassine

	* src/gtk_graphics_view.cpp, src/gtk_project_view.cpp,
	  src/gtk_project_view.h: the project view popup menus should work
	  now.

2005-05-17 09:11  thassine

	* src/gtk_project_view.cpp, src/gtk_project_view.h: did the project
	  view a bit further.

2005-05-16 11:12  thassine

	* src/glade/file_export_dialog.cpp, src/glade/file_export_dialog.h,
	  src/glade/file_import_dialog.cpp, src/glade/file_import_dialog.h,
	  src/glade/setup_dialog.cpp, src/glade/setup_dialog.h,
	  src/glade/trajview_dialog.cpp, src/glade/trajview_dialog.h,
	  src/gtk_graphics_view.cpp, src/gtk_graphics_view.h,
	  src/gtk_plot_views.cpp, src/gtk_plot_views.h,
	  src/gtk_project_view.cpp, src/gtk_project_view.h,
	  src/gtk_views.cpp, src/gtk_views.h, src/main.cpp, src/main.h,
	  src/project.h, src/views.h: class name changes done ; gnome ->
	  gtk

2005-05-16 09:30  thassine

	* src/Makefile.in, src/glade/file_export_dialog.h,
	  src/glade/file_import_dialog.h, src/glade/setup_dialog.h,
	  src/glade/trajview_dialog.h, src/gnome_dialog.cpp,
	  src/gnome_dialog.h, src/gnome_project.cpp, src/gnome_project.h,
	  src/gtk_project_view.h, src/gtk_views.cpp, src/gtk_views.h,
	  src/main.h: some changes in filenames ; converted gnome -> gtk

2005-05-13 12:49  thassine

	* src/gnome_project.cpp, src/gnome_project.h,
	  src/gtk_graphics_view.cpp, src/project.cpp: continued porting the
	  popup menus in GTK2 ; the graphics view menu now complete.

2005-05-12 15:22  thassine

	* src/glade/setup_dialog.cpp, src/glade/setup_dialog.glade: the new
	  setup dialog should more or less work now.

2005-05-11 15:16  thassine

	* src/glade/setup_dialog.cpp, src/glade/setup_dialog.glade,
	  src/glade/setup_dialog.h: added some improvements to the setup
	  dialog ; now works initially.

2005-05-06 11:55  thassine

	* src/glade/file_import_dialog.cpp, src/gnome_project.cpp,
	  src/project.cpp: now in synch with the library.

2005-05-03 12:57  thassine

	* src/glade/Makefile.in, src/glade/setup_dialog.cpp,
	  src/glade/setup_dialog.glade, src/glade/setup_dialog.h,
	  src/glade/setup_druid.cpp, src/glade/setup_druid.glade,
	  src/glade/setup_druid.h, src/gnome_project.cpp, src/main.cpp:
	  removed the setup druid (gnome-1 based) and started adding a
	  setup dialog.

2005-04-28 10:28  thassine

	* src/project.cpp: just adapt in slight changes in the lib side.

2005-04-26 08:26  thassine

	* src/gnome_project.cpp, src/project.cpp: some changes in
	  libghemical ; sync.

2005-04-22 13:45  thassine

	* src/appdefine.h, src/gnome_project.cpp, src/gnome_project.h,
	  src/gtk_graphics_view.cpp, src/gtk_graphics_view.h, src/main.cpp,
	  src/main.h, src/project.cpp, src/project.h: added new popup menu
	  items ; tweaked the stereo adjustment box ; bugfixes.

2005-04-21 12:46  thassine

	* aclocal.m4, configure, configure.in, src/Makefile.in,
	  src/appconfig.h.in, src/appdefine.h, src/gnome_project.cpp,
	  src/gtk_views.cpp, src/main.cpp, src/notice.cpp, src/notice.h:
	  some new stuff added ; the main menu now works except Help/Help
	  item.

2005-04-21 08:57  thassine

	* aclocal.m4, configure, configure.in, src/Makefile.in,
	  src/glade/Makefile.in, src/glade/file_export_dialog.cpp,
	  src/glade/file_export_dialog.glade,
	  src/glade/file_import_dialog.cpp,
	  src/glade/file_import_dialog.glade, src/glade/geomopt_dialog.cpp,
	  src/glade/moldyn_dialog.cpp, src/glade/moldyn_dialog.glade,
	  src/glade/setup_druid.cpp, src/glade/setup_druid.h,
	  src/gnome_project.cpp, src/gnome_project.h,
	  src/gtk_graphics_view.cpp, src/gtk_graphics_view.h,
	  src/gtk_plot_views.cpp, src/gtk_plot_views.h,
	  src/gtk_project_view.cpp, src/gtk_project_view.h,
	  src/gtk_views.cpp, src/gtk_views.h, src/main.cpp, src/main.h,
	  src/project.cpp, src/project.h, src/surface.h, src/views.cpp,
	  src/views.h: added the next round of changes ; compiles and works
	  but the menus are still incomplete.

2005-04-15 13:51  thassine

	* src/Makefile.in, src/appconfig.h.in, src/fileio.cpp,
	  src/gnome_dialog.h, src/gnome_project.cpp, src/gnome_views.cpp,
	  src/gnome_views.h, src/main.cpp, src/main.h, src/notice.cpp:
	  started adding the popup menu for gtk_graphics_view.

2005-04-15 11:36  thassine

	* src/gnome_dialog.cpp, src/gnome_project.cpp, src/gnome_project.h,
	  src/gnome_views.cpp, src/gnome_views.h, src/main.cpp, src/main.h,
	  src/pixmaps/bondtype.xpm, src/pixmaps/measure.xpm,
	  src/pixmaps/orb_xy.xpm, src/pixmaps/orb_z.xpm,
	  src/pixmaps/orbit_xy.xpm, src/pixmaps/orbit_z.xpm,
	  src/pixmaps/rot_xy.xpm, src/pixmaps/rot_z.xpm,
	  src/pixmaps/rotate_xy.xpm, src/pixmaps/rotate_z.xpm,
	  src/pixmaps/setup.xpm, src/pixmaps/trans_xy.xpm,
	  src/pixmaps/trans_z.xpm, src/pixmaps/transl_xy.xpm,
	  src/pixmaps/transl_z.xpm: major changes in GUI code ; uses
	  GtkUIManager now (GTK+-2.4) ; menus still not ready yet.

2005-03-23 14:06  thassine

	* src/gnome_dialog.cpp, src/gnome_dialog.h, src/gnome_project.cpp,
	  src/gnome_views.cpp, src/main.cpp, src/main.h: bad problems
	  because the popup menus still are generated using gnome-1 code in
	  a gtk2 app ; crashes but started to add fixes ; still not OK.

2005-03-21 09:37  thassine

	* Makefile.in, configure, configure.in, src/Makefile.in,
	  src/appconfig.h.in, src/glade_dialog.cpp, src/gnome_dialog.cpp,
	  src/gnome_dialog.h, src/gnome_project.cpp, src/main.cpp,
	  src/main.h, src/views.h: added many improvements ; the GTK2
	  version is now built by default (--enable-bonobo changes this)
	  and it's quite usable now...

2005-02-03 12:16  thassine

	* src/spline.cpp: minor changes to make it compile in FC3.

2004-12-23 14:12  thassine

	* bin/ghemical-ui.xml, configure, configure.in, src/appconfig.h.in,
	  src/ghemical-server.cpp, src/ghemical-server.h, src/ghemical.cpp,
	  src/ghemical.h, src/gnome_project.cpp, src/gnome_project.h,
	  src/main.cpp, src/main.h, src/simple_test/container-ui.xml,
	  src/simple_test/container.cpp: continued to implement separate
	  gtk+/bonobo modes.

2004-12-23 11:33  thassine

	* GNOME_Ghemical.server, Makefile.in, src/Makefile.in,
	  src/gnome_project.cpp, src/gnome_project.h,
	  src/simple_test/Makefile, src/simple_test/README,
	  src/simple_test/container-ui.xml, src/simple_test/container.c,
	  src/simple_test/container.cpp, src/simple_test/container.h:
	  started creating a single ghemical/ghemical-server executable
	  that uses either gtk+ or bonobo.

2004-12-21 14:46  thassine

	* src/camera.cpp, src/gnome_project.cpp, src/gnome_views.cpp,
	  src/gnome_views.h, src/project.cpp, src/project.h: fixes added
	  for stereo display modes (especially red/blue mode).

2004-12-10 15:22  thassine

	* configure, configure.in, src/gnome_views.cpp, src/mtools.cpp,
	  src/project.cpp, src/project.h: many small fixes added.

2004-09-06 10:51  thassine

	* configure, configure.in: configure.in updated (still needs
	  similar fixes ; see also Makefiles.

2004-08-30 09:36  thassine

	* src/color.h, src/fileio.cpp, src/filetrans.cpp,
	  src/glade/geomopt_dialog.h, src/glade/moldyn_dialog.h,
	  src/glade/setup_druid.cpp, src/gnome_dialog.cpp,
	  src/gnome_project.cpp, src/gnome_project.h, src/gnome_views.cpp,
	  src/notice.cpp, src/objects.cpp, src/objects.h, src/project.cpp,
	  src/project.h, src/ribbon.cpp, src/spline.h, src/views.cpp:
	  changed the include directory of libghemical.

2004-08-25 11:28  thassine

	* src/appdefine.h, src/project.cpp, src/project.h: minor changes in
	  labels etc (not yet same as in BBB).

2004-05-13 11:51  thassine

	* acinclude.m4, aclocal.m4, configure, configure.in,
	  src/glade/setup_druid.cpp: libmopac7, OpenBabel and libghemical
	  now properly detected in configure.in

2004-03-17 14:26  thassine

	* Makefile.in: changed VERSION into APPVERSION in Makefile.in

2004-02-18 11:54  thassine

	* Makefile.in, configure, configure.in, src/Makefile.in,
	  src/appconfig.h.in, src/glade/Makefile.in: now properly reads
	  settings from libghemical.pc using pkg-config.

2004-02-17 14:49  thassine

	* Makefile.in, configure, configure.in, openbabel, src/Makefile.in,
	  src/glade/Makefile.in, src/project.cpp: now uses an external
	  OpenBabel library ; make install should now properly install both
	  executables and files.

2004-02-11 09:40  thassine

	* src/fileio.cpp, src/project.h: added setlocale() calls into
	  fileio.cpp ; also added formal charges into the file format
	  (version string now 111)

2004-02-11 09:06  thassine

	* src/Makefile.in, src/gnome_project.cpp, src/gnome_project.h,
	  src/project.cpp: added -lmopac7 into src/Makefile.in
	  (temporarily) and other minor changes.

2003-11-06 12:22  thassine

	* src/fileio.cpp: a minor fix in file-IO; still need to save
	  secondary structures for SF?

2003-10-10 08:53  thassine

	* src/gnome_project.cpp, src/gnome_views.cpp, src/gnome_views.h:
	  added a new (experimental) menu item.

2003-10-03 13:29  thassine

	* src/project.cpp: fixed a drawing tool bug.

2003-09-12 10:34  thassine

	* src/gnome_project.cpp, src/plane.cpp, src/plane.h,
	  src/project.cpp, src/surface.cpp, src/surface.h: improved
	  planes/surfaces ; now adapt better for charged molecules.

2003-09-10 12:04  thassine

	* src/appdefine.h, src/gnome_project.cpp, src/gnome_project.h,
	  src/project.cpp: a rendering bug was fixed, and LABEL_RESIDUE was
	  implemented.

2003-09-01 09:43  thassine

	* src/project.cpp: added some bugfixes/comments

2003-08-08 06:55  thassine

	* src/fileio.cpp, src/gnome_project.cpp, src/project.cpp,
	  src/project.h: the Solvate??() functions have changed.

2003-08-01 11:05  thassine

	* src/glade/file_export_dialog.cpp,
	  src/glade/file_import_dialog.cpp, src/glade/geomopt_dialog.cpp,
	  src/glade/moldyn_dialog.cpp: fixed the dialogs by changing
	  gnome_dialog -> gtk_dialog.

2003-07-30 10:11  thassine

	* src/camera.cpp, src/gnome_dialog.cpp, src/gnome_project.cpp,
	  src/gnome_project.h, src/project.cpp, src/project.h: a few more
	  changes added ; now the bonobo-component seems to work pretty
	  well and is usable, but the toolbar buttons (mouse tool, element,
	  bondtype) are still missing.

2003-07-29 13:48  thassine

	* src/camera.cpp, src/camera.h, src/gnome_views.cpp,
	  src/gnome_views.h, src/objects.cpp, src/objects.h, src/plane.cpp,
	  src/plane.h, src/project.cpp, src/project.h, src/ribbon.cpp,
	  src/ribbon.h, src/surface.cpp, src/surface.h, src/views.cpp,
	  src/views.h: the project_view now works reasonably well ; also
	  popup-menus added to project_view pages.

2003-07-24 10:12  thassine

	* src/gnome_project.cpp, src/gnome_project.h, src/gnome_views.cpp,
	  src/gnome_views.h, src/project.cpp, src/project.h, src/views.h:
	  the popup-menu, text buffer, and the project view seems to work
	  quite reasonably now ; in project view only atoms and bonds pages
	  are ok, others still have many problems.

2003-07-15 12:18  thassine

	* src/gnome_project.cpp, src/gnome_project.h, src/gnome_views.cpp,
	  src/gnome_views.h, src/project.cpp, src/project.h, src/views.cpp,
	  src/views.h: the message log now works (more or less) and
	  project_view work started.

2003-07-14 09:20  thassine

	* src/glade/file_export_dialog.glade,
	  src/glade/file_import_dialog.glade,
	  src/glade/geomopt_dialog.glade, src/glade/moldyn_dialog.glade,
	  src/glade/setup_druid.glade, src/glade/trajview_dialog.glade,
	  src/gnome_dialog.cpp, src/gnome_project.cpp, src/gnome_project.h,
	  src/gnome_views.cpp, src/gnome_views.h: the .glade files are
	  updated for libglade-2 (using libglade-convert) glade-dialogs are
	  displayed correctly but handlers still not updated ; the
	  gnome-dialogs should work also now ; added (temporary) CURRENT
	  submenu into ppoup-menu for accesssing mouse tool and other
	  settings.

2003-07-12 09:28  thassine

	* GNOME_Ghemical.server: added the .server file
	  (bonobo-activation).

2003-07-11 13:01  thassine

	* bin/ghemical-ui.xml, configure, configure.in, src/Makefile.in,
	  src/fileio.cpp, src/filetrans.cpp, src/filetrans.h,
	  src/ghemical-server.cpp, src/ghemical-server.h, src/ghemical.cpp,
	  src/ghemical.h, src/glade/Makefile.in,
	  src/glade/geomopt_dialog.cpp, src/glade/moldyn_dialog.cpp,
	  src/glade/setup_druid.cpp, src/glade_dialog.cpp,
	  src/gnome_dialog.cpp, src/gnome_project.cpp, src/gnome_project.h,
	  src/gnome_views.cpp, src/gnome_views.h, src/main.cpp, src/main.h,
	  src/notice.cpp, src/notice.h, src/plane.h, src/project.cpp,
	  src/project.h, src/ribbon.cpp, src/ribbon.h, src/simple_test,
	  src/simple_test/Makefile, src/simple_test/container-ui.xml,
	  src/simple_test/container.c, src/surface.h, src/views.cpp,
	  src/views.h: started porting to gnome2 and converting into
	  bonobo.

2003-06-13 10:18  thassine

	* AUTHORS, acconfig.h, src/Doxyfile, src/camera.cpp,
	  src/gnome_project.cpp, src/project.cpp: more checks added for
	  atom_list sorting. also misc cleanups.

2003-06-12 13:12  thassine

	* bin/examples/transition_state_search,
	  bin/examples/transition_state_search/E2-reaction,
	  bin/examples/transition_state_search/E2-reaction/products.gpr,
	  bin/examples/transition_state_search/E2-reaction/reactants.gpr,
	  bin/examples/transition_state_search/E2-reaction/ts.gpr,
	  bin/examples/transition_state_search/SN2-reaction,
	  bin/examples/transition_state_search/SN2-reaction/products.gpr,
	  bin/examples/transition_state_search/SN2-reaction/reactants.gpr,
	  bin/examples/transition_state_search/SN2-reaction/ts.gpr,
	  bin/examples/transition_state_search/carbocation_rearrangement_hydride_shift,
	  bin/examples/transition_state_search/carbocation_rearrangement_hydride_shift/products.gpr,
	  bin/examples/transition_state_search/carbocation_rearrangement_hydride_shift/reactants.gpr,
	  bin/examples/transition_state_search/carbocation_rearrangement_hydride_shift/ts.gpr,
	  bin/examples/transition_state_search/carbocation_rearrangement_methide_shift,
	  bin/examples/transition_state_search/carbocation_rearrangement_methide_shift/products.gpr,
	  bin/examples/transition_state_search/carbocation_rearrangement_methide_shift/reactants.gpr,
	  bin/examples/transition_state_search/carbocation_rearrangement_methide_shift/ts.gpr,
	  bin/examples/transition_state_search/cycloaddition_Diels-Alder,
	  bin/examples/transition_state_search/cycloaddition_Diels-Alder/products.gpr,
	  bin/examples/transition_state_search/cycloaddition_Diels-Alder/reactants.gpr,
	  bin/examples/transition_state_search/cycloaddition_Diels-Alder/ts.gpr,
	  bin/examples/transition_state_search/sigmatropic_rearrangement_Cope,
	  bin/examples/transition_state_search/sigmatropic_rearrangement_Cope/products.gpr,
	  bin/examples/transition_state_search/sigmatropic_rearrangement_Cope/reactants.gpr,
	  bin/examples/transition_state_search/sigmatropic_rearrangement_Cope/ts.gpr,
	  bin/examples/transition_state_search/tautomeric_shift_keto_enol,
	  bin/examples/transition_state_search/tautomeric_shift_keto_enol/products.gpr,
	  bin/examples/transition_state_search/tautomeric_shift_keto_enol/reactants.gpr,
	  bin/examples/transition_state_search/tautomeric_shift_keto_enol/ts.gpr,
	  src/gnome_views.cpp, src/gnome_views.h, src/project.cpp,
	  src/views.cpp, src/views.h: added imrovements to
	  transition_state_search + other search tools, and added examples
	  for TSS.

2003-06-11 11:06  thassine

	* src/glade/setup_druid.cpp, src/gnome_project.cpp,
	  src/gnome_project.h, src/gnome_views.cpp, src/gnome_views.h,
	  src/project.cpp, src/project.h, src/views.cpp, src/views.h: added
	  transition_state_search and stationary_state_search ; user-docs
	  and examples will follow in a few days.

2003-05-19 07:09  thassine

	* src/project.cpp: some debugging-label options added.

2003-05-13 13:44  thassine

	* src/gnome_project.cpp: removed some redundant
	  DefineSecondaryStructure() runs.

2003-05-12 09:13  thassine

	* src/project.cpp, src/ribbon.cpp, src/ribbon.h: minor changes in
	  ribbon object.

2003-04-29 10:22  thassine

	* src/gnome_project.cpp, src/project.cpp, src/project.h,
	  src/ribbon.cpp: many changes in lib, adaptaptations to those
	  added.

2003-04-17 07:37  thassine

	* src/gnome_project.cpp: added better defaults for glade dialogs.

2003-04-16 13:46  thassine

	* src/glade/moldyn_dialog.cpp, src/glade/moldyn_dialog.glade,
	  src/glade/moldyn_dialog.h, src/glade/setup_druid.cpp,
	  src/glade/setup_druid.glade, src/gnome_project.cpp,
	  src/gnome_views.cpp, src/gnome_views.h, src/project.cpp: many
	  small changes (including trajectory reading).

2003-04-10 14:02  thassine

	* Makefile.in, configure, configure.in, src/appconfig.h.in,
	  src/appdefine.h, src/gnome_project.cpp, src/gnome_project.h,
	  src/project.cpp: changes in configure script (now tested to work
	  with --enable-mpqc).

2003-04-02 06:14  thassine

	* src/ribbon.cpp: changes in ribbon due to changes in atom class.

2003-03-07 11:37  thassine

	* src/fileio.cpp: a minor addition to fileio.cpp

2003-03-07 09:11  thassine

	* src/fileio.cpp: the functions in fileio.cpp now handle data using
	  member functions, not direclty (so that they now are more
	  portable).

2003-03-05 12:20  thassine

	* src/gnome_project.cpp, src/main.cpp: added some changes related
	  to gcc-3.2

2003-02-14 14:51  thassine

	* src/fileio.cpp: just cleanups, no real changes.

2003-02-14 08:02  thassine

	* src/project.cpp: sf virtual bonds now rendered also using
	  wireframes.

2003-02-06 14:53  thassine

	* src/gnome_project.cpp, src/main.cpp, src/notice.cpp,
	  src/project.cpp: many changes; for example added tool for adding
	  solvent (not ready yet).

2003-02-03 09:54  thassine

	* src/gnome_project.cpp, src/gnome_project.h: added tools for
	  solvation (using H2O).

2003-01-31 12:06  thassine

	* src/filetrans.cpp, src/project.cpp, src/project.h: some bugfixes
	  were added; mostly because of changes in model::GetAtomCount()
	  and engine::GetAtomCount().

2003-01-30 08:31  thassine

	* src/Makefile.in, src/fileio.cpp, src/glade/Makefile.in,
	  src/gnome_project.cpp, src/project.cpp, src/project.h: changes in
	  SF-stuff rendering and file operations.

2003-01-27 13:45  thassine

	* src/fileio.cpp, src/glade/setup_druid.cpp, src/project.cpp,
	  src/project.h, src/ribbon.cpp: some additions to graphics code
	  (how the new flags work).

2003-01-23 13:02  thassine

	* src/camera.cpp, src/camera.h, src/gnome_project.cpp,
	  src/gnome_views.cpp, src/gnome_views.h, src/main.cpp, src/main.h,
	  src/mtools.cpp, src/mtools.h, src/pixmaps/clipping.xpm,
	  src/project.cpp, src/project.h, src/views.cpp, src/views.h: added
	  a new clipping mtool, the selections by atm/res/chn/mol is added,
	  and a new tool delete selected atoms is added.

2003-01-22 11:25  thassine

	* Makefile.in: make install also works now.

2003-01-22 11:11  thassine

	* src, src/.cvsignore: minor cleanups added.

2003-01-22 11:06  thassine

	* Makefile.in, configure, configure.in, src/Makefile.in,
	  src/appconfig.h.in, src/appdefine.h, src/camera.cpp,
	  src/camera.h, src/color.h, src/config.h.in, src/fileio.cpp,
	  src/filetrans.cpp, src/filetrans.h, src/glade,
	  src/glade/.cvsignore, src/glade/Makefile.in, src/glade/README,
	  src/glade/file_export_dialog.cpp,
	  src/glade/file_export_dialog.glade,
	  src/glade/file_export_dialog.h, src/glade/file_import_dialog.cpp,
	  src/glade/file_import_dialog.glade,
	  src/glade/file_import_dialog.h, src/glade/geomopt_dialog.cpp,
	  src/glade/geomopt_dialog.glade, src/glade/geomopt_dialog.h,
	  src/glade/moldyn_dialog.cpp, src/glade/moldyn_dialog.glade,
	  src/glade/moldyn_dialog.h, src/glade/setup_druid.cpp,
	  src/glade/setup_druid.glade, src/glade/setup_druid.h,
	  src/glade/trajview_dialog.cpp, src/glade/trajview_dialog.glade,
	  src/glade/trajview_dialog.h, src/glade_dialog.cpp,
	  src/glade_dialog.h, src/gnome_dialog.cpp, src/gnome_dialog.h,
	  src/gnome_project.cpp, src/gnome_project.h, src/gnome_views.cpp,
	  src/gnome_views.h, src/main.cpp, src/main.h, src/mtools.cpp,
	  src/mtools.h, src/notice.cpp, src/notice.h, src/objects.cpp,
	  src/objects.h, src/pixmaps, src/pixmaps/.cvsignore,
	  src/pixmaps/angle.xpm, src/pixmaps/bond.xpm,
	  src/pixmaps/chain.xpm, src/pixmaps/dihedral.xpm,
	  src/pixmaps/distance.xpm, src/pixmaps/draw.xpm,
	  src/pixmaps/element.xpm, src/pixmaps/erase.xpm,
	  src/pixmaps/invert.xpm, src/pixmaps/molecule.xpm,
	  src/pixmaps/orb_xy.xpm, src/pixmaps/orb_z.xpm,
	  src/pixmaps/residue.xpm, src/pixmaps/rot_xy.xpm,
	  src/pixmaps/rot_z.xpm, src/pixmaps/select.xpm,
	  src/pixmaps/trans_xy.xpm, src/pixmaps/trans_z.xpm,
	  src/pixmaps/zoom.xpm, src/plane.cpp, src/plane.h,
	  src/project.cpp, src/project.h, src/ribbon.cpp, src/ribbon.h,
	  src/spline.cpp, src/spline.h, src/surface.cpp, src/surface.h,
	  src/views.cpp, src/views.h: added the missing files; some changes
	  have happened in the filenames.

2003-01-21 10:05  thassine

	* bin/parameters: removed bin/prameters since it is now contained
	  in libghemical.

2003-01-20 14:08  thassine

	* configure, configure.in: many changes all over the tree; does not
	  compile yet...

2003-01-20 09:22  thassine

	* src/graphics, src/target3: moved the contents of src/graphics and
	  src/target3 to src/.

2003-01-20 09:17  thassine

	* src/target3/pixmaps: moved the src/target3/pixmaps to
	  src/pixmaps.

2003-01-20 09:13  thassine

	* Makefile.in, src/target3/glade: moved the /src/target3/glade to
	  /src/glade.

2003-01-20 09:05  thassine

	* src/common: removed the common-directory (now in libghemical).

2003-01-20 08:50  thassine

	* BUGLIST, Makefile.in, PROJECT, configure.in, miniMOPAC,
	  src/Makefile.OLD, src/common/Makefile.in,
	  src/graphics/Makefile.in, src/some-extra-files, src/target1,
	  src/target2, src/target3/Makefile.in,
	  src/target3/glade/Makefile.in: some directories removed; this
	  stuff is either moved into the new libghemical library, or
	  (target1/target2) is discarded.

2003-01-15 15:35  thassine

	* src/common/matrix.h: added matrix.h back (from v1.0 source tree).

2003-01-03 11:11  thassine

	* src/common/utility.cpp, src/common/utility.h: superimpose is no
	  longer a virtual class; only one class needed since there's only
	  one model class.

2003-01-02 13:55  thassine

	* src/common/moldyn.h: minor improvements to MD.

2002-12-12 07:34  thassine

	* src/common/model.cpp: some extra checks were added (for
	  simplified force field, does not affect all-atom stuff).

2002-12-11 13:12  thassine

	* src/common/model.cpp, src/common/seqbuild.cpp: bugfix; adding
	  ribbons re-ordered the atoms (via seqbuild::Identify()) but this
	  is now fixed.

2002-12-09 09:01  thassine

	* src/common/eng1_qm_mopac.cpp, src/common/eng1_qm_mpqc.cpp,
	  src/target3/glade/Makefile.in: added a bugfix (now builds with
	  --enable-mpqc) and added some comments about MPQC/MOPAC output.

2002-12-05 11:44  thassine

	* configure, configure.in, src/common/define.h: changed the version
	  number to 1.51

2002-12-04 07:47  thassine

	* CHANGES: updated the changelog

2002-12-04 07:45  thassine

	* INSTALL, bin/user-docs/images/aa_builder_ci.png,
	  bin/user-docs/images/aa_builder_menu.png,
	  bin/user-docs/images/aa_builder_note.png,
	  bin/user-docs/images/aa_builder_w_h.png,
	  bin/user-docs/images/aa_builder_wo_h.png,
	  bin/user-docs/images/ci_plane.png,
	  bin/user-docs/images/ribbon.png, bin/user-docs/ribbon.html,
	  ghemical.spec: final fixes before release as v1.50

2002-12-03 07:50  thassine

	* Makefile.in: minor fixes to make install.

2002-12-03 07:42  thassine

	* bin/user-docs/geometry_optimization.html,
	  bin/user-docs/images/geometry_opimization_console.png,
	  bin/user-docs/images/sequence_builder_console.png,
	  bin/user-docs/index.html, bin/user-docs/introduction.html,
	  bin/user-docs/measure.html, bin/user-docs/references.html,
	  bin/user-docs/sequence_builder.html, bin/user-docs/using_mm.html,
	  bin/user-docs/using_qm.html, bin/user-docs/using_sf.html,
	  bin/user-docs/visualization.html: added the improved docs from
	  Christopher also here.

2002-11-22 09:02  thassine

	* ., .cvsignore, miniMOPAC, miniMOPAC/.cvsignore, openbabel,
	  openbabel/.cvsignore, openbabel/aromatic.h,
	  openbabel/aromatic.txt, openbabel/extable.h,
	  openbabel/extable.txt, src/common/model.cpp, src/target3/glade,
	  src/target3/glade/.cvsignore: synchronized openbabel with the
	  v1.0 tree, and added a notice about incompleteness of the file
	  format.

2002-11-20 15:54  thassine

	* bin/examples, bin/examples/2-chlorobutane.gpr,
	  bin/examples/3-phenylpropanal.gpr,
	  bin/examples/PeriodicTable.gpr,
	  bin/examples/acetylsalicylic_acid.gpr,
	  bin/examples/alpha-pinene.gpr, bin/examples/bromobenzene.gpr,
	  bin/examples/camphor.gpr, bin/examples/cinnamaldehyde.gpr,
	  bin/examples/cis-2-pentene.gpr, bin/examples/cyclohexane.gpr,
	  bin/examples/naphtalene.gpr: added also the new example files.

2002-11-20 15:53  thassine

	* bin/examples, openbabel/extable.h, openbabel/extable.txt,
	  openbabel/ghemical.cpp, src/common/model.cpp, src/common/model.h,
	  src/common/oldfiles.cpp, src/common/tab_mm_prmfit.cpp,
	  src/graphics/project.cpp, src/target1/t1m_param_mm_cpp.h,
	  src/target1/t1main.cpp, src/target3/t3dialog.cpp,
	  src/target3/t3main.cpp, src/target3/t3project.cpp,
	  src/target3/t3project.h: the file format detection is now fixed;
	  now can read the current (.gpr) and old (.mm1gp) v1.0 files.

2002-11-20 10:38  thassine

	* Makefile.in: make install now installs the docs correctly.

2002-11-14 13:00  thassine

	* bin/user-docs/MD.html, bin/user-docs/MD_viewer.html,
	  bin/user-docs/aa_table.html, bin/user-docs/add_hydrogens.html,
	  bin/user-docs/basic_mm.html,
	  bin/user-docs/conf_search_tools.html,
	  bin/user-docs/energy_vs_torsion.html,
	  bin/user-docs/enlevdiag.jpg, bin/user-docs/filetypes.html,
	  bin/user-docs/formula.html,
	  bin/user-docs/geometry_optimization.html,
	  bin/user-docs/images/energy_vs_torsion1.png,
	  bin/user-docs/images/energy_vs_torsion2.png,
	  bin/user-docs/images/energy_vs_torsion3.png,
	  bin/user-docs/images/energy_vs_torsion4.png,
	  bin/user-docs/images/enlevdiag.png,
	  bin/user-docs/images/esp-plane_mm.png,
	  bin/user-docs/images/esp-plane_qm.png,
	  bin/user-docs/images/esp-plane_select.png,
	  bin/user-docs/images/esp-plane_select_obj.png,
	  bin/user-docs/index.html, bin/user-docs/labels.html,
	  bin/user-docs/mdi_mode.html, bin/user-docs/measure.html,
	  bin/user-docs/perspective.html, bin/user-docs/references.html,
	  bin/user-docs/sequence_builder.html,
	  bin/user-docs/using_cs_tools.html,
	  bin/user-docs/using_cs_tools01.jpg,
	  bin/user-docs/using_cs_tools02.jpg,
	  bin/user-docs/using_cs_tools03.jpg,
	  bin/user-docs/using_cs_tools04.jpg,
	  bin/user-docs/using_cs_tools05.jpg, bin/user-docs/using_mm.html,
	  bin/user-docs/using_qm.html, bin/user-docs/using_sf.html,
	  bin/user-docs/visualization.html: updated the documentation.

2002-11-14 09:16  thassine

	* bin/user-docs/basic_mm.html, bin/user-docs/images/mainmenu.png,
	  bin/user-docs/images/maintools.png, bin/user-docs/index.html,
	  bin/user-docs/introduction.html, bin/user-docs/maintools.jpg: the
	  chapter 1. introduction seems to be ok now.

2002-11-14 07:59  thassine

	* bin/user-docs/index.html: oops! fixed the absolute links from
	  index.html

2002-11-13 08:32  thassine

	* bin/parameters/param_mm/default/parameters1.txt,
	  bin/parameters/param_mm/default/parameters2.txt, configure,
	  configure.in, src/common/define.h: added some halogen MM
	  parameters, and changed the version number.

2002-11-11 09:22  thassine

	* src/Doxyfile, src/graphics/views.cpp: changed doxygen settings,
	  and added some fixes for gcc-3.2

2002-11-11 09:21  thassine

	* openbabel/Makefile.in, openbabel/Vector.cpp, openbabel/Vector.h,
	  openbabel/alchemy.cpp, openbabel/aromatic.h, openbabel/atom.cpp,
	  openbabel/atomtyp.h, openbabel/atomtyp.txt, openbabel/balst.cpp,
	  openbabel/base.h, openbabel/bin2hex.pl, openbabel/binary.h,
	  openbabel/binary_io.h, openbabel/bitgrid.h, openbabel/bitvec.h,
	  openbabel/bond.txt, openbabel/c3d.cpp, openbabel/cacao.cpp,
	  openbabel/chains.cpp, openbabel/chains.h, openbabel/chiral.h,
	  openbabel/commandline.h, openbabel/ctransform.h,
	  openbabel/cwrap.cpp, openbabel/cwrap.h, openbabel/data.cpp,
	  openbabel/data.h, openbabel/element.h, openbabel/element.txt,
	  openbabel/extable.h, openbabel/extable.txt,
	  openbabel/fileformat.cpp, openbabel/fileformat.h,
	  openbabel/generic.cpp, openbabel/generic.h, openbabel/grid.h,
	  openbabel/main.cpp, openbabel/matrix.h, openbabel/mol.cpp,
	  openbabel/mol.h, openbabel/mol2.cpp, openbabel/molchrg.h,
	  openbabel/molvector.cpp, openbabel/molvector.h,
	  openbabel/obifstream.h, openbabel/obutil.cpp, openbabel/obutil.h,
	  openbabel/parsmart.cpp, openbabel/parsmart.h, openbabel/patty.h,
	  openbabel/pdb.cpp, openbabel/phmodel.cpp, openbabel/phmodel.h,
	  openbabel/phmodeldata.h, openbabel/resdata.h, openbabel/ring.h,
	  openbabel/rotor.h, openbabel/smarts.cpp, openbabel/smarts.h,
	  openbabel/smi.h, openbabel/typer.cpp, openbabel/typer.h,
	  openbabel/types.h, openbabel/types.txt: the openbabel tree is now
	  in sync with v1.00

2002-11-06 10:29  thassine

	* bin/user-docs/MD.html, bin/user-docs/MD_viewer.html,
	  bin/user-docs/aa_table.html, bin/user-docs/add_hydrogens.html,
	  bin/user-docs/basic_mm.html, bin/user-docs/documentation.css,
	  bin/user-docs/filetypes.html, bin/user-docs/formula.html,
	  bin/user-docs/geometry_optimization.html, bin/user-docs/images,
	  bin/user-docs/images/2atoms_bond.png,
	  bin/user-docs/images/2atoms_unbonded.png,
	  bin/user-docs/images/add_hydrogens.png,
	  bin/user-docs/images/add_hydrogens_select.png,
	  bin/user-docs/images/change_bond_dialog.png,
	  bin/user-docs/images/change_bond_select.png,
	  bin/user-docs/images/cyclohexane1.png,
	  bin/user-docs/images/cyclohexane2.png,
	  bin/user-docs/images/cyclohexane_optimized.png,
	  bin/user-docs/images/cyclohexane_unoptimized.png,
	  bin/user-docs/images/draw_button.png,
	  bin/user-docs/images/draw_hydrogens.png,
	  bin/user-docs/images/first_atom.png,
	  bin/user-docs/images/formula.png,
	  bin/user-docs/images/formula_select.png,
	  bin/user-docs/images/geometry_op_dialog.png,
	  bin/user-docs/images/geometry_opimization_console.png,
	  bin/user-docs/images/geometry_optimization_select.png,
	  bin/user-docs/images/labels_menu.png,
	  bin/user-docs/images/md_dialog.png,
	  bin/user-docs/images/modal.png, bin/user-docs/images/new_mm.png,
	  bin/user-docs/images/notebook.png,
	  bin/user-docs/images/optimized_ethane.png,
	  bin/user-docs/images/periodic_button.png,
	  bin/user-docs/images/periodic_table.png,
	  bin/user-docs/images/remove_hydrogens.png,
	  bin/user-docs/images/sequence_builder.png,
	  bin/user-docs/images/sequence_builder_console.png,
	  bin/user-docs/images/toplevel.png,
	  bin/user-docs/images/traj_dialog.png,
	  bin/user-docs/images/window.png, bin/user-docs/import_types.html,
	  bin/user-docs/index.html, bin/user-docs/introduction.html,
	  bin/user-docs/labels.html, bin/user-docs/mdi_mode.html,
	  bin/user-docs/measure.html, bin/user-docs/perspective.html,
	  bin/user-docs/references.html,
	  bin/user-docs/sequence_builder.html: added the Christopher's new
	  docs.

2002-11-05 08:48  thassine

	* AUTHORS, src/target2/Makefile.OLD, src/target3/Makefile.OLD,
	  src/target3/t3main.cpp: added some new libs (reported that a
	  modified RedHat7.3 needed these; should be added to configure
	  system as well) : -lXt -lSM -lICE

2002-10-31 14:09  thassine

	* src/graphics/project.cpp, src/graphics/surface.cpp,
	  src/graphics/surface.h, src/target2/t2project.cpp: various small
	  fixes added to plane/surface/etc objects.

2002-10-31 10:27  thassine

	* bin/user-docs/index.html, src/common/eng1_sf.h,
	  src/target1/t1m_param_sf_h.h: just terminology changes: reduced
	  now changed to simplified in strings.

2002-10-29 10:11  thassine

	* src/common/model.cpp: a bugfix added that makes model.cpp compile
	  with the configure script.

2002-10-28 13:38  thassine

	* src/common/model.cpp, src/target3/glade/trajview_dialog.cpp,
	  src/target3/t3dialog.cpp: moldyn now also uses logbox.

2002-10-28 12:45  thassine

	* src/common/eng1_mm.cpp, src/common/eng1_qm.cpp,
	  src/common/eng1_sf.cpp, src/graphics/project.cpp: bugfixes added.

2002-10-25 13:02  thassine

	* src/target3/t3project.cpp: optimized the default settings for
	  planes/surfaces etc.

2002-10-24 13:02  thassine

	* src/graphics/project.cpp, src/target3/t3project.cpp,
	  src/target3/t3project.h: seq-builder now has a command string.

2002-10-24 12:01  thassine

	* src/graphics/project.cpp, src/graphics/project.h,
	  src/graphics/views.cpp, src/target3/t3project.cpp: the 1d and 2d
	  plots now have command strings.

2002-10-23 14:38  thassine

	* src/common/model.cpp, src/graphics/project.cpp,
	  src/graphics/project.h, src/target3/t3project.cpp,
	  src/target3/t3project.h, src/target3/t3views.cpp: qm-related
	  planes/surfaces added, enlev-diagram addded.

2002-10-22 15:40  thassine

	* src/graphics/project.cpp, src/target3/t3project.cpp:
	  plane/volrend/surface command strings added.

2002-10-21 10:43  thassine

	* src/common/model.cpp, src/common/model.h, src/common/search.cpp,
	  src/graphics/project.cpp, src/target2/t2project.cpp,
	  src/target3/t3project.cpp: added the random/systematic/montecarlo
	  conformational search commands.

2002-10-21 07:53  thassine

	* src/graphics/project.cpp, src/target3/t3project.cpp,
	  src/target3/t3views.cpp: the add light-operation is a bit
	  improved.

2002-10-17 14:17  thassine

	* src/graphics/project.cpp, src/graphics/project.h,
	  src/target3/t3dialog.cpp, src/target3/t3dialog.h,
	  src/target3/t3project.cpp, src/target3/t3project.h,
	  src/target3/t3views.cpp: the command interpreter added; now
	  initially only commands help and add light works.

2002-10-16 08:08  thassine

	* src/common/eng1_mm_default.cpp, src/common/eng1_mm_prmfit.cpp,
	  src/common/tab_mm_default.cpp, src/common/tab_mm_prmfit.cpp,
	  src/target3/glade/setup_druid.cpp, src/target3/t3project.cpp,
	  src/target3/t3project.h: setup changes and possible mol.mech.
	  error messages are now displayed in the new logbox.

2002-10-15 08:46  thassine

	* src/common/model.cpp, src/target3/t3project.cpp: moved output
	  from console to output box; CalcEnergy and GeomOpt.

2002-10-14 12:55  thassine

	* src/common/model.cpp, src/common/model.h,
	  src/target3/t3project.cpp, src/target3/t3project.h,
	  src/target3/t3views.cpp: a text log box was added to the GUI.
	  works now for CalcEnergy and GeomOpt operations.

2002-10-05 08:31  thassine

	* src/common/model.cpp, src/target3/t3dialog.cpp: after the aa2sf
	  conversion, the setup is automatically set suitable for doing
	  calculations with the simplified model.

2002-10-04 12:18  thassine

	* src/common/eng1_sf.cpp, src/common/model.cpp: the values of
	  model::sf_types array are now the same as those in the
	  atom::sf_atmtp records.

2002-10-04 10:52  thassine

	* src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/typedef.h, src/graphics/plane.cpp,
	  src/graphics/plane.h, src/graphics/project.cpp,
	  src/graphics/project.h, src/graphics/ribbon.cpp,
	  src/graphics/ribbon.h, src/graphics/spline.cpp,
	  src/graphics/spline.h: the use of typedef- or template-based
	  arrays (see typedef.h) seems to be a continuous source of
	  memory-handling bugs. therefore removed all such constructs and
	  banned their future use as well (removed from typedef.h).

2002-10-04 08:10  thassine

	* src/common/model.cpp: more fixes to aa2sf conversion (temporary
	  coordinate handling).

2002-10-04 07:20  thassine

	* src/common/model.cpp, src/common/model.h: a potential bug related
	  to aa2sf conversion is fixed.

2002-10-03 12:12  thassine

	* src/common/model.cpp, src/common/utility.cpp: a few changes here
	  and there...

2002-10-03 09:09  thassine

	* src/common/oldfiles.cpp: the oldfiles.cpp file was added.

2002-10-03 08:27  thassine

	* src/common/Makefile.OLD, src/common/Makefile.in,
	  src/common/eng1_mm.cpp, src/common/eng1_mm.h,
	  src/common/eng1_qm.cpp, src/common/eng1_qm.h,
	  src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/eng2_mm_sf.cpp, src/common/eng2_mm_sf.h,
	  src/common/eng2_qm_mm.cpp, src/common/eng2_qm_mm.h,
	  src/common/engine.h, src/common/model.cpp, src/common/model.h,
	  src/target3/glade/setup_druid.cpp: an initial version of the new
	  file format is now added; needs some futher testing however.

2002-09-12 10:50  thassine

	* src/target3/t3dialog.cpp: a warning message was added (readpdb).

2002-09-11 14:35  thassine

	* src/graphics/ribbon.cpp, src/target3/t3dialog.cpp,
	  src/target3/t3project.cpp, src/target3/t3project.h: the ribbon
	  object now can handle both all-atom and simplified
	  peptides/proteins. set #define ENABLE_SIMPLIFIED in config.h
	  before compiling. how to use/try: first use
	  File/ExtraTools/ImportPDB to read the file in and then
	  File/ExtraTools/Convert_aa2sf for getting the simplified
	  presentation (you can't save it yet). then Objects/Ribbon.

2002-09-10 14:36  thassine

	* bin/parameters/builder/amino.txt, src/common/seqbuild.cpp,
	  src/common/utility.cpp: the DefineSecondaryStructure() function
	  now works with simplified residues as well; also a ribbon bug is
	  fixed.

2002-09-10 08:47  thassine

	* src/common/model.cpp, src/common/seqbuild.cpp,
	  src/common/seqbuild.h: the seqbuilder::Identify() now handles
	  correctly also the simplified chains.

2002-09-08 10:05  thassine

	* src/Doxyfile, src/Makefile.OLD, src/common/atom.h,
	  src/common/bond.h, src/common/conjgrad.h, src/common/eng1_sf.h,
	  src/common/engine.h, src/common/model.h: changed the docs system
	  into a doxygen-based one. now using /// as a brief comment /**
	  and this as a detailed comment. */ int example; ///< this is for
	  comments at end of statements.

2002-09-07 08:25  thassine

	* src/target1/t1m_mm2param_cpp.h, src/target1/t1m_mm2param_h.h:
	  removed some old files from the console target.

2002-09-07 08:24  thassine

	* src/target1/t1m_mm1param_cpp.h, src/target1/t1m_mm1param_h.h,
	  src/target1/t1m_param_mm_cpp.h, src/target1/t1m_param_mm_h.h,
	  src/target1/t1m_param_sf_cpp.h, src/target1/t1m_param_sf_h.h,
	  src/target1/t1main.cpp, src/target1/t1main.h: some filenames
	  changed at the console target...

2002-09-06 09:07  thassine

	* src/common/atom.cpp, src/common/atom.h, src/common/eng1_sf.cpp,
	  src/common/model.cpp: the sf is now in sync with the version in
	  MANY_PROJECTS_BRANCH.

2002-09-05 13:47  thassine

	* src/common/eng1_sf.cpp, src/common/eng1_sf.h: in sf, all terms
	  except the solvation one works like before.

2002-09-05 10:18  thassine

	* src/common/eng1_sf.cpp, src/common/eng1_sf.h: the nbt1 terms work
	  now in sf.

2002-09-05 07:26  thassine

	* src/common/eng1_sf.cpp: minor bugs fixed in bonded-term creation
	  in the sf.

2002-09-04 13:56  thassine

	* src/common/eng1_sf.cpp, src/common/eng1_sf.h: continued to port
	  the sf stuff.

2002-09-03 10:45  thassine

	* src/common/atom.cpp, src/common/eng1_mm.cpp,
	  src/common/eng1_mm_default.cpp, src/common/eng1_mm_prmfit.cpp,
	  src/common/eng1_qm.cpp, src/common/eng1_qm.h,
	  src/common/eng1_qm_mopac.cpp, src/common/eng1_qm_mpqc.cpp,
	  src/common/eng1_sf.h, src/common/eng2_mm_sf.h,
	  src/common/eng2_qm_mm.h, src/common/engine.cpp,
	  src/common/filetrans.cpp, src/common/intcrd.cpp,
	  src/common/model.cpp, src/common/seqbuild.cpp,
	  src/common/tab_mm_prmfit.cpp, src/graphics/project.cpp,
	  src/graphics/ribbon.cpp, src/target1/t1m_mm1param_cpp.h,
	  src/target1/t1m_mm2param_cpp.h,
	  src/target3/glade/setup_druid.cpp, src/target3/glade_dialog.cpp,
	  src/target3/t3dialog.cpp, src/target3/t3main.cpp,
	  src/target3/t3project.cpp: checked the bug report messages in
	  various little run-time tests; they now all carry a BUG: tag.

2002-09-03 09:39  thassine

	* src/common/atom.h, src/common/bond.cpp, src/common/bond.h,
	  src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/engine.cpp, src/common/model.cpp,
	  src/graphics/project.cpp: some improvements added to sf.

2002-09-02 13:28  thassine

	* src/common/bond.cpp, src/common/bond.h, src/common/eng1_sf.cpp,
	  src/common/eng1_sf.h, src/common/model.cpp,
	  src/graphics/project.cpp: the all-atoms -> simplified conversion
	  seems to work now.

2002-08-31 09:57  thassine

	* src/common/eng1_qm_mpqc.cpp, src/common/eng2_qm_mm.cpp,
	  src/common/eng2_qm_mm.h, src/target3/glade/setup_druid.cpp,
	  src/target3/glade/setup_druid.glade: updated the mpqc-related
	  stuff; now there are qm/mm engine classes for both mopac and
	  mpqc. they seem to work technically fine, but without any glue
	  code the qm and mm parts are not interacting at all. yet.

2002-08-31 08:39  thassine

	* src/common/eng1_mm.cpp, src/common/eng1_mm.h,
	  src/common/eng1_mm_default.cpp, src/common/eng1_mm_prmfit.cpp:
	  the qm_mm bug was because connectivity records used (global)
	  indices. now the connectivity records use pointers instead of
	  indices and now eng2_qm_mm works like expected (when there is no
	  glue code between the mm and qm parts).

2002-08-30 15:33  thassine

	* src/common/eng1_mm.cpp, src/common/eng1_mm.h,
	  src/common/eng1_mm_default.cpp, src/common/eng1_mm_prmfit.cpp,
	  src/common/eng1_qm.cpp, src/common/eng1_qm.h,
	  src/common/eng1_qm_mopac.cpp, src/common/eng1_qm_mopac.h,
	  src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/eng2_qm_mm.cpp, src/common/engine.cpp,
	  src/common/engine.h, src/common/model.h,
	  src/common/tab_mm_default.cpp, src/common/tab_mm_prmfit.cpp,
	  src/target2/t2project.cpp: the eng classes now use local instead
	  of global atom numbering (more like the old system). there is a
	  nonbonded-term bug in qmmm but otherwise it looks good. sf only
	  compiles.

2002-08-30 10:54  thassine

	* src/common/eng1_mm.cpp, src/common/eng1_mm.h,
	  src/common/eng1_qm.cpp, src/common/eng1_qm.h,
	  src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/eng2_mm_sf.cpp, src/common/eng2_mm_sf.h,
	  src/common/eng2_qm_mm.cpp, src/common/eng2_qm_mm.h,
	  src/common/engine.cpp, src/common/engine.h,
	  src/target2/t2project.cpp, src/target2/t2project.h,
	  src/target3/glade/setup_druid.cpp: the setup classes are now
	  initialized correctly. setup::GetMaxEngineIndex() renamed to
	  setup::GetEngineCount().

2002-08-30 09:36  thassine

	* src/common/Makefile.OLD, src/common/Makefile.in,
	  src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/eng2_mm_sf.cpp, src/common/eng2_mm_sf.h,
	  src/target3/glade/setup_druid.cpp: ok, everything compiles now,
	  including the simplified forcefield stuff.

2002-08-30 06:27  thassine

	* src/common/atom.cpp, src/common/atom.h, src/common/eng1_sf.cpp,
	  src/common/eng1_sf.h, src/common/engine.cpp,
	  src/common/model.cpp, src/common/model.h,
	  src/common/seqbuild.cpp, src/common/tab_mm_default.cpp,
	  src/common/tab_mm_prmfit.cpp, src/graphics/project.cpp,
	  src/target1/t1m_mm2param_cpp.h: continued porting the simplified
	  forcefield here (not ready yet, doesn't compile, and needs file
	  format changes). modified seqbuider::Indentify() so that it would
	  also detect simplified protein/peptide chains (not ready yet).
	  converted the bool atom::selected flag into i32u atom::flags that
	  can carry more information.

2002-08-29 06:30  thassine

	* src/common/model.cpp, src/common/seqbuild.cpp,
	  src/target1/Makefile.OLD, src/target1/t1m_mm1param_cpp.h,
	  src/target1/t1m_mm1param_h.h, src/target1/t1main.cpp,
	  src/target2/t2project.cpp, src/target3/t3project.cpp: the new
	  model::UpdateChains() function now updates the chain/residue
	  information. all targets brought up-to-date again.

2002-08-28 14:40  thassine

	* src/common/atom.cpp, src/common/atom.h, src/common/eng1_mm.cpp,
	  src/common/model.cpp, src/common/model.h, src/common/search.cpp,
	  src/common/seqbuild.cpp, src/graphics/project.cpp,
	  src/target2/t2project.cpp, src/target3/glade/setup_druid.glade:
	  many changes added. GatherGroups() renamed to UpdateGroups().
	  is_index_clean and is_groups_clean flags are added so that it
	  would be better defined whether groups/chains/etc information is
	  up-to-date or not.

2002-08-28 09:59  thassine

	* src/common/eng1_mm.cpp, src/common/eng1_mm.h,
	  src/common/eng1_qm.cpp, src/common/eng1_qm.h,
	  src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/eng2_qm_mm.cpp, src/common/eng2_qm_mm.h,
	  src/common/engine.h, src/common/model.h,
	  src/target3/glade/setup_druid.cpp,
	  src/target3/glade/setup_druid.glade,
	  src/target3/glade/setup_druid.h: the setup_druid now works, with
	  minimal functionality so that one can select between an MM and QM
	  model.

2002-08-27 14:54  thassine

	* src/common/atom.cpp, src/common/eng1_sf.h, src/common/intcrd.cpp,
	  src/common/model.cpp: some bugfixes added; the conformational
	  search tools should work now.

2002-08-27 11:41  thassine

	* src/target3/glade/file_import_dialog.cpp,
	  src/target3/t3dialog.cpp, src/target3/t3dialog.h,
	  src/target3/t3project.cpp, src/target3/t3project.h: added the
	  File/ExtraTools also here.

2002-08-21 07:32  thassine

	* src/common/eng1_sf.cpp, src/common/model.cpp, src/common/model.h,
	  src/common/seqbuild.cpp, src/common/seqbuild.h,
	  src/graphics/ribbon.cpp, src/target2/t2project.cpp,
	  src/target3/t3project.cpp: improvements added to the seqbuilder
	  and chn_info classes.

2002-08-01 07:31  thassine

	* src/common/engine.cpp, src/common/intcrd.cpp,
	  src/common/model.cpp: bounds checking added to CopyCRD()
	  functions; bugs fixed from the new crd_set data storage system;
	  WARNING there still is something wrong with the intcrd class
	  (geometries get distorted).

2002-07-31 10:09  thassine

	* src/graphics/camera.cpp: the fps counter added also to HEAD.

2002-07-30 07:07  thassine

	* src/common/atom.cpp, src/common/atom.h, src/common/eng1_mm.cpp,
	  src/common/eng1_qm.cpp, src/common/eng1_qm_mopac.cpp,
	  src/common/engine.cpp, src/common/filetrans.cpp,
	  src/common/intcrd.cpp, src/common/intcrd.h, src/common/model.cpp,
	  src/common/model.h, src/common/seqbuild.cpp,
	  src/common/tab_mm_prmfit.cpp, src/common/utility.cpp,
	  src/graphics/project.cpp, src/graphics/ribbon.cpp,
	  src/graphics/views.cpp: the coordinate data storage at atom class
	  is converted into a less error-prone system. it's no more
	  possible to access the data directly, but only using the
	  atom::GetCRD() and atom::SetCRD() member functions.

2002-07-23 12:27  thassine

	* src/common/model.cpp, src/common/model.h,
	  src/graphics/project.cpp, src/target2/t2project.cpp: the memory
	  management scheme of crd_set objects is now simpler.

2002-07-23 09:34  thassine

	* src/common/engine.h, src/common/model.cpp, src/common/model.h,
	  src/common/search.cpp, src/common/search.h,
	  src/target2/t2project.cpp, src/target3/t3project.cpp,
	  src/target3/t3project.h: the search tool improvements ported also
	  here.

2002-07-23 09:04  thassine

	* src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/engine.h: added some fixes to SF, althought it does
	  not even compile yet; therefore the ENABLE_SIMPLIFIED macro is
	  disabled at config.h

2002-06-20 13:48  thassine

	* src/common/prefs.h, src/target3/t3prefs.cpp,
	  src/target3/t3prefs.h, src/target3/t3project.cpp: added the v0.90
	  bugfixes also to HEAD.

2002-06-19 12:56  thassine

	* src/common/Makefile.OLD, src/common/Makefile.in,
	  src/common/atom.cpp, src/common/atom.h, src/common/eng1_mm.h,
	  src/common/eng1_sf.cpp, src/common/eng1_sf.h,
	  src/common/engine.h, src/common/model.cpp, src/common/moldyn.cpp,
	  src/common/seqbuild.h, src/graphics/project.cpp,
	  src/target1/config.h.OLD, src/target2/config.h.OLD,
	  src/target2/t2project.cpp, src/target3/config.h.OLD: added some
	  changes that were needed to port the simplified forcefield of
	  mine to HEAD. it's not working yet and not even compile yet, but
	  it doesn't matter since one have to set the ENABLE_SIMPLIFIED
	  macro to compile that stuff in...

2002-06-17 10:40  thassine

	* Makefile.in, src/common/define.h, src/common/eng1_sf.cpp,
	  src/common/model.cpp, src/common/model.h,
	  src/common/tab_mm_default.cpp,
	  src/target3/glade/file_export_dialog.cpp,
	  src/target3/glade/file_export_dialog.h,
	  src/target3/glade/file_import_dialog.cpp,
	  src/target3/glade/file_import_dialog.h,
	  src/target3/glade/geomopt_dialog.cpp,
	  src/target3/glade/geomopt_dialog.h,
	  src/target3/glade/moldyn_dialog.cpp,
	  src/target3/glade/moldyn_dialog.h,
	  src/target3/glade/setup_druid.cpp,
	  src/target3/glade/setup_druid.h,
	  src/target3/glade/trajview_dialog.cpp,
	  src/target3/glade/trajview_dialog.h,
	  src/target3/glade_dialog.cpp, src/target3/glade_dialog.h,
	  src/target3/t3dialog.cpp, src/target3/t3project.cpp: the glade
	  files are now installed correctly by make install.

2002-06-14 11:47  thassine

	* src/Makefile.OLD: fixed src/Makefile.OLD clean: also in HEAD.

2002-06-13 13:09  thassine

	* src/common/conjgrad.cpp, src/common/conjgrad.h: also copied
	  conjgrad changes to HEAD.

2002-06-08 09:01  thassine

	* src/target3/glade/setup_druid.cpp,
	  src/target3/glade/setup_druid.glade,
	  src/target3/glade/setup_druid.h, src/target3/t3main.cpp: the
	  setup_druid can now correctly change the pages with prev/next
	  buttons.

2002-06-07 12:49  thassine

	* src/target3/glade/Makefile.OLD, src/target3/glade/Makefile.in,
	  src/target3/glade/setup_druid.cpp,
	  src/target3/glade/setup_druid.glade,
	  src/target3/glade/setup_druid.h, src/target3/t3project.cpp: added
	  an initial version of the setup druid (nothing except cancel
	  works).

2002-06-07 08:26  thassine

	* src/target3/glade/Makefile.OLD, src/target3/glade/Makefile.in,
	  src/target3/glade/file_export_dialog.cpp,
	  src/target3/glade/file_export_dialog.glade,
	  src/target3/glade/file_export_dialog.h,
	  src/target3/glade/file_import_dialog.cpp,
	  src/target3/glade/file_import_dialog.glade,
	  src/target3/glade/file_import_dialog.h,
	  src/target3/t3project.cpp: added the file import/export dialogs.

2002-06-07 06:38  thassine

	* src/target3/glade/Makefile.OLD, src/target3/glade/Makefile.in,
	  src/target3/glade/geomopt_dialog.cpp,
	  src/target3/glade/geomopt_dialog.glade,
	  src/target3/glade/geomopt_dialog.h,
	  src/target3/glade/moldyn_dialog.cpp,
	  src/target3/glade/moldyn_dialog.glade,
	  src/target3/glade/moldyn_dialog.h,
	  src/target3/glade/trajview_dialog.cpp,
	  src/target3/glade/trajview_dialog.glade,
	  src/target3/glade/trajview_dialog.h, src/target3/t3dialog.cpp,
	  src/target3/t3dialog.h, src/target3/t3main.cpp,
	  src/target3/t3project.cpp, src/target3/t3project.h: new dialogs
	  added, and dialog memory leaks fixed (hopefully). the dialogs are
	  now always created with new, and delete is always called at
	  destroy signal handler of the dialog.

2002-06-05 11:39  thassine

	* src/Makefile.OLD: added some Makefile tweaks.

2002-06-05 10:25  thassine

	* src/target3/glade/Makefile.OLD,
	  src/target3/glade/geomopt_dialog.cpp,
	  src/target3/glade/geomopt_dialog.glade,
	  src/target3/glade/geomopt_dialog.h, src/target3/glade_dialog.h,
	  src/target3/t3project.cpp: the geomopt dialog now works using
	  libglade.

2002-06-03 10:23  thassine

	* openbabel/fileformat.h: oops, my mistake. of course there were
	  nothing wrong with fileformat.h but I had an obsolete Makefile.
	  the changes are reverted.

2002-06-03 09:50  thassine

	* openbabel/fileformat.h: there were some undefined functions at
	  fileformat.cpp; just made some dummy functions in fileformat.h so
	  that OB can be compiled...

2002-05-31 16:34  hutchisn

	* configure, configure.in, miniMOPAC/Makefile.in,
	  src/common/Makefile.in, src/graphics/Makefile.in,
	  src/target3/Makefile.in, src/target3/glade/Makefile.in,
	  src/target3/glade/geomopt_dialog.h: Updated makefiles for
	  libglade, etc.

2002-05-31 16:31  hutchisn

	* openbabel/Makefile.in, openbabel/Vector.cpp, openbabel/Vector.h,
	  openbabel/alchemy.cpp, openbabel/amber.cpp, openbabel/aromatic.h,
	  openbabel/aromatic.txt, openbabel/atom.cpp, openbabel/atomtyp.h,
	  openbabel/atomtyp.txt, openbabel/balst.cpp, openbabel/base.cpp,
	  openbabel/base.h, openbabel/bgf.cpp, openbabel/bin2hex.pl,
	  openbabel/binary.cpp, openbabel/binary.h,
	  openbabel/binary_io.cpp, openbabel/binary_io.h,
	  openbabel/bitgrid.cpp, openbabel/bitgrid.h, openbabel/bitvec.h,
	  openbabel/bond.cpp, openbabel/bond.txt, openbabel/box.cpp,
	  openbabel/c3d.cpp, openbabel/cacao.cpp, openbabel/cache.cpp,
	  openbabel/car.cpp, openbabel/chains.cpp, openbabel/chdrw.cpp,
	  openbabel/chiral.cpp, openbabel/chiral.h, openbabel/cml.cpp,
	  openbabel/commandline.h, openbabel/csr.cpp, openbabel/cssr.cpp,
	  openbabel/ctransform.cpp, openbabel/ctransform.h,
	  openbabel/data.cpp, openbabel/data.h, openbabel/dmol.cpp,
	  openbabel/element.h, openbabel/extable.h, openbabel/extable.txt,
	  openbabel/feat.cpp, openbabel/fh.cpp, openbabel/fileformat.cpp,
	  openbabel/fileformat.h, openbabel/gamess.cpp,
	  openbabel/gaussian.cpp, openbabel/generic.cpp,
	  openbabel/generic.h, openbabel/ghemical.cpp, openbabel/grid.h,
	  openbabel/gromos96.cpp, openbabel/hin.cpp, openbabel/jaguar.cpp,
	  openbabel/main.cpp, openbabel/matrix.cpp, openbabel/matrix.h,
	  openbabel/mmod.cpp, openbabel/mol.cpp, openbabel/mol.h,
	  openbabel/molchrg.cpp, openbabel/molchrg.h,
	  openbabel/molvector.cpp, openbabel/molvector.h,
	  openbabel/mopac.cpp, openbabel/mpqc.cpp, openbabel/nwchem.cpp,
	  openbabel/obifstream.h, openbabel/oblib.dsp,
	  openbabel/obutil.cpp, openbabel/obutil.h, openbabel/parsmart.cpp,
	  openbabel/parsmart.h, openbabel/parsmi.cpp, openbabel/patty.cpp,
	  openbabel/patty.h, openbabel/pdb.cpp, openbabel/phmodel.cpp,
	  openbabel/phmodel.h, openbabel/phmodel.txt,
	  openbabel/phmodeldata.h, openbabel/qchem.cpp,
	  openbabel/report.cpp, openbabel/resdata.h, openbabel/ring.cpp,
	  openbabel/ring.h, openbabel/rotor.cpp, openbabel/rotor.h,
	  openbabel/smarts.cpp, openbabel/smarts.h, openbabel/smi.cpp,
	  openbabel/smi.h, openbabel/tinker.cpp, openbabel/tokenst.cpp,
	  openbabel/typer.cpp, openbabel/typer.h, openbabel/types.h,
	  openbabel/unichem.cpp, openbabel/viewmol.cpp, openbabel/xed.cpp,
	  openbabel/xyz.cpp: Merge in current Open Babel (w/ CML and proper
	  namespace support).

2002-05-31 08:12  thassine

	* src/common/Makefile.in, src/graphics/Makefile.in,
	  src/target3/Makefile.in, src/target3/glade/Makefile.in: fixes
	  added to makefiles; now the configuration works otherwise except
	  that libglade incs and libs are missing.

2002-05-30 12:43  thassine

	* configure, configure.in, src/common/define.h: promoted the
	  version number to 0.85 in the HEAD branch.

2002-05-30 11:07  thassine

	* Makefile.in, configure, configure.in, src/common/Makefile.in,
	  src/common/eng1_sf.cpp, src/common/tab_mm_default.cpp,
	  src/graphics/Makefile.in, src/target3/Makefile.in,
	  src/target3/glade/Makefile.in: minor fixes like changed
	  directories etc added.

2002-05-30 09:39  thassine

	* bin/parameters/param_mm, bin/parameters/param_mm/default,
	  bin/parameters/param_mm/default/atomtypes.txt,
	  bin/parameters/param_mm/default/parameters1.txt,
	  bin/parameters/param_mm/default/parameters2.txt,
	  bin/parameters/param_mm/default/parameters3.txt,
	  bin/parameters/param_mm/default/parameters4.txt,
	  bin/parameters/param_mm/default/parameters5.txt,
	  bin/parameters/param_sf, bin/parameters/param_sf/default,
	  bin/parameters/param_sf/default/loopdip.txt,
	  bin/parameters/param_sf/default/looptor.txt,
	  bin/parameters/param_sf/default/nonbonded.txt,
	  src/some-extra-files/newfile.cpp, src/some-extra-files/newfile.h:
	  added new files to bin/parameters and some minor stuff.

2002-05-30 09:34  thassine

	* bin/parameters/mm1param, bin/parameters/mm2param: removed old
	  files under bin/parameters.

2002-05-30 09:29  thassine

	* src/common/atom.cpp, src/common/atom.h, src/common/bond.cpp,
	  src/common/bond.h, src/common/define.h, src/common/eng1_mm.cpp,
	  src/common/eng1_mm.h, src/common/eng1_mm_default.cpp,
	  src/common/eng1_mm_default.h, src/common/eng1_mm_prmfit.cpp,
	  src/common/eng1_mm_prmfit.h, src/common/eng1_qm.cpp,
	  src/common/eng1_qm.h, src/common/eng1_qm_mopac.cpp,
	  src/common/eng1_qm_mopac.h, src/common/eng1_qm_mpqc.cpp,
	  src/common/eng1_qm_mpqc.h, src/common/eng1_sf.cpp,
	  src/common/eng1_sf.h, src/common/eng2_qm_mm.cpp,
	  src/common/eng2_qm_mm.h, src/common/engine.cpp,
	  src/common/engine.h, src/common/filetrans.cpp,
	  src/common/filetrans.h, src/common/geomopt.cpp,
	  src/common/geomopt.h, src/common/intcrd.cpp, src/common/intcrd.h,
	  src/common/model.cpp, src/common/model.h, src/common/moldyn.cpp,
	  src/common/moldyn.h, src/common/search.cpp, src/common/search.h,
	  src/common/seqbuild.cpp, src/common/seqbuild.h,
	  src/common/tab_mm_default.cpp, src/common/tab_mm_default.h,
	  src/common/tab_mm_prmfit.cpp, src/common/tab_mm_prmfit.h,
	  src/common/typedef.h, src/common/typerule.cpp,
	  src/common/typerule.h, src/common/utility.cpp,
	  src/common/utility.h, src/graphics/camera.cpp,
	  src/graphics/camera.h, src/graphics/color.h,
	  src/graphics/mtools.cpp, src/graphics/plane.cpp,
	  src/graphics/plane.h, src/graphics/project.cpp,
	  src/graphics/project.h, src/graphics/ribbon.cpp,
	  src/graphics/ribbon.h, src/graphics/surface.cpp,
	  src/graphics/surface.h, src/graphics/views.cpp,
	  src/graphics/views.h, src/target1/t1main.cpp,
	  src/target2/t2main.cpp, src/target2/t2main.h,
	  src/target2/t2project.cpp, src/target2/t2project.h,
	  src/target2/t2views.cpp, src/target2/t2views.h,
	  src/target3/glade_dialog.cpp, src/target3/glade_dialog.h,
	  src/target3/t3dialog.cpp, src/target3/t3dialog.h,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3project.cpp, src/target3/t3project.h,
	  src/target3/t3views.cpp, src/target3/t3views.h: added the new
	  files.

2002-05-30 09:18  thassine

	* src/common/interface.cpp, src/common/interface.h,
	  src/common/matrix.h, src/common/mm1alg.cpp, src/common/mm1alg.h,
	  src/common/mm1eng.cpp, src/common/mm1eng.h,
	  src/common/mm1eng1.cpp, src/common/mm1eng1.h,
	  src/common/mm1eng9.cpp, src/common/mm1eng9.h,
	  src/common/mm1ic.cpp, src/common/mm1ic.h, src/common/mm1mdl.cpp,
	  src/common/mm1mdl.h, src/common/mm1tab1.cpp,
	  src/common/mm1tab1.h, src/common/mm1tab9.cpp,
	  src/common/mm1tab9.h, src/common/mm1util.cpp,
	  src/common/mm1util.h, src/common/mm2alg.cpp, src/common/mm2alg.h,
	  src/common/mm2eng.cpp, src/common/mm2eng.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h,
	  src/common/mm2util.cpp, src/common/mm2util.h,
	  src/common/mm3mdl.cpp, src/common/mm3mdl.h,
	  src/common/qm1alg.cpp, src/common/qm1alg.h,
	  src/common/qm1e_mopac.cpp, src/common/qm1e_mopac.h,
	  src/common/qm1e_mpqc.cpp, src/common/qm1e_mpqc.h,
	  src/common/qm1eng.cpp, src/common/qm1eng.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/common/qm2eng.cpp, src/common/qm2eng.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/io-jpg.cpp, src/graphics/io-jpg.h,
	  src/graphics/io-png.cpp, src/graphics/io-png.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm1docv.h,
	  src/graphics/mm1rbn.cpp, src/graphics/mm1rbn.h,
	  src/graphics/mm2docv.cpp, src/graphics/mm2docv.h,
	  src/graphics/mm2rbn.cpp, src/graphics/mm2rbn.h,
	  src/graphics/mm3docv.cpp, src/graphics/mm3docv.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/graphics/qm2docv.cpp, src/graphics/qm2docv.h,
	  src/target2/t2docv.cpp, src/target2/t2docv.h,
	  src/target2/t2mm1docv.cpp, src/target2/t2mm1docv.h,
	  src/target2/t2mm2docv.cpp, src/target2/t2mm2docv.h,
	  src/target2/t2mm3docv.cpp, src/target2/t2mm3docv.h,
	  src/target2/t2qm1docv.cpp, src/target2/t2qm1docv.h,
	  src/target2/t2qm2docv.cpp, src/target2/t2qm2docv.h,
	  src/target3/glade_callbacks.cpp, src/target3/glade_callbacks.h,
	  src/target3/glade_interface.cpp, src/target3/glade_interface.h,
	  src/target3/glade_support.cpp, src/target3/glade_support.h,
	  src/target3/t3docv.cpp, src/target3/t3docv.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3mm2docv.cpp, src/target3/t3mm2docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h: the
	  old/renamed files are removed.

2002-05-30 08:29  thassine

	* src/target3/glade/README: update the glade README

2002-05-30 08:27  thassine

	* src/target1/config.h.OLD, src/target2/config.h.OLD,
	  src/target3/config.h.OLD, src/target3/glade/Makefile.OLD,
	  src/target3/glade/Makefile.in,
	  src/target3/glade/geomopt_dialog.cpp,
	  src/target3/glade/geomopt_dialog.glade,
	  src/target3/glade/geomopt_dialog.h,
	  src/target3/glade/ghemical.glade, src/target3/glade/src: added
	  changes to config.h.OLD files and src/target3/glade dir.

2002-05-30 08:17  thassine

	* src/Makefile.OLD, src/common/Makefile.OLD,
	  src/common/Makefile.in, src/graphics/Makefile.OLD,
	  src/graphics/Makefile.in, src/target2/Makefile.OLD,
	  src/target3/Makefile.OLD, src/target3/Makefile.in: the makefiles
	  are updated.

2002-05-30 07:40  thassine

	* CHANGES: the changelog is updated.

2002-05-30 07:35  thassine

	* src/Makefile.OLD: test; this goes to HEAD branch...

2002-05-29 08:11  thassine

	* CHANGES: again testing that the OSP_BRANCH is separate; seems to
	  be but cvs2cl picks all commits to the log; I'll start using OSP:
	  identifier when working with the branch in the future.

2002-05-28 09:03  thassine

	* CHANGES: updated the changelog (using cvs2cl again).

2002-05-28 07:57  thassine

	* src/common/define.h: ooop, reverted the previous.

2002-05-28 07:55  thassine

	* src/common/define.h: just testing how the branches work.

2002-05-27 13:36  thassine

	* bin/parameters/mm2param/loopdip.txt,
	  bin/parameters/mm2param/looptor.txt,
	  bin/parameters/mm2param/nonbonded.txt,
	  small-utilities/getpdb_cd.cpp, small-utilities/getpdb_ftp.cpp,
	  src/common/Makefile.OLD, src/common/Makefile.in,
	  src/common/mm1mdl.h, src/common/mm1util.h, src/common/mm2alg.h,
	  src/common/mm2eng.cpp, src/common/mm2eng.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h,
	  src/common/mm2util.cpp, src/common/mm2util.h,
	  src/common/mm3mdl.cpp, src/common/mm3mdl.h,
	  src/graphics/Makefile.OLD, src/graphics/Makefile.in,
	  src/graphics/mm2docv.cpp, src/graphics/mm3docv.cpp,
	  src/graphics/mm3docv.h, src/graphics/views.h,
	  src/target1/Makefile.OLD, src/target1/t1m_mm2param_cpp.h,
	  src/target2/Makefile.OLD, src/target2/t2main.cpp,
	  src/target2/t2main.h, src/target2/t2mm2docv.cpp,
	  src/target2/t2mm3docv.cpp, src/target2/t2mm3docv.h,
	  src/target3/Makefile.OLD, src/target3/Makefile.in: added some of
	  my own works; not all of this stuff is ready, but I need to start
	  converting them to fit into single-project environment.

2002-05-22 07:23  thassine

	* Makefile.in, configure, configure.in: configure script now
	  updated, scripts now compatible with autoconf 2.53

2002-05-21 11:06  thassine

	* aclocal.m4, configure.in, src/common/Makefile.OLD,
	  src/common/qm1e_mpqc.cpp, src/common/qm1e_mpqc.h,
	  src/config.h.in, src/graphics/Makefile.OLD,
	  src/graphics/Makefile.in, src/target1/Makefile.OLD,
	  src/target1/config.h.OLD, src/target2/Makefile.OLD,
	  src/target2/config.h.OLD, src/target3/Makefile.OLD,
	  src/target3/Makefile.in, src/target3/config.h.OLD: added the
	  configuration system for MPQC v1/v2 (thanks to Michael); BTW you
	  still have to run autoconf to update the configure script.

2002-05-20 07:45  thassine

	* src/common/Makefile.OLD, src/common/qm1e_mpqc.cpp,
	  src/common/qm1e_mpqc.h, src/graphics/Makefile.OLD,
	  src/target1/Makefile.OLD, src/target2/Makefile.OLD,
	  src/target3/Makefile.OLD: support for MPQC v2 was added (but
	  ./configure still needs update).

2002-05-20 06:17  thassine

	* src/target1/t1m_mm1param_cpp.h, src/target1/t1m_mm1param_h.h:
	  oops, forgot to add some files last time.

2002-05-17 07:30  thassine

	* src/common/mm1eng9.cpp, src/common/mm1eng9.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm1tab9.cpp, src/common/mm1tab9.h,
	  src/target1/t1main.cpp, src/target1/t1main.h,
	  src/target2/t2mm1docv.cpp: added my (so far incomplete) system
	  for fitting MM force field parameters; this stuff is not really
	  working yet.

2002-04-29 14:03  thassine

	* src/common/define.h, src/graphics/mm2docv.cpp,
	  src/target2/t2mm2docv.cpp, src/target3/t3mm2docv.cpp,
	  src/target3/t3mm2docv.h: added LABEL_RESIDUE for mm2_docv.

2002-04-17 10:24  thassine

	* src/common/mm2util.cpp, src/common/model.cpp: a few bugs that
	  freed memory multiple times were fixed. there still remains
	  maaany memory leaks, but they are less dangerous than these.

2002-04-16 06:56  thassine

	* src/common/mm2mdl.cpp, src/graphics/mm2docv.cpp: some comments
	  and minor fixes added to mm2_mdl.

2002-04-09 10:18  thassine

	* src/graphics/mm2docv.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h, src/target3/t3mm2docv.cpp,
	  src/target3/t3mm2docv.h, src/target3/t3qm1docv.cpp,
	  src/target3/t3qm1docv.h: some colour/label mode improvements
	  added.

2002-04-08 14:32  thassine

	* src/graphics/mm2docv.cpp, src/graphics/mm2docv.h,
	  src/graphics/mm2rbn.cpp: some cleanups added to the mm2_docv
	  rendering code - should not change the looks/anything.

2002-04-04 12:18  thassine

	* BUGLIST, TODO: the BUGLIST and TODO files are now CSV text files
	  - use a spreadsheet program like Gnumeric or StarOffice/Calc to
	  read and/or modify them.

2002-04-04 08:43  thassine

	* src/graphics/camera.cpp: some cleanups done for the stereo modes;
	  now the effect seems to be independent of orientation.

2002-03-26 18:27  hutchisn

	* openbabel/mol.cpp, openbabel/pdb.cpp: Fixes OpenBabel PDB import
	  problems (PR #529744 for OpenBabel).

2002-02-28 11:43  thassine

	* ghemical.spec: the .spec file updated; the RPM now does the
	  installation with prefix /usr instead of /usr/local.

2002-02-27 09:26  thassine

	* miniMOPAC/Makefile.in: modified miniMOPAC/Makefile.in so that -O
	  optimization is forced in the miniMOPAC directory.

2002-02-26 08:28  thassine

	* ghemical.spec: some updates added to .spec file.

2002-02-25 11:29  thassine

	* AUTHORS, bin/ghemical.xpm, ghemical.spec: added the files for
	  building RedHat binary packages, contributed by Radek Liboska.

2002-02-22 14:09  thassine

	* configure, configure.in, src/common/define.h,
	  src/common/notice.cpp: switch back to development settings.

2002-02-22 10:36  thassine

	* CHANGES, INSTALL, src/common/define.h: changelog updated and all
	  settings are now ready for release as v0.82

2002-02-22 08:29  thassine

	* src/target3/t3mm1docv.cpp: a small fix added to the library
	  widget generation code.

2002-02-21 14:26  thassine

	* bin/user-docs/index.html, bin/user-docs/using_cs_tools.html,
	  bin/user-docs/using_cs_tools01.jpg,
	  bin/user-docs/using_cs_tools02.jpg,
	  bin/user-docs/using_cs_tools03.jpg,
	  bin/user-docs/using_cs_tools04.jpg,
	  bin/user-docs/using_cs_tools05.jpg: user's manual is enhanced; it
	  now contains a section about 1D and 2D energy plots.

2002-02-20 10:34  thassine

	* INSTALL, src/common/mm1alg.h, src/common/mm1mdl.cpp,
	  src/common/mm2alg.h, src/common/mm2mdl.cpp, src/common/qm1alg.h,
	  src/common/qm1mdl.cpp, src/target1/Makefile.OLD,
	  src/target2/Makefile.OLD, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm2docv.cpp, src/target2/t2qm1docv.cpp,
	  src/target3/Makefile.OLD, src/target3/glade_callbacks.cpp,
	  src/target3/glade_interface.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm2docv.cpp, src/target3/t3qm1docv.cpp: old
	  makefiles updated, and the code added for geomopt dialogs +
	  calculations that separates the different termination criteria
	  and makes them optional. it also prints out which criteria was
	  used to terminate the optimization.

2002-02-18 17:06  hutchisn

	* openbabel/pdb.cpp: Don't try to run PerceiveBondOrders yet...
	  this seems to be very buggy.

2002-02-18 16:53  hutchisn

	* openbabel/Makefile.in, openbabel/alchemy.cpp,
	  openbabel/amber.cpp, openbabel/aromatic.txt, openbabel/atom.cpp,
	  openbabel/balst.cpp, openbabel/box.cpp, openbabel/c3d.cpp,
	  openbabel/cacao.cpp, openbabel/car.cpp, openbabel/ccc.cpp,
	  openbabel/commandline.h, openbabel/ctransform.h,
	  openbabel/data.cpp, openbabel/data.h, openbabel/dmol.cpp,
	  openbabel/element.h, openbabel/element.txt, openbabel/extable.h,
	  openbabel/extable.txt, openbabel/feat.cpp, openbabel/gamess.cpp,
	  openbabel/gaussian.cpp, openbabel/ghemical.cpp, openbabel/grid.h,
	  openbabel/hin.cpp, openbabel/jaguar.cpp, openbabel/main.cpp,
	  openbabel/mol.cpp, openbabel/mol.h, openbabel/mopac.cpp,
	  openbabel/mpqc.cpp, openbabel/nwchem.cpp, openbabel/obutil.cpp,
	  openbabel/obutil.h, openbabel/patty.cpp, openbabel/pdb.cpp,
	  openbabel/phmodel.cpp, openbabel/qchem.cpp, openbabel/report.cpp,
	  openbabel/rotor.cpp, openbabel/smarts.h, openbabel/typer.cpp,
	  openbabel/unichem.cpp, openbabel/version.h.in, openbabel/xyz.cpp:
	  Updated Open Babel code, including preliminary bond-order
	  perception.

2002-01-31 13:50  thassine

	* miniMOPAC/README: some documentation fixes for miniMOPAC.

2002-01-31 12:25  thassine

	* src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade_interface.cpp: the check boxes for different
	  termination criteria were added to the geomopt GLADE dialog;
	  their states are not yet checked however.

2002-01-25 16:09  hutchisn

	* small-utilities/Makefile, small-utilities/README,
	  small-utilities/symmetry.c: Add Symmetry program (from Sergei
	  Pachkovsky, who gave OK to use in Ghemical)

2002-01-25 13:42  thassine

	* src/common/Makefile.OLD, src/common/define.h,
	  src/common/qm1mdl.cpp, src/graphics/Makefile.OLD,
	  src/target1/Makefile.OLD, src/target2/Makefile.OLD,
	  src/target3/Makefile.OLD: some comments added, and old makefiles
	  are fixed/updated.

2002-01-25 04:39  hutchisn

	* src/target3/glade_callbacks.cpp, src/target3/t3mm1docv.cpp: Make
	  sure we actually set the optimization limits after the dialog
	  completes...

2002-01-25 04:35  hutchisn

	* openbabel/unichem.cpp: Fix unichem XYZ support (read should
	  expect atomic numbers in Unichem files).

2002-01-22 15:27  thassine

	* src/target3/glade_interface.h, src/target3/glade_support.cpp:
	  verified that /target3 and /target3/glade/src keep in sync...

2002-01-21 22:23  hutchisn

	* src/common/mm1alg.h, src/common/mm1mdl.cpp, src/common/mm2alg.h,
	  src/common/qm1alg.h, src/common/qm1mdl.cpp,
	  src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade/src/glade_support.cpp,
	  src/target3/glade_interface.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm2docv.cpp, src/target3/t3qm1docv.cpp: Add support
	  for terminating geometry optimizations "early" based on delta E
	  or
	  small gradient. Currently does not have a UI for termination
	  based on small
	  step, and this is set to 1.0e-12 so this should never happen.

2002-01-21 11:45  thassine

	* src/common/mm1mdl.cpp, src/common/qm1mdl.cpp: the geomopt output
	  now displays accurate gradient vector lengths.

2002-01-21 07:44  thassine

	* INSTALL, oelib: removed .cvsignore from the oelib directory.

2002-01-18 19:59  hutchisn

	* src/common/mm1mdl.cpp, src/common/qm1mdl.cpp: Added user-friendly
	  display of the step-size, displacement and delta E
	  in geom opt.
	  Seems to indicate that most geom opt can quit early with tests
	  for displ. and/or delta E.

2002-01-15 09:12  thassine

	* src/graphics/mm1docv.cpp: in the 1D and 2D energy plotting tools
	  of mm1_docv it is now possible to select a smaller range of
	  angles if needed, and the final energy can be calculated also
	  using QM methods (so now it's possible to compare MM results
	  against QM results as well as compare different QM results).

2002-01-14 19:10  thassine

	* src/common/Makefile.OLD, src/graphics/Makefile.OLD,
	  src/target1/Makefile.OLD, src/target2/Makefile.OLD,
	  src/target3/Makefile.OLD: converted the old makefiles to use the
	  new openbabel-paths.

2002-01-14 18:12  hutchisn

	* src/common/filetrans.cpp: Delete filename at appropriate
	  time--Babel uses it for a Title when exporting.

2002-01-14 03:57  hutchisn

	* configure, configure.in: Add almost-forgotten configure tests
	  contributed by Michael Banck--check for f2c if g2c is not found
	  (and give an error if neither is found).

2002-01-11 15:20  hutchisn

	* src/common/Makefile.in, src/graphics/Makefile.in,
	  src/target3/Makefile.in: Makefile fixes.

2002-01-10 23:04  hutchisn

	* configure, configure.in, src/common/Makefile.in,
	  src/target3/Makefile.in: Added support for Michael Banck's SC
	  autoconf macros to simplify building MPQC.

2002-01-10 22:45  hutchisn

	* Makefile.in, PROJECT, config.guess, config.sub, configure,
	  configure.in, oelib/GNULICENSE.txt, oelib/Makefile.in,
	  oelib/OELibPrimer.html, oelib/StdAfx.cpp, oelib/StdAfx.h,
	  oelib/Vector.cpp, oelib/Vector.h, oelib/alchemy.cpp,
	  oelib/amber.cpp, oelib/aromatic.h, oelib/aromatic.txt,
	  oelib/atom.cpp, oelib/atomtyp.h, oelib/atomtyp.txt,
	  oelib/balst.cpp, oelib/base.cpp, oelib/base.h, oelib/bgf.cpp,
	  oelib/bin2hex.pl, oelib/binary.cpp, oelib/binary.h,
	  oelib/binary_io.cpp, oelib/binary_io.h, oelib/bitgrid.cpp,
	  oelib/bitgrid.h, oelib/bitvec.cpp, oelib/bitvec.h,
	  oelib/bond.cpp, oelib/box.cpp, oelib/c3d.cpp, oelib/cacao.cpp,
	  oelib/cache.cpp, oelib/car.cpp, oelib/ccc.cpp, oelib/chains.cpp,
	  oelib/chains.h, oelib/chdrw.cpp, oelib/chiral.cpp,
	  oelib/chiral.h, oelib/commandline.cpp, oelib/commandline.h,
	  oelib/configure, oelib/csr.cpp, oelib/cssr.cpp,
	  oelib/ctransform.cpp, oelib/ctransform.h, oelib/cwrap.cpp,
	  oelib/cwrap.h, oelib/data.cpp, oelib/data.h, oelib/dmol.cpp,
	  oelib/element.h, oelib/element.txt, oelib/extable.h,
	  oelib/extable.txt, oelib/feat.cpp, oelib/fh.cpp,
	  oelib/fileformat.cpp, oelib/fileformat.h, oelib/gamess.cpp,
	  oelib/gaussian.cpp, oelib/generic.cpp, oelib/generic.h,
	  oelib/ghemical.cpp, oelib/globals.cpp, oelib/grid.cpp,
	  oelib/grid.h, oelib/gromos96.cpp, oelib/hin.cpp,
	  oelib/jaguar.cpp, oelib/main.cpp, oelib/matrix.cpp,
	  oelib/matrix.h, oelib/mdl.cpp, oelib/mmod.cpp, oelib/mol.cpp,
	  oelib/mol.h, oelib/mol2.cpp, oelib/molchrg.cpp, oelib/molchrg.h,
	  oelib/molvector.cpp, oelib/molvector.h, oelib/mopac.cpp,
	  oelib/mpqc.cpp, oelib/nwchem.cpp, oelib/oeifstream.h,
	  oelib/oelib.dsp, oelib/oelib.dsw, oelib/oeutil.cpp,
	  oelib/oeutil.h, oelib/parsmart.cpp, oelib/parsmart.h,
	  oelib/parsmi.cpp, oelib/patty.cpp, oelib/patty.h, oelib/pdb.cpp,
	  oelib/phmodel.cpp, oelib/phmodel.h, oelib/phmodel.txt,
	  oelib/phmodeldata.h, oelib/qchem.cpp, oelib/quat.c,
	  oelib/rand.cpp, oelib/report.cpp, oelib/resdata.h,
	  oelib/resdata.txt, oelib/ring.cpp, oelib/ring.h, oelib/rotor.cpp,
	  oelib/rotor.h, oelib/smarts.cpp, oelib/smarts.h, oelib/smi.cpp,
	  oelib/smi.h, oelib/tinker.cpp, oelib/tokenst.cpp,
	  oelib/typer.cpp, oelib/typer.h, oelib/types.h, oelib/types.txt,
	  oelib/unichem.cpp, oelib/version.h, oelib/xed.cpp, oelib/xyz.cpp,
	  openbabel, openbabel/Makefile.in, openbabel/StdAfx.cpp,
	  openbabel/StdAfx.h, openbabel/Vector.cpp, openbabel/Vector.h,
	  openbabel/alchemy.cpp, openbabel/amber.cpp, openbabel/aromatic.h,
	  openbabel/aromatic.txt, openbabel/atom.cpp, openbabel/atomtyp.h,
	  openbabel/atomtyp.txt, openbabel/balst.cpp, openbabel/base.cpp,
	  openbabel/base.h, openbabel/bgf.cpp, openbabel/bin2hex.pl,
	  openbabel/binary.cpp, openbabel/binary.h,
	  openbabel/binary_io.cpp, openbabel/binary_io.h,
	  openbabel/bitgrid.cpp, openbabel/bitgrid.h, openbabel/bitvec.cpp,
	  openbabel/bitvec.h, openbabel/bond.cpp, openbabel/box.cpp,
	  openbabel/c3d.cpp, openbabel/cacao.cpp, openbabel/cache.cpp,
	  openbabel/car.cpp, openbabel/ccc.cpp, openbabel/chains.cpp,
	  openbabel/chains.h, openbabel/chdrw.cpp, openbabel/chiral.cpp,
	  openbabel/chiral.h, openbabel/commandline.cpp,
	  openbabel/commandline.h, openbabel/csr.cpp, openbabel/cssr.cpp,
	  openbabel/ctransform.cpp, openbabel/ctransform.h,
	  openbabel/cwrap.cpp, openbabel/cwrap.h, openbabel/data.cpp,
	  openbabel/data.h, openbabel/dmol.cpp, openbabel/element.h,
	  openbabel/element.txt, openbabel/extable.h,
	  openbabel/extable.txt, openbabel/feat.cpp, openbabel/fh.cpp,
	  openbabel/fileformat.cpp, openbabel/fileformat.h,
	  openbabel/gamess.cpp, openbabel/gaussian.cpp,
	  openbabel/generic.cpp, openbabel/generic.h,
	  openbabel/ghemical.cpp, openbabel/grid.cpp, openbabel/grid.h,
	  openbabel/gromos96.cpp, openbabel/hin.cpp, openbabel/jaguar.cpp,
	  openbabel/main.cpp, openbabel/matrix.cpp, openbabel/matrix.h,
	  openbabel/mdl.cpp, openbabel/mmod.cpp, openbabel/mol.cpp,
	  openbabel/mol.h, openbabel/mol2.cpp, openbabel/molchrg.cpp,
	  openbabel/molchrg.h, openbabel/molvector.cpp,
	  openbabel/molvector.h, openbabel/mopac.cpp, openbabel/mpqc.cpp,
	  openbabel/nwchem.cpp, openbabel/obifstream.h,
	  openbabel/oblib.dsp, openbabel/oblib.dsw, openbabel/obutil.cpp,
	  openbabel/obutil.h, openbabel/parsmart.cpp, openbabel/parsmart.h,
	  openbabel/parsmi.cpp, openbabel/patty.cpp, openbabel/patty.h,
	  openbabel/pdb.cpp, openbabel/phmodel.cpp, openbabel/phmodel.h,
	  openbabel/phmodel.txt, openbabel/phmodeldata.h,
	  openbabel/qchem.cpp, openbabel/quat.c, openbabel/rand.cpp,
	  openbabel/report.cpp, openbabel/resdata.h, openbabel/resdata.txt,
	  openbabel/ring.cpp, openbabel/ring.h, openbabel/rotor.cpp,
	  openbabel/rotor.h, openbabel/smarts.cpp, openbabel/smarts.h,
	  openbabel/smi.cpp, openbabel/smi.h, openbabel/tinker.cpp,
	  openbabel/tokenst.cpp, openbabel/typer.cpp, openbabel/typer.h,
	  openbabel/types.h, openbabel/types.txt, openbabel/unichem.cpp,
	  openbabel/version.h, openbabel/xed.cpp, openbabel/xyz.cpp,
	  src/common/Makefile.in, src/common/filetrans.cpp,
	  src/common/filetrans.h, src/common/mm1mdl.cpp,
	  src/common/mm1mdl.h, src/common/notice.cpp,
	  src/common/utility.cpp, src/graphics/Makefile.in,
	  src/graphics/docview.cpp, src/target3/Makefile.in: Updated with
	  OpenBabel replacing OELib.

2002-01-10 18:28  hutchisn

	* src/graphics/mtools.h, src/graphics/views.cpp,
	  src/graphics/views.h: Add data types for select modes and measure
	  modes.

2002-01-10 18:20  hutchisn

	* oelib/gamess.cpp: Small fix for GAMESS file format.
	  (this is a temporary issue until OpenBabel is imported in a day
	  or so.)

2002-01-07 13:51  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h: some cleanups for the
	  model classes, plus some documentation updates.

2002-01-05 23:00  hutchisn

	* aclocal.m4: Added Michael Banck's contributed SC tests. These
	  have not yet been implemented into configure.in yet.

2002-01-02 14:40  thassine

	* INSTALL, src/common/Makefile.OLD, src/graphics/Makefile.OLD,
	  src/target1/Makefile.OLD, src/target2/Makefile.OLD,
	  src/target3/Makefile.OLD: converted the old makefiles to use the
	  Scientific Computation toolkit (SC toolkit) of MPQC, instead of
	  the MPQC object files and headers directly.

2001-12-31 13:19  thassine

	* src/common/interface.cpp, src/common/interface.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3qm1docv.cpp: the
	  all_atoms_interface is now implemented. it works as a bridge
	  between MM and QM models, and offers a stadard set of functions
	  to access atoms and bonds in them. the convert-to-MM/QM feature
	  is now implemented using all_atoms_interface, and also the
	  OELib/OpenBabel complatibility methods might fit into it.

2001-12-29 14:56  thassine

	* src/graphics/camera.cpp, src/graphics/camera.h,
	  src/graphics/docview.cpp, src/graphics/objects.cpp,
	  src/graphics/objects.h, src/graphics/views.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3qm1docv.cpp,
	  src/target3/t3views.cpp: the convert-project-to-QM/MM and
	  attach/detach-this-view operations now retain the graphics
	  settings.

2001-12-29 11:51  thassine

	* src/graphics/views.cpp: the GLUT stroke fonts now make readable
	  text in all cases, but 3D text (as in labels) is still
	  misaligned.

2001-12-28 13:43  thassine

	* src/graphics/camera.cpp, src/graphics/mm1docv.cpp,
	  src/graphics/mm2docv.cpp, src/graphics/qm1docv.cpp,
	  src/graphics/views.cpp, src/graphics/views.h: tried to simplify
	  the text rendering functions; also an initial support for
	  line-based font rendering (using glutStrokeBitmap()) but it's
	  still quite broken.

2001-12-20 11:11  thassine

	* src/graphics/mm1docv.cpp, src/graphics/views.cpp,
	  src/graphics/views.h: the plots are now checked and commented;
	  should work but UI is still console-based.

2001-12-19 14:47  thassine

	* src/graphics/mm1docv.cpp, src/graphics/mtools.cpp,
	  src/graphics/views.cpp, src/graphics/views.h: now it's possible
	  to scale colors of plot2d_view (using zoom mousetool), and the
	  plot views now store and display the strcutures (using
	  select/orbit/rotate tools); still need to do some testing for the
	  plots but they look good for symmterical molecules.

2001-12-19 11:45  thassine

	* src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/mtools.cpp, src/graphics/qm1docv.cpp,
	  src/graphics/qm1docv.h, src/graphics/views.cpp,
	  src/graphics/views.h: moved the enlevdiag_view class to the newly
	  created plotting_view class family; now there is a consistent way
	  to handle non-graphics (energy-level diagram, plot1d, plot2d)
	  views.

2001-12-18 15:20  thassine

	* src/common/mm1eng1.cpp, src/common/mm1eng9.cpp: just docs
	  clarified a bit...

2001-12-18 12:43  thassine

	* src/common/mm1eng1.cpp, src/common/mm1eng9.cpp,
	  src/common/mm1mdl.cpp, src/graphics/mm1docv.cpp: a better
	  tor-constraints added to mm1_eng classes for the 1d and 2d plots.

2001-12-18 07:53  thassine

	* INSTALL: updated the installation docs.

2001-12-17 15:17  thassine

	* src/common/intcrd.cpp, src/common/intcrd.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/views.cpp,
	  src/graphics/views.h, src/target2/t2mm1docv.cpp,
	  src/target2/t2views.cpp, src/target2/t2views.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3views.cpp, src/target3/t3views.h: added 1D and 2D
	  energy vs. torsion angles-plotting feature; it compiles and even
	  more or less works, but it still needs a lot of finishing.

2001-12-12 12:35  thassine

	* bin/user-docs/index.html, src/graphics/docview.cpp,
	  src/graphics/docview.h, src/graphics/views.cpp,
	  src/graphics/views.h, src/target2/t2qm1docv.cpp,
	  src/target2/t2views.cpp, src/target2/t2views.h,
	  src/target3/t3docv.cpp, src/target3/t3docv.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm2docv.cpp,
	  src/target3/t3qm1docv.cpp, src/target3/t3views.cpp,
	  src/target3/t3views.h: added attach/detach feature for
	  gnome_graphics_views. earlier it was somewhat difficult to use
	  multiple views, because only one at a time could be looked at the
	  GtkNotebook. now the views can be detached from the notebook to
	  separate windows, and attached back to notebook as well. also
	  some GLUT and plotting improvements are added.

2001-12-10 13:27  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h, src/common/model.cpp,
	  src/common/model.h, src/common/qm1alg.cpp, src/common/qm1alg.h,
	  src/common/qm1e_mopac.cpp, src/common/qm1eng.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/target2/t2mm1docv.cpp, src/target2/t2qm1docv.cpp: a simple
	  transition state search tool added for qm1_mdl; at the moment
	  it's badly documented and only works in the GLUT user interface
	  (target2).

2001-12-07 13:56  thassine

	* src/common/model.h, src/common/qm1mdl.cpp,
	  src/graphics/qm1docv.cpp, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm2docv.cpp, src/target2/t2qm1docv.cpp: some t2
	  cleanups added, and improved qm1_mdl support for multiple
	  crd-sets.

2001-12-05 16:11  thassine

	* src/common/mm1eng.h, src/common/mm1eng1.cpp,
	  src/common/mm1eng1.h, src/common/mm1eng9.cpp,
	  src/common/mm1eng9.h: added an initial framework for adding
	  torsional constraints in molecular mechanics force fields; the
	  old stuff should work as usual.

2001-12-05 14:53  thassine

	* src/common/errutil.cpp, src/common/notice.h,
	  src/common/typedef.h, src/graphics/mm2rbn.cpp: added some Alpha
	  platform fixes from Bob Williams.

2001-11-27 05:35  hutchisn

	* Makefile.in: Added distclean target and changed help destination
	  to smooth with Debian package.

2001-11-27 05:32  hutchisn

	* src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3prefs.cpp: Added Selection Mode submenu (w/radio
	  items) and fixed library error message.

2001-11-26 23:31  hutchisn

	* src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h: Updated
	  library feature to be fully user-configurable (# levels,
	  directory path)
	  Now also add submenus for subdirectories!

2001-11-26 09:05  thassine

	* src/target3/t3mm1docv.cpp, src/target3/t3views.h: minor fixes for
	  'Library', and some cleanups.

2001-11-21 05:28  hutchisn

	* src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3views.h: Add "library submenu" as a first
	  draft--still needs to be user-configurable
	  (recursive function to establish the menu) and still buggy.

2001-11-13 12:27  thassine

	* INSTALL, src/common/mm1mdl.h, src/common/mm2mdl.h,
	  src/common/qm1mdl.h, src/common/qm2mdl.h, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm1docv.h,
	  src/graphics/mm2docv.cpp, src/graphics/mm2docv.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/target3/t3main.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3qm1docv.cpp, src/target3/t3views.cpp: made the
	  SelectNone feature as a combination of SelectAll and
	  InvertSelection (less code this way), and added some enhancements
	  to FileOpen (graphics update forced, and possibly selected new
	  atoms now replace the old selection).

2001-11-12 16:20  hutchisn

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h, src/common/model.h,
	  src/common/qm1mdl.h, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm1docv.h,
	  src/graphics/mm2docv.cpp, src/graphics/mm2docv.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3views.cpp,
	  src/target3/t3views.h: Added SelectNone() and support for
	  "inserting" files (open with molecules selected).

2001-11-09 18:32  hutchisn

	* oelib/mol.cpp, src/common/filetrans.cpp: Fix bug with OELib
	  making Kekule structures. OELib now no longer clears flags
	  for perceived Aromatic bonds and atoms. Our code makes bonds
	  conjugated if
	  OE has marked the bond as aromatic.

2001-11-08 10:19  thassine

	* configure, configure.in, src/common/define.h: back to devel
	  settings, version number changed to 0.82.

2001-11-08 07:51  thassine

	* CHANGES, src/common/define.h: some final changes for the new
	  release; this is released as 0.81.

2001-11-07 09:43  thassine

	* CHANGES, INSTALL, bin/user-docs/index.html: some documentation
	  updates added.

2001-10-29 15:48  thassine

	* src/common/define.h, src/common/mm2mdl.cpp, src/common/mm2mdl.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/graphics/mm1docv.cpp, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm2docv.cpp, src/target3/t3docv.h,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3mm2docv.cpp, src/target3/t3mm2docv.h,
	  src/target3/t3qm1docv.cpp: some generic improvements added: some
	  t3 file operations added and mm1_mdl labels feature improved.

2001-10-23 13:10  thassine

	* src/common/mm1eng.cpp, src/common/mm1eng.h,
	  src/common/mm1eng1.cpp, src/common/mm1eng1.h,
	  src/common/mm1eng9.cpp, src/common/mm1eng9.h,
	  src/common/mm1mdl.cpp, src/common/mm1tab1.cpp,
	  src/common/mm1tab1.h, src/common/mm1tab9.cpp,
	  src/common/mm1tab9.h, src/common/mm1util.cpp,
	  src/common/mm2eng.cpp, src/common/mm2eng.h,
	  src/common/mm2mdl.cpp, src/common/model.cpp,
	  src/graphics/mm2docv.cpp, src/graphics/plane.cpp,
	  src/graphics/surface.cpp, src/target1/t1m_mm2param_cpp.h,
	  src/target1/t1main.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h: did some cleanups for eng-classes
	  (removed some old unnecessary parts); nothing should have changed
	  in how the classes actually work. also tried to improve code
	  readability generally. in summary: everything should still work
	  as it used to...

2001-10-18 15:01  thassine

	* src/common/mm1eng.cpp, src/common/mm1eng.h,
	  src/common/mm1eng1.cpp, src/common/mm1eng1.h,
	  src/common/mm1eng9.cpp, src/common/mm1eng9.h: a new energy term
	  for out of plane bending must be added soon to forcefield; added
	  an empty framework for the new term.

2001-10-08 14:39  thassine

	* bin/parameters/mm1param/stable/atomtypes.txt,
	  bin/parameters/mm1param/stable/parameters1.txt,
	  bin/parameters/mm1param/stable/parameters2.txt,
	  bin/parameters/mm1param/stable/parameters3.txt,
	  bin/parameters/mm1param/stable/parameters4.txt,
	  bin/parameters/mm1param/stable/parameters5.txt,
	  bin/parameters/mm1param/unstable/atomtypes.txt,
	  bin/parameters/mm1param/unstable/parameters1.txt,
	  bin/parameters/mm1param/unstable/parameters2.txt,
	  bin/parameters/mm1param/unstable/parameters3.txt,
	  bin/parameters/mm1param/unstable/parameters4.txt,
	  bin/parameters/mm1param/unstable/parameters5.txt,
	  src/common/mm1eng1.h, src/common/mm1eng9.h,
	  src/common/mm1mdl.cpp, src/common/mm1tab1.cpp,
	  src/common/mm1tab1.h, src/common/mm1tab9.cpp,
	  src/common/mm1tab9.h: made some rearrangements at mm1_eng classes
	  that make expermimentation with the classes easier; also the
	  parameter files have been changed so you should do the #make
	  install# for this version.

2001-10-03 10:56  thassine

	* CHANGES, PROJECT: changed the old manually maintained
	  changes-file to a newer log that is maintained using a cvs2cl.pl
	  utility; it makes a logfile using cvs log information; see
	  http://www.red-bean.com/cvs2cl/

2001-10-03 10:47  thassine

	* src/common/mm2mdl.h, src/common/qm2mdl.h, src/target3/t3main.cpp,
	  src/target3/t3prefs.cpp: a temporary modification done for colour
	  prefs at t3prefs.cpp where the default values are just quickly
	  returned (a quick fix to improve graphics performance of 0.80
	  compared to 0.42).

2001-10-01 03:50  hutchisn

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h, src/common/mm2mdl.h,
	  src/common/model.h, src/common/qm1mdl.h,
	  src/target3/glade_callbacks.cpp, src/target3/t3main.cpp: Moved
	  import code into mm1model so it can be called from other parts of
	  the code.
	  Added support for command-line flags, e.g. -f opens a ghemical
	  file, -i imports a file.
	  And any remaining arguments are assumed to be filenames to
	  import.
	  (Keep in mind that we can import a .mm1gp or .qm1gp anyway.)
	  
	  Allows $PATH/ghemical to be used as a web helper application.

2001-10-01 03:42  hutchisn

	* oelib/data.cpp: Fix bugs with extension handling--make sure to
	  lowercase before comparisons.
	  Fixes problems, e.g. .PDB = .pdb

2001-10-01 03:39  hutchisn

	* oelib/element.txt: Fix max valence on P to allow PF6, etc.

2001-09-27 12:57  thassine

	* src/common/define.h: changed the main web address to
	  www.bioinformatics.org

2001-09-27 12:14  thassine

	* CHANGES, miniMOPAC/README, miniMOPAC/fortran/iter.f,
	  miniMOPAC/iter.c: mopac iter.f changed so that the program is not
	  closed even if SCF convergence problems; the mopac geometry
	  optimization is now much more resistant to crashes.

2001-09-26 14:35  thassine

	* CHANGES, INSTALL, miniMOPAC/README, miniMOPAC/esp.c,
	  miniMOPAC/fortran/esp.f, miniMOPAC/fortran/iter.f,
	  miniMOPAC/fortran/minimopac.f, miniMOPAC/fortran/mopac.f,
	  miniMOPAC/iter.c, miniMOPAC/minimopac.c,
	  src/common/qm1e_mopac.cpp: some MOPAC fortran code cleanups;
	  unnecessary file operations removed, and output is now directed
	  to console. now works also with redhat 7.1???

2001-09-24 14:21  thassine

	* src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/qm1docv.cpp: added to
	  measure tool a set if model-independent measurement functions in
	  an effort to make it simpler.

2001-09-24 13:10  thassine

	* BUGLIST, src/target2/t2qm1docv.cpp,
	  src/target3/glade_callbacks.cpp, src/target3/glade_interface.cpp,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h: a new known
	  bug was added; qm1 geomopt dialog was added for gnome version.

2001-09-14 21:17  hutchisn

	* Makefile.in, bin/ghemical.png, src/common/Makefile.in,
	  src/graphics/Makefile.in, src/target3/Makefile.in: Add distclean
	  targets to Makefiles

2001-09-14 13:08  thassine

	* src/graphics/views.cpp: the energy level diagram now tries to
	  detect degenerate energy levels (like in N2 or F2) and draw them
	  side by side rather than overlapped.

2001-09-14 10:44  thassine

	* src/graphics/docview.cpp, src/graphics/mm1docv.cpp: completed the
	  fixes for known mem leaks at docview.cpp

2001-09-07 23:20  hutchisn

	* oelib, oelib/.cvsignore, oelib/configure, oelib/dmol.cpp,
	  src/common/filetrans.cpp, src/graphics/docview.cpp,
	  src/graphics/mm1docv.cpp, src/graphics/views.cpp,
	  src/target3/t3prefs.cpp: Fix a few memory leaks and bugs.

2001-09-07 13:22  thassine

	* CHANGES, configure, configure.in, src/common/define.h:
	  development starts again, promoted version number to 0.81

2001-09-06 07:21  thassine

	* CHANGES, INSTALL, bin/user-docs/index.html,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/target2/t2mm1docv.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h: did a last-minute addition of random
	  conformational search; this is released as version 0.80

2001-09-05 13:37  thassine

	* CHANGES, INSTALL, bin/user-docs/index.html: final fixes to
	  documentation etc...

2001-09-04 09:38  thassine

	* src/common/mm1eng1.cpp, src/common/mm1eng9.cpp,
	  src/common/mm1mdl.h, src/common/mm1tab1.cpp,
	  src/common/mm1tab9.cpp: some cleanups at MM eng/tab classes.

2001-09-04 08:07  thassine

	* src/common/mm1eng.h, src/common/mm1tab1.cpp,
	  src/common/mm1tab9.cpp: minor changes and cleanups.

2001-09-03 10:01  thassine

	* src/common/mm1tab1.cpp, src/common/mm1tab9.cpp,
	  src/common/mm1util.cpp, src/common/mm1util.h: a minor cleanup for
	  mm1_typerule.

2001-09-03 07:06  thassine

	* miniMOPAC/README, src/common/mm1mdl.h: minor additions to mm1_mdl
	  and MOPAC docs.

2001-08-30 04:22  hutchisn

	* oelib/Makefile.in, oelib/atom.cpp, oelib/base.cpp, oelib/base.h,
	  oelib/binary.cpp, oelib/binary_io.cpp, oelib/binary_io.h,
	  oelib/bitgrid.cpp, oelib/bond.cpp, oelib/chains.cpp,
	  oelib/chiral.cpp, oelib/ctransform.cpp, oelib/ctransform.h,
	  oelib/data.cpp, oelib/data.h, oelib/element.h, oelib/element.txt,
	  oelib/gamess.cpp, oelib/generic.cpp, oelib/generic.h,
	  oelib/jaguar.cpp, oelib/main.cpp, oelib/mdl.cpp, oelib/mol.cpp,
	  oelib/mol.h, oelib/oeutil.cpp, oelib/oeutil.h,
	  oelib/parsmart.cpp, oelib/parsmart.h, oelib/parsmi.cpp,
	  oelib/patty.cpp, oelib/patty.h, oelib/phmodel.cpp,
	  oelib/phmodel.txt, oelib/ring.cpp, oelib/ring.h,
	  oelib/smarts.cpp, oelib/smarts.h, oelib/smi.cpp,
	  oelib/tokenst.cpp, oelib/typer.cpp, src/common/filetrans.cpp:
	  Update with new OELib code -- a few new filetypes, cleanups and
	  better bonding
	  for QM files.

2001-08-29 13:21  thassine

	* AUTHORS, src/graphics/camera.cpp, src/graphics/camera.h,
	  src/target3/t3main.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm2docv.cpp, src/target3/t3qm1docv.cpp,
	  src/target3/t3views.cpp, src/target3/t3views.h: added an
	  alternative way for camera setup in stereo viewing modes;
	  copyright notices etc updated.

2001-08-29 10:18  thassine

	* src/target3/t3mm1docv.cpp, src/target3/t3views.cpp,
	  src/target3/t3views.h: added Mike's stereo code (under target3).

2001-08-29 10:18  thassine

	* src/graphics/camera.cpp, src/graphics/camera.h: added Mike's
	  stereo code (under graphics).

2001-08-29 07:08  thassine

	* configure, configure.in, src/common/define.h,
	  src/common/qm1e_mopac.cpp, src/common/qm1e_mopac.h,
	  src/common/qm1mdl.cpp: a safer mopac locking mechanism added,
	  version number promoted to 0.80.

2001-08-28 07:04  thassine

	* INSTALL, miniMOPAC/README, miniMOPAC/fortran/minimopac.f,
	  miniMOPAC/minimopac.c, src/common/qm1e_mopac.cpp: mopac engine
	  now survives from change of molecule (the fortran variables
	  NUMCAL and ISOK were handled wrong), and some docs updated.

2001-08-27 12:35  thassine

	* bin/user-docs/enlevdiag.jpg, bin/user-docs/index.html,
	  bin/user-docs/maintools.jpg: user's manual quickly updated.

2001-08-27 09:26  thassine

	* src/common/qm1e_mopac.cpp: added comments about a specifig bug in
	  mopac.

2001-08-27 08:13  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/common/qm1e_mopac.cpp,
	  src/common/qm1e_mopac.h, src/common/qm1e_mpqc.cpp,
	  src/common/qm1e_mpqc.h, src/common/qm1mdl.cpp,
	  src/common/qm1mdl.h: hamiltonian/basis set selection added for QM
	  engs.

2001-08-26 09:45  thassine

	* src/common/mm1alg.cpp, src/common/mm2alg.cpp,
	  src/common/qm1alg.cpp, src/common/qm1e_mopac.cpp,
	  src/common/qm1mdl.cpp: minor bugs fixed in
	  mm1/qm1_geomopt::GetValue() where it calculated gradient when
	  only energy was needed. also qm1_eng_mopac and qm1_geomopt
	  settings are optimized for speed/stability (now simple molecules
	  with good starting geometries are quite safe).

2001-08-25 14:48  thassine

	* src/common/qm1e_mopac.cpp, src/common/qm1e_mpqc.cpp,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade_callbacks.cpp, src/target3/glade_interface.cpp:
	  now the total charge can be specified in QM models; also checking
	  added for QM setup.

2001-08-25 11:50  thassine

	* src/common/qm1e_mpqc.cpp: energy level diagram now works for ab
	  initio as well.

2001-08-24 13:12  thassine

	* src/common/qm1e_mopac.cpp, src/common/qm1e_mpqc.cpp,
	  src/common/qm1e_mpqc.h: force calculations + algorithms added for
	  MPQC.

2001-08-24 08:34  thassine

	* src/common/qm1e_mopac.cpp, src/common/qm1mdl.cpp: fixed a
	  gradient scaling bug in MOPAC engine; the geometry optimization
	  is much more robust now.

2001-08-23 18:06  hutchisn

	* src/graphics/mm1docv.cpp, src/graphics/mm2docv.cpp,
	  src/graphics/qm1docv.cpp, src/graphics/views.cpp,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm2docv.cpp,
	  src/target3/t3qm1docv.cpp: Migrate general "Graphics" prefs
	  section to MM1Graphics, etc.

2001-08-23 12:38  thassine

	* src/common/engine.h, src/common/mm1eng.cpp, src/common/mm1eng.h,
	  src/common/mm2eng.cpp, src/common/mm2eng.h,
	  src/common/qm1e_mopac.cpp, src/common/qm1e_mopac.h,
	  src/common/qm1e_mpqc.cpp, src/common/qm1e_mpqc.h,
	  src/common/qm1eng.cpp, src/common/qm1eng.h,
	  src/common/qm1mdl.cpp, src/graphics/views.cpp,
	  src/target2/t2mm1docv.cpp, src/target2/t2qm1docv.cpp: many
	  smaller cleanups/fixes...

2001-08-22 22:21  hutchisn

	* src/graphics/mm1docv.cpp, src/graphics/qm1docv.cpp: add QM
	  measure functionality

2001-08-22 22:20  hutchisn

	* src/common/mm1mdl.cpp, src/common/mm2mdl.cpp,
	  src/common/qm1mdl.cpp: Use sprintf to give a standardized output
	  to the geometry opt. output.

2001-08-22 16:31  hutchisn

	* src/common/qm1mdl.cpp, src/target3/t3qm1docv.cpp: Use the same
	  methods for ImportMM command as "convert" routines--and make sure
	  we update the title!

2001-08-22 13:27  thassine

	* src/common/mm1mdl.h, src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/qm1docv.cpp,
	  src/target3/t3docv.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3qm1docv.cpp: various smaller changes...

2001-08-22 11:18  thassine

	* CHANGES, src/common/qm1e_mopac.cpp, src/common/qm1e_mopac.h,
	  src/common/qm1e_mpqc.cpp, src/common/qm1e_mpqc.h,
	  src/common/qm1eng.h, src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/graphics/mtools.cpp, src/graphics/mtools.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/graphics/views.cpp, src/graphics/views.h,
	  src/target2/t2qm1docv.cpp, src/target2/t2views.cpp,
	  src/target2/t2views.h, src/target3/t3qm1docv.cpp,
	  src/target3/t3qm1docv.h, src/target3/t3views.cpp,
	  src/target3/t3views.h: an initial version of energy-level
	  diagrams for QM models added (now works for mopac only).

2001-08-21 15:07  hutchisn

	* src/graphics/mm2docv.cpp, src/target3/t3qm1docv.cpp: Add more
	  config use in QM and MM2 modes.

2001-08-21 15:07  hutchisn

	* src/target3/t3mm1docv.cpp: Add minimal MM -> QM conversion code.
	  Doesn't quite set the filename correctly
	  but otherwise pretty much correct.

2001-08-20 11:03  thassine

	* CHANGES, miniMOPAC/esp.c, miniMOPAC/fortran/esp.f,
	  src/common/qm1e_mopac.cpp, src/common/qm1e_mpqc.cpp,
	  src/graphics/qm1docv.cpp, src/target2/t2qm1docv.cpp,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h: the rest of
	  qm1_eng_mopac plots added, and a scaling bug in MO plots fixed.

2001-08-18 09:45  thassine

	* CHANGES, miniMOPAC/README, miniMOPAC/fortran/minimopac.f,
	  miniMOPAC/minimopac.c, src/common/qm1e_mopac.cpp: some cleanups
	  done in qm1_eng_mopac (the fortran and C code are now better
	  separated, easier to maintain).

2001-08-18 07:01  thassine

	* miniMOPAC/fortran/SIZES: ooops, forgot to add the SIZES file.

2001-08-17 17:17  thassine

	* miniMOPAC/fortran/esp.f, miniMOPAC/fortran/minimopac.f: added all
	  changes to mopac fortran source before 2001-08-17.

2001-08-17 17:12  thassine

	* miniMOPAC/fortran, miniMOPAC/fortran/aababc.f,
	  miniMOPAC/fortran/addfck.f, miniMOPAC/fortran/addhcr.f,
	  miniMOPAC/fortran/addnuc.f, miniMOPAC/fortran/analyt.f,
	  miniMOPAC/fortran/anavib.f, miniMOPAC/fortran/axis.f,
	  miniMOPAC/fortran/block.f, miniMOPAC/fortran/bonds.f,
	  miniMOPAC/fortran/brlzon.f, miniMOPAC/fortran/btoc.f,
	  miniMOPAC/fortran/calpar.f, miniMOPAC/fortran/capcor.f,
	  miniMOPAC/fortran/cdiag.f, miniMOPAC/fortran/chrge.f,
	  miniMOPAC/fortran/cnvg.f, miniMOPAC/fortran/compfg.f,
	  miniMOPAC/fortran/consts.f, miniMOPAC/fortran/cqden.f,
	  miniMOPAC/fortran/datin.f, miniMOPAC/fortran/dcart.f,
	  miniMOPAC/fortran/delmol.f, miniMOPAC/fortran/delri.f,
	  miniMOPAC/fortran/denrot.f, miniMOPAC/fortran/densit.f,
	  miniMOPAC/fortran/depvar.f, miniMOPAC/fortran/deri0.f,
	  miniMOPAC/fortran/deri1.f, miniMOPAC/fortran/deri2.f,
	  miniMOPAC/fortran/deri21.f, miniMOPAC/fortran/deri22.f,
	  miniMOPAC/fortran/deri23.f, miniMOPAC/fortran/deritr.f,
	  miniMOPAC/fortran/deriv.f, miniMOPAC/fortran/dernvo.f,
	  miniMOPAC/fortran/ders.f, miniMOPAC/fortran/dfock2.f,
	  miniMOPAC/fortran/dfpsav.f, miniMOPAC/fortran/dgemm.f,
	  miniMOPAC/fortran/dgemv.f, miniMOPAC/fortran/dger.f,
	  miniMOPAC/fortran/dgetf2.f, miniMOPAC/fortran/dgetrf.f,
	  miniMOPAC/fortran/dgetri.f, miniMOPAC/fortran/diag.f,
	  miniMOPAC/fortran/diat.f, miniMOPAC/fortran/diat2.f,
	  miniMOPAC/fortran/diegrd.f, miniMOPAC/fortran/dielen.f,
	  miniMOPAC/fortran/diis.f, miniMOPAC/fortran/dijkl1.f,
	  miniMOPAC/fortran/dijkl2.f, miniMOPAC/fortran/dipind.f,
	  miniMOPAC/fortran/dipole.f, miniMOPAC/fortran/dlaswp.f,
	  miniMOPAC/fortran/dofs.f, miniMOPAC/fortran/dot.f,
	  miniMOPAC/fortran/drc.f, miniMOPAC/fortran/drcout.f,
	  miniMOPAC/fortran/dtrmm.f, miniMOPAC/fortran/dtrmv.f,
	  miniMOPAC/fortran/dtrsm.f, miniMOPAC/fortran/dtrti2.f,
	  miniMOPAC/fortran/dtrtri.f, miniMOPAC/fortran/dvfill.f,
	  miniMOPAC/fortran/ef.f, miniMOPAC/fortran/enpart.f,
	  miniMOPAC/fortran/esp.f, miniMOPAC/fortran/etime.c,
	  miniMOPAC/fortran/exchng.f, miniMOPAC/fortran/fdate.c,
	  miniMOPAC/fortran/ffhpol.f, miniMOPAC/fortran/flepo.f,
	  miniMOPAC/fortran/fmat.f, miniMOPAC/fortran/fock1.f,
	  miniMOPAC/fortran/fock2.f, miniMOPAC/fortran/force.f,
	  miniMOPAC/fortran/formxy.f, miniMOPAC/fortran/forsav.f,
	  miniMOPAC/fortran/frame.f, miniMOPAC/fortran/freqcy.f,
	  miniMOPAC/fortran/geout.f, miniMOPAC/fortran/geoutg.f,
	  miniMOPAC/fortran/getgeg.f, miniMOPAC/fortran/getgeo.f,
	  miniMOPAC/fortran/getsym.f, miniMOPAC/fortran/gettxt.f,
	  miniMOPAC/fortran/gmetry.f, miniMOPAC/fortran/gover.f,
	  miniMOPAC/fortran/greenf.f, miniMOPAC/fortran/grid.f,
	  miniMOPAC/fortran/h1elec.f, miniMOPAC/fortran/haddon.f,
	  miniMOPAC/fortran/hcore.f, miniMOPAC/fortran/helect.f,
	  miniMOPAC/fortran/hqrii.f, miniMOPAC/fortran/ijkl.f,
	  miniMOPAC/fortran/ilaenv.f, miniMOPAC/fortran/initsv.f,
	  miniMOPAC/fortran/interp.f, miniMOPAC/fortran/iter.f,
	  miniMOPAC/fortran/jcarin.f, miniMOPAC/fortran/linmin.f,
	  miniMOPAC/fortran/local.f, miniMOPAC/fortran/locmin.f,
	  miniMOPAC/fortran/lsame.f, miniMOPAC/fortran/makpol.f,
	  miniMOPAC/fortran/mamult.f, miniMOPAC/fortran/matou1.f,
	  miniMOPAC/fortran/matout.f, miniMOPAC/fortran/matpak.f,
	  miniMOPAC/fortran/meci.f, miniMOPAC/fortran/mecid.f,
	  miniMOPAC/fortran/mecih.f, miniMOPAC/fortran/mecip.f,
	  miniMOPAC/fortran/moldat.f, miniMOPAC/fortran/molval.f,
	  miniMOPAC/fortran/mopac.f, miniMOPAC/fortran/mullik.f,
	  miniMOPAC/fortran/mult.f, miniMOPAC/fortran/nllsq.f,
	  miniMOPAC/fortran/nuchar.f, miniMOPAC/fortran/parsav.f,
	  miniMOPAC/fortran/partxy.f, miniMOPAC/fortran/pathk.f,
	  miniMOPAC/fortran/paths.f, miniMOPAC/fortran/perm.f,
	  miniMOPAC/fortran/polar.f, miniMOPAC/fortran/powsav.f,
	  miniMOPAC/fortran/powsq.f, miniMOPAC/fortran/prtdrc.f,
	  miniMOPAC/fortran/quadr.f, miniMOPAC/fortran/react1.f,
	  miniMOPAC/fortran/reada.f, miniMOPAC/fortran/readmo.f,
	  miniMOPAC/fortran/refer.f, miniMOPAC/fortran/repp.f,
	  miniMOPAC/fortran/rotat.f, miniMOPAC/fortran/rotate.f,
	  miniMOPAC/fortran/rsp.f, miniMOPAC/fortran/search.f,
	  miniMOPAC/fortran/second.f, miniMOPAC/fortran/setupg.f,
	  miniMOPAC/fortran/solrot.f, miniMOPAC/fortran/swap.f,
	  miniMOPAC/fortran/sympro.f, miniMOPAC/fortran/symtry.f,
	  miniMOPAC/fortran/symtrz.f, miniMOPAC/fortran/thermo.f,
	  miniMOPAC/fortran/timer.f, miniMOPAC/fortran/timout.f,
	  miniMOPAC/fortran/update.f, miniMOPAC/fortran/upsurf.f,
	  miniMOPAC/fortran/vecprt.f, miniMOPAC/fortran/writmo.f,
	  miniMOPAC/fortran/wrtkey.f, miniMOPAC/fortran/wrttxt.f,
	  miniMOPAC/fortran/xerbla.f, miniMOPAC/fortran/xyzint.f: added the
	  original mopac-7.01-4 fortran source, since it seems to be
	  impossible to maintain this stuff from f2c'd source.

2001-08-17 13:44  thassine

	* miniMOPAC/esp.c, src/common/qm1e_mopac.cpp: miniMOPAC tweaks; ESP
	  plot drawing is now faster, plus MO plotting added.

2001-08-16 10:40  thassine

	* CHANGES, miniMOPAC/README: added some documentation about the
	  mopac ESP plots.

2001-08-15 13:04  thassine

	* miniMOPAC/esp.c, src/common/qm1e_mopac.cpp: ESP plotting added to
	  MOPAC-engine (1st working version).

2001-08-13 13:14  thassine

	* src/common/Makefile.OLD, src/common/Makefile.in,
	  src/common/interface.cpp, src/common/interface.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h,
	  src/target2/t2mm2docv.cpp, src/target3/glade_callbacks.cpp,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm2docv.cpp,
	  src/target3/t3mm2docv.h: trajectory viewer for mm2_mdl added (and
	  fixed the timestep of MD).

2001-08-09 08:30  thassine

	* CHANGES, src/target3/t3mm2docv.cpp, src/target3/t3mm2docv.h: the
	  plotting stuff for mm2_mdl is now also added.

2001-08-08 13:29  thassine

	* CHANGES, src/common/mm2mdl.cpp, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm1docv.h, src/target2/t2mm2docv.cpp,
	  src/target2/t2mm2docv.h, src/target3/glade_callbacks.cpp,
	  src/target3/glade_interface.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h, src/target3/t3mm2docv.cpp,
	  src/target3/t3mm2docv.h: algorithms for mm2_mdl are added.

2001-08-08 10:36  thassine

	* src/target3/glade_callbacks.cpp, src/target3/glade_interface.cpp,
	  src/target3/t3docv.cpp, src/target3/t3docv.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h:
	  glade_modal_dialog_owner moved into glade_docv class, in order to
	  make the dialogs work with multiple mdl-classes.

2001-08-03 21:04  hutchisn

	* src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm2docv.cpp,
	  src/graphics/mm2docv.h, src/graphics/qm1docv.cpp,
	  src/graphics/qm1docv.h, src/graphics/qm2docv.cpp,
	  src/graphics/qm2docv.h: Moved InitGL() to parent DocumentView
	  class--allows all classes to inherit config code easily.

2001-08-03 13:09  thassine

	* src/target3/glade/README, src/target3/glade/ghemical.glade,
	  src/target3/glade/src/Makefile,
	  src/target3/glade/src/glade_callbacks.cpp,
	  src/target3/glade/src/glade_callbacks.h,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade/src/glade_interface.h,
	  src/target3/glade/src/glade_support.cpp,
	  src/target3/glade/src/main.cpp, src/target3/glade_callbacks.cpp,
	  src/target3/glade_callbacks.h, src/target3/glade_interface.cpp,
	  src/target3/glade_interface.h, src/target3/t3mm1docv.cpp: rebuilt
	  the glade code; some docs added for the glade stuff.

2001-08-02 11:36  thassine

	* src/common/qm1e_mpqc.cpp, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm2docv.cpp, src/target2/t2qm1docv.cpp,
	  src/target3/t3mm1docv.cpp, src/target3/t3qm1docv.cpp,
	  src/target3/t3qm1docv.h: ESP plotting added to qm1_eng_mpqc.

2001-08-01 13:46  thassine

	* CHANGES, src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2alg.h, src/common/mm2mdl.cpp, src/common/mm2mdl.h,
	  src/common/qm1e_mpqc.cpp, src/common/qm1eng.cpp,
	  src/common/qm1eng.h, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm2docv.cpp, src/target2/t2qm1docv.cpp: small
	  improvements for mm2_mdl and qm1_eng_mpqc but nothing ready yet.

2001-07-30 12:07  thassine

	* src/graphics/mm1docv.cpp, src/graphics/mm2docv.cpp,
	  src/graphics/qm1docv.cpp, src/target3/t3main.cpp,
	  src/target3/t3main.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h, src/target3/t3qm1docv.cpp,
	  src/target3/t3qm1docv.h: the 4 first shortcut buttons work now.

2001-07-30 08:14  thassine

	* src/graphics/mm1docv.cpp, src/graphics/mm2docv.cpp,
	  src/graphics/qm2docv.cpp, src/graphics/qm2docv.h: added
	  MeasureEvent() also to (obsolete) qm2_mdl.

2001-07-28 18:46  hutchisn

	* src/graphics/camera.cpp, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm1docv.h,
	  src/graphics/mm1rbn.cpp, src/graphics/mm2docv.cpp,
	  src/graphics/mm2docv.h, src/graphics/qm1docv.cpp,
	  src/graphics/qm1docv.h, src/target3/t3mm1docv.cpp: Add
	  preliminary measure tool code. Works well--need to add "modes"

2001-07-24 17:04  hutchisn

	* src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/mtools.cpp: Change rendering
	  to support more prefs--including passing prefs for element
	  colors.

2001-07-24 17:00  hutchisn

	* src/graphics/camera.cpp, src/graphics/camera.h: Improve selection
	  with wireframe slightly and add Measure enum.

2001-07-24 16:56  hutchisn

	* src/common/utility.cpp, src/common/utility.h: Change elements to
	  allow prefs class to override colors and VdW radii.

2001-07-24 16:55  hutchisn

	* src/common/prefs.cpp, src/common/prefs.h,
	  src/target3/t3prefs.cpp, src/target3/t3prefs.h: Add Color methods

2001-07-24 16:55  hutchisn

	* src/common/filetrans.cpp, src/common/mm1mdl.cpp: Fix OELib bond
	  synchronization and switch hydrogens to use OELib method.

2001-07-23 23:10  hutchisn

	* src/target3/pixmaps/bond.xpm, src/target3/pixmaps/chain.xpm,
	  src/target3/pixmaps/element.xpm, src/target3/pixmaps/invert.xpm,
	  src/target3/pixmaps/molecule.xpm,
	  src/target3/pixmaps/residue.xpm, src/target3/t3main.cpp: Added
	  sample pixmaps for shortcut bar.

2001-07-22 14:28  thassine

	* src/target1/t1m_mm2param_cpp.h, src/target1/t1m_mm2param_h.h:
	  added some files for mm2_mdl.

2001-07-22 13:37  thassine

	* miniMOPAC/README, miniMOPAC/dgetf2.c, miniMOPAC/dgetri.c,
	  miniMOPAC/dlaswp.c, miniMOPAC/dtrti2.c, miniMOPAC/ef.c,
	  src/common/Makefile.OLD, src/common/factory.cpp,
	  src/common/factory.h, src/common/prefs.cpp, src/common/prefs.h,
	  src/common/qm1e_mopac.cpp, src/common/qm1e_mopac.h,
	  src/common/qm1e_mpqc.cpp, src/graphics/Makefile.OLD,
	  src/target1/Makefile.OLD, src/target2/Makefile.OLD,
	  src/target2/t2views.cpp, src/target2/t2views.h,
	  src/target3/Makefile.OLD, src/target3/t3mm1docv.cpp,
	  src/target3/t3prefs.cpp, src/target3/t3prefs.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3views.h: some mopac/mpqc
	  conflicts fixed, and mopac intermediate files FOR005 FOR006
	  SHUTDOWN cleaned.

2001-07-20 19:30  hutchisn

	* src/common/factory.h, src/common/model.cpp, src/common/model.h,
	  src/graphics/mm1docv.cpp, src/target3/t3prefs.cpp,
	  src/target3/t3prefs.h, src/target3/t3views.cpp,
	  src/target3/t3views.h: Finished implementation of prefs class
	  through GNOME config classes. Currently nothing sets prefs from
	  the code, and rendering is an example of accessing pref values.

2001-07-09 13:07  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h, src/common/model.cpp,
	  src/common/model.h, src/common/qm1mdl.cpp,
	  src/graphics/camera.cpp, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/mm2docv.cpp,
	  src/graphics/mm2docv.h, src/graphics/qm1docv.cpp,
	  src/graphics/views.cpp, src/target2/t2mm1docv.cpp: some comments
	  added and arrangements done for stereo image viewing.

2001-06-29 12:15  thassine

	* src/common/intcrd.cpp, src/common/intcrd.h, src/common/mm1ic.cpp,
	  src/common/mm1ic.h: ooops, forgot to add some files in the last
	  commit.

2001-06-29 12:12  thassine

	* src/common/Makefile.OLD, src/common/Makefile.in,
	  src/common/mm1alg.cpp, src/common/mm1alg.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/common/model.cpp, src/common/model.h,
	  src/common/qm1mdl.cpp, src/target2/t2mm1docv.cpp: some groundwork
	  added for mm1_mdl multiple crd_sets and conformational search
	  tools.

2001-06-25 11:21  thassine

	* bin/user-docs/index.html, src/common/notice.cpp,
	  src/common/notice.h, src/target3/t3main.cpp: minor updates in
	  user's manual and copyright notices (MOPAC included).

2001-06-21 08:49  thassine

	* CHANGES, src/graphics/camera.cpp, src/graphics/docview.cpp,
	  src/graphics/docview.h, src/target3/t3docv.cpp,
	  src/target3/t3docv.h, src/target3/t3main.cpp,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3mm2docv.cpp, src/target3/t3mm2docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3views.cpp, src/target3/t3views.h: gnome MDI system
	  revised; one view/child (GtkNotebook container), project views
	  now grouped together.

2001-06-19 13:15  thassine

	* miniMOPAC/etime.c, src/common/conjgrad.h, src/common/errutil.cpp,
	  src/common/factory.cpp, src/common/filetrans.cpp,
	  src/common/filetrans.h, src/common/mm1eng.cpp,
	  src/common/mm1eng.h, src/common/mm1eng1.cpp,
	  src/common/mm1eng1.h, src/common/mm1eng9.cpp,
	  src/common/mm1eng9.h, src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm1tab1.cpp, src/common/mm1tab1.h,
	  src/common/mm1tab9.cpp, src/common/mm1tab9.h,
	  src/common/mm1util.cpp, src/common/mm1util.h,
	  src/common/mm2eng.cpp, src/common/mm2eng.h, src/common/mm2mdl.h,
	  src/common/mm2util.h, src/common/model.cpp, src/common/model.h,
	  src/common/notice.cpp, src/common/notice.h, src/common/prefs.cpp,
	  src/common/qm1e_mopac.cpp, src/common/qm1e_mpqc.cpp,
	  src/common/qm1e_mpqc.h, src/common/qm1mdl.cpp,
	  src/common/qm1mdl.h, src/common/typedef.h,
	  src/common/utility.cpp, src/common/v3d.h,
	  src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm2docv.cpp,
	  src/graphics/objects.cpp, src/graphics/objects.h,
	  src/graphics/plane.cpp, src/graphics/surface.cpp,
	  src/graphics/surface.h, src/target2/t2main.h,
	  src/target2/t2mm1docv.cpp, src/target2/t2mm2docv.cpp,
	  src/target2/t2views.cpp, src/target2/t2views.h,
	  src/target3/glade_callbacks.cpp, src/target3/glade_interface.cpp,
	  src/target3/t3dialog.cpp, src/target3/t3docv.cpp,
	  src/target3/t3docv.h, src/target3/t3errutil.cpp,
	  src/target3/t3main.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm2docv.cpp, src/target3/t3prefs.cpp,
	  src/target3/t3qm1docv.cpp, src/target3/t3views.cpp,
	  src/target3/t3views.h: some cleanups done for redhat7.1 (seems to
	  work) and gcc3.0 (still some stl/namespace problems?).

2001-06-13 13:30  thassine

	* src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3mm2docv.cpp, src/target3/t3mm2docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h: some
	  menuitems added, and an initial mm1gp <-> qm1gp conversion
	  feature

2001-05-28 12:47  thassine

	* src/common/filetrans.cpp: some comments added

2001-05-23 13:28  thassine

	* src/common/factory.h, src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/target2/t2views.h,
	  src/target3/t3views.h: just some cleanups here and there

2001-05-21 14:45  thassine

	* src/common/mm1mdl.cpp: again some readpdb tweaks.

2001-05-21 10:39  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h: some readpdb changes
	  again

2001-05-18 13:09  thassine

	* src/common/factory.cpp, src/common/factory.h: ooops, forgot to
	  add the class_factory files...

2001-05-18 13:07  thassine

	* CHANGES, src/common/Makefile.OLD, src/common/Makefile.in,
	  src/common/errutil.cpp, src/common/errutil.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h, src/common/model.cpp,
	  src/common/model.h, src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm1docv.h,
	  src/graphics/mm2docv.cpp, src/graphics/mm2docv.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/graphics/qm2docv.cpp, src/graphics/qm2docv.h,
	  src/graphics/views.h, src/target1/t1main.cpp,
	  src/target2/t2docv.cpp, src/target2/t2docv.h,
	  src/target2/t2main.cpp, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm1docv.h, src/target2/t2mm2docv.cpp,
	  src/target2/t2mm2docv.h, src/target2/t2qm1docv.cpp,
	  src/target2/t2qm1docv.h, src/target2/t2qm2docv.cpp,
	  src/target2/t2qm2docv.h, src/target2/t2views.cpp,
	  src/target2/t2views.h, src/target3/t3docv.cpp,
	  src/target3/t3docv.h, src/target3/t3errutil.cpp,
	  src/target3/t3errutil.h, src/target3/t3main.cpp,
	  src/target3/t3main.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h, src/target3/t3mm2docv.cpp,
	  src/target3/t3mm2docv.h, src/target3/t3qm1docv.cpp,
	  src/target3/t3qm1docv.h, src/target3/t3qm2docv.cpp,
	  src/target3/t3qm2docv.h, src/target3/t3views.cpp,
	  src/target3/t3views.h: many factory classes combined to
	  class_factory.

2001-05-16 11:30  thassine

	* src/target3/t3main.cpp: just added some buttons, to see what it
	  looks like...

2001-05-16 03:56  hutchisn

	* src/common/Makefile.in, src/common/prefs.cpp, src/common/prefs.h,
	  src/target3/Makefile.in, src/target3/t3prefs.cpp,
	  src/target3/t3prefs.h: Add new "prefs" class to interface with
	  gnome-config
	  to allow user-config for various things.

2001-05-15 11:57  thassine

	* src/common/mm1mdl.cpp: again some fixes to readpdb

2001-05-15 08:49  thassine

	* src/common/mm1mdl.cpp: just some fixes added to readpdb

2001-05-14 09:10  thassine

	* src/common/mm1mdl.cpp, src/target3/t3mm1docv.cpp: organized menus
	  a bit, some changes to readpdb

2001-05-11 15:18  hutchisn

	* src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h: Add stubs for
	  export graphics, as well as "zap all" and "compute formula"

2001-05-11 12:10  thassine

	* src/graphics/mtools.cpp, src/graphics/mtools.h,
	  src/graphics/views.cpp, src/graphics/views.h,
	  src/target3/t3main.cpp, src/target3/t3main.h: switched to a
	  single measure tool, multiple toolbars added.

2001-05-08 11:25  thassine

	* miniMOPAC/Makefile: miniMOPAC/Makefile removed; configure will
	  update it.

2001-05-08 11:22  thassine

	* miniMOPAC/Makefile, miniMOPAC/Makefile.OLD, src/Makefile.OLD,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h, src/common/model.h,
	  src/target2/t2mm2docv.cpp: some improvements to readpdb; it now
	  reads multiple crd-sets present in NMR entries

2001-05-07 14:33  hutchisn

	* src/graphics/Makefile.in: Remove io-* from build list until GNOME
	  catches up (!)

2001-05-04 20:32  hutchisn

	* src/target3/t3main.cpp, src/target3/t3main.h: Add buttons for
	  measure tools.

2001-05-04 20:31  hutchisn

	* src/graphics/mtools.cpp, src/graphics/mtools.h,
	  src/graphics/views.cpp, src/graphics/views.h: Add tools for
	  measurements.

2001-05-04 20:30  hutchisn

	* src/target3/pixmaps, src/target3/pixmaps/.cvsignore,
	  src/target3/pixmaps/angle.xpm, src/target3/pixmaps/dihedral.xpm,
	  src/target3/pixmaps/distance.xpm, src/target3/pixmaps/draw.xpm,
	  src/target3/pixmaps/erase.xpm, src/target3/pixmaps/orb_xy.xpm,
	  src/target3/pixmaps/orb_z.xpm, src/target3/pixmaps/rot_xy.xpm,
	  src/target3/pixmaps/rot_z.xpm, src/target3/pixmaps/select.xpm,
	  src/target3/pixmaps/trans_xy.xpm,
	  src/target3/pixmaps/trans_z.xpm, src/target3/pixmaps/zoom.xpm:
	  Add transparency to button pics and buttons for measure tools.

2001-05-04 18:28  hutchisn

	* src/graphics/docview.cpp, src/graphics/docview.h,
	  src/target3/t3docv.cpp, src/target3/t3docv.h: Changes to make
	  sure window titles update when importing.

2001-05-04 18:27  hutchisn

	* src/target3/Makefile.in: Make sure miniMOPAC is compiled in.

2001-05-04 18:26  hutchisn

	* src/graphics/Makefile.in: Compile io-* for exporting.

2001-05-04 16:39  hutchisn

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h: Added CLear and
	  DoFormula methods.

2001-05-04 16:38  hutchisn

	* src/common/Makefile.in: Remove EXTERN_GLOBALS -- not needed

2001-05-04 16:37  hutchisn

	* src/graphics/io-jpg.cpp, src/graphics/io-jpg.h,
	  src/graphics/io-png.cpp, src/graphics/io-png.h: Add GNOME code
	  for exporting GdkPixbuf -> PNG or JPEG files.

2001-05-04 15:51  hutchisn

	* oelib/aromatic.h, oelib/atom.cpp, oelib/atomtyp.h,
	  oelib/bin2hex.pl, oelib/binary.cpp, oelib/binary.h,
	  oelib/binary_io.cpp, oelib/binary_io.h, oelib/chains.cpp,
	  oelib/chains.h, oelib/configure, oelib/ctransform.cpp,
	  oelib/ctransform.h, oelib/data.cpp, oelib/data.h, oelib/dmol.cpp,
	  oelib/element.h, oelib/extable.h, oelib/extable.txt,
	  oelib/fileformat.cpp, oelib/fileformat.h, oelib/gaussian.cpp,
	  oelib/generic.cpp, oelib/generic.h, oelib/ghemical.cpp,
	  oelib/jaguar.cpp, oelib/main.cpp, oelib/matrix.cpp,
	  oelib/matrix.h, oelib/mdl.cpp, oelib/mol.cpp, oelib/mol.h,
	  oelib/mol2.cpp, oelib/mopac.cpp, oelib/nwchem.cpp,
	  oelib/oelib.dsp, oelib/oeutil.cpp, oelib/oeutil.h,
	  oelib/parsmart.cpp, oelib/parsmi.cpp, oelib/phmodel.cpp,
	  oelib/phmodeldata.h, oelib/report.cpp, oelib/resdata.h,
	  oelib/rotor.cpp, oelib/smi.cpp, oelib/typer.cpp, oelib/types.h:
	  Update with current OELib version.

2001-05-03 16:52  hutchisn

	* Makefile.in, configure, configure.in, miniMOPAC/Makefile.in,
	  oelib/Makefile.in: Update for miniMOPAC, test for g2c/f2c library
	  (hopefully).

2001-05-03 16:50  hutchisn

	* src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade/src/glade_interface.h,
	  src/target3/glade/src/glade_support.cpp: Add Element options
	  dialog to glade.

2001-05-02 09:31  thassine

	* src/common/mm1mdl.cpp: added a small fix to readpdb so that it
	  can read also NMR entries.

2001-04-30 10:58  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h: some improvements to
	  readpdb-functions.

2001-04-27 12:40  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/target2/t2mm1docv.cpp, src/target2/t2mm2docv.cpp: revived
	  ImportENT_OLD and changed them to readpdb-functions (for advanced
	  PDB file imports)

2001-04-24 11:10  thassine

	* INSTALL, src/common/Makefile.OLD, src/target3/t3dialog.cpp:
	  documentation, old makefile, t3 bondtype dialog fixed a bit.

2001-04-20 10:11  thassine

	* src/common/Makefile.OLD, src/common/Makefile.in,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm2alg.cpp, src/common/mm2alg.h, src/common/mm2mdl.h,
	  src/common/model.h, src/target2/t2mm2docv.cpp: continued merging
	  the mm2_mdl.

2001-04-19 10:16  thassine

	* src/common/mm1mdl.h, src/common/mm2eng.h, src/common/mm2mdl.cpp,
	  src/common/mm2mdl.h, src/common/mm2util.cpp,
	  src/common/mm2util.h, src/common/model.cpp, src/common/model.h,
	  src/common/qm1mdl.h, src/graphics/mm2docv.cpp,
	  src/graphics/mm2docv.h, src/graphics/qm2docv.h,
	  src/target2/t2mm1docv.h, src/target2/t2mm2docv.cpp,
	  src/target2/t2qm1docv.h, src/target2/t2qm2docv.h: continued
	  merging the mm2_mdl, plus some cleanups.

2001-04-18 11:04  thassine

	* CHANGES, bin/parameters/mm2param,
	  bin/parameters/mm2param/loopdip.txt,
	  bin/parameters/mm2param/looptor.txt, src/common/Makefile.OLD,
	  src/common/Makefile.in, src/common/mm1mdl.h,
	  src/common/mm1util.h, src/common/mm2eng.cpp, src/common/mm2eng.h,
	  src/common/mm2mdl.cpp, src/common/mm2mdl.h,
	  src/graphics/mm2docv.cpp, src/graphics/mm2docv.h,
	  src/target2/t2mm1docv.cpp, src/target2/t2mm2docv.cpp,
	  src/target2/t2mm2docv.h, src/target3/t3mm2docv.cpp,
	  src/target3/t3mm2docv.h: started merging the mm2_mdl code
	  (accepted for publication :)

2001-04-18 08:22  thassine

	* CHANGES, miniMOPAC, miniMOPAC/Makefile, miniMOPAC/Makefile.OLD,
	  miniMOPAC/README, miniMOPAC/aababc.c, miniMOPAC/addfck.c,
	  miniMOPAC/addhcr.c, miniMOPAC/addnuc.c, miniMOPAC/analyt.c,
	  miniMOPAC/anavib.c, miniMOPAC/axis.c, miniMOPAC/block.c,
	  miniMOPAC/bonds.c, miniMOPAC/brlzon.c, miniMOPAC/btoc.c,
	  miniMOPAC/calpar.c, miniMOPAC/capcor.c, miniMOPAC/cdiag.c,
	  miniMOPAC/chrge.c, miniMOPAC/cnvg.c, miniMOPAC/compfg.c,
	  miniMOPAC/consts.c, miniMOPAC/cqden.c, miniMOPAC/datin.c,
	  miniMOPAC/dcart.c, miniMOPAC/delmol.c, miniMOPAC/delri.c,
	  miniMOPAC/denrot.c, miniMOPAC/densit.c, miniMOPAC/depvar.c,
	  miniMOPAC/deri0.c, miniMOPAC/deri1.c, miniMOPAC/deri2.c,
	  miniMOPAC/deri21.c, miniMOPAC/deri22.c, miniMOPAC/deri23.c,
	  miniMOPAC/deritr.c, miniMOPAC/deriv.c, miniMOPAC/dernvo.c,
	  miniMOPAC/ders.c, miniMOPAC/dfock2.c, miniMOPAC/dfpsav.c,
	  miniMOPAC/dgemm.c, miniMOPAC/dgemv.c, miniMOPAC/dger.c,
	  miniMOPAC/dgetf2.c, miniMOPAC/dgetrf.c, miniMOPAC/dgetri.c,
	  miniMOPAC/diag.c, miniMOPAC/diat.c, miniMOPAC/diat2.c,
	  miniMOPAC/diegrd.c, miniMOPAC/dielen.c, miniMOPAC/diis.c,
	  miniMOPAC/dijkl1.c, miniMOPAC/dijkl2.c, miniMOPAC/dipind.c,
	  miniMOPAC/dipole.c, miniMOPAC/dlaswp.c, miniMOPAC/dofs.c,
	  miniMOPAC/dot.c, miniMOPAC/drc.c, miniMOPAC/drcout.c,
	  miniMOPAC/dtrmm.c, miniMOPAC/dtrmv.c, miniMOPAC/dtrsm.c,
	  miniMOPAC/dtrti2.c, miniMOPAC/dtrtri.c, miniMOPAC/dvfill.c,
	  miniMOPAC/ef.c, miniMOPAC/enpart.c, miniMOPAC/esp.c,
	  miniMOPAC/etime.c, miniMOPAC/exchng.c, miniMOPAC/fdate.c,
	  miniMOPAC/ffhpol.c, miniMOPAC/flepo.c, miniMOPAC/fmat.c,
	  miniMOPAC/fock1.c, miniMOPAC/fock2.c, miniMOPAC/force.c,
	  miniMOPAC/formxy.c, miniMOPAC/forsav.c, miniMOPAC/frame.c,
	  miniMOPAC/freqcy.c, miniMOPAC/geout.c, miniMOPAC/geoutg.c,
	  miniMOPAC/getgeg.c, miniMOPAC/getgeo.c, miniMOPAC/getsym.c,
	  miniMOPAC/gettxt.c, miniMOPAC/gmetry.c, miniMOPAC/gover.c,
	  miniMOPAC/greenf.c, miniMOPAC/grid.c, miniMOPAC/h1elec.c,
	  miniMOPAC/haddon.c, miniMOPAC/hcore.c, miniMOPAC/helect.c,
	  miniMOPAC/hqrii.c, miniMOPAC/ijkl.c, miniMOPAC/ilaenv.c,
	  miniMOPAC/initsv.c, miniMOPAC/interp.c, miniMOPAC/iter.c,
	  miniMOPAC/jcarin.c, miniMOPAC/linmin.c, miniMOPAC/local.c,
	  miniMOPAC/locmin.c, miniMOPAC/lsame.c, miniMOPAC/makpol.c,
	  miniMOPAC/mamult.c, miniMOPAC/matou1.c, miniMOPAC/matout.c,
	  miniMOPAC/matpak.c, miniMOPAC/meci.c, miniMOPAC/mecid.c,
	  miniMOPAC/mecih.c, miniMOPAC/mecip.c, miniMOPAC/minimopac.c,
	  miniMOPAC/moldat.c, miniMOPAC/molval.c, miniMOPAC/mullik.c,
	  miniMOPAC/mult.c, miniMOPAC/nllsq.c, miniMOPAC/nuchar.c,
	  miniMOPAC/parsav.c, miniMOPAC/partxy.c, miniMOPAC/pathk.c,
	  miniMOPAC/paths.c, miniMOPAC/perm.c, miniMOPAC/polar.c,
	  miniMOPAC/powsav.c, miniMOPAC/powsq.c, miniMOPAC/prtdrc.c,
	  miniMOPAC/quadr.c, miniMOPAC/react1.c, miniMOPAC/reada.c,
	  miniMOPAC/readmo.c, miniMOPAC/refer.c, miniMOPAC/repp.c,
	  miniMOPAC/rotat.c, miniMOPAC/rotate.c, miniMOPAC/rsp.c,
	  miniMOPAC/search.c, miniMOPAC/second.c, miniMOPAC/setupg.c,
	  miniMOPAC/solrot.c, miniMOPAC/swap.c, miniMOPAC/sympro.c,
	  miniMOPAC/symtry.c, miniMOPAC/symtrz.c, miniMOPAC/thermo.c,
	  miniMOPAC/timer.c, miniMOPAC/timout.c, miniMOPAC/update.c,
	  miniMOPAC/upsurf.c, miniMOPAC/vecprt.c, miniMOPAC/writmo.c,
	  miniMOPAC/wrtkey.c, miniMOPAC/wrttxt.c, miniMOPAC/xerbla.c,
	  miniMOPAC/xyzint.c, src/common/Makefile.OLD,
	  src/common/Makefile.in, src/common/errutil.cpp,
	  src/common/qm1alg.cpp, src/common/qm1alg.h,
	  src/common/qm1e_mopac.cpp, src/common/qm1e_mopac.h,
	  src/common/qm1e_mpqc.cpp, src/common/qm1e_mpqc.h,
	  src/common/qm1eng.cpp, src/common/qm1eng.h,
	  src/common/qm1eng1.cpp, src/common/qm1eng1.h,
	  src/common/qm1eng9.cpp, src/common/qm1eng9.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/graphics/camera.h, src/graphics/mm1docv.cpp,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/target1/Makefile.OLD, src/target2/Makefile.OLD,
	  src/target2/t2mm1docv.h, src/target2/t2qm1docv.cpp,
	  src/target2/t2qm1docv.h, src/target3/Makefile.OLD,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h: added
	  miniMOPAC and QM geometry optimization.

2001-03-30 10:21  thassine

	* configure, configure.in, src/common/define.h: switched back to
	  devel settings; the version number is now 0.43

2001-03-30 08:30  thassine

	* CHANGES, src/common/define.h, src/common/notice.cpp,
	  src/target3/t3main.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm2docv.cpp, src/target3/t3qm1docv.cpp: minor
	  cleanups; this is released as 0.42

2001-03-28 11:08  thassine

	* src/common/model.cpp, src/common/typedef.h,
	  src/graphics/mm1docv.cpp, src/target1/Makefile.OLD,
	  src/target2/Makefile.OLD, src/target3/Makefile.OLD: some comments
	  added, X11/ogl headers and libs removed from TARGET1.

2001-03-23 22:33  hutchisn

	* oelib/jaguar.cpp: Fix problems with Jaguar translator.

2001-03-22 16:43  hutchisn

	* src/graphics/mm1docv.cpp: Add new multiple-bond rendering. Now
	  uses line stipple to render conjugated bonds fairly well.

2001-03-22 16:42  hutchisn

	* oelib/Makefile, oelib/Makefile.in, oelib/data.cpp, oelib/data.h,
	  oelib/dmol.cpp, oelib/extable.txt, oelib/fileformat.cpp,
	  oelib/fileformat.h, oelib/gamess.cpp, oelib/ghemical.cpp: Added
	  Dmol format and cleanups.

2001-03-22 15:51  thassine

	* src/common/mm1util.h, src/graphics/mm1rbn.cpp,
	  src/target2/t2mm1docv.cpp, src/target3/t3mm1docv.cpp: the bug
	  with ribbon objects should now be fixed.

2001-03-19 11:46  thassine

	* oelib/Makefile, src/common/filetrans.cpp, src/common/filetrans.h:
	  added syncronization for bonds into file_trans::Synchronize().

2001-03-16 12:17  thassine

	* oelib/Makefile, src/common/filetrans.cpp, src/common/mm1mdl.cpp,
	  src/common/utility.cpp, src/common/utility.h,
	  src/target2/t2mm1docv.cpp: oelib syncronization and other small
	  improvements.

2001-03-15 19:53  hutchisn

	* oelib/ghemical.cpp, oelib/xyz.cpp: Fix minor bugs in file
	  translators.

2001-03-15 18:50  hutchisn

	* src/common/filetrans.cpp: Fix "the bug" with calling extab before
	  it was properly set.

2001-03-15 18:49  hutchisn

	* oelib/alchemy.cpp, oelib/amber.cpp, oelib/atomtyp.h,
	  oelib/atomtyp.txt, oelib/element.h, oelib/element.txt,
	  oelib/extable.h, oelib/ghemical.cpp, oelib/hin.cpp,
	  oelib/jaguar.cpp, oelib/mpqc.cpp, oelib/oelib.dsp,
	  oelib/phmodeldata.h, oelib/qchem.cpp, oelib/tinker.cpp,
	  oelib/types.h, oelib/types.txt, oelib/unichem.cpp, oelib/xyz.cpp:
	  Added fixes to the translators--now much better about getting
	  elements correct for rare atoms (e.g. Pb).

2001-03-15 11:15  thassine

	* oelib/Makefile, oelib/atom.cpp, oelib/mol.h,
	  src/common/filetrans.cpp, src/common/filetrans.h: switched to a
	  less complicated way to do oelib compatibility

2001-03-14 16:40  hutchisn

	* bin/examples/PeriodicTable.mm1gp, src/common/utility.cpp,
	  src/common/utility.h: Fixed atom colors and add example Periodic
	  Table.

2001-03-14 13:00  thassine

	* CHANGES, configure, configure.in, oelib/atom.cpp, oelib/mol.h,
	  src/common/define.h, src/common/filetrans.cpp,
	  src/common/filetrans.h, src/common/mm1mdl.cpp,
	  src/common/mm1mdl.h, src/common/utility.cpp,
	  src/common/utility.h, src/graphics/Makefile.OLD,
	  src/graphics/Makefile.in, src/target1/Makefile.OLD,
	  src/target2/Makefile.OLD, src/target2/t2mm1docv.cpp,
	  src/target3/Makefile.OLD, src/target3/Makefile.in: some mm1_mdl
	  <=> oelib compatibility features started.

2001-03-12 12:00  thassine

	* BUGLIST, CHANGES, INSTALL, PROJECT,
	  bin/examples/2-chlorobutane.mm1gp,
	  bin/examples/3-phenylpropanal.mm1gp,
	  bin/examples/acetylsalicylic_acid.mm1gp,
	  bin/examples/alpha-pinene.mm1gp, bin/examples/bromobenzene.mm1gp,
	  bin/examples/camphor.mm1gp, bin/examples/cinnamaldehyde.mm1gp,
	  bin/examples/cis-2-pentene.mm1gp, bin/examples/cyclohexane.mm1gp,
	  bin/examples/naphtalene.mm1gp, oelib/Makefile,
	  src/common/mm1mdl.cpp, src/graphics/docview.cpp,
	  src/graphics/docview.h, src/target3/t3docv.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3views.cpp: this is released as version 0.41

2001-03-08 22:54  hutchisn

	* src/common/define.h, src/graphics/mm1docv.cpp,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h: Add support
	  for label Atom IDs

2001-03-08 22:53  hutchisn

	* src/common/mm1mdl.cpp: ReadStream changes to support reading
	  charges

2001-03-08 22:53  hutchisn

	* src/common/notice.cpp: Update copyright with OELib info.

2001-03-08 22:51  hutchisn

	* src/common/filetrans.cpp: Update for new OELib changes.

2001-03-08 22:49  hutchisn

	* Makefile.in: Add target for help files.

2001-03-08 22:47  hutchisn

	* oelib/Makefile.in, oelib/Vector.cpp, oelib/Vector.h,
	  oelib/alchemy.cpp, oelib/amber.cpp, oelib/aromatic.h,
	  oelib/aromatic.txt, oelib/atom.cpp, oelib/atomtyp.h,
	  oelib/atomtyp.txt, oelib/balst.cpp, oelib/bgf.cpp,
	  oelib/bin2hex.pl, oelib/binary.cpp, oelib/binary.h,
	  oelib/bitgrid.cpp, oelib/bitgrid.h, oelib/bitvec.cpp,
	  oelib/bitvec.h, oelib/bond.cpp, oelib/box.cpp, oelib/c3d.cpp,
	  oelib/cacao.cpp, oelib/cache.cpp, oelib/car.cpp, oelib/ccc.cpp,
	  oelib/chdrw.cpp, oelib/chiral.cpp, oelib/chiral.h,
	  oelib/commandline.cpp, oelib/commandline.h, oelib/configure,
	  oelib/csr.cpp, oelib/cssr.cpp, oelib/cwrap.cpp, oelib/cwrap.h,
	  oelib/data.cpp, oelib/data.h, oelib/element.h, oelib/extable.h,
	  oelib/extable.txt, oelib/feat.cpp, oelib/fh.cpp,
	  oelib/fileformat.cpp, oelib/fileformat.h, oelib/gamess.cpp,
	  oelib/ghemical.cpp, oelib/grid.cpp, oelib/grid.h,
	  oelib/gromos96.cpp, oelib/hin.cpp, oelib/jaguar.cpp,
	  oelib/main.cpp, oelib/matrix.cpp, oelib/matrix.h, oelib/mdl.cpp,
	  oelib/mmod.cpp, oelib/mol.cpp, oelib/mol.h, oelib/mol2.cpp,
	  oelib/molchrg.cpp, oelib/molchrg.h, oelib/molvector.cpp,
	  oelib/molvector.h, oelib/mpqc.cpp, oelib/oeifstream.h,
	  oelib/oelib.dsp, oelib/oeutil.cpp, oelib/oeutil.h,
	  oelib/parsmart.cpp, oelib/parsmart.h, oelib/parsmi.cpp,
	  oelib/patty.cpp, oelib/patty.h, oelib/pdb.cpp, oelib/phmodel.cpp,
	  oelib/phmodel.h, oelib/phmodel.txt, oelib/phmodeldata.h,
	  oelib/qchem.cpp, oelib/rand.cpp, oelib/resdata.h, oelib/ring.cpp,
	  oelib/ring.h, oelib/rotor.cpp, oelib/rotor.h, oelib/smi.cpp,
	  oelib/smi.h, oelib/tokenst.cpp, oelib/typer.cpp, oelib/typer.h,
	  oelib/types.h, oelib/version.h, oelib/xed.cpp: Updates to oelib
	  files.

2001-03-08 14:59  thassine

	* CHANGES, src/common/notice.cpp, src/common/notice.h,
	  src/target3/t3main.cpp, src/target3/t3main.h: added the Help/Help
	  item to the main menu, copyright notices updated to include OELib

2001-03-08 13:51  thassine

	* bin/user-docs/index.html, bin/user-docs/maintools.jpg: updated
	  the user's manual

2001-02-16 15:14  thassine

	* src/Makefile.OLD: this will make quick test builds easier.

2001-02-16 14:29  thassine

	* bin/user-docs, bin/user-docs/index.html: added some framework for
	  the user manual

2001-02-13 14:32  thassine

	* INSTALL, src/target3/t3main.cpp, src/target3/t3qm1docv.cpp,
	  src/target3/t3qm1docv.h: added some quick improvements to
	  qm1-model to boost its ease of use.

2001-02-12 17:07  hutchisn

	* configure, configure.in: Solved configure problems with MPQC and
	  oelib.

2001-02-12 16:25  hutchisn

	* configure, configure.in: Fix problem with configure in srcdir.

2001-02-12 09:41  thassine

	* src/common/Makefile.OLD, src/common/qm1eng1.cpp,
	  src/common/qm1mdl.cpp, src/graphics/Makefile.OLD,
	  src/graphics/camera.cpp, src/graphics/docview.cpp,
	  src/graphics/mm1docv.cpp, src/graphics/mm1rbn.cpp,
	  src/graphics/mm2docv.cpp, src/graphics/mm2rbn.cpp,
	  src/graphics/mtools.cpp, src/graphics/objects.cpp,
	  src/graphics/plane.cpp, src/graphics/qm1docv.cpp,
	  src/graphics/qm2docv.cpp, src/graphics/surface.cpp,
	  src/graphics/views.cpp, src/target1/Makefile.OLD,
	  src/target1/config.h.OLD, src/target2/Makefile.OLD,
	  src/target2/config.h.OLD, src/target3/Makefile.OLD,
	  src/target3/config.h.OLD: a bug that affected MPQC front end
	  compilation is now fixed (thanks Mark).

2001-02-11 14:36  thassine

	* CHANGES, bin/examples/1gar.mm2gp, bin/examples/1hcl.mm2gp,
	  bin/examples/4rhn.mm2gp, src/common/Makefile.OLD,
	  src/common/Makefile.in, src/common/mm2mdl.cpp,
	  src/common/mm2mdl.h, src/common/mm2util.cpp,
	  src/common/mm2util.h, src/common/model.h,
	  src/graphics/Makefile.OLD, src/graphics/Makefile.in,
	  src/graphics/mm2docv.cpp, src/graphics/mm2docv.h,
	  src/graphics/mm2rbn.cpp, src/graphics/mm2rbn.h,
	  src/graphics/views.h, src/target2/Makefile.OLD,
	  src/target2/t2main.cpp, src/target2/t2main.h,
	  src/target2/t2mm2docv.cpp, src/target2/t2mm2docv.h,
	  src/target3/Makefile.OLD, src/target3/Makefile.in,
	  src/target3/t3docv.h, src/target3/t3main.cpp,
	  src/target3/t3main.h, src/target3/t3mm2docv.cpp,
	  src/target3/t3mm2docv.h, src/target3/t3views.h: tadaall added a
	  preview version of the reduced protein modelling thing.

2001-02-10 15:09  thassine

	* INSTALL, configure, configure.in, src/common/define.h,
	  src/common/engine.h, src/common/mm1mdl.cpp,
	  src/common/qm1mdl.cpp, src/target3/t3views.cpp: changed back to
	  devel settings (version number, releasedate); small fixes appled
	  here and there.

2001-02-07 09:24  thassine

	* small-utilities/README, small-utilities/gp2mpqc.cpp,
	  src/graphics/spline.h, src/graphics/views.h: added some final
	  fixes to documentation; this is released as 0.40

2001-02-06 18:24  hutchisn

	* oelib/extable.txt: Add sorted extable to make menus more
	  user-friendly.

2001-02-06 18:24  hutchisn

	* src/common/filetrans.cpp: Fix bug with GetImportDescription.

2001-02-06 18:05  hutchisn

	* oelib/data.cpp: Fix problem with GetType from an integer--table
	  lookup was in the wrong place!

2001-02-06 13:10  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/target2/t2docv.h,
	  src/target3/t3docv.h, src/target3/t3errutil.h,
	  src/target3/t3main.h, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.h, src/target3/t3views.h: added some more
	  DOC++ style documentation.

2001-02-06 09:21  thassine

	* AUTHORS, CHANGES, INSTALL, PROJECT: revised/updated some
	  documentation.

2001-02-06 08:44  thassine

	* configure, configure.in, oelib/Makefile, src/common/define.h,
	  src/common/notice.cpp, src/target3/glade_callbacks.cpp,
	  src/target3/glade_interface.cpp, src/target3/glade_interface.h:
	  some cleanups at glade optionmenus; the version number promoted
	  to 0.40

2001-02-06 06:17  hutchisn

	* src/target3/glade_callbacks.cpp: Use file_trans methods to
	  specifically request a file type when the user picks it or
	  "Automatic" based on the file name.

2001-02-06 06:16  hutchisn

	* src/common/filetrans.cpp, src/common/filetrans.h: Add support for
	  specifically requesting an import or export type (by index #).

2001-02-06 06:16  hutchisn

	* oelib/Makefile.in: Add target to rebuild Makefile if Makefile.in
	  or configure script changes.

2001-02-05 15:26  thassine

	* src/target3/glade_callbacks.cpp: the file import/export dialogs
	  seem to work now...

2001-02-05 14:48  thassine

	* oelib/data.cpp, oelib/extable.txt, oelib/ghemical.cpp,
	  oelib/mol.cpp, src/target3/glade_callbacks.cpp,
	  src/target3/glade_interface.cpp, src/target3/glade_interface.h:
	  the filename change is done also in oelib; the file import/export
	  dialogs almost work now.

2001-02-05 13:55  thassine

	* src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_callbacks.cpp,
	  src/target3/glade/src/glade_callbacks.h,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade/src/glade_interface.h,
	  src/target3/glade/src/main.cpp, src/target3/glade_callbacks.cpp,
	  src/target3/glade_callbacks.h, src/target3/glade_interface.cpp,
	  src/target3/glade_interface.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3qm1docv.cpp: changed the glade project and code so
	  that each dialog (and most important widgets) have their own
	  simple namespace.

2001-02-04 18:30  thassine

	* src/common/qm1eng.cpp, src/common/qm1eng.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/common/qm2eng.cpp, src/common/qm2eng.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/graphics/qm2docv.cpp, src/graphics/qm2docv.h,
	  src/target2/t2qm1docv.cpp, src/target2/t2qm1docv.h,
	  src/target2/t2qm2docv.cpp, src/target2/t2qm2docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h: some files
	  were lost in the last commit; added them back...

2001-02-04 18:11  thassine

	* CHANGES, INSTALL, bin/examples/2-chlorobutane.gpMM,
	  bin/examples/2-chlorobutane.mm1gp,
	  bin/examples/3-phenylpropanal.gpMM,
	  bin/examples/3-phenylpropanal.mm1gp,
	  bin/examples/acetylsalicylic_acid.gpMM,
	  bin/examples/acetylsalicylic_acid.mm1gp,
	  bin/examples/alpha-pinene.gpMM, bin/examples/alpha-pinene.mm1gp,
	  bin/examples/bromobenzene.gpMM, bin/examples/bromobenzene.mm1gp,
	  bin/examples/camphor.gpMM, bin/examples/camphor.mm1gp,
	  bin/examples/cinnamaldehyde.gpMM,
	  bin/examples/cinnamaldehyde.mm1gp,
	  bin/examples/cis-2-pentene.gpMM,
	  bin/examples/cis-2-pentene.mm1gp, bin/examples/cyclohexane.gpMM,
	  bin/examples/cyclohexane.mm1gp, bin/examples/naphtalene.gpMM,
	  bin/examples/naphtalene.mm1gp, src/common/Makefile.OLD,
	  src/common/Makefile.in, src/common/mm1mdl.cpp,
	  src/common/mm1mdl.h, src/common/model.h, src/common/qm1eng.cpp,
	  src/common/qm1eng.h, src/common/qm1eng1.cpp,
	  src/common/qm1eng1.h, src/common/qm1eng9.cpp,
	  src/common/qm1eng9.h, src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/common/qm2eng.cpp, src/common/qm2eng.h,
	  src/common/qm2eng1.cpp, src/common/qm2eng1.h,
	  src/common/qm2eng9.cpp, src/common/qm2eng9.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/graphics/qm2docv.cpp, src/graphics/qm2docv.h,
	  src/target1/t1main.cpp, src/target2/t2main.cpp,
	  src/target2/t2qm1docv.cpp, src/target2/t2qm1docv.h,
	  src/target2/t2qm2docv.cpp, src/target2/t2qm2docv.h,
	  src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade/src/glade_interface.h,
	  src/target3/glade/src/main.cpp, src/target3/glade_callbacks.cpp,
	  src/target3/glade_interface.cpp, src/target3/glade_interface.h,
	  src/target3/t3docv.h, src/target3/t3main.cpp,
	  src/target3/t3main.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h, src/target3/t3qm1docv.cpp,
	  src/target3/t3qm1docv.h, src/target3/t3qm2docv.cpp,
	  src/target3/t3qm2docv.h, src/target3/t3views.h: swapped the
	  classnames qm1* and qm2 (as well as filenames) in an effort to
	  make the class naming scheme more reasonnable (now we have a
	  clear division in mm/qm, and the all-atoms classes (most used)
	  have numbers 1); also changed nicer filename extensions.

2001-02-02 16:27  thassine

	* src/common/mm1alg.h, src/common/mm1mdl.cpp,
	  src/target2/t2mm1docv.cpp, src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade_callbacks.cpp, src/target3/glade_interface.cpp,
	  src/target3/t3dialog.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h: the trajectory viewer works now (as a
	  modal dialog, but anyway).

2001-01-31 17:32  thassine

	* CHANGES, src/common/errutil.cpp, src/common/errutil.h,
	  src/common/mm1alg.h, src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/model.h, src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/qm2docv.cpp,
	  src/graphics/qm2docv.h, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm1docv.h, src/target2/t2qm2docv.cpp,
	  src/target2/t2qm2docv.h, src/target3/t3errutil.cpp,
	  src/target3/t3errutil.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h, src/target3/t3qm2docv.cpp,
	  src/target3/t3qm2docv.h: changed MM trajectory file format; some
	  Do???-functions moved to model (and are now accessible in TARGET1
	  also).

2001-01-30 19:44  hutchisn

	* src/common/filetrans.cpp, src/common/filetrans.h,
	  src/common/utility.cpp, src/target3/glade_interface.cpp,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h: Switch to new
	  GLADE-designed import/export boxes.

2001-01-30 19:41  hutchisn

	* oelib/aromatic.txt, oelib/atom.cpp, oelib/atomtyp.txt,
	  oelib/binary.cpp, oelib/bond.cpp, oelib/csr.cpp, oelib/data.cpp,
	  oelib/data.h, oelib/extable.txt, oelib/fileformat.cpp,
	  oelib/fileformat.h, oelib/gamess.cpp, oelib/ghemical.cpp,
	  oelib/hin.cpp, oelib/main.cpp, oelib/mdl.cpp, oelib/mol.cpp,
	  oelib/mol.h, oelib/mpqc.cpp, oelib/oeutil.cpp,
	  oelib/parsmart.cpp, oelib/patty.cpp, oelib/patty.h,
	  oelib/pdb.cpp, oelib/quat.c, oelib/ring.cpp, oelib/ring.h,
	  oelib/rotor.cpp, oelib/smi.cpp, oelib/typer.cpp, oelib/typer.h,
	  oelib/types.txt: Synch with current OELib code.

2001-01-30 15:21  thassine

	* src/common/mm1alg.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm1docv.h, src/target3/glade/ghemical.glade,
	  src/target3/glade/src/Makefile,
	  src/target3/glade/src/glade_callbacks.cpp,
	  src/target3/glade/src/glade_callbacks.h,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade_callbacks.cpp, src/target3/glade_callbacks.h,
	  src/target3/glade_interface.cpp, src/target3/glade_interface.h,
	  src/target3/glade_support.cpp, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h: the geomopt/moldyn dialogs should now
	  mostly work (except the traj filename).

2001-01-29 15:54  thassine

	* src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade/src/glade_interface.h,
	  src/target3/glade/src/glade_support.cpp,
	  src/target3/glade/src/main.cpp, src/target3/glade_interface.cpp,
	  src/target3/glade_interface.h, src/target3/t3mm1docv.cpp: added
	  geomopt and moldyn dialogs, but wont work yet (just press cancel)

2001-01-25 13:45  thassine

	* src/common/conjgrad.h, src/common/define.h, src/common/engine.h,
	  src/common/errutil.h, src/common/mm1alg.h, src/common/mm1eng.h,
	  src/common/mm1eng1.cpp, src/common/mm1eng1.h,
	  src/common/mm1eng9.cpp, src/common/mm1eng9.h,
	  src/common/mm1mdl.h, src/common/mm1tab1.cpp,
	  src/common/mm1tab1.h, src/common/mm1tab9.cpp,
	  src/common/mm1tab9.h, src/common/mm1util.h, src/common/model.h,
	  src/common/qm1eng.h, src/common/qm1mdl.h, src/common/qm2eng.h,
	  src/common/qm2eng1.h, src/common/qm2mdl.h, src/common/typedef.h,
	  src/common/utility.h, src/common/v3d.h, src/graphics/camera.h,
	  src/graphics/color.h, src/graphics/docview.cpp,
	  src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/mm1rbn.cpp,
	  src/graphics/mm1rbn.h, src/graphics/mtools.cpp,
	  src/graphics/mtools.h, src/graphics/objects.cpp,
	  src/graphics/objects.h, src/graphics/plane.cpp,
	  src/graphics/plane.h, src/graphics/qm1docv.cpp,
	  src/graphics/qm1docv.h, src/graphics/qm2docv.cpp,
	  src/graphics/qm2docv.h, src/graphics/spline.cpp,
	  src/graphics/spline.h, src/graphics/surface.cpp,
	  src/graphics/surface.h, src/graphics/views.cpp,
	  src/graphics/views.h, src/target1/config.h.OLD,
	  src/target1/t1main.cpp, src/target1/t1main.h,
	  src/target2/config.h.OLD, src/target2/t2docv.cpp,
	  src/target2/t2docv.h, src/target2/t2main.cpp,
	  src/target2/t2main.h, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm1docv.h, src/target2/t2qm1docv.cpp,
	  src/target2/t2qm1docv.h, src/target2/t2qm2docv.cpp,
	  src/target2/t2qm2docv.h, src/target2/t2views.cpp,
	  src/target2/t2views.h, src/target3/config.h.OLD,
	  src/target3/glade_callbacks.cpp, src/target3/glade_interface.cpp,
	  src/target3/t3dialog.cpp, src/target3/t3dialog.h,
	  src/target3/t3docv.cpp, src/target3/t3docv.h,
	  src/target3/t3errutil.cpp, src/target3/t3errutil.h,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h,
	  src/target3/t3views.cpp, src/target3/t3views.h: all documentation
	  is now in DOC++ form, it's a bit sparse, but usable.

2001-01-24 14:08  thassine

	* oelib/Makefile, oelib/data.cpp, oelib/mpqc.cpp,
	  src/common/qm1eng.cpp, src/common/qm1eng.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/common/qm2eng.cpp, src/common/qm2eng.h,
	  src/common/qm2eng1.cpp, src/common/qm2eng1.h,
	  src/common/qm2eng9.cpp, src/common/qm2eng9.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h, src/common/typedef.h,
	  src/common/utility.cpp, src/common/utility.h, src/common/v3d.h,
	  src/graphics/camera.cpp, src/graphics/camera.h,
	  src/graphics/color.h: some more documentation converted into
	  DOC++ form

2001-01-22 18:43  hutchisn

	* oelib/Makefile.in, oelib/data.cpp, oelib/data.h,
	  oelib/extable.txt, oelib/fileformat.cpp, oelib/fileformat.h,
	  oelib/mpqc.cpp, oelib/tinker.cpp, oelib/unichem.cpp: Added
	  unichem and mpqc formats.

2001-01-22 07:52  thassine

	* oelib/Makefile, oelib/tinker.cpp, src/Makefile.OLD,
	  src/common/conjgrad.cpp, src/common/conjgrad.h,
	  src/common/define.h, src/common/engine.cpp, src/common/engine.h,
	  src/common/errutil.cpp, src/common/errutil.h,
	  src/common/filetrans.cpp, src/common/filetrans.h,
	  src/common/matrix.h, src/common/mm1alg.cpp, src/common/mm1alg.h,
	  src/common/mm1eng.cpp, src/common/mm1eng.h,
	  src/common/mm1eng1.cpp, src/common/mm1eng1.h,
	  src/common/mm1eng9.cpp, src/common/mm1eng9.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm1tab1.cpp, src/common/mm1tab1.h,
	  src/common/mm1tab9.cpp, src/common/mm1tab9.h,
	  src/common/mm1util.cpp, src/common/mm1util.h,
	  src/common/model.cpp, src/common/model.h, src/common/notice.cpp,
	  src/common/notice.h, src/graphics/objects.cpp,
	  src/graphics/objects.h, src/target3/t3mm1docv.cpp: started to
	  convert comments into a form suitable to DOC++

2001-01-20 06:19  hutchisn

	* PROJECT, oelib/Makefile.in, oelib/data.cpp, oelib/tinker.cpp,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h: *** empty log
	  message ***

2001-01-20 06:19  hutchisn

	* src/target3/glade/ghemical.glade,
	  src/target3/glade/src/glade_callbacks.cpp,
	  src/target3/glade/src/glade_callbacks.h,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade/src/glade_interface.h,
	  src/target3/glade/src/glade_support.cpp,
	  src/target3/glade/src/main.cpp, src/target3/glade_callbacks.cpp,
	  src/target3/glade_callbacks.h, src/target3/glade_interface.cpp,
	  src/target3/glade_interface.h, src/target3/glade_support.cpp:
	  Added new import/export dialogues using Glade.
	  (Still need to figure out how to update the option menu
	  appropriately.)

2001-01-20 06:18  hutchisn

	* oelib/data.h, oelib/extable.txt: Added all options from Babel 1.6

2001-01-19 04:22  hutchisn

	* oelib/Makefile.in, oelib/fileformat.cpp, oelib/qchem.cpp: Added
	  export to QChem input files.

2001-01-16 17:51  hutchisn

	* oelib/data.cpp, oelib/data.h, oelib/extable.txt,
	  oelib/fileformat.cpp, oelib/fileformat.h, oelib/qchem.cpp: Added
	  a QChem file export translator.

2001-01-16 16:24  hutchisn

	* oelib/data.cpp, oelib/data.h, oelib/extable.txt,
	  oelib/fileformat.cpp, oelib/fileformat.h: More OELib
	  updates--removing incomplete formats for now.

2001-01-16 16:00  hutchisn

	* oelib/extable.txt, oelib/fileformat.cpp, oelib/gamess.cpp,
	  oelib/hin.cpp: More OELib cleanups.

2001-01-13 21:31  hutchisn

	* oelib/Makefile.in, oelib/data.cpp, oelib/data.h,
	  oelib/extable.txt, oelib/fileformat.cpp, oelib/fileformat.h,
	  oelib/gamess.cpp, oelib/ghemical.cpp, oelib/hin.cpp,
	  oelib/main.cpp, oelib/mol.h, oelib/mpqc.cpp, oelib/oelib.dsp,
	  oelib/oelib.dsw, oelib/pdb.cpp, oelib/quat.c, oelib/rotor.cpp,
	  oelib/typer.cpp, oelib/xyz.cpp: Added new translators, updated to
	  be in sync with OpenEyes code.

2001-01-13 21:29  hutchisn

	* src/common/utility.cpp: Small modifications to vdW radii to be
	  closer to literature (Bondi) values

2001-01-13 21:28  hutchisn

	* src/common/filetrans.cpp: Use filename for molecule title -- we
	  don't currently have another way of titling.

2001-01-05 22:38  hutchisn

	* acconfig.h, configure, configure.in, src/config.h.in,
	  src/target3/Makefile.in: Fix build environment

2001-01-05 15:34  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h, src/common/qm2eng.h,
	  src/common/qm2eng1.h, src/common/qm2eng9.cpp,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/plane.cpp,
	  src/graphics/plane.h, src/graphics/qm2docv.cpp,
	  src/graphics/qm2docv.h, src/graphics/surface.cpp,
	  src/graphics/surface.h, src/target1/Makefile.OLD,
	  src/target1/t1main.cpp, src/target2/t2qm2docv.cpp,
	  src/target3/glade_callbacks.cpp, src/target3/t3qm2docv.cpp: added
	  a simple TARGET1 example, the QM setup dialog should also now
	  work.

2001-01-03 17:09  thassine

	* src/common/mm1mdl.cpp, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/qm2docv.cpp,
	  src/graphics/qm2docv.h, src/target3/glade/ghemical.glade,
	  src/target3/glade/src/Makefile,
	  src/target3/glade/src/glade_callbacks.cpp,
	  src/target3/glade/src/glade_callbacks.h,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade_callbacks.cpp, src/target3/glade_callbacks.h,
	  src/target3/glade_interface.cpp, src/target3/glade_interface.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h: the setup
	  dialog should now work for MM.

2001-01-03 10:03  thassine

	* CHANGES, src/target3/glade/ghemical.glade,
	  src/target3/glade/src/Makefile,
	  src/target3/glade/src/glade_callbacks.cpp,
	  src/target3/glade/src/glade_callbacks.h,
	  src/target3/glade/src/glade_interface.cpp,
	  src/target3/glade/src/glade_interface.h,
	  src/target3/glade/src/glade_support.cpp,
	  src/target3/glade/src/glade_support.h,
	  src/target3/glade/src/main.cpp, src/target3/glade_callbacks.cpp,
	  src/target3/glade_interface.cpp, src/target3/glade_interface.h:
	  dialogs; read from glade/src/Makefile how to retain your changes
	  in GLADE code.

2001-01-02 16:00  thassine

	* src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm1docv.h: some
	  preliminary stuff for the setup dialogs

2001-01-02 12:42  thassine

	* INSTALL, PROJECT, src/target3/Makefile.OLD, src/target3/glade,
	  src/target3/glade/ghemical.glade, src/target3/glade/src,
	  src/target3/glade/src/Makefile, src/target3/glade_callbacks.cpp,
	  src/target3/glade_callbacks.h, src/target3/glade_interface.cpp,
	  src/target3/glade_interface.h, src/target3/glade_support.cpp,
	  src/target3/glade_support.h, src/target3/t3dialog.cpp: started
	  making some dialogs using GLADE...

2001-01-01 13:53  thassine

	* AUTHORS, INSTALL, PROJECT, src/common/Makefile.OLD,
	  src/common/mm1mdl.h, src/common/qm1eng.cpp, src/common/qm1eng.h,
	  src/common/qm2eng.h, src/common/qm2eng1.h, src/common/qm2mdl.h,
	  src/graphics/Makefile.OLD, src/target1/Makefile.OLD,
	  src/target2/Makefile.OLD, src/target3/Makefile.OLD: just some
	  cleanups and some improvements to documentation

2001-01-01 11:30  thassine

	* small-utilities, small-utilities/Makefile,
	  small-utilities/getpdb_cd.cpp, small-utilities/getpdb_ftp.cpp,
	  small-utilities/gp2mpqc.cpp: HAPPY NEW YEAR; some small-utilities
	  added...

2000-12-27 13:59  thassine

	* src/graphics/camera.cpp, src/graphics/docview.cpp,
	  src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/views.h, src/target2/t2docv.cpp,
	  src/target2/t2docv.h, src/target2/t2main.cpp,
	  src/target2/t2mm1docv.cpp, src/target2/t2mm1docv.h,
	  src/target2/t2qm1docv.cpp, src/target2/t2qm1docv.h,
	  src/target2/t2qm2docv.cpp, src/target2/t2qm2docv.h,
	  src/target2/t2views.cpp, src/target2/t2views.h,
	  src/target3/t3docv.cpp, src/target3/t3docv.h,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h,
	  src/target3/t3views.cpp, src/target3/t3views.h: some cleanups;
	  status bars now work in the GNOME version

2000-12-22 15:09  thassine

	* src/target3/t3docv.cpp, src/target3/t3docv.h: added some missing
	  files...

2000-12-22 14:47  thassine

	* CHANGES, src/graphics/camera.cpp, src/graphics/docview.cpp,
	  src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/mtools.cpp,
	  src/graphics/qm1docv.h, src/graphics/qm2docv.h,
	  src/graphics/views.cpp, src/graphics/views.h,
	  src/target2/Makefile.OLD, src/target2/t2docv.cpp,
	  src/target2/t2docv.h, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm1docv.h, src/target2/t2qm1docv.cpp,
	  src/target2/t2qm1docv.h, src/target2/t2qm2docv.cpp,
	  src/target2/t2qm2docv.h, src/target2/t2views.cpp,
	  src/target2/t2views.h, src/target3/Makefile.OLD,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h,
	  src/target3/t3views.cpp, src/target3/t3views.h: added
	  target-dependent middle classes for docviews and views;
	  simplifies the base-classes a bit

2000-12-22 11:34  thassine

	* BUGLIST, src/graphics/docview.cpp, src/target3/t3main.cpp,
	  src/target3/t3main.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3qm2docv.cpp, src/target3/t3views.cpp: treelist
	  works now pretty well (see BUGLIST for some details)

2000-12-21 17:16  thassine

	* src/graphics/docview.cpp, src/graphics/docview.h,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3qm2docv.cpp,
	  src/target3/t3views.cpp, src/target3/t3views.h: improved proper
	  model closing/cleanup in GNOME version, but still problems (try
	  File/Close and File/Exit)

2000-12-21 13:19  thassine

	* src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/views.h, src/target3/t3views.cpp,
	  src/target3/t3views.h: treelist (now actually works) - added
	  subtrees and lights

2000-12-20 15:01  thassine

	* src/graphics/docview.cpp, src/graphics/views.h,
	  src/target3/t3main.h, src/target3/t3views.cpp,
	  src/target3/t3views.h: treelist - now shows objects (planes etc),
	  and selection is possible

2000-12-19 16:57  thassine

	* CHANGES, src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/views.cpp, src/graphics/views.h,
	  src/target2/t2main.cpp, src/target2/t2views.cpp,
	  src/target2/t2views.h, src/target3/t3main.cpp,
	  src/target3/t3main.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3mm1docv.h, src/target3/t3qm2docv.cpp,
	  src/target3/t3views.cpp, src/target3/t3views.h: added framework
	  for tree/list views, and smaller changes

2000-12-19 12:45  thassine

	* src/common/notice.cpp, src/graphics/docview.h,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3qm2docv.cpp,
	  src/target3/t3views.cpp: the toolbar buttons work again as toggle
	  buttons

2000-12-18 15:24  thassine

	* oelib/Makefile, src/common/filetrans.cpp, src/target3/t3main.cpp:
	  changes for old makefiles, and a statusbar added (which is empty
	  so far)

2000-12-08 17:22  hutchisn

	* src/common/filetrans.cpp, src/common/filetrans.h,
	  src/target3/t3mm1docv.cpp: Use new OEFileFormat code to check if
	  formats are valid.

2000-12-08 17:21  hutchisn

	* oelib/Makefile, oelib/Makefile.in, oelib/aromatic.txt,
	  oelib/binary.cpp, oelib/data.cpp, oelib/data.h,
	  oelib/extable.txt, oelib/fileformat.cpp, oelib/fileformat.h,
	  oelib/globals.cpp, oelib/main.cpp, oelib/mol.cpp, oelib/mol.h,
	  oelib/molvector.cpp, oelib/oeutil.h, oelib/rotor.cpp,
	  oelib/rotor.h, oelib/typer.cpp, oelib/xyz.cpp: Synched with
	  current oelib version--fixed bugs finding data files.

2000-12-08 16:41  thassine

	* oelib/Makefile, oelib/mol.h, src/common/filetrans.cpp,
	  src/graphics/camera.cpp, src/graphics/docview.cpp,
	  src/graphics/docview.h, src/graphics/mm1docv.cpp,
	  src/graphics/mtools.cpp, src/graphics/qm2docv.cpp,
	  src/target2/t2mm1docv.cpp, src/target2/t2qm2docv.cpp,
	  src/target2/t2views.cpp, src/target3/t3main.cpp,
	  src/target3/t3main.h, src/target3/t3mm1docv.cpp,
	  src/target3/t3qm2docv.cpp, src/target3/t3views.cpp: various fixes
	  (like exit-command) - oelib?

2000-12-02 00:29  hutchisn

	* src/target3/t3mm1docv.cpp: OKEvent should return true for now.

2000-12-02 00:28  hutchisn

	* src/target3/t3dialog.cpp, src/target3/t3dialog.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h: OKEvent
	  should return bool in case there's a problem
	  (e.g. file doesn't exist, save might overwrite a file, format is
	  not supported, etc.)

2000-12-02 00:27  hutchisn

	* oelib/data.cpp, oelib/mol.h, oelib/pdb.cpp, oelib/rotor.cpp,
	  oelib/typer.cpp, src/common/Makefile.in: One more bug fix--really
	  get the logic in initialization correct!

2000-12-01 22:38  hutchisn

	* oelib/data.cpp, oelib/pdb.cpp, oelib/rotor.cpp, oelib/typer.cpp:
	  Ensure that the directory is checked AND the environment variable
	  is checked
	  when initializing.

2000-12-01 21:49  hutchisn

	* Makefile.in, configure, configure.in, oelib/Makefile,
	  oelib/Vector.cpp, oelib/configure, oelib/data.cpp, oelib/data.h,
	  oelib/extable.txt, oelib/gromos96.cpp, oelib/main.cpp,
	  oelib/mol.cpp, oelib/mol.h, oelib/oeutil.cpp, oelib/pdb.cpp,
	  oelib/rotor.cpp, oelib/rotor.h, oelib/typer.cpp, oelib/typer.h,
	  src/common/Makefile.in, src/common/filetrans.cpp: Update OELib to
	  use GHEMICAL_DIR environment variable or specified directories
	  installed by "make install" target.

2000-12-01 13:27  thassine

	* oelib/Makefile, src/common/Makefile.OLD,
	  src/target1/Makefile.OLD, src/target2/Makefile.OLD,
	  src/target3/Makefile.OLD: updated the old makefiles...

2000-12-01 00:13  hutchisn

	* src/common/Makefile.in, src/common/define.h,
	  src/common/filetrans.cpp, src/common/filetrans.h,
	  src/common/model.cpp, src/graphics/Makefile.in,
	  src/target3/Makefile.in, src/target3/t3main.cpp,
	  src/target3/t3mm1docv.cpp: add support for import/export methods
	  using oelib

2000-11-30 12:18  thassine

	* src/common/Makefile.OLD, src/common/qm2mdl.h,
	  src/graphics/Makefile.OLD, src/graphics/mm1docv.h,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h: GNOME
	  erase-tool fixed, STATICpopupmenu removed, all popup-items
	  enabled again

2000-11-29 17:18  thassine

	* src/graphics/docview.h, src/graphics/views.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h,
	  src/target3/t3views.cpp, src/target3/t3views.h: GNOME popup menu
	  callbacks finished - but some items are still disabled

2000-11-29 14:43  thassine

	* src/target3/t3mm1docv.cpp, src/target3/t3qm2docv.cpp,
	  src/target3/t3views.cpp, src/target3/t3views.h: popup-menu
	  callbacks changed (for model-independent items)

2000-11-29 13:10  thassine

	* src/common/model.cpp, src/common/model.h, src/graphics/views.cpp,
	  src/graphics/views.h, src/target2/t2views.cpp,
	  src/target2/t2views.h, src/target3/t3main.cpp,
	  src/target3/t3views.cpp, src/target3/t3views.h: OpenGL
	  initialization in GNOME fixed (so that we have colors back).

2000-11-28 17:43  hutchisn

	* src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3views.cpp: Add import/export menu items, center
	  command and move things to "build" submenu.

2000-11-28 17:42  hutchisn

	* src/target3/t3main.cpp: Can't pass VERSION since it's a double.
	  Run it through sprintf first.

2000-11-28 17:40  hutchisn

	* acconfig.h, configure, configure.in, src/config.h.in,
	  src/graphics/Makefile.in: Fix build environment to define
	  appropriate flags, etc.

2000-11-28 17:39  hutchisn

	* oelib/quat.c: fixed problem with undeclared memset

2000-11-28 15:41  thassine

	* CHANGES, src/common/conjgrad.h, src/common/errutil.h,
	  src/common/mm1alg.h, src/common/mm1eng.h, src/common/mm1eng1.h,
	  src/common/mm1mdl.h, src/common/mm1util.h, src/common/model.h,
	  src/common/qm2eng.h, src/common/qm2eng9.h, src/common/qm2mdl.h,
	  src/common/v3d.h, src/graphics/mtools.h, src/graphics/views.h,
	  src/target2/t2mm1docv.cpp, src/target2/t2views.cpp,
	  src/target2/t2views.h, src/target3/t3main.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3views.cpp,
	  src/target3/t3views.h: some cleanups : public data changed
	  protected in many classes

2000-11-28 12:18  thassine

	* CHANGES, src/common/define.h, src/graphics/Makefile.OLD,
	  src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/views.h, src/target2/t2views.cpp,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3views.cpp,
	  src/target3/t3views.h: any things broken/mixed up, but we have a
	  standard GNOME MDI app now

2000-11-27 16:50  hutchisn

	* src/target3/t3dialog.cpp, src/target3/t3dialog.h: Modify dialog
	  to show which element is currently selected.

2000-11-27 16:48  hutchisn

	* src/common/filetrans.cpp, src/common/filetrans.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h: Remove import
	  functions from mm1mdl and use new filetrans code through OELib.

2000-11-27 16:47  hutchisn

	* Makefile.in, acconfig.h, configure, configure.in,
	  oelib/Makefile.in, oelib/configure, src/common/Makefile.in,
	  src/config.h.in, src/graphics/Makefile.in,
	  src/target3/Makefile.in: Add changes to support linking in OELib
	  and slightly cleaned up build system.

2000-11-27 08:51  thassine

	* configure, configure.in, src/common/Makefile.in,
	  src/graphics/Makefile.in, src/target3/Makefile.in: Makefile.in
	  -files updated (configure still broken)

2000-11-26 13:05  thassine

	* CHANGES, src/graphics/camera.cpp, src/graphics/camera.h,
	  src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm1docv.h,
	  src/graphics/mm1rbn.cpp, src/graphics/mm1rbn.h,
	  src/graphics/mtools.cpp, src/graphics/mtools.h,
	  src/graphics/objects.cpp, src/graphics/objects.h,
	  src/graphics/plane.cpp, src/graphics/plane.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/graphics/qm2docv.cpp, src/graphics/qm2docv.h,
	  src/graphics/surface.cpp, src/graphics/surface.h,
	  src/graphics/views.cpp, src/graphics/views.h,
	  src/target2/config.h.OLD, src/target2/t2mm1docv.cpp,
	  src/target2/t2qm1docv.cpp, src/target2/t2qm2docv.cpp,
	  src/target2/t2views.cpp, src/target3/config.h.OLD,
	  src/target3/t3mm1docv.cpp, src/target3/t3qm1docv.cpp,
	  src/target3/t3qm2docv.cpp, src/target3/t3views.cpp: 3rd stage of
	  doc/view changes

2000-11-24 13:36  thassine

	* CHANGES, src/graphics/camera.cpp, src/graphics/camera.h,
	  src/graphics/docview.cpp, src/graphics/docview.h,
	  src/graphics/mm1docv.cpp, src/graphics/mm1docv.h,
	  src/graphics/mm1rbn.cpp, src/graphics/mm1rbn.h,
	  src/graphics/mtools.cpp, src/graphics/mtools.h,
	  src/graphics/plane.cpp, src/graphics/plane.h,
	  src/graphics/qm1docv.cpp, src/graphics/qm1docv.h,
	  src/graphics/qm2docv.cpp, src/graphics/qm2docv.h,
	  src/graphics/surface.cpp, src/graphics/surface.h,
	  src/graphics/views.cpp, src/graphics/views.h,
	  src/target2/t2main.cpp, src/target2/t2mm1docv.cpp,
	  src/target2/t2mm1docv.h, src/target2/t2qm1docv.cpp,
	  src/target2/t2qm1docv.h, src/target2/t2qm2docv.cpp,
	  src/target2/t2qm2docv.h, src/target2/t2views.cpp,
	  src/target2/t2views.h, src/target3/t3main.cpp,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h,
	  src/target3/t3views.cpp, src/target3/t3views.h: 2nd stage of
	  doc/view reorganization

2000-11-23 15:07  thassine

	* CHANGES, src/common/Makefile.OLD, src/common/conjgrad.h,
	  src/common/engbase.cpp, src/common/engbase.h,
	  src/common/engine.cpp, src/common/engine.h,
	  src/common/mdlbase.cpp, src/common/mdlbase.h,
	  src/common/mm1eng.cpp, src/common/mm1eng.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm1tab1.cpp, src/common/mm1tab9.cpp,
	  src/common/mm1util.cpp, src/common/model.cpp, src/common/model.h,
	  src/common/qm1eng.cpp, src/common/qm1eng.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/common/qm2eng.cpp, src/common/qm2eng.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/Makefile.OLD, src/graphics/camera.cpp,
	  src/graphics/camera.h, src/graphics/docview.cpp,
	  src/graphics/docview.h, src/graphics/guibase.cpp,
	  src/graphics/guibase.h, src/graphics/mm1docv.cpp,
	  src/graphics/mm1docv.h, src/graphics/mm1gui.cpp,
	  src/graphics/mm1gui.h, src/graphics/mm1rbn.cpp,
	  src/graphics/mm1rbn.h, src/graphics/mtools.cpp,
	  src/graphics/mtools.h, src/graphics/objects.cpp,
	  src/graphics/objects.h, src/graphics/plane.cpp,
	  src/graphics/plane.h, src/graphics/qm1docv.cpp,
	  src/graphics/qm1docv.h, src/graphics/qm1gui.cpp,
	  src/graphics/qm1gui.h, src/graphics/qm2docv.cpp,
	  src/graphics/qm2docv.h, src/graphics/qm2gui.cpp,
	  src/graphics/qm2gui.h, src/graphics/surface.cpp,
	  src/graphics/surface.h, src/graphics/viewing.cpp,
	  src/graphics/viewing.h, src/graphics/views.cpp,
	  src/graphics/views.h, src/graphics/window.cpp,
	  src/graphics/window.h, src/target1/Makefile.OLD,
	  src/target2/Makefile.OLD, src/target2/t2main.h,
	  src/target2/t2mm1docv.cpp, src/target2/t2mm1docv.h,
	  src/target2/t2mm1gui.cpp, src/target2/t2mm1gui.h,
	  src/target2/t2qm1docv.cpp, src/target2/t2qm1docv.h,
	  src/target2/t2qm1gui.cpp, src/target2/t2qm1gui.h,
	  src/target2/t2qm2docv.cpp, src/target2/t2qm2docv.h,
	  src/target2/t2qm2gui.cpp, src/target2/t2qm2gui.h,
	  src/target2/t2views.cpp, src/target2/t2views.h,
	  src/target2/t2window.cpp, src/target2/t2window.h,
	  src/target3/Makefile.OLD, src/target3/t3main.h,
	  src/target3/t3mm1docv.cpp, src/target3/t3mm1docv.h,
	  src/target3/t3mm1gui.cpp, src/target3/t3mm1gui.h,
	  src/target3/t3qm1docv.cpp, src/target3/t3qm1docv.h,
	  src/target3/t3qm1gui.cpp, src/target3/t3qm1gui.h,
	  src/target3/t3qm2docv.cpp, src/target3/t3qm2docv.h,
	  src/target3/t3qm2gui.cpp, src/target3/t3qm2gui.h,
	  src/target3/t3views.cpp, src/target3/t3views.h,
	  src/target3/t3window.cpp, src/target3/t3window.h: 1st round of
	  doc/view changes (will break the configure-script)

2000-11-20 10:18  thassine

	* src/common/qm2mdl.cpp, src/graphics/guibase.h,
	  src/graphics/mm1gui.cpp, src/graphics/mm1gui.h,
	  src/graphics/mm1rbn.cpp, src/graphics/qm2gui.cpp,
	  src/graphics/qm2gui.h: fixed QM import bug + some potential
	  graphics bugs

2000-11-16 15:06  hutchisn

	* Makefile.in: Removed configure target--something is strange with
	  the timestamps.

2000-11-16 11:55  thassine

	* src/common/Makefile.OLD, src/common/errorutil.cpp,
	  src/common/errorutil.h, src/common/errutil.cpp,
	  src/common/errutil.h, src/common/mdlbase.cpp,
	  src/common/mdlbase.h, src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h,
	  src/graphics/Makefile.OLD, src/graphics/guibase.cpp,
	  src/graphics/guibase.h, src/graphics/mm1gui.cpp,
	  src/graphics/mm1gui.h, src/graphics/qm1gui.cpp,
	  src/graphics/qm1gui.h, src/graphics/qm2gui.cpp,
	  src/graphics/qm2gui.h, src/target2/Makefile.OLD,
	  src/target2/t2main.cpp, src/target2/t2mm1gui.cpp,
	  src/target2/t2mm1gui.h, src/target2/t2qm1gui.cpp,
	  src/target2/t2qm1gui.h, src/target2/t2qm2gui.cpp,
	  src/target2/t2qm2gui.h, src/target2/t2window.cpp,
	  src/target3/Makefile.OLD, src/target3/t3errorutil.cpp,
	  src/target3/t3errorutil.h, src/target3/t3errutil.cpp,
	  src/target3/t3errutil.h, src/target3/t3main.cpp,
	  src/target3/t3mm1gui.cpp, src/target3/t3mm1gui.h,
	  src/target3/t3qm1gui.cpp, src/target3/t3qm1gui.h,
	  src/target3/t3qm2gui.cpp, src/target3/t3qm2gui.h,
	  src/target3/t3window.cpp: added err_util for all models

2000-11-15 15:01  hutchisn

	* src/common/Makefile.in, src/common/errorutil.cpp,
	  src/common/errorutil.h, src/target3/Makefile.in,
	  src/target3/t3errorutil.cpp, src/target3/t3errorutil.h: Add
	  error-handling classes with support for GNOME.

2000-11-15 15:00  hutchisn

	* oelib/Makefile, oelib/Makefile.in, oelib/data.cpp, oelib/data.h,
	  oelib/extable.txt, oelib/ghemical.cpp, oelib/mol.cpp,
	  oelib/mol.h: Add read/write for ghemical file format.

2000-11-14 21:52  hutchisn

	* oelib, oelib/.cvsignore, oelib/GNULICENSE.txt, oelib/Makefile,
	  oelib/Makefile.in, oelib/OELibPrimer.html, oelib/StdAfx.cpp,
	  oelib/StdAfx.h, oelib/Vector.cpp, oelib/Vector.h,
	  oelib/alchemy.cpp, oelib/aromatic.txt, oelib/atom.cpp,
	  oelib/atomtyp.txt, oelib/balst.cpp, oelib/bgf.cpp,
	  oelib/binary.cpp, oelib/binary.h, oelib/bitgrid.cpp,
	  oelib/bitgrid.h, oelib/bitvec.cpp, oelib/bitvec.h,
	  oelib/bond.cpp, oelib/box.cpp, oelib/c3d.cpp, oelib/cacao.cpp,
	  oelib/cache.cpp, oelib/ccc.cpp, oelib/chdrw.cpp,
	  oelib/chiral.cpp, oelib/chiral.h, oelib/commandline.cpp,
	  oelib/commandline.h, oelib/configure, oelib/csr.cpp,
	  oelib/cssr.cpp, oelib/cwrap.cpp, oelib/cwrap.h, oelib/data.cpp,
	  oelib/data.h, oelib/element.txt, oelib/extable.txt,
	  oelib/feat.cpp, oelib/fh.cpp, oelib/grid.cpp, oelib/grid.h,
	  oelib/gromos96.cpp, oelib/main.cpp, oelib/matrix.cpp,
	  oelib/matrix.h, oelib/mdl.cpp, oelib/mmod.cpp, oelib/mol.cpp,
	  oelib/mol.h, oelib/mol2.cpp, oelib/molchrg.cpp, oelib/molchrg.h,
	  oelib/molvector.cpp, oelib/molvector.h, oelib/oeutil.cpp,
	  oelib/oeutil.h, oelib/parsmart.cpp, oelib/parsmart.h,
	  oelib/parsmi.cpp, oelib/patty.cpp, oelib/patty.h, oelib/pdb.cpp,
	  oelib/quat.c, oelib/rand.cpp, oelib/resdata.txt, oelib/ring.cpp,
	  oelib/ring.h, oelib/rotor.cpp, oelib/rotor.h, oelib/smi.cpp,
	  oelib/smi.h, oelib/tokenst.cpp, oelib/typer.cpp, oelib/typer.h,
	  oelib/types.txt, oelib/version.h: Initial revision

2000-11-14 21:32  hutchisn

	* src/target3/t3mm1gui.cpp, src/target3/t3mm1gui.h,
	  src/target3/t3window.cpp: Added menu items and user-visible
	  feedback for menu choices.

2000-11-14 21:23  hutchisn

	* Makefile.in, configure.in: Add makefile targets to ensure
	  configure script and Makefiles are updated properly.
	  Also add AC_PREREQ to configure.in to ensure configure script
	  isn't updated by
	  an old version of autoconf.

2000-11-10 19:56  hutchisn

	* src/target3/t3mm1gui.cpp, src/target3/t3mm1gui.h,
	  src/target3/t3window.cpp: Remove menu items for import HIN and
	  PDB files (soon to be done through OELib)
	  Add menu items and support for render labels and coloring and
	  quick update mode.

2000-11-10 16:48  hutchisn

	* bin/examples/2-chlorobutane.gpMM,
	  bin/examples/3-phenylpropanal.gpMM,
	  bin/examples/acetylsalicylic_acid.gpMM,
	  bin/examples/alpha-pinene.gpMM, bin/examples/bromobenzene.gpMM,
	  bin/examples/camphor.gpMM, bin/examples/cinnamaldehyde.gpMM,
	  bin/examples/cis-2-pentene.gpMM, bin/examples/cyclohexane.gpMM,
	  bin/examples/naphtalene.gpMM: Update examples to new file format
	  (read in and re-saved).

2000-11-10 12:46  thassine

	* CHANGES, src/common/mdlbase.h, src/common/mm1mdl.cpp,
	  src/common/mm1mdl.h, src/common/mm1util.cpp, src/common/qm1mdl.h,
	  src/common/qm2mdl.h: 1st round of mm1_mdl file format revision

2000-11-09 12:42  thassine

	* BUGLIST, CHANGES, src/Makefile.OLD, src/common/typedef.h,
	  src/common/utility.cpp, src/graphics/color.h,
	  src/graphics/guibase.cpp, src/graphics/guibase.h,
	  src/graphics/mm1gui.cpp, src/graphics/mm1rbn.h,
	  src/graphics/objects.cpp, src/graphics/objects.h,
	  src/graphics/plane.cpp, src/graphics/plane.h,
	  src/graphics/qm1gui.cpp, src/graphics/qm2gui.cpp,
	  src/graphics/surface.cpp, src/graphics/surface.h,
	  src/graphics/viewing.cpp, src/graphics/viewing.h,
	  src/target2/t2mm1gui.cpp, src/target2/t2qm2gui.cpp,
	  src/target3/t3mm1gui.cpp, src/target3/t3mm1gui.h,
	  src/target3/t3qm2gui.cpp, src/target3/t3window.cpp: graphics
	  improvements, volume rendering added

2000-11-08 21:30  hutchisn

	* src/common/utility.cpp, src/common/utility.h: Add back correct
	  symbol for element 110. This may cause problems with atom
	  type rules, but how many rules involve element 110 anyway?

2000-11-07 20:00  hutchisn

	* src/target3/t3dialog.cpp: Add feedback for currently selected
	  bondtype and element in dialogues.

2000-11-07 19:59  hutchisn

	* src/target3/t3mm1gui.cpp, src/target3/t3qm2gui.cpp: Temporarily
	  fix bug for open file filters--don't supply a filter until GTK is
	  fixed.

2000-11-02 14:34  thassine

	* src/common/define.h, src/target3/t3main.cpp: fixed those
	  about-dialog crashes...

2000-11-01 12:43  thassine

	* CHANGES, src/common/define.h, src/common/mdlbase.cpp,
	  src/common/mdlbase.h, src/common/mm1mdl.cpp,
	  src/common/mm1tab1.cpp, src/common/mm1tab9.cpp,
	  src/common/mm1util.cpp, src/target3/Makefile.OLD: added
	  primary/secondary paths for parameter files

2000-10-31 22:37  hutchisn

	* src/common/utility.cpp, src/graphics/mm1gui.cpp: Enter real vdW
	  radii from several sources and update GUI to draw accordingly

2000-10-31 22:34  hutchisn

	* src/target3/t3dialog.cpp: Fixed bug with elements beyond #105.

2000-10-31 17:55  hutchisn

	* configure, configure.in: Another attempt to pick up Xmu and glut
	  appropirately.

2000-10-31 08:17  thassine

	* src/Makefile.OLD: revieved the /src/Makefile.OLD

2000-10-30 16:41  hutchisn

	* configure, configure.in, src/Makefile.OLD,
	  src/target3/Makefile.in: Bugfixes for the autoconf
	  changes--should now work on systems needing -Xmu.

2000-10-30 15:10  thassine

	* src/Makefile.OLD: added yet another Makefile.OLD

2000-10-30 13:50  hutchisn

	* INSTALL, Makefile.in, acconfig.h, aclocal.m4, configure,
	  configure.in, install-sh, mkinstalldirs, src/Makefile,
	  src/common/Makefile.in, src/common/define.h, src/config.h.in,
	  src/graphics/Makefile.in, src/target3/Makefile.in,
	  src/target3/t3main.cpp: Changes to move to an autoconf-derived
	  configure script.

2000-10-25 09:06  thassine

	* src/common/conjgrad.cpp, src/common/utility.cpp: added some
	  missing header files

2000-10-25 08:45  thassine

	* CHANGES, src/common/conjgrad.cpp, src/common/utility.cpp,
	  src/target3/t3main.cpp, src/target3/t3mm1gui.cpp,
	  src/target3/t3qm2gui.cpp: better GnomeUIInfo initialization (the
	  RH7-patch from GH)

2000-10-25 07:47  thassine

	* CHANGES, src/graphics/guibase.cpp, src/graphics/mm1gui.cpp: the
	  multiple view management bug fixed (at last)

2000-10-25 00:03  hutchisn

	* src/common/conjgrad.cpp, src/common/utility.cpp,
	  src/target3/t3main.cpp, src/target3/t3mm1gui.cpp,
	  src/target3/t3qm2gui.cpp: Minor changes to allow compilation on
	  RH7.

2000-10-25 00:02  hutchisn

	* bin, bin/.cvsignore, src, src/.cvsignore, src/common,
	  src/common/.cvsignore, src/graphics, src/graphics/.cvsignore,
	  src/target2, src/target2/.cvsignore, src/target3,
	  src/target3/.cvsignore: CVS ignore files to remove common build
	  objects, etc.

2000-10-24 09:28  thassine

	* src/graphics/mm1gui.cpp, src/graphics/mm1gui.h,
	  src/target2/t2mm1gui.cpp, src/target3/t3mm1gui.cpp: cleaned some
	  graphics code

2000-10-23 14:20  thassine

	* src/new.cpp, src/new.h, src/some-extra-files,
	  src/some-extra-files/newfile.cpp, src/some-extra-files/newfile.h:
	  moved some conflicting files to some-extra-files

2000-10-23 08:59  thassine

	* CHANGES, src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm1util.cpp, src/common/mm1util.h,
	  src/graphics/mm1rbn.cpp: improved mm1_chn_info

2000-10-21 10:14  thassine

	* src/common/Makefile, src/common/color.h, src/common/config.h,
	  src/common/guibase.cpp, src/common/guibase.h,
	  src/common/mm1gui.cpp, src/common/mm1gui.h,
	  src/common/mm1rbn.cpp, src/common/mm1rbn.h,
	  src/common/mtools.cpp, src/common/mtools.h,
	  src/common/objects.cpp, src/common/objects.h,
	  src/common/plane.cpp, src/common/plane.h, src/common/qm1gui.cpp,
	  src/common/qm1gui.h, src/common/qm2gui.cpp, src/common/qm2gui.h,
	  src/common/spline.cpp, src/common/spline.h,
	  src/common/surface.cpp, src/common/surface.h,
	  src/common/viewing.cpp, src/common/viewing.h,
	  src/common/window.cpp, src/common/window.h: removed some
	  duplicate files

2000-10-21 10:02  thassine

	* src/common/library: removed library-dir

2000-10-21 09:42  thassine

	* CHANGES, src/Makefile, src/common/Makefile.OLD,
	  src/common/conjgrad.cpp, src/common/conjgrad.h,
	  src/common/define.h, src/common/engbase.cpp,
	  src/common/engbase.h, src/common/mdlbase.cpp,
	  src/common/mdlbase.h, src/common/mm1alg.cpp, src/common/mm1alg.h,
	  src/common/mm1eng.cpp, src/common/mm1eng.h,
	  src/common/mm1eng1.cpp, src/common/mm1eng1.h,
	  src/common/mm1eng9.cpp, src/common/mm1eng9.h,
	  src/common/mm1mdl.cpp, src/common/mm1mdl.h,
	  src/common/mm1tab1.cpp, src/common/mm1tab1.h,
	  src/common/mm1tab9.cpp, src/common/mm1tab9.h,
	  src/common/mm1util.cpp, src/common/mm1util.h,
	  src/common/qm1eng.cpp, src/common/qm1eng.h,
	  src/common/qm1mdl.cpp, src/common/qm1mdl.h,
	  src/common/qm2eng.cpp, src/common/qm2eng.h,
	  src/common/qm2eng1.cpp, src/common/qm2eng1.h,
	  src/common/qm2eng9.cpp, src/common/qm2eng9.h,
	  src/common/qm2mdl.cpp, src/common/qm2mdl.h, src/common/typedef.h,
	  src/common/utility.cpp, src/common/utility.h, src/common/v3d.h,
	  src/graphics, src/graphics/Makefile.OLD, src/graphics/color.h,
	  src/graphics/guibase.cpp, src/graphics/guibase.h,
	  src/graphics/mm1gui.cpp, src/graphics/mm1gui.h,
	  src/graphics/mm1rbn.cpp, src/graphics/mm1rbn.h,
	  src/graphics/mtools.cpp, src/graphics/mtools.h,
	  src/graphics/objects.cpp, src/graphics/objects.h,
	  src/graphics/plane.cpp, src/graphics/plane.h,
	  src/graphics/qm1gui.cpp, src/graphics/qm1gui.h,
	  src/graphics/qm2gui.cpp, src/graphics/qm2gui.h,
	  src/graphics/spline.cpp, src/graphics/spline.h,
	  src/graphics/surface.cpp, src/graphics/surface.h,
	  src/graphics/viewing.cpp, src/graphics/viewing.h,
	  src/graphics/window.cpp, src/graphics/window.h,
	  src/target1/Makefile, src/target1/Makefile.OLD,
	  src/target1/config.h, src/target1/config.h.OLD,
	  src/target2/Makefile, src/target2/Makefile.OLD,
	  src/target2/config.h, src/target2/config.h.OLD,
	  src/target3/Makefile, src/target3/Makefile.OLD,
	  src/target3/config.h, src/target3/config.h.OLD: new source tree
	  with old makefiles

2000-10-21 08:16  thassine

	* CHANGES, src/common/guibase.cpp, src/common/guibase.h,
	  src/common/library/define.h, src/common/library/mdlbase.cpp,
	  src/common/library/mdlbase.h, src/common/viewing.cpp,
	  src/target3/t3dialog.cpp, src/target3/t3dialog.h,
	  src/target3/t3mm1gui.cpp, src/target3/t3mm1gui.h,
	  src/target3/t3qm2gui.cpp, src/target3/t3qm2gui.h,
	  src/target3/t3window.cpp: file save dialogs added, selection bug
	  fixed

2000-10-18 14:13  thassine

	* CHANGES, bin/examples/2-chlorobutane.gpMM,
	  bin/examples/2-chlorobutane.mm1gp,
	  bin/examples/3-phenylpropanal.gpMM,
	  bin/examples/3-phenylpropanal.mm1gp,
	  bin/examples/acetylsalicylic_acid.gpMM,
	  bin/examples/acetylsalicylic_acid.mm1gp,
	  bin/examples/alpha-pinene.gpMM, bin/examples/alpha-pinene.mm1gp,
	  bin/examples/bromobenzene.gpMM, bin/examples/bromobenzene.mm1gp,
	  bin/examples/camphor.gpMM, bin/examples/camphor.mm1gp,
	  bin/examples/cinnamaldehyde.gpMM,
	  bin/examples/cinnamaldehyde.mm1gp,
	  bin/examples/cis-2-pentene.gpMM,
	  bin/examples/cis-2-pentene.mm1gp, bin/examples/cyclohexane.gpMM,
	  bin/examples/cyclohexane.mm1gp, bin/examples/naphtalene.gpMM,
	  bin/examples/naphtalene.mm1gp, src/common/guibase.cpp,
	  src/common/guibase.h, src/common/library/mm1mdl.cpp,
	  src/common/library/qm1mdl.cpp, src/common/library/qm2mdl.cpp,
	  src/common/mm1gui.cpp, src/common/mm1gui.h,
	  src/common/qm1gui.cpp, src/common/qm1gui.h,
	  src/common/qm2gui.cpp, src/common/qm2gui.h,
	  src/target2/t2main.cpp, src/target3/t3dialog.cpp,
	  src/target3/t3dialog.h, src/target3/t3main.cpp,
	  src/target3/t3main.h, src/target3/t3mm1gui.cpp,
	  src/target3/t3mm1gui.h, src/target3/t3qm2gui.cpp,
	  src/target3/t3qm2gui.h, src/target3/t3window.cpp,
	  src/target3/t3window.h: added file dialogs for GNOME version,
	  changed examples

2000-10-16 07:07  thassine

	* src/common/config.h, src/common/library/config.h,
	  src/common/library/mm1mdl.cpp, src/common/library/mm1util.cpp,
	  src/common/library/utility.cpp, src/common/library/utility.h:
	  merged the patches from GH

2000-09-09 14:49  thassine

	* CHANGES, src/common/config.h, src/common/library/config.h,
	  src/common/library/define.h, src/target1/Makefile: just a few
	  minor changes

2000-09-09 12:17  thassine

	* BUGLIST, CHANGES, INSTALL, PROJECT, src/common/Makefile,
	  src/common/library/Makefile, src/common/library/define.h,
	  src/common/qm2gui.cpp, src/new.h, src/target2/Makefile,
	  src/target3/Makefile, src/target3/t3main.cpp,
	  src/target3/t3mm1gui.cpp, src/target3/t3qm2gui.cpp,
	  src/target3/t3qm2gui.h, src/target3/t3window.cpp: improvements in
	  gt3. this is released as 0.2.2

2000-09-06 09:02  thassine

	* src/Makefile: made some changes in makefiles

2000-09-06 08:38  thassine

	* AUTHORS, BUGLIST, CHANGES, COPYING, INSTALL, PROJECT, bin,
	  bin/examples, bin/examples/2-chlorobutane.mm1gp,
	  bin/examples/3-phenylpropanal.mm1gp,
	  bin/examples/acetylsalicylic_acid.mm1gp,
	  bin/examples/alpha-pinene.mm1gp, bin/examples/bromobenzene.mm1gp,
	  bin/examples/camphor.mm1gp, bin/examples/cinnamaldehyde.mm1gp,
	  bin/examples/cis-2-pentene.mm1gp, bin/examples/cyclohexane.mm1gp,
	  bin/examples/naphtalene.mm1gp, bin/parameters,
	  bin/parameters/builder, bin/parameters/builder/amino.txt,
	  bin/parameters/builder/nucleic.txt, bin/parameters/mm1param,
	  bin/parameters/mm1param/stable,
	  bin/parameters/mm1param/stable/atomtypes.txt,
	  bin/parameters/mm1param/stable/parameters1.txt,
	  bin/parameters/mm1param/stable/parameters2.txt,
	  bin/parameters/mm1param/stable/parameters3.txt,
	  bin/parameters/mm1param/stable/parameters4.txt,
	  bin/parameters/mm1param/stable/parameters5.txt,
	  bin/parameters/mm1param/unstable,
	  bin/parameters/mm1param/unstable/atomtypes.txt,
	  bin/parameters/mm1param/unstable/parameters1.txt,
	  bin/parameters/mm1param/unstable/parameters2.txt,
	  bin/parameters/mm1param/unstable/parameters3.txt,
	  bin/parameters/mm1param/unstable/parameters4.txt,
	  bin/parameters/mm1param/unstable/parameters5.txt, src,
	  src/Makefile, src/common, src/common/Makefile,
	  src/common/color.h, src/common/config.h, src/common/guibase.cpp,
	  src/common/guibase.h, src/common/library,
	  src/common/library/Makefile, src/common/library/config.h,
	  src/common/library/conjgrad.cpp, src/common/library/conjgrad.h,
	  src/common/library/define.h, src/common/library/engbase.cpp,
	  src/common/library/engbase.h, src/common/library/mdlbase.cpp,
	  src/common/library/mdlbase.h, src/common/library/mm1alg.cpp,
	  src/common/library/mm1alg.h, src/common/library/mm1eng.cpp,
	  src/common/library/mm1eng.h, src/common/library/mm1eng1.cpp,
	  src/common/library/mm1eng1.h, src/common/library/mm1eng9.cpp,
	  src/common/library/mm1eng9.h, src/common/library/mm1mdl.cpp,
	  src/common/library/mm1mdl.h, src/common/library/mm1tab1.cpp,
	  src/common/library/mm1tab1.h, src/common/library/mm1tab9.cpp,
	  src/common/library/mm1tab9.h, src/common/library/mm1util.cpp,
	  src/common/library/mm1util.h, src/common/library/qm1eng.cpp,
	  src/common/library/qm1eng.h, src/common/library/qm1mdl.cpp,
	  src/common/library/qm1mdl.h, src/common/library/qm2eng.cpp,
	  src/common/library/qm2eng.h, src/common/library/qm2eng1.cpp,
	  src/common/library/qm2eng1.h, src/common/library/qm2eng9.cpp,
	  src/common/library/qm2eng9.h, src/common/library/qm2mdl.cpp,
	  src/common/library/qm2mdl.h, src/common/library/typedef.h,
	  src/common/library/utility.cpp, src/common/library/utility.h,
	  src/common/library/v3d.h, src/common/matrix.h,
	  src/common/mm1gui.cpp, src/common/mm1gui.h,
	  src/common/mm1rbn.cpp, src/common/mm1rbn.h,
	  src/common/mtools.cpp, src/common/mtools.h,
	  src/common/notice.cpp, src/common/notice.h,
	  src/common/objects.cpp, src/common/objects.h,
	  src/common/plane.cpp, src/common/plane.h, src/common/qm1gui.cpp,
	  src/common/qm1gui.h, src/common/qm2gui.cpp, src/common/qm2gui.h,
	  src/common/spline.cpp, src/common/spline.h,
	  src/common/surface.cpp, src/common/surface.h,
	  src/common/viewing.cpp, src/common/viewing.h,
	  src/common/window.cpp, src/common/window.h, src/new.cpp,
	  src/new.h, src/target1, src/target1/Makefile,
	  src/target1/config.h, src/target1/t1main.cpp,
	  src/target1/t1main.h, src/target2, src/target2/Makefile,
	  src/target2/config.h, src/target2/t2main.cpp,
	  src/target2/t2main.h, src/target2/t2mm1gui.cpp,
	  src/target2/t2mm1gui.h, src/target2/t2qm1gui.cpp,
	  src/target2/t2qm1gui.h, src/target2/t2qm2gui.cpp,
	  src/target2/t2qm2gui.h, src/target2/t2window.cpp,
	  src/target2/t2window.h, src/target3, src/target3/Makefile,
	  src/target3/config.h, src/target3/pixmaps,
	  src/target3/pixmaps/draw.xpm, src/target3/pixmaps/erase.xpm,
	  src/target3/pixmaps/orb_xy.xpm, src/target3/pixmaps/orb_z.xpm,
	  src/target3/pixmaps/rot_xy.xpm, src/target3/pixmaps/rot_z.xpm,
	  src/target3/pixmaps/select.xpm, src/target3/pixmaps/trans_xy.xpm,
	  src/target3/pixmaps/trans_z.xpm, src/target3/pixmaps/zoom.xpm,
	  src/target3/t3dialog.cpp, src/target3/t3dialog.h,
	  src/target3/t3main.cpp, src/target3/t3main.h,
	  src/target3/t3mm1gui.cpp, src/target3/t3mm1gui.h,
	  src/target3/t3qm1gui.cpp, src/target3/t3qm1gui.h,
	  src/target3/t3qm2gui.cpp, src/target3/t3qm2gui.h,
	  src/target3/t3window.cpp, src/target3/t3window.h: Initial
	  revision

2000-09-06 08:38  

	* .: New repository initialized by cvs2svn.