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
|
2008-04-20 00:22 noup
* src/Makefile.am: Changed sublib_SOURCES to sublib_SCRIPTSOURCES
in order for compilation
to work with Automake 1.10.
2008-04-17 22:24 noup
* src/Makefile.am: Fixed to stop complaining about SL prefix.
2008-04-17 22:20 noup
* data: Added files to ignore list.
2008-04-17 22:14 noup
* data/Makefile.am, data/sublib.pc.in: Added missing files.
2008-04-14 22:24 noup
* Makefile.am, configure.in: Do not include docs in default
distribution.
2008-04-14 21:55 noup
* src/SubLib/AssemblyInfo.cs.in: Do not use key anymore.
2008-04-14 21:35 noup
* Makefile.am, configure.in, src/Makefile.am: Install library and
PC file to use with pkg-config. No longer installs to the GAC.
2008-04-14 21:01 noup
* configure.in, src/Makefile.am, src/SubLib/AssemblyInfo.cs.in:
Added support for installing the assembly to the GAC.
Use export DOINST="no" to disable this during configure.
2007-10-07 22:25 arklad
* src/SubLib/Persistency/BuiltInSubtitleFormats.cs: Restored the
use of 2000 characters when detecting a subtitle format.
2007-10-07 22:20 arklad
* src/Executable/Executable.cs,
src/SubLib/Application/Enumerations.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/SubtitleFormatAQTitle.cs,
src/SubLib/Persistency/SubtitleFormatKaraokeLyricsLRC.cs,
src/SubLib/Persistency/SubtitleFormatKaraokeLyricsVKT.cs,
src/SubLib/Persistency/SubtitleFormatMacSUB.cs,
src/SubLib/Persistency/SubtitleFormatPanimator.cs,
src/SubLib/Persistency/SubtitleFormatPhoenixJapanimationSociety.cs,
src/SubLib/Persistency/SubtitleFormatSofni.cs,
src/SubLib/Persistency/SubtitleFormatSubCreator1x.cs,
src/SubLib/Persistency/SubtitleFormatViPlaySubtitleFile.cs: New
subtitle formats supported: AQTitle, MacSUB, Sofni, SubCreator
1.x and ViPlay Subtitle File.
Access modifiers corrected for some other formats.
2007-10-06 10:32 noup
* AUTHORS, CREDITS, ChangeLog, NEWS, TODO, configure.in: Updating
for release 0.8.
2007-10-04 20:56 arklad
* src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Persistency/PlainTextParser.cs: Algorithm for
importing from plain text files improved.
2007-09-28 22:42 noup
* src/SubLib/Persistency/PlainTextParser.cs,
src/SubLib/Persistency/SubtitleFormatDKSSubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatPowerDivX.cs: Code cleanup.
2007-09-27 14:30 arklad
* src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Persistency/PlainTextParser.cs,
src/SubLib/Persistency/SubtitleInput.cs: Handles all encodings
correctly when importing from a plain text file.
2007-09-21 17:37 noup
* src/Executable/Executable.cs: Added format to Executable.
2007-09-18 12:00 arklad
* sublib.mdp: Correct .mdp file for the revision 337.
2007-09-18 11:39 arklad
* src/Executable/Executable.cs,
src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/FileProperties.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/SubtitleText.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/PlainTextParser.cs,
src/SubLib/Persistency/SubtitleFormatPanimator.cs,
src/SubLib/Persistency/SubtitleFormatPhoenixJapanimationSociety.cs,
src/SubLib/Persistency/SubtitleInput.cs,
src/SubLib/Persistency/SubtitleParser.cs, sublib.mdp: New
feature: import text lines from a plain text file, creating a
collection of subtitles ready for timing.
New formats supported: Panimator and Phoenix Japanimation
Society.
2007-09-13 12:41 arklad
* src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/Headers.cs,
src/SubLib/Application/SubtitleProperties.cs: Subtitle formats
now share headers to make easier loading and saving them.
2007-09-13 12:40 arklad
* src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/ParsingProperties.cs,
src/SubLib/Persistency/SubtitleFormatKaraokeLyricsLRC.cs,
src/SubLib/Persistency/SubtitleFormatKaraokeLyricsVKT.cs,
src/SubLib/Persistency/SubtitleFormatMPSub.cs,
src/SubLib/Persistency/SubtitleFormatSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer1.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer2.cs,
src/SubLib/Persistency/SubtitleParser.cs: Subtitle formats now
share headers to make easier loading and saving them.
2007-09-13 12:37 arklad
* src/SubLib/Persistency/SubtitleFormatDKSSubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatPowerDivX.cs: New subtitle
formats supported:
- DKS Subtitle Format.
- Power DivX.
2007-08-20 02:46 noup
* src/SubLib/Application/SubtitleHeaders.cs,
src/SubLib/Persistency/SubtitleParser.cs: Treat the Date header
in Karaoke Lyrics VKT as string, as input files aren't garanteed
to be in the format assumed by the DateTime parser (and there's
no specification of the format available).
2007-08-19 04:04 noup
* CREDITS: Oops... wrong file. Reverting to previous list of
contributors.
2007-08-19 04:03 noup
* CREDITS: Updated list of contributors.
2007-08-16 19:06 noup
* src/Executable/Executable.cs,
src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/SubtitleHeaders.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/SubtitleFormatKaraokeLyricsLRC.cs,
src/SubLib/Persistency/SubtitleFormatKaraokeLyricsVKT.cs,
src/SubLib/Persistency/SubtitleParser.cs, sublib.mdp: Added
support for Karaoke Lyrics LRC and VKT, thanks to Cristina
Yenyxe.
2007-08-11 10:49 noup
* src/SubLib/Application/SubtitleProperties.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatAdobeEncoreDVD.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleFormatSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleParser.cs: Allow to get global
properties from the input text before parsing the subtitles.
Completed the support for the Adobe Encore DVD format.
2007-08-11 01:10 noup
* AUTHORS: Updated info.
2007-08-11 01:07 noup
* CREDITS: Added Cristina Yenyxe to the list of contributors.
2007-08-11 01:05 noup
* src/Executable/Executable.cs,
src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/Synchronization.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatAdobeEncoreDVD.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleFormatSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs, sublib.mdp: Added
support for Adobe Encore DVD subtitles, thanks to the help of
Cristina Yenyxe.
Added support for setting a dynamic subtitle output expression,
which is created at runtime based on the subtitle properties.
2007-06-28 01:07 noup
* AUTHORS, ChangeLog, NEWS, README: Updating for release 0.7.
2007-06-27 01:32 noup
* src/External/NCharDet, src/External/NCharDet/Big5Statistics.cs,
src/External/NCharDet/EUCJPStatistics.cs,
src/External/NCharDet/EUCKRStatistics.cs,
src/External/NCharDet/EUCTWStatistics.cs,
src/External/NCharDet/GB2312Statistics.cs,
src/External/NCharDet/nsBIG5Verifier.cs,
src/External/NCharDet/nsCP1252Verifier.cs,
src/External/NCharDet/nsDetector.cs,
src/External/NCharDet/nsEUCJPVerifier.cs,
src/External/NCharDet/nsEUCKRVerifier.cs,
src/External/NCharDet/nsEUCSampler.cs,
src/External/NCharDet/nsEUCStatistics.cs,
src/External/NCharDet/nsEUCTWVerifier.cs,
src/External/NCharDet/nsGB18030Verifier.cs,
src/External/NCharDet/nsGB2312Verifier.cs,
src/External/NCharDet/nsHZVerifier.cs,
src/External/NCharDet/nsICharsetDetectionObserver.cs,
src/External/NCharDet/nsICharsetDetector.cs,
src/External/NCharDet/nsISO2022CNVerifier.cs,
src/External/NCharDet/nsISO2022JPVerifier.cs,
src/External/NCharDet/nsISO2022KRVerifier.cs,
src/External/NCharDet/nsPSMDetector.cs,
src/External/NCharDet/nsSJISVerifier.cs,
src/External/NCharDet/nsUCS2BEVerifier.cs,
src/External/NCharDet/nsUCS2LEVerifier.cs,
src/External/NCharDet/nsUTF8Verifier.cs,
src/External/NCharDet/nsVerifier.cs: Updating with a newer
NCharDet version.
2007-06-27 01:31 noup
* src/External/NCharDet: Updating with a newer NCharDet version.
2007-06-27 01:28 noup
* src/External/COPYING-MPL: License file for NCharDet.
2007-06-27 01:27 noup
* src/Executable/Executable.cs: Updated license blocks.
2007-06-27 01:27 noup
* src/SubLib/Exception/EncodingNotSupportedException.cs,
src/SubLib/Exception/UnknownEncodingException.cs,
src/SubLib/Exception/UnknownSubtitleFormatException.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/ParsingProperties.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatAdvancedSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleFormatMPSub.cs,
src/SubLib/Persistency/SubtitleFormatMPlayer.cs,
src/SubLib/Persistency/SubtitleFormatMPlayer2.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleFormatSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer1.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer2.cs,
src/SubLib/Persistency/SubtitleInput.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs,
src/SubLib/Persistency/VerboseConsole.cs: Updated license blocks.
2007-06-27 01:27 noup
* src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/FileProperties.cs,
src/SubLib/Application/Frames.cs,
src/SubLib/Application/IncompleteSubtitle.cs,
src/SubLib/Application/IncompleteSubtitleCollection.cs,
src/SubLib/Application/MatchEvaluationCounter.cs,
src/SubLib/Application/Style.cs,
src/SubLib/Application/Subtitle.cs,
src/SubLib/Application/SubtitleCollection.cs,
src/SubLib/Application/SubtitleConstants.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/SubtitleHeaders.cs,
src/SubLib/Application/SubtitleProperties.cs,
src/SubLib/Application/SubtitleSaver.cs,
src/SubLib/Application/SubtitleSearchOptions.cs,
src/SubLib/Application/SubtitleSearchResults.cs,
src/SubLib/Application/SubtitleText.cs,
src/SubLib/Application/SubtitleTypeInfo.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Application/Synchronization.cs,
src/SubLib/Application/Times.cs,
src/SubLib/Application/Translations.cs: Updated license blocks.
2007-06-26 11:45 noup
* src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/Translations.cs,
src/SubLib/Exception/EncodingNotSupportedException.cs: Updated
API documentation.
2007-06-21 20:25 noup
* src/SubLib/Persistency/SubtitleOutput.cs: Allow to choose the
type of text content to be used for saving (text or translation).
2007-06-21 20:24 noup
* src/SubLib/Application/Translations.cs, sublib.mdp: New
functionality to perform translation operations on subtitles.
This includes clearing the translation and importing a
translation into existing subtitles.
2007-06-21 20:23 noup
* src/SubLib/Application/SubtitleSaver.cs: Allow to choose the type
of text content to be used for saving (text or translation).
2007-06-21 20:22 noup
* src/SubLib/Application/Subtitles.cs: Code cleanup.
2007-06-21 20:22 noup
* src/SubLib/Application/Subtitle.cs: Allow to clear the
translation.
2007-06-21 20:21 noup
* src/Executable/Executable.cs: Updated to the changes in the way
subtitles are now saved.
2007-06-14 01:59 noup
* sublib.mdp: Improved support for translation.
2007-06-14 01:58 noup
* src/SubLib/Application/SubtitleSearchOptions.cs,
src/SubLib/Application/SubtitleSearchResults.cs,
src/SubLib/Application/Subtitles.cs: Updated the search methods
to cope with the existence of translations, besides the subtitle
text.
Search options were encapsulated, as well as search results.
Fixed some bugs that were visible when doing a backwards search.
2007-06-14 01:55 noup
* src/SubLib/Application/Enumerations.cs: Updated support for
translation.
2007-06-08 18:42 noup
* src/SubLib/Persistency/SubtitleInput.cs: New method of working
with multiple encodings and subtitle format detection. If no
encodings are detected, the fallback encoding is used. If
multiple encodings are used, the first to work is used. If no
encodings work, the errors related to the first tried encoding
(the most probable) are reported.
2007-06-08 18:41 noup
* src/SubLib/Persistency/FileInputOutput.cs: Refactored to get all
the detected encodings, so all of them can be tried if the first
doesn't work.
2007-06-08 18:39 noup
* sublib.mdp: Exception to be used when an encoding is not
supported by the platform.
2007-06-08 18:39 noup
* src/SubLib/Exception/EncodingNotSupportedException.cs: Exception
to be used when an encoding is not supported by the platform.
2007-06-08 18:38 noup
* src/SubLib/Application/SubtitleProperties.cs: Code cleanup.
2007-06-08 18:38 noup
* src/SubLib/Application/SubtitleFactory.cs: Code refactored to use
SubtitleInput, which now contains part of the old code.
2007-06-08 18:38 noup
* src/SubLib/Application/Enumerations.cs: Added enumeration to
distinguish from text and translation (and both).
2007-06-06 12:40 noup
* src/SubLib/Application/Subtitle.cs: Fixed small bug with text
being returned instead of translation.
2007-06-05 23:05 noup
* sublib.mdp: Cleanup.
2007-06-05 23:03 noup
* src/SubLib/Application/Subtitle.cs: Cleanup.
2007-06-05 23:03 noup
* src/SubLib/Application/SubtitleText.cs: Revised documentation.
Added method to trim the lines when getting them.
When replacing empty lines, also apply the replacement if the
text is empty.
2007-06-05 23:02 noup
* src/SubLib/Persistency/SubtitleOutput.cs: Trim lines before
saving the text.
2007-06-05 18:30 noup
* configure.in: Updated with info for the next release.
2007-06-05 18:29 noup
* src/SubLib/Application/Subtitle.cs: Initial support for
translation.
2007-06-05 18:29 noup
* src/Executable/Executable.cs: Code cleanup.
2007-05-12 01:06 noup
* ChangeLog: Updated for release 0.6.1
2007-05-12 01:05 noup
* src/SubLib/Application/FileProperties.cs,
src/SubLib/Application/SubtitleSaver.cs,
src/SubLib/Persistency/ParsingProperties.cs: Updated SVN
properties.
2007-05-12 00:59 noup
* NEWS, README, configure.in: Updated for release 0.6.1.
2007-05-06 00:59 noup
* src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/FileProperties.cs,
src/SubLib/Application/SubtitleSaver.cs,
src/SubLib/Persistency/SubtitleOutput.cs, sublib.mdp: Use
NewlineType to specify the type of newlines to be used when
saving (Macintosh, Unix or Windows).
2007-04-19 10:29 noup
* NEWS: Updated for latest version.
2007-04-13 17:25 noup
* AUTHORS, ChangeLog, NEWS, README, configure.in: Updated for the
0.6 release.
2007-04-03 18:24 noup
* src/SubLib/Application/FileProperties.cs,
src/SubLib/Application/SubtitleSaver.cs: Updated the
documentation.
2007-04-03 18:08 noup
* src/Executable/Executable.cs: Updated to reflect latest code
changes.
2007-04-03 18:08 noup
* sublib.mdp: Updated with new files.
2007-04-03 18:07 noup
* src/SubLib/Application/SubtitleCollection.cs: Added internal
method to set the SubtitleProperties for all subtitles.
2007-04-03 18:07 noup
* src/SubLib/Application/Subtitle.cs: Added internal property to
set the SubtitleProperties after a Subtitle object has been
created.
2007-04-03 18:05 noup
* src/SubLib/Application/FileProperties.cs: Class to contain the
properties of a file, including its path, encoding, subtitle
format, and timing mode.
2007-04-03 18:05 noup
* src/SubLib/Application/SubtitleFactory.cs: Code cleanup.
FileProperties is now used to handle the properties of a file
after opening.
New and Open methods are more clear now, as some of its
derivations were confusing.
The Save functionality has moved to SubtitleSaver.
2007-04-03 17:59 noup
* src/SubLib/Application/SubtitleProperties.cs: Cleanup of
properties. SubtitleProperties now only includes properties that
are not file-related.
FileProperties is used for all file-related properties.
2007-04-03 17:57 noup
* src/SubLib/Application/Subtitles.cs: Clarified the file saving
functionality. The existing functionality in Subtitles was moved
to SubtitleSaver. No persistent file-related information is now
maintained. FileProperties is used, along with a Subtitles
object, to save subtitles.
2007-04-03 17:56 noup
* src/SubLib/Application/SubtitleSaver.cs: Clarified the file
saving functionality. The existing functionality in Subtitles was
moved to SubtitleSaver. No persistent file-related information is
now maintained. FileProperties is used, along with a Subtitles
object, to save subtitles.
2007-04-03 17:49 noup
* src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormatMPSub.cs,
src/SubLib/Persistency/SubtitleFormatSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer1.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer2.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs: Fixed copyright dates.
2007-04-03 17:45 noup
* src/SubLib/Persistency/FileInputOutput.cs: Code cleanup. Fixed
the attribution of code pages to some of the encodings. Removed
some encodings as they didn't have a related code page.
2007-04-03 17:44 noup
* src/SubLib/Persistency/SubtitleParser.cs: Cleanup of properties.
SubtitleProperties now only includes properties that are not
file-related.
ParsingProperties is used to store all properties that are
gathered when parsing.
2007-04-03 17:42 noup
* src/SubLib/Persistency/SubtitleOutput.cs: Cleanup of properties.
SubtitleProperties now only includes properties that are not
file-related.
FileProperties is used for all file-related properties.
2007-04-03 17:41 noup
* src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatMPSub.cs,
src/SubLib/Persistency/SubtitleFormatSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer1.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer2.cs: Cleanup of
properties. SubtitleProperties now only includes properties that
are not file-related.
2007-04-03 17:37 noup
* src/SubLib/Persistency/ParsingProperties.cs: Class that contains
properties that result after parsing.
2007-03-05 18:19 noup
* ChangeLog, NEWS, README, configure.in: Updating for release 0.5.
2007-03-05 18:15 noup
* src/SubLib/Application/Subtitles.cs,
src/SubLib/Application/Synchronization.cs: Updated timestamps.
2007-03-04 19:14 noup
* .: Updated SVN ignore.
2007-02-25 14:45 noup
* src/SubLib/Application/Synchronization.cs: Convert from time to
frames given the time in seconds.
2007-01-22 02:06 noup
* src/Executable/Executable.cs,
src/SubLib/Application/Subtitles.cs: Added find based on a
specific time position.
2006-12-08 03:38 noup
* ChangeLog, NEWS, README, configure.in: Updated for the 0.4
release.
2006-12-08 03:18 noup
* src/SubLib/Application/SubtitleProperties.cs: Code cleanup.
2006-12-08 03:18 noup
* src/SubLib/Application/Subtitles.cs: Updated documentation.
Set timing mode when using SaveAs, updating it to the timing mode
of the new format used.
Code cleanup.
2006-12-03 01:56 noup
* sublib.mdp: Evaluator that enables to count how many matches are
made during a string replacement with Regex.
2006-12-03 01:56 noup
* src/SubLib/Application/MatchEvaluationCounter.cs: Evaluator that
enables to count how many matches are made during a string
replacement with Regex.
2006-12-03 01:54 noup
* src/SubLib/Application/Subtitles.cs: Added ReplaceAll
functionality.
2006-11-28 22:55 noup
* src/SubLib/Application/Subtitles.cs: Check if there are no
subtitles when doing a Find.
2006-11-26 16:33 noup
* TODO: Updated the TODO list.
2006-11-26 16:33 noup
* configure.in: Start using the C#2.0 compiler.
2006-11-26 16:32 noup
* src/SubLib/Application/SubtitleCollection.cs: Added indexers and
a method to check whether an index is valid in a collection.
2006-11-26 16:29 noup
* src/SubLib/Application/Subtitles.cs: Added methods to Find text
in the subtitles. Documentation is still missing.
The Find methods use Regex. When using Backwards searching, the
Regex must be created with the RegexOptions.RightToLeft option.
2006-11-26 16:27 noup
* sublib.mdp: Updated compilation flags.
2006-10-30 16:03 noup
* NEWS: Updated for version 0.3.
2006-10-30 14:08 noup
* ChangeLog: Updated for release 0.3.
2006-10-30 13:52 noup
* NEWS, README, configure.in: Updated for release 0.3.
2006-10-30 00:00 noup
* AUTHORS, CREDITS, TODO: Updated project information files.
2006-10-28 21:26 noup
* src/SubLib/Application/SubtitleTypeInfo.cs: Added method to check
whether a SubtitleTypeInfo contains a specified extension.
2006-10-28 00:51 noup
* src/SubLib/Application/Subtitles.cs: Updated to reflect changes
in FileInputOutput.
2006-10-28 00:51 noup
* src/SubLib/Application/SubtitleFactory.cs: Added FallbackEncoding
property, to set the encoding to fallback to in case
autodetection fails.
Updated to reflect changes in FileInputOutput.
2006-10-28 00:48 noup
* src/SubLib/Persistency/FileInputOutput.cs: Fixed bugs that
existed by not closing the files, using "finally" statements.
Auto-detection throws exception when encoding not detected.
Auto-detection with fallback uses the fallback encoding (and
possible "detectBOM" boolean) when no encoding is detected.
Code cleanup.
2006-10-28 00:46 noup
* src/SubLib/Exception/UnknownCharEncodingException.cs,
src/SubLib/Exception/UnknownEncodingException.cs: Changed
UnknownCharEncodingException to UnknownEncodingException
2006-10-28 00:45 noup
* sublib.mdp: Changed UnknownCharEncodingException to
UnknownEncodingException
2006-10-16 00:59 noup
* src/SubLib/Application/Subtitles.cs: Methods and properties for
returning info on the available subtitle types are now static.
The AvailableTypes property doesn't sort types from now on. The
new AvailableTypesSorted property does sort the types.
Added method to return a SubtitleTypeInfo given a SubtitleType.
2006-10-16 00:55 noup
* src/SubLib/Application/SubtitleTypeInfo.cs: Property to get the
preferred extension (the first on the list).
2006-10-04 23:12 noup
* Makefile.am: Changes for release version 0.2.
2006-10-04 21:50 noup
* Makefile.am, TODO, src/Makefile.am: Changes for release version
0.2.
2006-10-04 21:01 noup
* CREDITS, ChangeLog, NEWS, README, configure.in: Changes for
release version 0.2.
2006-10-01 21:58 noup
* src/Makefile.am: Register sublib.dll with noinst so it doesn't
get installed (the install target isn't used).
2006-10-01 16:15 noup
* ChangeLog: Merged with the sublib-dev branch.
2006-10-01 16:14 noup
* ., ChangeLog: Merged with the sublib-dev branch.
2006-10-01 16:08 noup
* src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/Frames.cs,
src/SubLib/Application/SubtitleCollection.cs,
src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/SubtitleHeaders.cs,
src/SubLib/Application/SubtitleProperties.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Application/Times.cs: Merged with the sublib-dev
branch.
2006-10-01 16:07 noup
* src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatAdvancedSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleFormatMPSub.cs,
src/SubLib/Persistency/SubtitleFormatMPlayer.cs,
src/SubLib/Persistency/SubtitleFormatMPlayer2.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleFormatSubStationAlpha.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer1.cs,
src/SubLib/Persistency/SubtitleFormatSubViewer2.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs: Merged with the
sublib-dev branch.
2006-10-01 16:04 noup
* sublib.mdp, sublib.mds: Merged with the sublib-dev branch.
2006-10-01 15:45 noup
* src/Executable/Executable.cs: Merged with the sublib-dev branch.
2006-09-01 01:20 noup
* TODO: No description necessary.
2006-08-30 11:16 noup
* NEWS: Updated for version 0.1 launch.
2006-08-30 11:03 noup
* src/SubLib/Application/Frames.cs,
src/SubLib/Application/Subtitle.cs,
src/SubLib/Application/Times.cs: Merged from sublib-dev.
2006-08-30 10:57 noup
* src/SubLib/Persistency/VerboseConsole.cs: Merged from sublib-dev.
2006-08-30 10:06 noup
* configure.in: Updated for version 0.1 launch.
2006-08-30 10:01 noup
* data/NamespaceSummary.xml: Renamed doc dir to data dir.
2006-08-30 10:00 noup
* data: Renamed doc dir to data dir.
2006-08-30 09:52 noup
* build.properties, doc: Renamed doc dir to data dir.
2006-08-30 01:50 noup
* README: Updated for new install options.
2006-08-30 01:31 noup
* src/Makefile.am: Updated to create build dir when making the
library.
2006-08-30 01:26 noup
* ChangeLog: Added ChangeLog based on SVN commits.
2006-08-30 01:22 noup
* ChangeLog, NEWS, TODO: Old ChangeLog contents are now in NEWS.
2006-08-30 01:19 noup
* NEWS: Removed to exchange with data from ChangeLog.
2006-08-29 19:23 noup
* ., src, src/Makefile.am, src/SubLib: Cleaned-up makefiles.
2006-08-01 10:39 noup
* nant.build: Updated not to show warnings when members aren't
documented.
2006-07-20 21:19 noup
* src/SubLib/Application/SubtitleCollection.cs: Improved validation
of some methods' arguments.
Added methods to create and insert new subtitles at a specified
position, or after or before existing subtitles, based on them.
2006-07-20 21:16 noup
* src/SubLib/Persistency/FileInputOutput.cs: Fixed some warnings.
2006-07-15 03:11 noup
* src/SubLib/Application/SubtitleConstants.cs: Updated with default
values for properties.
2006-07-14 22:47 noup
* src/SubLib/Application/SubtitleConstants.cs, sublib.mdp: Added
constants to a set of subtitle parameters.
2006-07-08 18:56 noup
* src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Exception/UnknownCharEncodingException.cs,
src/SubLib/Exception/UnknownSubtitleFormatException.cs: Added
documentation.
2006-07-07 17:41 noup
* src/SubLib/Application/Subtitles.cs: Current and Original frame
rates are now only seteable internally, so they cannot be changed
without using Subtitles.ChangeFrameRate or
Subtitles.ChangeOriginalFrameRate.
Added documentation.
2006-07-07 17:40 noup
* src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleProperties.cs: Current and
Original frame rates are now only seteable internally, so they
cannot be changed without using Subtitles.ChangeFrameRate or
Subtitles.ChangeOriginalFrameRate.
2006-07-05 00:49 noup
* build.properties, nant.build: Updated for new naming conventions
for the library.
2006-07-05 00:49 noup
* sublib.mdp: Removed the ParsedSubtitles class. Parsed values are
now returned using "out".
2006-07-05 00:48 noup
* src/SubLib/Application/ParsedSubtitles.cs: Removed the
ParsedSubtitles class. Parsed values are now returned using
"out".
2006-07-05 00:39 noup
* src/SubLib/Application/SubtitleFactory.cs: Removed the
ParsedSubtitles class. Parsed values are now returned using
"out".
2006-07-05 00:20 noup
* src/SubLib/Application/SubtitleCompletion.cs: Code cleanup.
2006-07-04 23:28 noup
* src/SubLib/Application/SubtitleCollection.cs: Code cleanup.
Added some useful methods.
2006-07-04 23:22 noup
* src/SubLib/Application/Subtitle.cs: Code cleanup.
2006-07-04 22:57 noup
* src/SubLib/Application/IncompleteSubtitle.cs,
src/SubLib/Application/IncompleteSubtitleCollection.cs: Code
cleanup.
2006-07-04 22:55 noup
* src/SubLib/Application/SubtitleProperties.cs: Corrected the
documentation.
2006-07-04 22:43 noup
* src/SubLib/Application/SubtitleText.cs: Added some useful
methods.
2006-07-04 22:41 noup
* src/SubLib/Application/SubtitleTypeInfo.cs: Written
documentation.
2006-07-04 22:38 noup
* src/SubLib/Application/Synchronization.cs: Written documentation.
2006-07-04 22:38 noup
* src/SubLib/Application/Times.cs: Written documentation.
Removed unused isSubtitleValid properties.
Code cleanup.
2006-07-04 22:37 noup
* src/SubLib/Application/Frames.cs: Written documentation.
Removed unused isSubtitleValid properties.
Code cleanup.
2006-07-04 22:35 noup
* src/SubLib/Persistency/SubtitleParser.cs: Removed the
ParsedSubtitles class. Parsed values are now returned using
"out".
2006-06-27 21:50 noup
* src/SubLib/Application/IncompleteSubtitle.cs,
src/SubLib/Application/IncompleteSubtitleCollection.cs,
src/SubLib/Application/Style.cs,
src/SubLib/Application/Subtitle.cs,
src/SubLib/Application/SubtitleCollection.cs,
src/SubLib/Application/SubtitleProperties.cs,
src/SubLib/Application/SubtitleText.cs: Added and revised
documentation.
2006-06-27 19:44 noup
* sublib.mdp: ISubtitleCollection's need wasn't very logical.
SubtitleCollection and IncompleteSubtitleCollection are now 2
completely separate classes.
2006-06-27 19:43 noup
* src/SubLib/Application/SubtitleProperties.cs: Added
documentation.
2006-06-27 19:43 noup
* src/SubLib/Application/ISubtitleCollection.cs,
src/SubLib/Application/IncompleteSubtitleCollection.cs,
src/SubLib/Application/SubtitleCollection.cs:
ISubtitleCollection's need wasn't very logical.
SubtitleCollection and IncompleteSubtitleCollection are now 2
completely separate classes.
2006-06-27 19:41 noup
* nant.build: Add properties to clearly mark unwritten
documentation.
2006-06-27 00:44 noup
* .: Added files to cvsignore.
2006-06-27 00:38 noup
* src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/Style.cs,
src/SubLib/Application/SubtitleText.cs: Written code comments.
2006-06-26 19:44 noup
* sublib.mdp, sublib.mds: Imported the project into Monodevelop.
2006-06-26 00:24 noup
* INSTALL, Makefile.am, NEWS, autogen.sh, configure.in,
src/External/NCharDet/AssemblyInfo.cs, src/Makefile.am,
src/SubLib/AssemblyInfo.cs.in: Added support for autotools, to
build the library without nant.
2006-06-18 18:10 noup
* src/SubLib/Application/SubtitleText.cs: Also trim text around
line breaks when specified.
2006-06-18 17:59 noup
* src/SubLib/Application/SubtitleText.cs: Fixed bug with last
change, trimming is not functioning properly.
2006-06-18 17:40 noup
* src/SubLib/Application/SubtitleText.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleParser.cs: Possibility to select
if text should be trimmed when set in a subtitle.
Text is trimmed by default when opening subtitles, but not
trimmed by default when using Set with only 1 argument (the
text).
2006-03-17 01:44 noup
* build.properties, doc, doc/NamespaceSummary.xml, nant.build:
Initial support for documentation, created with ndoc.
2006-03-05 02:42 noup
* src/SubLib/Application/SubtitleFactory.cs: Updated verbose
messages for opening.
2006-03-05 01:35 noup
* src/SubLib/Application/SubtitleFactory.cs: Created method for
setting properties, used after open and save as.
2006-03-05 01:35 noup
* src/SubLib/Application/Subtitles.cs: Created method for setting
properties, used after open and save as.
2006-03-05 01:34 noup
* src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleProperties.cs: Removed
OriginalTimingMode property.
2006-03-05 01:19 noup
* src/SubLib/Persistency/SubtitleParser.cs: moved the set up of
properties after parsing to subtitle factory
2006-03-05 01:11 noup
* TODO: Added TODO list.
2006-03-05 01:10 noup
* src/SubLib/Persistency/SubtitleFormatMicroDVD.cs: Only create
styleExpression once.
2006-03-05 01:10 noup
* src/SubLib/Persistency/SubtitleFormatSubRip.cs: Corrected bug
with not reading the last character when parsing input.
Only create styleExpression once.
2006-03-04 18:47 noup
* src/Executable/Executable.cs: Updated for verbose mechanism
change.
2006-03-04 18:46 noup
* src/SubLib/Exception/UnknownCharEncodingException.cs: Renaming
exception related to unknown character coding.
2006-03-04 18:46 noup
* src/SubLib/Exception/UnknownFileEncodingException.cs: Renaming
exception related to unknown character coding.
2006-03-04 18:42 noup
* src/SubLib/Persistency/VerboseConsole.cs: Verbose console output
methods.
2006-03-04 18:42 noup
* src/SubLib/Persistency/FileInputOutput.cs: Moved verbose
mechanism to a separate class, to be used internally in the whole
namespace.
Allow to write files with a specified encoding.
2006-03-04 18:39 noup
* src/SubLib/Persistency/SubtitleFormatSubRip.cs: Conform to the
new specification: set subtitle name and extensions.
2006-03-04 18:39 noup
* src/SubLib/Persistency/SubtitleFormatMicroDVD.cs: Conform to the
new specification: set subtitle name and extensions.
2006-03-04 18:38 noup
* src/SubLib/Persistency/SubtitleFormat.cs: Also store subtitle
format's name and extensions.
Oblige to be extended to be used
Code cleanup
2006-03-04 18:35 noup
* src/SubLib/Persistency/BuiltInSubtitleFormats.cs: Code cleanup.
2006-03-04 18:22 noup
* src/SubLib/Application/SubtitleTypeInfo.cs: Class that stores
information about a subtitle type.
2006-03-04 18:18 noup
* src/SubLib/Application/Subtitles.cs: Allow to save using a
specified encoding
Store the new file encoding when saving as
Updated verbosity mechanism
2006-03-04 18:17 noup
* src/SubLib/Application/SubtitleProperties.cs: added file encoding
property
code cleanup
2006-03-04 18:15 noup
* src/SubLib/Application/SubtitleFactory.cs: set encoding name in
properties when opening a file
updated verbosity mechanism
code cleanup
2006-03-01 03:26 noup
* src/SubLib/Persistency/SubtitleFormat.cs: Code cleanup.
2006-03-01 03:17 noup
* src/SubLib/Persistency/SubtitleFormatMicroDVD.cs: Code cleanup.
2006-03-01 03:14 noup
* src/SubLib/Persistency/SubtitleFormatSubRip.cs: Simplified
regular expressions.
FormatExpression is more rigid (to better detect the format)
InputExpression breaks subtitles when it finds a blank line
OutputExpression uses the system's newline (\r\n on windows, \n
on unix)
2006-03-01 00:52 noup
* src/Executable/Executable.cs: Updated Save to SaveAs.
2006-03-01 00:51 noup
* src/SubLib/Persistency/BuiltInSubtitleFormats.cs: Heuristics
change, now a format can be considered "the best" which makes the
detection return immediately.
Only the first 2000 characters of the text are used in the
detection.
Regular expressions are not compiled anymore, since it didn't
really make much sense in this context (and has the problem about
memory not being freed)
2006-03-01 00:49 noup
* src/SubLib/Persistency/SubtitleFormatMicroDVD.cs: More precise
support for subtitle format detection (more rigid).
2006-02-28 22:58 noup
* src/SubLib/Application/Subtitles.cs: Save returns true if it
could save (using CanSave), false otherwise.
2006-02-28 02:04 noup
* src/SubLib/Application/Subtitles.cs: Operations for saving,
saving as and knowing if a file can be saved without additional
parameters.
2006-02-28 02:03 noup
* src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/SubtitleProperties.cs: Store the
SubtitleType after reading a file.
2006-02-27 16:51 noup
* ChangeLog: Updating for release 0.0.5
2006-02-27 16:27 noup
* src/SubLib/Application/IncompleteSubtitle.cs,
src/SubLib/Application/ParsedSubtitles.cs,
src/SubLib/Application/Style.cs,
src/SubLib/Application/SubtitleProperties.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Persistency/SubtitleParser.cs: Code cleanup.
2006-02-27 16:24 noup
* src/SubLib/Application/SubtitleCollection.cs: Fixed bug when
adding an element to the beginning of the collection.
2006-02-24 03:51 noup
* .cvsignore: deleting remaining CVS files.
2006-02-22 12:22 noup
* src/Executable/Executable.cs,
src/SubLib/Application/Enumerations.cs,
src/SubLib/Application/Frames.cs,
src/SubLib/Application/ISubtitleCollection.cs,
src/SubLib/Application/IncompleteSubtitle.cs,
src/SubLib/Application/IncompleteSubtitleCollection.cs,
src/SubLib/Application/ParsedSubtitles.cs,
src/SubLib/Application/Style.cs,
src/SubLib/Application/Subtitle.cs,
src/SubLib/Application/SubtitleCollection.cs,
src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/SubtitleProperties.cs,
src/SubLib/Application/SubtitleText.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Application/Synchronization.cs,
src/SubLib/Application/Times.cs, src/SubLib/Domain,
src/SubLib/Exception,
src/SubLib/Exception/UnknownFileEncodingException.cs,
src/SubLib/Exception/UnknownSubtitleFormatException.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/Exception,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs: Namespace change: only
1 namespace now - SubLib.
Domain layer removed, since it wasn't making much sense. Its
files were moved to "Application", which now contains all the
public classes.
Exception classes were also moved to the SubLib's source root.
2006-02-22 12:16 noup
* nant.build: Added rebuild target.
2006-02-19 03:30 noup
* src/SubLib/Application/SubtitleFactory.cs: Stop being verbose by
default.
2006-02-15 01:13 noup
* src/SubLib/Persistency/FileInputOutput.cs: Fixed bug with
detecting the character encoding. Now tries 1252 if both
detection and the default encoding failed.
2006-02-15 00:18 noup
* src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Domain/Frames.cs, src/SubLib/Domain/SubtitleText.cs,
src/SubLib/Domain/Times.cs: Removed Domain.Exception namespace.
2006-02-15 00:01 noup
* src/SubLib/Domain/Exception, src/SubLib/Domain/Frames.cs,
src/SubLib/Domain/Times.cs: Stop throwing exceptions when times
and frames aren't valid (use IsValid to validate)
2006-02-14 23:28 noup
* src/SubLib/Domain/ISubtitleCollection.cs,
src/SubLib/Domain/IncompleteSubtitleCollection.cs,
src/SubLib/Domain/SubtitleCollection.cs: subtitle numbers now
start at 0
2006-02-14 23:20 noup
* src/SubLib/Domain/Exception/InvalidSubtitleTextException.cs,
src/SubLib/Domain/Frames.cs, src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleText.cs, src/SubLib/Domain/Times.cs:
Code cleanup.
Restructured constructors.
Stoped throwing exception when values aren't initialized (values
are always initialized from now on).
2006-02-06 06:06 noup
* src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Domain/Enumerations.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleParser.cs: Removed the Unknown
field of the TimingMode enumeration, so it can also be used
externaly.
2006-02-05 05:18 noup
* src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Domain/Frames.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Domain/Times.cs: Added a better path handling: allow
to store them in SubtitleProperties and create new subtitles in
SubtitleFactory
Timings' duration can now be set
2006-01-30 03:58 noup
* src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Domain/Subtitles.cs: Subtitles constructor is now
protected, so the class can be inherited
SubtitleProperties readjusted, some properties were not necessary
SubtitleFactory can now create new initial blank subtitles
2006-01-29 01:54 noup
* ChangeLog, src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleText.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleParser.cs: MicroDVD: now detects
style tags anywhere inside subtitles' text
SubRip: fixed bug related to style parsing
Parsing engine optimized
Subtitle regular expressions are case-insensitive by default
Subtitles are now trimmed
Added Get() to SubtitleText, which retrieves subtitles separated
by the newline character
2005-10-29 14:32 noup
* ChangeLog: Updating for version 0.0.3.
2005-10-29 13:59 noup
* ChangeLog: Updating for version 0.0.3.
2005-10-29 13:50 noup
* AUTHORS, COPYING, ChangeLog, nant.build,
src/Executable/Executable.cs,
src/External/NCharDet/AssemblyInfo.cs,
src/External/NCharDet/Big5Statistics.cs,
src/External/NCharDet/EUCJPStatistics.cs,
src/External/NCharDet/EUCKRStatistics.cs,
src/External/NCharDet/EUCTWStatistics.cs,
src/External/NCharDet/GB2312Statistics.cs,
src/External/NCharDet/nsBIG5Verifier.cs,
src/External/NCharDet/nsCP1252Verifier.cs,
src/External/NCharDet/nsDetector.cs,
src/External/NCharDet/nsEUCJPVerifier.cs,
src/External/NCharDet/nsEUCKRVerifier.cs,
src/External/NCharDet/nsEUCSampler.cs,
src/External/NCharDet/nsEUCStatistics.cs,
src/External/NCharDet/nsEUCTWVerifier.cs,
src/External/NCharDet/nsGB18030Verifier.cs,
src/External/NCharDet/nsGB2312Verifier.cs,
src/External/NCharDet/nsHZVerifier.cs,
src/External/NCharDet/nsICharsetDetectionObserver.cs,
src/External/NCharDet/nsICharsetDetector.cs,
src/External/NCharDet/nsISO2022CNVerifier.cs,
src/External/NCharDet/nsISO2022JPVerifier.cs,
src/External/NCharDet/nsISO2022KRVerifier.cs,
src/External/NCharDet/nsPSMDetector.cs,
src/External/NCharDet/nsSJISVerifier.cs,
src/External/NCharDet/nsUCS2BEVerifier.cs,
src/External/NCharDet/nsUCS2LEVerifier.cs,
src/External/NCharDet/nsUTF8Verifier.cs,
src/External/NCharDet/nsVerifier.cs,
src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/Synchronization.cs,
src/SubLib/Domain/ISubtitleCollection.cs,
src/SubLib/Domain/IncompleteSubtitle.cs,
src/SubLib/Domain/IncompleteSubtitleCollection.cs,
src/SubLib/Domain/ParsedSubtitles.cs, src/SubLib/Domain/Style.cs,
src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleCollection.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/Exception/UnknownFileEncodingException.cs,
src/SubLib/Persistency/Exception/UnknownSubtitleFormatException.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs: changed ascii/binary
property
2005-10-29 13:44 noup
* README, build.properties, nant.build,
src/Executable/Executable.cs, src/SubLib/Domain/Frames.cs,
src/SubLib/Domain/Subtitle.cs, src/SubLib/Domain/Times.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs: Frames and Times aren't
hidden in the subtitle class anymore. Their methods and
properties are now public, but they have to be constructed by
Subtitle (internal constructor). They also include 2 types of
access: common and precise. Precise is for internal use and the
other is public.
Updated the nant build file with targets to make releases.
Updated the README file with the current program usage.
2005-10-26 17:50 noup
* ChangeLog, src/Executable/Executable.cs,
src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Application/Synchronization.cs,
src/SubLib/Domain/Exception,
src/SubLib/Domain/Exception/InvalidEndFrameException.cs,
src/SubLib/Domain/Exception/InvalidEndTimeException.cs,
src/SubLib/Domain/Exception/InvalidStartFrameException.cs,
src/SubLib/Domain/Exception/InvalidStartTimeException.cs,
src/SubLib/Domain/Exception/InvalidSubtitleTextException.cs,
src/SubLib/Domain/Frames.cs,
src/SubLib/Domain/ISubtitleCollection.cs,
src/SubLib/Domain/IncompleteSubtitleCollection.cs,
src/SubLib/Domain/Style.cs, src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleCollection.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Domain/SubtitleText.cs,
src/SubLib/Domain/Subtitles.cs, src/SubLib/Domain/Times.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs,
src/SubLib/Persistency/SubtitleReader.cs,
src/SubLib/Persistency/SubtitleWriter.cs: - architecture
restructured, now features a rich domain model which connects
both to the application and persistency layers.
- subtitle domain now includes frames and times as classes, and
automatically updates the times when changing frames and
vice-versa; one has to use the internally-available properties of
frames and times to set their values without changing the others
- parsing engine rewrite, parsed bits are returned instead of
passing a subtitle class to each parsing method
- improved the parsing engine's efficiency, using a string
builder instead of common strings.
- added an optional argument to the executable, to change the
input fps
2005-10-22 23:19 noup
* README: minor change for README
2005-10-22 23:17 noup
* AUTHORS, ChangeLog: updated for version 0.0.2
2005-10-22 23:05 noup
* README, src/Executable/Executable.cs,
src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Application/Synchronization.cs,
src/SubLib/Domain/Enumerations.cs, src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleCollection.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs,
src/SubLib/Persistency/SubtitleReader.cs: Added synchronization
utilities. The correct place for the related methods is still to
be decided, but the added top-level features are changing the fps
and the input fps.
Internaly, there is also the function of updating the time from
frames and vice-versa (SetTimeFromFrames and SetFramesFromTime).
Written a README file.
2005-10-15 18:12 noup
* ., .cvsignore, src/Executable/Executable.cs,
src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Application/Synchronization.cs,
src/SubLib/Application/TimeUtilities.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleReader.cs: SubtitleFormat isn't
static anymore
SubtitleFormat accepts many properties, which can be specified
before opening a subtitle
Added a way to enable verbose prints during the opening of a
file.
2005-10-14 10:50 noup
* src/SubLib/Domain/SubtitleProperties.cs: *** empty log message
***
2005-10-11 23:34 noup
* nant.build: cleaned-up build file.
2005-10-09 01:09 noup
* src/SubLib/Domain/Subtitle.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs: improved parsing
engine:
- added a PostProcess function, to deal with particularities that
may arise from some subtitle formats (as of now, SubRip, in what
comes to finding and deleting tags inside the subtitle text)
- improved parsing of SubRip subtitles
- refactored the conversions between subtitle text strings and
arraylists (with the subtitle lines), which is now in the
subtitle text (SetText and GetText functions)
2005-09-24 17:11 noup
* ChangeLog: Added Changelog for version 0.0.1.
2005-09-24 01:28 noup
* src/Executable/Executable.cs,
src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Application/TimeUtilities.cs,
src/SubLib/Domain/ISubtitleCollection.cs,
src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleCollection.cs,
src/SubLib/Persistency/SubtitleParser.cs: Added timing completion
upon parsing.
Subtitle class doesn't create a subtitle with zero time by
default any more. Instead, it creates a subtitle with invalid
time.
Improved executable to detect operating system and show usage
instructions.
2005-08-20 18:28 noup
* src/Executable/Executable.cs,
src/SubLib/Application/SubtitleCompletion.cs,
src/SubLib/Application/SubtitleFactory.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Domain/MovieSubtitles.cs,
src/SubLib/Domain/ParsedSubtitles.cs,
src/SubLib/Domain/SubtitleCollection.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs,
src/SubLib/Persistency/SubtitleReader.cs,
src/SubLib/Persistency/SubtitleWriter.cs: Started building the
application layer, which structure was rearranged.
Corrected some minor bugs related to SubRip and MicroDVD
subtitles parsing.
Now uses a SubtitleFactory class to create Subtitles from text
files. The incomplete subtitles are optionaly retrieved from the
SubtitleFactory after reading the subtitles.
2005-08-14 00:08 noup
* src/Executable/Executable.cs,
src/External/NCharDet/nsDetector.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs: Fixed bug with the
encoding detection, wasn't detecting correctly because some parts
of the buffer were only used in ascii detection, and not in the
global one.
Added a statistics feature to the testing executable.
2005-08-11 11:34 noup
* src/Executable/Executable.cs, src/SubLib/Domain/Style.cs,
src/SubLib/Domain/Subtitle.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleFormatMicroDVD.cs,
src/SubLib/Persistency/SubtitleFormatSubRip.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs,
src/SubLib/Persistency/SubtitleReader.cs: Added complete support
for SubRip subtitles.
The parsing engine now better supports parsing of time-based
subtitles.
Persistency structure changed, each subtitle type has a specific
related file now.
2005-07-23 21:20 noup
* ChangeLog, build.properties, nant.build,
src/Executable/Executable.cs, src/External,
src/External/NCharDet, src/External/NCharDet/AssemblyInfo.cs,
src/External/NCharDet/Big5Statistics.cs,
src/External/NCharDet/EUCJPStatistics.cs,
src/External/NCharDet/EUCKRStatistics.cs,
src/External/NCharDet/EUCTWStatistics.cs,
src/External/NCharDet/GB2312Statistics.cs,
src/External/NCharDet/nsBIG5Verifier.cs,
src/External/NCharDet/nsCP1252Verifier.cs,
src/External/NCharDet/nsDetector.cs,
src/External/NCharDet/nsEUCJPVerifier.cs,
src/External/NCharDet/nsEUCKRVerifier.cs,
src/External/NCharDet/nsEUCSampler.cs,
src/External/NCharDet/nsEUCStatistics.cs,
src/External/NCharDet/nsEUCTWVerifier.cs,
src/External/NCharDet/nsGB18030Verifier.cs,
src/External/NCharDet/nsGB2312Verifier.cs,
src/External/NCharDet/nsHZVerifier.cs,
src/External/NCharDet/nsICharsetDetectionObserver.cs,
src/External/NCharDet/nsICharsetDetector.cs,
src/External/NCharDet/nsISO2022CNVerifier.cs,
src/External/NCharDet/nsISO2022JPVerifier.cs,
src/External/NCharDet/nsISO2022KRVerifier.cs,
src/External/NCharDet/nsPSMDetector.cs,
src/External/NCharDet/nsSJISVerifier.cs,
src/External/NCharDet/nsUCS2BEVerifier.cs,
src/External/NCharDet/nsUCS2LEVerifier.cs,
src/External/NCharDet/nsUTF8Verifier.cs,
src/External/NCharDet/nsVerifier.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Domain/ISubtitleCollection.cs,
src/SubLib/Domain/IncompleteSubtitle.cs,
src/SubLib/Domain/IncompleteSubtitleCollection.cs,
src/SubLib/Domain/MovieSubtitles.cs, src/SubLib/Domain/Style.cs,
src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleCollection.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/Exception/InvalidPathException.cs,
src/SubLib/Persistency/Exception/UnknownFileEncodingException.cs,
src/SubLib/Persistency/Exception/UnknownSubtitleFormatException.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleOutput.cs,
src/SubLib/Persistency/SubtitleParser.cs,
src/SubLib/Persistency/SubtitleReader.cs,
src/SubLib/Persistency/SubtitleWriter.cs: Added support for
automatic file encoding detection.
Added support for automatic subtitle format detection.
Parser now supports strict and relaxed expressions, and also the
option to create a list of the detected invalid subtitles (which
couldn't be fixed).
Complete support for reading and writing subtitles.
Added support for MicroDVD subtitles.
2005-07-16 17:51 noup
* src/Executable/Executable.cs,
src/SubLib/Application/Subtitles.cs,
src/SubLib/Domain/MovieSubtitles.cs,
src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleCollection.cs,
src/SubLib/Domain/SubtitleProperties.cs,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleParser.cs,
src/SubLib/Persistency/SubtitleReader.cs: Standardized getters
and setters.
New (very) experimental parsing engine.
Use the current locale the default encoding detector doesn't
succeed.
2005-07-14 04:47 noup
* src/Executable/Executable.cs: Adding a basic testing executable.
2005-05-31 22:33 noup
* ., .project, AUTHORS, COPYING, ChangeLog, build.properties,
nant.build, src, src/Executable, src/Executable/Executable.cs,
src/SubLib, src/SubLib/Application,
src/SubLib/Application/Subtitles.cs, src/SubLib/Domain,
src/SubLib/Domain/MovieSubtitles.cs,
src/SubLib/Domain/Subtitle.cs,
src/SubLib/Domain/SubtitleCollection.cs,
src/SubLib/Domain/SubtitleProperties.cs, src/SubLib/Persistency,
src/SubLib/Persistency/BuiltInSubtitleFormats.cs,
src/SubLib/Persistency/Exception,
src/SubLib/Persistency/Exception/InvalidPathException.cs,
src/SubLib/Persistency/FileInputOutput.cs,
src/SubLib/Persistency/SubtitleFormat.cs,
src/SubLib/Persistency/SubtitleParser.cs,
src/SubLib/Persistency/SubtitleReader.cs: Initial CVS commit.
|