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
|
2014-04-08 nerijus
* PyXML is no longer needed
2006-02-15 18:29 mjoc
* lib/gui/mainwin.py, po/lt.po, po/opendict.pot: Window "Edit
Dicitonaries" renamed to "Create Dictionaries".
2006-02-14 15:17 mjoc
* po/: lt.po, opendict.pot: Translation updated.
2006-02-13 02:08 nerijus
* lib/gui/mainwin.py: clear search field on ESC, implements feature
request 1351220
2006-02-12 22:10 nerijus
* po/lt.po, win32/setup.manifest.py, win32/setup.py: Version
changed to 0.6.1
2006-02-12 20:59 mjoc
* po/: lt.po, opendict.pot: Translation (po) file updated.
2006-02-12 20:56 mjoc
* lib/gui/dictconnwin.py, po/opendict.pot: Bug fix: encoding has
not been really used after chaning it in DictConnection dialog.
2006-02-12 02:53 mjoc
* ChangeLog, opendict.1, po/lt.po, po/opendict.pot: Manual page
added. ChangeLog updated.
2006-01-28 16:45 mjoc
* opendict.py, lib/info.py, lib/logger.py, lib/gui/dictconnwin.py,
lib/gui/helpwin.py, lib/gui/mainwin.py: 1. Debug logger messages
minimized; 2. DICT connection window sets encoding on the main
window menu; 3. Version changed to 0.6.1;
2006-01-08 23:12 nerijus
* lib/misc.py: fixed spelling
2006-01-08 14:14 mjoc
* lib/config.py, lib/gui/dictconnwin.py, po/lt.po, po/opendict.pot:
DICT connection window changes: 1) New encoding selection entry
added. 2) Windows remembers last server and encoding used.
2005-12-26 20:04 nerijus
* lib/: misc.py, parser.py, gui/mainwin.py: fixed grammar
2005-12-26 19:42 nerijus
* lib/parser.py: removed duplicated line
2005-11-10 13:45 mjoc
* lib/parser.py: If invalid line is found while parsing Slowo
format dictionary, error message is written to system.log. Until
this bug fix exception had not been cached.
2005-11-02 22:12 mjoc
* copying.html: FSF address updated.
2005-11-02 21:58 mjoc
* lib/: tests/test_editor.py, extra/html2text.py: First line with
#!/exec/path removed.
2005-10-26 00:19 nerijus
* win32/compile.bat: copy msvcr71.dll
2005-10-25 17:42 mjoc
* TODO.txt, opendict.py, po/opendict.pot: Very small changes: one
more todo item, etc.
2005-10-25 16:51 nerijus
* win32/: setup.manifest.py, setup.py: updated version to 0.6.0
2005-10-24 22:39 mjoc
* ChangeLog: New ChangeLog generated using cvs2cl utility.
2005-10-24 22:04 mjoc
* lib/gui/mainwin.py, po/lt.po, po/opendict.pot: Show/Hide button
removed (hidden) from the main window, menu item of the same
functionality added. Lithuanian translation updated.
2005-10-20 18:26 mjoc
* lib/info.py: Version changed to 0.6.0. Going to release stable
version 0.6.0.
2005-10-20 18:22 mjoc
* misc/opendict.desktop: Name changed from "OpenDict" to
"Dictionary OpenDict". More intuitive.
2005-09-06 22:59 mjoc
* doc/Plugin-HOWTO.html: Simple plugin example section written.
Needs more detailed instructions in the future.
2005-08-31 11:39 mjoc
* doc/Plugin-HOWTO.html: Introduction, Types od OpenDict
Dictionaries and Plain Dictionary Example sections written.
2005-08-30 00:27 mjoc
* doc/: OpenDict_plugin_dev.txt, Plugin-HOWTO.html,
Specification.txt: Old plugin-dev doc removed, spefication
removed, new plugin-dev howto added (not finished yet).
2005-08-17 19:46 mjoc
* pixmaps/: icon-24x24.png, icon-32x32.png, icon-48x48.png,
icon-620x620.png, icon-96x96.png, SVG/icon-rune.svg: Icon
improved a bit by adding some color transitioning.
2005-08-06 23:37 mjoc
* TODO.txt, lib/gui/mainwin.py, lib/gui/prefswin.py, po/lt.po,
po/opendict.pot: Option for default clipboard scanner use added
into preferences window.
2005-08-05 22:02 mjoc
* TODO.txt, lib/info.py, lib/gui/mainwin.py, po/opendict.pot:
Version changed to 0.5.9-CVS, clipboard-scanned text is trimmed
before searching for translation. New TODO entries added.
2005-06-14 00:47 nerijus
* README.txt, TODO.txt: updated README; converted to unix line
endings
2005-06-13 23:58 nerijus
* README.txt, opendict.py, lib/info.py: improved error message when
PyXML is missing, so thhat Fedora users know which package they
are missing; bumped version to 0.5.8
2005-06-10 23:35 mjoc
* lib/tests/data/sampleplugin/sample.py: Sample plugin for unit
testing updated to work with new module tree after adding 'lib'
to import path.
2005-06-10 23:17 mjoc
* po/: lt.po, opendict.pot: lt.po merging conflict resolved.
2005-06-10 23:10 mjoc
* AUTHORS.txt: Added authors file.
2005-06-10 23:04 mjoc
* ChangeLog, lib/gui/helpwin.py, lib/gui/mainwin.py, po/lt.po,
po/opendict.pot: 1. Controls are enabled before showing search
results 2. Nerijus B. added to authors list.
2005-05-31 14:34 nerijus
* opendict.py: ask unicode wx version; it still can use ansi
version if unicode is not available
2005-05-24 18:05 nerijus
* Makefile: simplified install/uninstall
2005-05-16 21:53 mjoc
* lib/info.py, lib/newplugin.py, lib/util.py, lib/gui/mainwin.py,
po/lt.po, po/opendict.pot: wx.EndBusyCursor bug fixed, no error
message on Windows build. Name correction is not used until
correct functionality is achieved.
2005-04-29 03:18 nerijus
* win32/setup.py: no changes
2005-04-29 03:16 nerijus
* win32/: compile.bat, setup.manifest.py: added setup script with
manifest
2005-04-29 02:27 nerijus
* win32/compile.bat: copy license file manually
2005-04-29 02:09 nerijus
* win32/compile.bat: encodings work with py2exe
2005-04-28 06:03 nerijus
* lib/info.py: py2exe now works
2005-04-28 05:58 nerijus
* opendict.py, lib/info.py, win32/compile.bat, win32/setup.py:
py2exe now works
2005-04-27 18:56 mjoc
* opendict.py: wxPython 2.5 is selected only if application is not
frozen (i.e. compiled using py2exe)
2005-04-27 18:46 mjoc
* opendict.py, lib/enc.py: OpenDict now supports wxPython
multiversioning. If both wxPython 2.4 and 2.5 are installed on
the same system, version 2.5 is used.
2005-04-27 15:54 nerijus
* win32/make.py: use python24
2005-04-27 01:02 mjoc
* lib/gui/helpwin.py: One more developer Nerijus Baliunas added to
"Thanks" window.
2005-04-27 00:43 mjoc
* lib/newplugin.py: Some plugins were not working because of
deleted sys.modules item after loading plugin. Now just old item
is deleted _before_ loding it.
2005-04-27 00:25 mjoc
* lib/config.py, lib/info.py, po/opendict.pot: Version changed to
0.5.8-CVS, default window size smaller (370x550)
2005-04-27 00:08 mjoc
* opendict.py, lib/installer.py, lib/newplugin.py,
lib/plaindict.py, lib/util.py, lib/gui/mainwin.py,
lib/gui/miscwin.py, po/lt.po, po/opendict.pot: InvalidDictWindow
improved: one can remove invalid directories by pressing Remove
button. Small bug fixes.
2005-04-26 19:13 mjoc
* ChangeLog: ChangeLog added.
2005-04-26 19:10 mjoc
* opendict.py, lib/installer.py, lib/xmltools.py,
lib/gui/prefswin.py, po/Makefile, po/lt.po, po/opendict.pot: 1.
Default dictionary value encoding fixed. 2. wxPython version is
checked using wx module and wxPython on failure.
2005-04-24 14:21 mjoc
* README.txt: New information for Windows users added.
2005-04-23 21:17 mjoc
* opendict.py, lib/tests/test_editor.py, lib/tests/test_plugin.py,
po/opendict.pot: Removed code using "from wxPython import *"
imported objects.
2005-04-23 21:02 mjoc
* win32/compile.bat: Windows batch file for simplifying py2exe
process added.
2005-04-22 00:45 mjoc
* lib/gui/mainwin.py, po/lt.po, po/opendict.pot: LT translation
updated, small changes.
2005-04-22 00:37 mjoc
* lib/gui/dicteditorwin.py, po/lt.po, po/opendict.pot: Lithuanian
translation updated.
2005-04-21 22:49 mjoc
* opendict.py, lib/gui/mainwin.py, lib/gui/pluginwin.py: 1. After
dict installation Install button is disabled. 2. wxPython
version is written to log when starting 3. Dict manager clears
info about dict after removing it
2005-04-17 01:59 mjoc
* README.txt, TODO.txt: README and TODO updated.
2005-04-17 01:55 mjoc
* lib/errortype.py, lib/util.py, lib/gui/mainwin.py, po/lt.po,
po/opendict.pot: Additional translating strings updated.
2005-04-17 01:36 mjoc
* lib/errortype.py, lib/util.py, lib/gui/pluginwin.py, po/lt.po,
po/opendict.pot: Lithuanian translation updated. Few bus fixed.
2005-04-17 00:50 mjoc
* lib/gui/dictconnwin.py: Grammar mistake fixed: Connectio
2005-04-16 23:16 mjoc
* po/: lt.po, opendict.pot: Translation updated.
2005-04-11 13:12 mjoc
* lib/gui/mainwin.py, po/opendict.pot: Trailing '\r' removed from
mainwin.py, opendict.pot updated.
2005-04-10 11:30 mjoc
* po/unix_proceed.sh: Removed.
2005-04-10 11:08 mjoc
* po/: messages.pot, opendict.pot: po/lt/ directory removed,
message.pot removed, opendict.pot added.
2005-04-10 11:03 mjoc
* po/: Makefile, lt.po: opendict.po not removed.
2005-04-09 23:48 mjoc
* opendict.py, lib/info.py, lib/logger.py, lib/util.py: Needed
directories are created before proceeding with app load.
2005-04-02 19:54 mjoc
* opendict.py: Import error bug fix for showing error message about
old wxPython version.
2005-04-02 00:25 mjoc
* lib/util.py: AgreementManager removes non existent directories.
2005-04-01 20:49 mjoc
* lib/: config.py, gui/mainwin.py, gui/pluginwin.py,
gui/prefswin.py: URL for dictionaries list file is taken from
configuration file now. Small improvements of output messages.
2005-03-31 22:14 mjoc
* lib/gui/mainwin.py: MainWindow.loadDictionary(): returns if
dictInstance is None.
2005-03-31 20:49 mjoc
* lib/gui/mainwin.py: Error message about invalid dictinaries
enhanced.
2005-03-29 19:56 mjoc
* opendict.py, lib/gui/mainwin.py: Very small bug fix in grammar
(message about invalid dictionaries).
2005-03-28 00:29 mjoc
* lib/gui/: dicteditorwin.py, mainwin.py: "Save As" button added to
DictEditor.
2005-03-27 23:38 mjoc
* Makefile: New Makefile style.
2005-03-27 23:36 mjoc
* po/: Makefile, lt.po: Makefile for translation files added.
2005-03-27 23:28 mjoc
* lib/: installer.py, gui/mainwin.py: Error message is shown when
word fails to be encoded in dictionary's own encoding.
2005-03-27 16:51 mjoc
* lib/gui/pluginwin.py: Dictionaries are sorted by name in both
views.
2005-03-27 16:41 mjoc
* lib/gui/mainwin.py: Menu item form scanning clipboard renamed to
"Take ..."
2005-03-27 16:33 mjoc
* lib/gui/prefswin.py: Dictionary list is sorted in
PreferencesWindow.
2005-03-27 15:58 mjoc
* lib/gui/mainwin.py: Font size is increased using Ctrl-= instead
of Ctrl-+.
2005-03-27 15:25 mjoc
* lib/: config.py, gui/prefswin.py: Removed groups and registers
setting from configuration as it is outdated and not used
anymore.
2005-03-27 15:13 mjoc
* lib/gui/mainwin.py: Tooltips added from text entry and lookup
button.
2005-03-27 14:50 mjoc
* lib/gui/: helpwin.py, mainwin.py: Minimal window width is a bit
smaller (320 pixels), "Lookup Up" menu item bug fixed,
LicenceWindow widget arrangement improved.
2005-03-27 14:17 mjoc
* lib/gui/mainwin.py: MainWindow can be resized to even more
smaller window, "Search" button renamed to "Lookup Up" button.
"Not Found" message is shown even if plugin does not return error
code.
2005-03-27 04:00 mjoc
* lib/gui/helpwin.py: Thanks page added to CreditsWindow.
2005-03-27 02:39 mjoc
* lib/: xmltools.py, gui/helpwin.py: 1. Buttons made smaller in
AboutWindow. 2. Index is written in binary mode.
2005-03-27 02:33 mjoc
* lib/gui/: mainwin.py, pluginwin.py: Clipboard scan feature added.
2005-03-26 23:47 mjoc
* pixmaps/icon-32x32.png: 32x32 size icon added, for Windows
platform.
2005-03-26 21:52 mjoc
* scripts/make-addons-list.py: [no log message]
2005-03-26 21:29 mjoc
* scripts/make-addons-list.py: Bug fix, didn't fetched description
from plugins.
2005-03-26 21:06 mjoc
* opendict.py, lib/newplugin.py, lib/gui/dicteditorwin.py,
lib/gui/mainwin.py, lib/gui/pluginwin.py: 1. Error dialog added
to notify about failed dictionaries 2. Wildcard bug fixed for
DictEditor
2005-03-26 20:37 mjoc
* lib/: util.py, gui/helpwin.py, gui/mainwin.py, gui/pluginwin.py:
1. Font style fixed for AboutWindow, didn't work on Windows
platform. 2. Plugin ZIP files are opened in binary mode, didn't
work on Windows too.
2005-03-26 20:31 mjoc
* lib/gui/mainwin.py: After selecting a word busy cursor is
started.
2005-03-26 20:27 mjoc
* pixmaps/hide.png: Forgotten to upload in the past.
2005-03-26 18:33 mjoc
* opendict.py, lib/config.py, lib/dicttype.py, lib/encodings.py,
lib/group.py, lib/installer.py, lib/logger.py, lib/meta.py,
lib/mywords.py, lib/newplugin.py, lib/parser.py,
lib/plaindict.py, lib/util.py, lib/xmltools.py,
lib/gui/dictaddwin.py, lib/gui/dictconnwin.py,
lib/gui/dicteditorwin.py, lib/gui/errorwin.py,
lib/gui/groupswin.py, lib/gui/helpwin.py, lib/gui/mainwin.py,
lib/gui/miscwin.py, lib/gui/mywordswin.py, lib/gui/pluginwin.py,
lib/gui/prefswin.py: Now lib/ dir is imported before any module
because of problems with some same named built-in modules (i.e.
parser) on Windows platform. Old files removed.
2005-03-26 18:06 mjoc
* lib/__init__.py: Added, as lib dir is going to be imported
itself.
2005-03-26 17:08 mjoc
* lib/tests/test_editor.py: test_save changed to compare lengths.
2005-03-26 17:04 mjoc
* lib/: plugin.py, register.py: Removed, not usable anymore.
2005-03-26 17:02 mjoc
* opendict.py, lib/config.py, lib/info.py, lib/installer.py,
lib/newplugin.py, lib/gui/helpwin.py, lib/gui/mainwin.py: 1.
Global home directory is now the directory where opendict.py is
located. 2. Old plugin.py and register.py are not imported
anywhere.
2005-03-23 00:06 mjoc
* lib/gui/pluginwin.py, scripts/make-addons-list.py: PluginWindow
remembers addons variable after closing. Addons script outputs to
opendict-add-ons.xml.
2005-03-22 23:47 mjoc
* scripts/make-addons-list.py: Several bug fixes and improvements.
2005-03-22 23:10 mjoc
* scripts/make-addons-list.py: Script for auto-generating addons
list added.
2005-03-22 14:37 mjoc
* TODO.txt: New TODO entry.
2005-03-22 02:34 mjoc
* lib/gui/pluginwin.py: I'm not sure if this is fixed now, but
sometime download progress dialog does not close. For the moment
it works correctly.
2005-03-22 02:15 mjoc
* lib/: util.py, gui/pluginwin.py: Status messages improved.
2005-03-22 01:29 mjoc
* lib/installer.py: Custom installation support for dictionaries
added. Runs install.install() if founds install.py.
2005-03-21 22:58 mjoc
* TODO.txt, lib/errortype.py, lib/installer.py, lib/parser.py,
lib/gui/mainwin.py: DictParser fixed, word is not encoded twice
anymore.
2005-03-21 21:10 mjoc
* lib/: util.py, gui/pluginwin.py: 1. "Done" is shown when
DownloadManager finishes download. 2. No message is shown after
cancelling file download.
2005-03-21 21:05 mjoc
* lib/gui/: dicteditorwin.py, mainwin.py: Busy cursor is shown
while loading dictionary in main window and opening file in
editor window.
2005-03-21 20:55 mjoc
* lib/gui/dictconnwin.py: Error dialog is shown if unable to
connect to server.
2005-03-21 20:39 mjoc
* lib/parser.py: MovaParser fixed, word is not encoded
2005-03-21 11:40 mjoc
* lib/: parser.py, plaindict.py, gui/mainwin.py: Small
improvements.
2005-03-20 18:30 mjoc
* lib/gui/mainwin.py: Standard "Find" stock button replaced with
simple "Search" button.
2005-03-20 18:12 mjoc
* lib/: config.py, gui/mainwin.py: "Find" item added to "File"
menu.
2005-03-16 20:57 mjoc
* lib/: installer.py, gui/mainwin.py, gui/pluginwin.py: Dictionary
name is added to installed list on PluginWindow after installing
new dictionary from PluginWindow.
2005-03-16 19:52 mjoc
* lib/: installer.py, plaindict.py, xmltools.py, gui/pluginwin.py:
Description support for registers added.
2005-03-16 19:09 mjoc
* Makefile, lib/installer.py, lib/newplugin.py, lib/plaindict.py,
lib/xmltools.py, lib/gui/mainwin.py, lib/gui/pluginwin.py: 1.
Version and authors info support to registers added. 2. Bugfixes
and improvements in PluginWindow.
2005-03-16 17:03 mjoc
* lib/gui/miscwin.py: Miscellaneous GUI classes.
2005-03-11 22:58 mjoc
* lib/gui/: helpwin.py, prefswin.py: Very small GUI improvements.
2005-03-11 21:28 mjoc
* copying.html, copying.txt, lib/gui/helpwin.py: 1. GNU GPL is
shown in HTML window 2. Removed licence text version 3. Added
licence HTML version
2005-03-11 21:09 mjoc
* opendict.py, lib/info.py, lib/meta.py, lib/newplugin.py,
lib/plaindict.py, lib/util.py, lib/xmltools.py,
lib/gui/mainwin.py, lib/gui/pluginwin.py: 1. Licence agreement
subsystem added for ability to add licence agreement for register
or plugin. 2. File path is made to be found automatically when
not defined for registered ddictionaries and plugins.
2005-03-11 18:28 mjoc
* ChangeLog: Changelog file is generated from CVS logs.
2005-03-11 18:16 mjoc
* lib/gui/: mainwin.py, pluginwin.py, prefswin.py: Loads default
dictionary on startup. Normal font bug fixed.
2005-03-07 11:25 mjoc
* ChangeLog, opendict.py, lib/installer.py, lib/newplugin.py,
lib/plaindict.py, lib/util.py, lib/xmltools.py,
lib/gui/dicteditorwin.py, lib/gui/helpwin.py, lib/gui/mainwin.py,
lib/gui/pluginwin.py, lib/gui/prefswin.py: Lots of small changes.
2005-03-04 17:31 mjoc
* ChangeLog, lib/gui/mainwin.py: Small changes.
2005-03-04 17:29 mjoc
* lib/gui/: helpwin.py, mainwin.py: Close button in LicenceWindow
right-aligned.
2005-03-04 17:26 mjoc
* lib/gui/prefswin.py: Buttons are right-aligned in
PreferencesWindow.
2005-03-04 17:24 mjoc
* lib/gui/prefswin.py: "Save" button removed from
PreferencesWindow.
2005-03-04 17:15 mjoc
* lib/: installer.py, gui/mainwin.py, gui/pluginwin.py: "Install
From File" button added to PluginManager.
2005-03-04 16:59 mjoc
* TODO.txt, lib/dicttype.py, lib/meta.py, lib/parser.py,
lib/plaindict.py, lib/gui/mainwin.py: New function added for
writing current dictionary configuration to disk. It is used
after indexing and changing text encoding now.
2005-03-04 15:47 mjoc
* lib/config.py: Window size/position are now saved by default.
2005-03-04 15:46 mjoc
* lib/gui/mainwin.py: Font face/size changing fixed after damage
while rewriting configuration hanfler.
2005-03-04 13:32 mjoc
* lib/gui/mainwin.py: Sash position is saved only if word list is
not hidden when exiting.
2005-03-04 11:36 mjoc
* lib/gui/pluginwin.py: OpenDict repository opendict-addons.xml
file URL changed to
http://files.akl.lt/~mjoc/OpenDict/Data/opendict-addons.xml.
Temporarily.
2005-03-03 09:27 mjoc
* lib/: config.py, gui/mainwin.py: Small fixes.
2005-03-03 09:15 mjoc
* pixmaps/stop.png: Stop PNG icon added.
2005-03-03 08:52 mjoc
* lib/: config.py, gui/dictconnwin.py, gui/prefswin.py: Finished
with DictConnectionWindow after reimpelenting new configuration
handler.
2005-03-03 01:49 mjoc
* lib/misc.py: Unsaved changes commited.
2005-03-03 01:34 mjoc
* opendict.py, lib/config.py, lib/misc.py, lib/xmltools.py,
lib/gui/mainwin.py, lib/gui/prefswin.py: Configuration subsystem
rewritten. Now configuration is stored in XML file.
2005-03-02 23:44 mjoc
* lib/gui/mainwin.py: Stop button added.
2005-03-02 23:33 mjoc
* lib/gui/mainwin.py: Search history for entry field enabled.
2005-03-02 23:21 mjoc
* lib/gui/helpwin.py: About window Credits section unicode problem
fixed.
2005-03-02 23:15 mjoc
* lib/: errortype.py, parser.py, gui/dictconnwin.py,
gui/mainwin.py: 1. DictConnectionWindow fixed and improved. 2.
Other small changes.
2005-03-01 00:28 mjoc
* lib/gui/pluginwin.py: [no log message]
2005-03-01 00:26 mjoc
* lib/: dicteditor.py, gui/dicteditorwin.py, gui/pluginwin.py:
Editor window almost read for real using.
2005-02-28 22:29 mjoc
* opendict.py, lib/installer.py, lib/gui/pluginwin.py: 1. Installer
notificates about successful installation 2. PluginManager
remembers available dictionaries list for one session
2005-02-27 22:24 mjoc
* lib/gui/: dicteditorwin.py, mainwin.py, pluginwin.py: 1.
PluginManager and DictEditor uses icon 2. Main window title is
set using titleTemplate
2005-02-27 14:59 mjoc
* lib/: dicteditor.py, gui/dicteditorwin.py, gui/mainwin.py,
tests/test_editor.py: 1. New editor tests 2. Small MainWindow
changes 3. EditorWindow improvements
2005-02-23 23:32 mjoc
* lib/gui/dicteditorwin.py: [no log message]
2005-02-23 23:32 mjoc
* TODO.txt, lib/installer.py, lib/newplugin.py: Editor window
improved, some other small improvements.
2005-02-22 23:18 mjoc
* lib/: dicteditor.py, gui/dicteditorwin.py, gui/mainwin.py,
tests/test_editor.py, tests/test_plugin.py,
tests/data/plugin.xml, tests/data/sampleplugin/plugin.xml: Editor
window interface uses Editor class (not finished), tests fixed.
2005-02-22 22:23 mjoc
* lib/: dicteditor.py, gui/dicteditorwin.py, gui/mainwin.py: Editor
class, separate from GUI, added
2005-02-22 22:21 mjoc
* lib/tests/data/sampledict.dwa: Sample dict for testing added
2005-02-22 22:20 mjoc
* lib/tests/test_editor.py: Editor test added.
2005-02-18 18:16 mjoc
* lib/: installer.py, plaindict.py, gui/pluginwin.py: Installer
fixed to recongnize normal and plain dict plugins.
2005-02-17 10:23 mjoc
* pixmaps/: icon-24x24.png, icon-48x48.png, icon-620x620.png,
icon-96x96.png, SVG/icon-rune.svg: Icon color is made to be more
yellow.
2005-02-16 21:00 mjoc
* opendict.py, lib/info.py: Error report is shown when Python/XML
module is not found.
2005-02-16 14:53 mjoc
* opendict.py: If wxPython library is not installed, user-friendly
message is outputed now.
2005-02-15 19:51 mjoc
* lib/: errortype.py, installer.py, parser.py, plaindict.py,
xmltools.py, gui/mainwin.py, gui/pluginwin.py: Plain/normal
plugin installation system started.
2005-02-15 18:48 mjoc
* pixmaps/: icon-24x24.png, icon-48x48.png, icon-620x620.png,
icon-96x96.png: New PNGs made.
2005-02-15 18:45 mjoc
* pixmaps/SVG/icon-rune.svg: Pages edges thinned.
2005-02-15 18:39 mjoc
* pixmaps/SVG/icon-rune.svg: New icon with rune (sun) added.
2005-02-15 11:11 mjoc
* pixmaps/SVG/icon.svg: Borders are even stronger now.
2005-02-15 10:57 mjoc
* pixmaps/SVG/icon.svg: Book border made stronger.
2005-02-13 01:22 mjoc
* run-opendict: run-script removed.
2005-02-13 01:21 mjoc
* lib/gui/: errorwin.py, pluginwin.py: Ability to fetch add-ons
list added.
2005-02-13 00:13 mjoc
* opendict.py, lib/meta.py, lib/newplugin.py, lib/xmltools.py,
lib/gui/pluginwin.py: * Add-ons list XML parser written * This
parser integrated into pluginwin.py * Small fixes
2005-02-12 22:11 mjoc
* opendict.py, lib/installer.py, lib/newplugin.py, lib/parser.py,
lib/plaindict.py, lib/gui/mainwin.py, lib/gui/pluginwin.py:
Logger integrated in mainwin.py, newplugin.py, plaindict.py
2005-02-12 21:09 mjoc
* opendict.py: Logger integrated.
2005-02-12 21:08 mjoc
* lib/logger.py: Logger functions added.
2005-02-12 18:30 mjoc
* lib/: errortype.py, gui/pluginwin.py: Information about
dictionaries showing fixed.
2005-02-11 20:23 mjoc
* opendict.py, lib/newplugin.py, lib/gui/mainwin.py: Some bug
fixes.
2005-02-11 09:49 mjoc
* pixmaps/: icon-24x24.png, icon-48x48.png, icon-620x620.png,
icon-96x96.png, SVG/icon.svg: Icons renewed.
2005-02-08 23:25 mjoc
* lib/gui/mainwin.py: Started using wx.NewId(), not finished
2005-02-08 23:13 mjoc
* misc/opendict.desktop: .desktop file updated.
2005-02-08 23:10 mjoc
* opendict.py, lib/installer.py, lib/newplugin.py,
lib/plaindict.py, lib/plugin.py, lib/util.py,
lib/gui/dictaddwin.py, lib/gui/mainwin.py, lib/gui/pluginwin.py:
Ability to remove dictionaries added (new style)
2005-02-08 20:10 mjoc
* opendict.py, lib/gui/mainwin.py, lib/gui/pluginwin.py:
PluginManager window changes: installed and avail splitted using
notebook.
2005-02-08 08:54 mjoc
* lib/gui/pluginwin.py: Small changes on Plugin Manager.
2005-02-08 00:06 mjoc
* lib/gui/pluginwin.py: Plugin window improved (buttons, list
width)
2005-02-07 23:07 mjoc
* lib/: installer.py, misc.py, parser.py, gui/mainwin.py,
gui/pluginwin.py: Plugin manager window enhanced.
2005-02-06 01:47 mjoc
* lib/: dicttype.py, errortype.py, installer.py, misc.py,
parser.py, plaindict.py, gui/mainwin.py, gui/pluginwin.py: 1.
DictParser rewritten to be more functional 2. TMXParser disabled
3. Plugin manager started rewriting
2005-02-05 20:15 mjoc
* lib/: installer.py, plaindict.py, xmltools.py: XML configs are
now written using PrettyPrint.
2005-02-05 19:25 mjoc
* lib/parser.py: SlowoParser rewritten.
2005-02-04 16:32 mjoc
* lib/parser.py: Reimplementing SlowoParser.
2005-02-04 13:40 mjoc
* TODO.txt: New ideas.
2005-02-04 13:33 mjoc
* TODO.txt, lib/parser.py: Minor changes.
2005-02-04 13:09 mjoc
* lib/: installer.py, util.py: Needed directories are checked and
created before installing dictionaries.
2005-02-04 12:35 mjoc
* opendict.py, lib/gui/mainwin.py: Minor changes.
2005-02-04 11:25 mjoc
* opendict.py, lib/gui/mainwin.py: wxPython 2.4 is not supported
anymore.
2005-02-04 02:41 mjoc
* lib/: dicttype.py, parser.py, plaindict.py, xmltools.py,
gui/errorwin.py, gui/mainwin.py: Serveral changes: 1. Indexing
(not finished) 2. MovaParser
2005-02-03 03:00 mjoc
* opendict.py, lib/meta.py, lib/parser.py, lib/gui/mainwin.py: 1.
MovaParser almost fixed 2. Related changes
2005-02-03 01:10 mjoc
* opendict.py, lib/installer.py, lib/meta.py, lib/newplugin.py,
lib/plaindict.py, lib/plugin.py, lib/util.py, lib/gui/mainwin.py:
Dictionaries installation unified
2005-02-02 23:54 mjoc
* lib/tests/test_plugin.py: ./test_plugin.py added (tests suite)
2005-02-02 23:53 mjoc
* lib/tests/data/plugin.xml: ./data/plugin.xml added (tests suite)
2005-02-02 23:52 mjoc
* lib/tests/data/sampleplugin/plugin.xml:
./data/sampleplugin/plugin.xml added (tests suite)
2005-02-02 23:52 mjoc
* lib/tests/data/sampleplugin/sample.py:
./data/sampleplugin/sample.py added (tests suite)
2005-02-02 23:49 mjoc
* lib/util.py: Utility module added.
2005-02-02 23:48 mjoc
* lib/plaindict.py: Plain dictionaries management module added.
2005-02-02 23:47 mjoc
* lib/newplugin.py: New-type plugins module
2005-02-02 23:46 mjoc
* lib/meta.py: Metaclass module added.
2005-02-02 23:44 mjoc
* lib/enc.py: Encoding module for unicode string
2005-02-02 23:43 mjoc
* opendict.py, lib/dicttype.py, lib/info.py, lib/installer.py,
lib/parser.py, lib/plugin.py, lib/xmltools.py,
lib/gui/errorwin.py, lib/gui/mainwin.py, lib/gui/pluginwin.py: 1.
Plugin and plain dictionaries load unified 2. Lots of changes
everywhere
2005-02-02 00:39 mjoc
* lib/: dicttype.py, info.py, installer.py, register.py,
xmltools.py, gui/dicteditorwin.py, gui/errorwin.py,
gui/mainwin.py, gui/pluginwin.py: XML tools
2005-02-01 19:58 mjoc
* lib/: config.py, info.py, gui/helpwin.py, gui/mainwin.py:
Changing home path variables.
2005-02-01 02:58 mjoc
* lib/: parser.py, gui/dictconnwin.py: Some bug fixes for DICT
protocol support
2005-02-01 02:50 mjoc
* opendict.py, lib/config.py, lib/parser.py, lib/gui/mainwin.py,
misc/opendict.desktop: Started unifying dictionary load.
2005-02-01 00:58 mjoc
* pixmaps/icon-620x620.png: Large scale image
2005-02-01 00:53 mjoc
* pixmaps/: icon-24x24.png, icon-48x48.png, icon-600x600.png,
icon-96x96.png, SVG/icon.svg: Removed
2005-02-01 00:04 mjoc
* opendict.py, lib/config.py, lib/info.py, lib/plugin.py,
lib/gui/mainwin.py: 1. Unicode support imporoved 2. View menu
added 3. Font size change added 4. Fonts increase/decrease
functions added
2005-01-31 20:04 mjoc
* lib/: encodings.py, parser.py, gui/mainwin.py: Encodings module
added.
2005-01-31 00:14 mjoc
* misc/opendict.desktop: Comment changed
2005-01-30 14:56 mjoc
* TODO.txt, opendict.py, lib/gui/mainwin.py: Working on new
dictionary engine. OpenDict is damaged at the moment!
2005-01-30 14:53 mjoc
* lib/dicttype.py: Dictionary type module added
2005-01-30 14:52 mjoc
* lib/: config.py, errortype.py, info.py, parser.py, plugin.py,
register.py, gui/mainwin.py: Error type module added
2005-01-29 01:17 mjoc
* Makefile, TODO.txt, opendict.py, lib/gui/dicteditorwin.py,
lib/gui/helpwin.py, lib/gui/mainwin.py, misc/opendict.desktop: 1.
Some GUI improvements (i.e. button tooltips) 2. Something about
writing new TMX parser 3. Small changes
2005-01-28 23:55 mjoc
* lib/gui/helpwin.py: New icon added to About window, info text
changed.
2005-01-28 22:12 mjoc
* pixmaps/SVG/icon.svg: SVG source for icon pixmap added.
2005-01-28 21:11 mjoc
* pixmaps/: icon-600x600.png, icon.png: icon.png ->
icon-600x600.png
2005-01-28 17:48 mjoc
* pixmaps/: splash.png, icon-old.xpm, icon.ico, logo.xpm: Not used
anymore
2005-01-28 16:55 mjoc
* pixmaps/search.xpm: This image is not used anymore
2005-01-28 16:53 mjoc
* pixmaps/: icon-24x24.png, icon-48x48.png, icon-96x96.png,
icon.png: New icon by mjoc
2005-01-28 11:54 mjoc
* pixmaps/: left.xpm, right.xpm: Removed.
2005-01-28 11:53 mjoc
* pixmaps/: add.png, add.xpm: Removed
2005-01-28 11:52 mjoc
* pixmaps/unhide.png: unhide.png added.
2005-01-28 11:52 mjoc
* pixmaps/hide.xpm: hide.xpm replaced with hide.png.
2005-01-28 11:51 mjoc
* lib/gui/mainwin.py: Main window now swaps hide/unhide pixmaps
when button clicked.
2005-01-28 02:54 mjoc
* scripts/install-odp.sh: Plugin manual installer added.
2005-01-28 02:53 mjoc
* lib/: config.py, gui/mainwin.py: Code cleanup.
2005-01-28 02:44 mjoc
* README.txt: Micro bug fix :-).
2005-01-28 02:40 mjoc
* README.txt: More info added.
2005-01-28 02:35 mjoc
* BUGS, Makefile, TODO.txt, misc/opendict.desktop: BUGS -> BUGS.txt
2005-01-28 02:30 mjoc
* doc/Specification.txt: Specification added.
2005-01-28 02:27 mjoc
* lib/: config.py, installer.py, misc.py, parser.py,
gui/mainwin.py, gui/pluginwin.py, gui/prefswin.py: Small code
fixes to improve unicode support somehow...
2005-01-27 23:54 mjoc
* lib/gui/: mainwin.py, pluginwin.py: 1. Copy function now copies
inly selected text. 2. Paste pastes text into the search entry.
3. Some small changes.
2005-01-27 22:52 mjoc
* lib/gui/mainwin.py: Some main window menu improvements.
2005-01-25 00:13 mjoc
* TODO.txt: New bug entry added.
2005-01-15 01:55 mjoc
* opendict.py, lib/info.py, lib/plugin.py: Minor changes.
2005-01-15 01:54 mjoc
* lib/gui/helpwin.py: About window info message reniewed.
2005-01-15 01:53 mjoc
* lib/gui/mainwin.py: 1. Startup help message added. 2. Separator
added to Tools menu. 3. About window info message reniewed.
2005-01-14 22:53 mjoc
* lib/gui/: dictconnwin.py, helpwin.py, mainwin.py: 1. Title
changed to "<dict name> - OpenDict" 2. Copyright year 2005 added
3. Some small improvements
2005-01-14 22:29 mjoc
* pixmaps/right.png: Forward button image added (PNG)
2005-01-14 22:29 mjoc
* pixmaps/left.png: Back button image added.
2005-01-14 22:16 mjoc
* lib/gui/mainwin.py: o Search bitmap button replaced with text
button o Back and Forward button XPM pixmaps replaced with PNG
images o stopButton commented out
2005-01-14 21:39 mjoc
* lib/gui/mainwin.py: When dictionary is closed or another
dictionary is opened, text entry is not cleared (this was
requested by users).
2005-01-14 00:45 mjoc
* scripts/make_hash.py: File ./scripts/make_hash.py added
2005-01-14 00:45 mjoc
* scripts/unzip.py: File ./scripts/unzip.py added
2005-01-14 00:44 mjoc
* scripts/msgfmt.py: File ./scripts/msgfmt.py added
2005-01-14 00:44 mjoc
* scripts/w2u.py: File ./scripts/w2u.py added
2005-01-14 00:44 mjoc
* scripts/zip.py: File ./scripts/zip.py added
2005-01-14 00:44 mjoc
* scripts/make_hash2.py: File ./scripts/make_hash2.py added
2005-01-14 00:43 mjoc
* scripts/slowo2mova.py: File ./scripts/slowo2mova.py added
2005-01-14 00:43 mjoc
* scripts/count_code.py: File ./scripts/count_code.py added
2005-01-14 00:43 mjoc
* copying.txt: File ./copying.txt added
2005-01-14 00:42 mjoc
* pixmaps/icon.png: File ./pixmaps/icon.png added
2005-01-14 00:42 mjoc
* pixmaps/icon-old.xpm: File ./pixmaps/icon-old.xpm added
2005-01-14 00:42 mjoc
* pixmaps/icon.ico: File ./pixmaps/icon.ico added
2005-01-14 00:41 mjoc
* pixmaps/splash.png: File ./pixmaps/splash.png added
2005-01-14 00:41 mjoc
* pixmaps/add.png: File ./pixmaps/add.png added
2005-01-14 00:39 mjoc
* pixmaps/logo.xpm: File ./pixmaps/logo.xpm added
2005-01-14 00:39 mjoc
* pixmaps/left.xpm: File ./pixmaps/left.xpm added
2005-01-14 00:39 mjoc
* pixmaps/hide.xpm: File ./pixmaps/hide.xpm added
2005-01-14 00:39 mjoc
* pixmaps/search.xpm: File ./pixmaps/search.xpm added
2005-01-14 00:38 mjoc
* pixmaps/right.xpm: File ./pixmaps/right.xpm added
2005-01-14 00:38 mjoc
* pixmaps/add.xpm: File ./pixmaps/add.xpm added
2005-01-14 00:38 mjoc
* Makefile: File ./Makefile added
2005-01-14 00:37 mjoc
* misc/opendict.desktop: File ./misc/opendict.desktop added
2005-01-14 00:36 mjoc
* ChangeLog: File ./ChangeLog added
2005-01-14 00:32 mjoc
* doc/OpenDict_plugin_dev.txt: File ./doc/OpenDict_plugin_dev.txt
added
2005-01-14 00:31 mjoc
* win32/make.py: File ./win32/make.py added
2005-01-14 00:30 mjoc
* win32/setup.py: File ./win32/setup.py added
2005-01-14 00:30 mjoc
* win32/install_script.iss: File ./win32/install_script.iss added
2005-01-14 00:27 mjoc
* po/lt.po: File ./po/lt.po added
2005-01-14 00:27 mjoc
* po/messages.pot: File ./po/messages.pot added
2005-01-14 00:26 mjoc
* po/unix_proceed.sh: File ./po/unix_proceed.sh added
2005-01-14 00:26 mjoc
* lib/info.py: File ./lib/info.py added
2005-01-14 00:26 mjoc
* lib/history.py: File ./lib/history.py added
2005-01-14 00:25 mjoc
* lib/gui/mainwin.py: File ./lib/gui/mainwin.py added
2005-01-14 00:25 mjoc
* lib/gui/dictconnwin.py: File ./lib/gui/dictconnwin.py added
2005-01-14 00:24 mjoc
* lib/gui/dictaddwin.py: File ./lib/gui/dictaddwin.py added
2005-01-14 00:24 mjoc
* lib/gui/pluginwin.py: File ./lib/gui/pluginwin.py added
2005-01-14 00:23 mjoc
* lib/gui/mywordswin.py: File ./lib/gui/mywordswin.py added
2005-01-14 00:23 mjoc
* lib/gui/helpwin.py: File ./lib/gui/helpwin.py added
2005-01-14 00:22 mjoc
* lib/gui/registerwin.py: File ./lib/gui/registerwin.py added
2005-01-14 00:22 mjoc
* lib/gui/groupswin.py: File ./lib/gui/groupswin.py added
2005-01-14 00:21 mjoc
* lib/gui/dicteditorwin.py: File ./lib/gui/dicteditorwin.py added
2005-01-14 00:21 mjoc
* lib/gui/prefswin.py: File ./lib/gui/prefswin.py added
2005-01-14 00:21 mjoc
* lib/gui/errorwin.py: File ./lib/gui/errorwin.py added
2005-01-14 00:20 mjoc
* lib/gui/__init__.py: File ./lib/gui/__init__.py added
2005-01-14 00:20 mjoc
* lib/register.py: File ./lib/register.py added
2005-01-14 00:18 mjoc
* lib/mywords.py: File ./lib/mywords.py added
2005-01-14 00:18 mjoc
* lib/installer.py: File ./lib/installer.py added
2005-01-14 00:17 mjoc
* lib/extra/dictdlib.py: File ./lib/extra/dictdlib.py added
2005-01-14 00:16 mjoc
* lib/extra/dictclient.py: File ./lib/extra/dictclient.py added
2005-01-14 00:15 mjoc
* lib/extra/html2text.py: File ./lib/extra/html2text.py added
2005-01-14 00:15 mjoc
* lib/extra/__init__.py: File ./lib/extra/__init__.py added
2005-01-14 00:14 mjoc
* lib/misc.py: File ./lib/misc.py added
2005-01-14 00:13 mjoc
* lib/plugin.py: File ./lib/plugin.py added
2005-01-14 00:13 mjoc
* lib/threads.py: File ./lib/threads.py added
2005-01-14 00:12 mjoc
* lib/group.py: File ./lib/group.py added
2005-01-14 00:11 mjoc
* lib/parser.py: File ./lib/parser.py added
2005-01-14 00:11 mjoc
* lib/config.py: File ./lib/config.py added
2005-01-14 00:10 mjoc
* BUGS: File ./BUGS added
2005-01-14 00:10 mjoc
* run-opendict: File ./run-opendict added
2005-01-14 00:10 mjoc
* README.txt, TODO.txt, opendict.py: File ./opendict.py added
2005-01-13 23:49 mjoc
* lib/: misc.py, register.py, extra/__init__.py,
extra/dictclient.py, extra/dictdlib.py, extra/html2text.py,
gui/__init__.py: Removed.
2005-01-13 23:47 mjoc
* win32/install_script.iss: File install_script.iss removed.
2005-01-13 23:38 mjoc
* po/messages.pot: File messages.pot removed.
2005-01-13 23:38 mjoc
* po/lt.po: File lt.po removed.
2005-01-13 23:38 mjoc
* po/lt.mo: File lt.mo removed.
2005-01-13 23:37 mjoc
* pixmaps/icon.ico: File icon.ico removed.
2005-01-13 23:37 mjoc
* pixmaps/icon.png: File ./icon.png removed
2005-01-13 23:37 mjoc
* pixmaps/clear2.png: File ./clear2.png removed
2005-01-13 23:36 mjoc
* pixmaps/clear3.png: File ./clear3.png removed
2005-01-13 23:35 mjoc
* pixmaps/icon.xpm: File ./icon.xpm removed
2005-01-13 23:35 mjoc
* pixmaps/stop.xpm: File ./stop.xpm removed
2005-01-13 23:35 mjoc
* pixmaps/plugin.xpm: File ./plugin.xpm removed
2005-01-13 23:34 mjoc
* pixmaps/clear2.xpm: File ./clear2.xpm removed
2005-01-13 23:34 mjoc
* pixmaps/clear3.xpm: File ./clear3.xpm removed
2005-01-13 23:34 mjoc
* pixmaps/register.xpm: File ./register.xpm removed
2005-01-13 23:33 mjoc
* pixmaps/clear4.xpm: File ./clear4.xpm removed
2005-01-13 23:32 mjoc
* pixmaps/logo.xpm: File ./logo.xpm removed
2005-01-13 23:32 mjoc
* pixmaps/left.xpm: File ./left.xpm removed
2005-01-13 23:31 mjoc
* pixmaps/hide.xpm: File ./hide.xpm removed
2005-01-13 23:31 mjoc
* pixmaps/group.xpm: File ./group.xpm removed
2005-01-13 23:30 mjoc
* pixmaps/clear.xpm: File ./clear.xpm removed
2005-01-13 23:30 mjoc
* pixmaps/search.xpm: File ./search.xpm removed
2005-01-13 23:30 mjoc
* pixmaps/right.xpm: File ./right.xpm removed
2005-01-13 23:28 mjoc
* misc/opendict.desktop: File opendict.desktop removed.
2005-01-13 23:27 mjoc
* README: File README removed.
2005-01-13 23:27 mjoc
* Makefile: File Makefile removed.
2005-01-13 23:24 mjoc
* ChangeLog: File ChangeLog removed.
2005-01-13 23:24 mjoc
* AUTHORS: [no log message]
2005-01-13 23:09 mjoc
* copying.txt: File ./copying.txt removed
2005-01-13 23:08 mjoc
* config.txt: File ./config.txt removed
2005-01-13 23:08 mjoc
* COPY_TEMP.txt: File ./COPY_TEMP.txt removed
2005-01-13 23:07 mjoc
* doc/OpenDict_plugin_dev.txt: File ./doc/OpenDict_plugin_dev.txt
removed
2005-01-13 23:07 mjoc
* po/unix_proceed.sh: File ./po/unix_proceed.sh removed
2005-01-13 22:56 mjoc
* scripts/make_hash.py: File ./scripts/make_hash.py removed
2005-01-13 22:55 mjoc
* scripts/unzip.py: File ./scripts/unzip.py removed
2005-01-13 22:54 mjoc
* scripts/msgfmt.py: File ./scripts/msgfmt.py removed
2005-01-13 22:54 mjoc
* scripts/w2u.py: File ./scripts/w2u.py removed
2005-01-13 22:54 mjoc
* scripts/zip.py: File ./scripts/zip.py removed
2005-01-13 22:53 mjoc
* scripts/make_hash2.py: File ./scripts/make_hash2.py removed
2005-01-13 22:53 mjoc
* scripts/slowo2mova.py: File ./scripts/slowo2mova.py removed
2005-01-13 22:52 mjoc
* scripts/count_code.py: File ./scripts/count_code.py removed
2005-01-13 22:52 mjoc
* win32/make.py: File ./win32/make.py removed
2005-01-13 22:52 mjoc
* win32/setup.py: File ./win32/setup.py removed
2005-01-13 22:51 mjoc
* lib/info.py: File ./lib/info.py removed
2005-01-13 22:51 mjoc
* lib/gui/mainwin.py: File ./lib/gui/mainwin.py removed
2005-01-13 22:50 mjoc
* lib/gui/dictconnwin.py: File ./lib/gui/dictconnwin.py removed
2005-01-13 22:50 mjoc
* lib/gui/pluginwin.py: File ./lib/gui/pluginwin.py removed
2005-01-13 22:50 mjoc
* lib/gui/helpwin.py: File ./lib/gui/helpwin.py removed
2005-01-13 22:49 mjoc
* lib/gui/registerwin.py: File ./lib/gui/registerwin.py removed
2005-01-13 22:49 mjoc
* lib/gui/groupswin.py: File ./lib/gui/groupswin.py removed
2005-01-13 22:48 mjoc
* lib/gui/dicteditorwin.py: File ./lib/gui/dicteditorwin.py removed
2005-01-13 22:48 mjoc
* lib/gui/prefswin.py: File ./lib/gui/prefswin.py removed
2005-01-13 22:47 mjoc
* lib/gui/errorwin.py: File ./lib/gui/errorwin.py removed
2005-01-13 22:47 mjoc
* lib/: config.py, group.py, history.py, parser.py, plugin.py,
threads.py: dsfs
2005-01-13 22:13 mjoc
* opendict.py: File ./opendict.py removed.
2005-01-13 22:12 mjoc
* TODO.txt: Removed.
2005-01-13 21:29 mjoc
* TODO: [no log message]
2005-01-13 20:53 mjoc
* README.txt: ./README.txt removed
2003-12-21 22:35 mjoc
* Makefile, copying.txt, README.txt, TODO.txt, opendict.py,
ChangeLog, config.txt, doc/OpenDict_plugin_dev.txt,
lib/config.py, lib/group.py, lib/history.py, lib/info.py,
lib/misc.py, lib/parser.py, lib/plugin.py, lib/register.py,
lib/threads.py, lib/extra/__init__.py, lib/extra/dictclient.py,
lib/extra/dictdlib.py, lib/extra/html2text.py,
lib/gui/__init__.py, lib/gui/dictconnwin.py,
lib/gui/dicteditorwin.py, lib/gui/errorwin.py,
lib/gui/groupswin.py, lib/gui/helpwin.py, lib/gui/mainwin.py,
lib/gui/pluginwin.py, lib/gui/prefswin.py,
lib/gui/registerwin.py, misc/opendict.desktop, pixmaps/clear.xpm,
pixmaps/group.xpm, pixmaps/hide.xpm, pixmaps/icon.ico,
pixmaps/icon.png, pixmaps/icon.xpm, pixmaps/left.xpm,
pixmaps/clear2.png, pixmaps/clear2.xpm, pixmaps/clear3.png,
pixmaps/clear3.xpm, pixmaps/clear4.xpm, pixmaps/logo.xpm,
pixmaps/plugin.xpm, pixmaps/register.xpm, pixmaps/right.xpm,
pixmaps/search.xpm, pixmaps/stop.xpm, po/lt.mo, po/lt.po,
po/messages.pot, po/unix_proceed.sh, scripts/count_code.py,
scripts/make_hash.py, scripts/make_hash2.py, scripts/msgfmt.py,
scripts/slowo2mova.py, scripts/unzip.py, scripts/w2u.py,
scripts/zip.py, win32/install_script.iss, win32/make.py,
win32/setup.py: Initial import.
2003-12-21 22:35 mjoc
* copying.txt, README.txt, TODO.txt, opendict.py, config.txt,
doc/OpenDict_plugin_dev.txt, lib/config.py, lib/group.py,
lib/history.py, lib/info.py, lib/misc.py, lib/parser.py,
lib/plugin.py, lib/register.py, lib/threads.py,
lib/extra/__init__.py, lib/extra/dictclient.py,
lib/extra/dictdlib.py, lib/extra/html2text.py,
lib/gui/__init__.py, lib/gui/dictconnwin.py,
lib/gui/dicteditorwin.py, lib/gui/errorwin.py,
lib/gui/groupswin.py, lib/gui/helpwin.py, lib/gui/mainwin.py,
lib/gui/pluginwin.py, lib/gui/prefswin.py,
lib/gui/registerwin.py, misc/opendict.desktop, pixmaps/clear.xpm,
pixmaps/group.xpm, pixmaps/hide.xpm, pixmaps/icon.ico,
pixmaps/icon.png, pixmaps/icon.xpm, pixmaps/left.xpm,
pixmaps/clear2.png, pixmaps/clear2.xpm, pixmaps/clear3.png,
pixmaps/clear3.xpm, pixmaps/clear4.xpm, pixmaps/logo.xpm,
pixmaps/plugin.xpm, pixmaps/register.xpm, pixmaps/right.xpm,
pixmaps/search.xpm, pixmaps/stop.xpm, po/lt.mo, po/lt.po,
po/messages.pot, po/unix_proceed.sh, scripts/count_code.py,
scripts/make_hash.py, scripts/make_hash2.py, scripts/msgfmt.py,
scripts/slowo2mova.py, scripts/unzip.py, scripts/w2u.py,
scripts/zip.py, win32/install_script.iss, win32/make.py,
win32/setup.py: Initial revision
2002-12-17 02:49 nerijus
* Makefile: updated to compile with wxWin 2.4
2002-12-11 01:47 nerijus
* AUTHORS, COPY_TEMP.txt, ChangeLog, Makefile, README, TODO:
Initial revision
2002-12-11 01:47 nerijus
* AUTHORS, COPY_TEMP.txt, ChangeLog, Makefile, README, TODO: import
opendict-0.1 sources to cvs
|