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
|
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< KreateCD 1.1.0 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2001-10-20 Alexander Feigl <Alexander.Feigl@gmx.de>
* configure.in.in : set version
* kreatecd.lsm : update lsm
* *.po : fix Voribis typo
* StartupScreen_skel.ui : fix Voribis typo
2001-10-20 Niels Reedijk <nielx@kde.nl>
* doc : Updated doc to current situation, plus
some other extensions
* po/nl : Dutch translation
* ConfigPathWidget_skel.ui : Fixed minimum
* trackview/MainWidget_skel.ui : Fixed minimum
2001-10-13 Alexander Feigl <Alexander.Feigl@gmx.de>
* ProjectAdvancedWidget.* : merge Joseph's listview fix
* po/de/*.po : update de translation
* ProjectFromDirExt.cpp : use new method to save image
* CDTrack.cpp : - allow to pass a filename with
validateImage()
- saveImage has different meaning now
2001-10-10 Alexander Feigl <Alexander.Feigl@gmx.de>
* index.docbook : commit docbook changes I received
* CDWriter.cpp : - did reference wrong config object
- fix progress
- set progress to 100% when fixating
* FileTree.cpp : when deleting the root, you couldn't
mkdir or drag any more
2001-09-27 Alexander Feigl <Alexander.Feigl@gmx.de>
* doc/Makefile.am : add fr
* doc/fr/.. : add fr doc
* po/Makefile.am : add fr
* po/fr/.. : add fr translation
* po/it/*.po : update it translation
* po/sv/*.po : update sv translation
2001-09-22 ALexander Feigl <Alexander.Feigl@gmx.de>
* ProjectSignleDataWidget.* : - add updateTrack method to change
the project track
* TrackListManager.* : - fix singledata loading
* FileTree.cpp : implement reset()
* apply.cpp : copy from HEAD
* extract.cpp : copy from HEAD
* desktop.cpp : removed
* *.pot : make messages
* */*.po : make merge
* kcd_isooptions.cpp : iso options icon - needs to be improved
* IsoWindow.cpp : use iso options icon
* Makefile.am : install isooptions icon
* configure.in.in : set version
2001-09-17 Alexander Feigl <Alexander.Feigl@gmx.de>
* BusScanner.cpp : use WRAPPER_PATH
* CDDA2Wav.cpp : use WRAPPER_PATH
* CDParanoia.cpp : use WRAPPER_PATH
* CDRWBlank.cpp : use WRAPPER_PATH
* CDWriter.cpp : use WRAPPER_PATH
* IsoImage.cpp : use WRAPPER_PATH
* NextWritable.cpp : use WRAPPER_PATH
* ReadcdRipper.cpp : use WRAPPER_PATH
* TOCCdda2wav.cpp : use WRAPPER_PATH
* TOCCdrecord.cpp : use WRAPPER_PATH
* configure.in.in : define WRAPPER_PATH
2001-09-16 Joseph Wenninger <jowenn@kde.org>
* Makefile.am : somehow the -lkparts or $(KDE_KPART
* ProjectAdvancedWidget.* : fix for the drag operation when dec
* TrackListView.* : added a delayed selection changed signal (after click)
to solve the DND problem in the Advanced Widget
2001-09-16 Alexander Feigl <Alexander.feigl@gmx.de>
* CDWriter.* : fix multisession problems
* IsoWidget.cpp : add multisession view
* PipeCopy.* : add "late open" support
* TrackWindow.cpp : dont crash with unknown audio files
* WriteDialog.cpp : disable OTH for MS on !1st track
2001-09-09 Alexander Feigl <Alexander.Feigl@gmx.de>
* configure.in.in : fix rootwrapper detect for cdparanoia
2001-09-08 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDWriter.cpp : try to fix ms problems with -waiti
* Makefile.am : build with -module and -avoid-version
* configure.in.in : try to fix dynamic loading problems
* ConfPathWidget.cpp : don't save/check kconfig path in
fixed mode
* ConfSCSIWidget.cpp : use scd* as fallback
* FileTree.* : select parent if we delete
2001-09-03 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.* : new method : needDualDrive
* ConfigBurnerWidget.* : disable on the fly as parameter
* WriteDialog.cpp : - check for oth disabling
- only display dialog wenn needed
<<<<<<<<<<<<<<<<<<<<<<<<<<< KreateCD 1.0.8 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2001-09-02 Alexander Feigl <Alexander.Feigl@gmx.de>
* WriteDialog.cpp : fix typo on the branch too
2001-08-31 Niels Reedijk <n.reedijk@planet.nl>
* po : Make messages/merge
* trackviewpart : Improved (Show a single file)
2001-08-31 Alexander Feigl <Alexander.Feigl@gmy.de>
* README : update README
* kreatecd.lsm : update lsm
* configure.in.in : dont require wrapper for non-existing apps
* kreatecd.kdevprj.in : update project
* lo16-action-cdimage.png : add image
* hi16-action-cdimage.png : add image
* AudioOptions.* : use AudioPosWidget
* AudioPosWidget.* : improve audioposwidget - works now
* AudioPlayImage.cpp : remove compiler warning
* trackviewpart/MainWidget.h : fix --enable-final
* trackviewpart/trackview_fac*.h: fix --enable-final
2001-08-30 Alexander Feigl <Alexander.Feigl@gmx.de>
* FileTree.cpp : avoid ASCII cast and don't crash Qt3
while doing it the better way for Qt2
too
* TrackListManager.cpp : - use exec() instead of show()
- remove do not use from advanced
* TrackWindow.cpp : use exec() instead of show() -
this is required for qt3 and better
for qt2
* AudioOptions.cpp : add testbed for AudioPosWidget
* AudioPosWidget.* : new widget
* Makefile.am : add class
* StartupScreen_skel_bak.ui : not needed
* WaveView.h : remove position properties - don't work
* trackviewpart/Makefile.am : better maintainer-clean
* kreatecd.kdevprj.in : update KDevelop project file
* kcd_advanced.png : my advanced screen - if someone has a better ...
2001-08-29 Alexander Feigl <Alexander.Feigl@gmx.de>
* TrackListManager.* : newProject() not needed
because of method with default
* Makefile.am : update LDADD
* WaveView.* : - add a nice timescale
- add display which part of track is
displayed / zoom factor
- add some properties and functions
2001-08-26 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioOptions.* : move WaveView in advanced view
* AudioWaveData.* : support for obtaining sample rate
* WaveData.* : support for obtaining sample rate
* WaveView.* : - user can now drag the marks
- prepare for timescale at the top
2001-08-25 Kevin Radloff <kmradlof@colby.edu>
* TrackWindow.* : Readded event handler to make window close cancel changes
2001-08-25 Joseph Wenninger <jowenn@kde.org>
* IsoWidget.* : Shows a button for the Iso Options, but there is no image yet
* ConfigDialog.cpp : ISO -> ISO defaults
* x-kreatecd.desktop : Now previewing in the part should be the preferred action in konqy
* kreatecdtrackview_component.desktop : added an entry for the icon
2001-08-25 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFileOp.* : report error if seeking beyond EOF
* AudioOptionsDialog.cpp : include moc
* IsoOptionsDialog.cpp : include moc
* MP3Identify.* : improve it
* TrackListManager.cpp : remove potential cyclic signal
2001-08-25 Joseph Wenninger <jowenn@kde.org>
* CDTrack.cpp : added initObject() and set the track type to audio, in the new CDTrack(AudioFileInfo *) constructor
* TracklistManager.* : use AudioFileFormat, instead of the mime-types.
2001-08-25 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioConverter.* : add refCount
* AudioFileInfo.* : support copy constructor cloning
* CDTrack.* : - support copy constructor cloning
- support AudioFileInfo constructor
* FormatPlugin.h : increase plugin version
* IsoImage.* : support copy constructor cloning
* IsoWindow.cpp : fix ISO tree cancel
* TrackListManager.* : - remove stuff which is no longer needed
because of modal TrackWindow
- update for cancel support
* TrackWindow.* : changes for modal
* rootwrapper.c : cleanup rootwrapper
2001-08-24 Joseph Wenninger <jowenn@kde.org>
* startup.cpp : Added some thanks to statements
2001-08-24 Niels Reedijk <nielx@kde.nl>
* kreatecd/AdvancedInfo.ui : Added introduction text
2001-08-24 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioBuildImage.* : support disableAutoQuit
* AudioFileInfo.cpp : fix rounding errors in get*Duration()
* AudioOptions.* : remove ok button and geometry handling
* AudioPlayImage.cpp : don't need conversionDone for playing
* CDTrack.cpp : - disable autoQuit when doing on the fly
- destruct converter process later
* ISOImage.cpp : add copy constructor for later
* ISOOptions.* : remove ok button and geometry handling
* ISOWindow.* : - cleanup, add geometry handling
- make it subclass of KDialogBase
- re-add cancel function - hopefully bugless
* MainWindow.* : remmove old, usused ISO config stuff
* Makefile.am : - add new classes
- removed unused lines (static plugin linking)
* TrackWindow.* : - use new dialogs
- don't need closed signals any more
because of modal dialogs - remove cruft
* FileTree.cpp : don't forget to call superclass for mouse e
* AudioOptionsDialog.* : new class - subclass of KDialogBase
* IsoOptionsDialog.* : new class - subclass of KDialogBase
* MainWidget.cpp : add missing cast to fix compilation
2001-08-24 Niels Reedijk <nielx@linux>
* trackviewpart/* : First revision of Trackviewpart
* po/kreatecd_trackviewpart.pot : Messages
2001-08-24 Kevin Radloff <kmradlof@colby.edu>
* TrackListManager : Add a cancel button to cancel new tracks
* TrackWindow : Made a qdialog
* startup.cpp : /*Nielx*/ A credit
2001-08-23 Niels Reedijk <nielx@kde.nl>
* doc/en/kreatecd/Makefile.am : Another hack...
* ConfigPath* : Dynamic icons...
2001-08-23 Joseph Wenninger <jowenn@kde.org>
* NewProjectDialog.cpp : applyed Kevin Radloff's patch for the images
2001-08-22 Alexander Feigl <Alexander.Feigl@gmx.de>
* ProgressDialog.cpp : probably fixed "crazy progress dialog"
* CDTrack.* : support MB display
* TrackDialog.cpp : display MBytes
* TrackListManager.cpp : display MBytes
* TrackWindow.cpp : audio has to be passed to method
* FileTree.cpp : fix DND problem
2001-08-21 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioBuildImage.* : - use seperated AudioFileOp
- add a signal before closing files
* AudioFileConvert.* : - use seperated AudioFileOp
- add a signal before closing files
* AudioFileFormat.* : use seperated AudioFileOp
* AudioIdentify.* : use seperated AudioFileOp
* AudioPlayImage.* : - use seperated AudioFileOp
- add a singal before closing files
* AudioScanImage.* : use seperated AudioFileOp
* AudioWaveData.* : use seperated AudioFileOp
* AudioFileOp.* : make AudioFileOp independent class
* Fork.* : use ProcessInterface as caller class
* ProcessInterface.* : use ProcessInterface as caller class
* CDTrack.cpp : kill wrong error messages when
cutting audio OTF
* CDWriter.h : implement signleDrive method
* ConfigBurnerWidget.cpp : disable on the fly for single drive
* WriteDialog.cpp : implemnt change media dialog
* ConfigPathWidget_skel.ui : add readcd path widgets
* ConfigPathWidget.* : add readcd path widgets
* ProgressDialog.* : hide status view in an advanced view
* doc/en/kreatecd/Makefile.am : fix makefile
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< KreateCD 1.0.7 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2001-08-19 Alexander Feigl <Alexander.Feigl@gmx.de>
* README : add some changes since 1.0.0
* configure.in.in : bump version to 1.0.7
* CDTrack.cpp : exportISO used uninitalized prog
* TrackWindow.cpp : add newline to end of file
* TOCCdda2Wav.cpp : remove compiler warning
* TOCCdrecord.cpp : remove compiler warning
* AudioPlayImage.cpp : remove compiler warning
* ProjectAdvancedWidget.cpp : remove compiler warning
* WaveData.cpp : remove compiler warning
* ConfigPathWidget_skel.ui : rename images to fix --enable-final
* ProjectFromDirExt_skel.ui : rename images to fix --enable-final
* StartupStreen_skel_bak.ui : rename images to fix --enable-final
* doc/en/kreatecd/Makefile.am : fix makefile for DESTDIR
2001-08-18 Joseph Wenninger <jowenn@kde.org>
* CDTrack.* :added a temporary function exportISO, but it isn't used yet, because I can't test it.
It would only be needed in the konqueror RMB menu, but I broke my konqy.
* ProjectAdvancedWidget.* : now prevents the user from editing a track in the track window and
in the main window at the same time
* ProjectFromDirExt.cpp : adaptions for the new function in CDTrack, but disabled for now
* TrackListManager.* : adaptions for the changes in ProjectAdvancedWidget.*
* TrackWindow.* : adaptions for the changes in ProjectAdvancedWidget.*
2001-08-18 Niels Reedijk <nielx@kde.nl>
* po/Makefile.am : use the desktop program
* po/desktop.cpp : This is a tiny program I wrote
in order to extract the messages
from the desktop files (in order
to translate them). It is currently
useless: there isn't a program that
applies the changes to the desktop
files themselves. But I'm proud I came
this far :-)
* po/desktop.pot : The entries of the desktop files
2001-08-17 Alexander Feigl <Alexander.Feigl@gmx.de>
* rootwrapper.c : fix comments
2001-08-17 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioBuildImage.cpp : adapt to new SUID
* AudioFileFormat.cpp : - adapt to new SUID
- fix CD track duration setup
* AudioPlayImage.cpp : adapt to new SUID
* AudioScanImage.cpp : adapt to new SUID
* BusScanner.cpp : adapt to new SUID
* CDDA2Wav.cpp : adapt to new SUID
* CDParanoia.cpp : adapt to new SUID
* CDRWBlank.cpp : adapt to new SUID
* CDWriter.cpp : adapt to new SUID
* ConfigPathWidget.cpp : adapt to new SUID
* DataRipper.cpp : adapt to new SUID
* ISOImage.* : adapt to new SUID
* NextWritable.cpp : adapt to new SUID
* ReadcdRipper.cpp : adapt to new SUID
* TOCCdda2wav.cpp : adapt to new SUID
* TOCCdrecord.cpp : adapt to new SUID
* TOCReader.cpp : adapt to new SUID
* startup.cpp : drop SUID support
* configure.in.in : new checks for SUID executables
* AppChooser.cpp : remove DeviceRipper support
* ProcessInterface.* : drop SUID support
* Makefile.am : changes for rootwrapper
* DeviceRipper.cpp : no more supported - would need external app
* CDTrack.cpp : include correct file
* uidcontrol.h : no more needed
* rootwrapper.c : new rootwrapper
* appmacros.h : new macros
* ConfSCSIWidget.cpp : use /dev/sr* instead of /dev/scd* (devfs)
2001-08-10 Alexander Feigl <Alexander.Feigl@gmx.de>
* *.cpp : include mocs
* ProjectFromDirWidget.h : avoid double inclusion
2001-08-09 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFileInfo.cpp : don't call validateFile anymore because it
does X11 action
2001-08-08 Alexander Feigl <Alexander.Feigl@gmx.de>
* WaveView.* : new widget to view audio waves
* WaveData.* : base clase for wave data
* AudioWaveData.* : wave data class for audio files
* AudioFileOp.h : make much methods public
step 1 to make AudioFileOp non process
* AudioOptions.* : adapt for WaveView - keep display in sync
* TrackWindow.cpp : adapt for WaveView
2001-08-03 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.cpp : calculate ISO size if not available
* IsoImage.* : report size invalidation events
* IsoFile.* : report size invalidation events
2001-08-02 Alexander Feigl <Alexander.Feigl@gmx.de>
* PipeCopy.cpp : buffering improvements
* VorbisConverter.cpp : - fix buffering bug - great CPU usage drop
- display progress info
* AudioConversion.cpp : preset track size
* AudioConverter.h : make startTrack public
2001-07-31 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFileFormat.* : early CD track setup
* AudioFileInfo.* : early CD track setup
* CDTrack.cpp : early CD track setup
* Tools.cpp : early CD track setup
* TrackWindow.cpp : early CD track setup
* .cvsignore : make AdvancedInfo for .cvsignore
2001-07-31 Joweph Wenninger <jowenn@kde.org>
* AdvancedWidget.cpp : Info Widget + interview update connections
* AdvancedInfo.ui : Info Widget
2001-07-29 Joseph Wenninger <jowenn@kde.org>
* IsoWidget.* : Constructor has a flag now for hiding the source tree
* ProjectAdvancedWidget.cpp : Shows IsoWidget now too, but no list updates yet
* TrackListManager.cpp : A function added to get a track's sourcetype
2001-07-21 Joseph Wenninger <jowenn@kde.org>
* TrackListManager.* : preperations for startupscreen
* StarupScreen_skel.ui : UI for the startupscreen (with KIconLoader)
* StartupScreen_skel_bak.ui : UI with embedded images
* StartupScreen.* : StartupScreen class
2001-07-21 Alexander Feigl <Alexander.Feigl@gmx.de>
* Makefile.am : format plugin changes
* FormatPlugin.h : dynamic loading changes
: AudioFileFormat.* : dynamic loading changes
* Makefile.am : merge oggvorbis.m4.in into acinclude.m4
* oggvorbis.m4 : ogg and vorbis configure test
2001-07-20 Alexander Feigl <Alexander.Feigl@gmx.de>
* ProcessInterface.cpp : only set isKilled if process exists
* CDTrack,cpp : - fix iso 9660 destruction crash
- calculate track size when loading
* IsoImage.cpp : - fix iso 9660 loading
* startup.cpp : - apply Marcel's patch to fix no-SUID
root message
2001-07-19 Niels Reedijk <nielx@kde.nl>
* ConfigPathWidget_skel.ui : Spelling fixes
2001-07-19 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioBuildImage.* : API cleanup
* AudioConversion.* : API cleanup
* AudioConverter.* : API cleanup
* AudioFileInfo.* : new file, API cleanup
* AudioFileConvert.* : API cleanup
* AudioFileFormat.* : API cleanup
* AudioFlleOp.* : API cleanup
* AudioFileIdentify.* : API cleanup
* AudioOptions.* : API cleanup
* AudioPlayImage.* : API cleanup
* AudioScanImage.* : API cleanup
* CDTrack.* : API cleanup
* MainWindow.* : API cleanup
* PipeCopy.cpp : API cleanup
* ProjectAdvancedWidget.cpp : API cleanup
* Tools.cpp : API cleanup
* TrackWindow.cpp : API cleanup
* startup.cpp : API cleanup
* Makefile.am : update Makefile
* AuIdentfy.* : moved to plugin dir
* WavIdentify.* : moved to plugin dir
* MP3Identify.* : moved to plugin dir
* MP3Converter.* : moved to plugin dir
* AudioFile.* : renamed, API changes
* FormatPlugin.h : new header for format plugins
* plugins : new directory
* plugins/mp3 : new directory
* plugins/mp3/MP3Plugin.cpp : mp3 plugin header
* plugins/au : new directory
* plugins/au/AuPlugin.cp p : au plugin header
* plugins/wav : new directory
* plugins/wav/MP3Plugin.cpp : wav plugin header
* plugins/vorbis : new directory
* plugins/vorbis/VorbisPlugin.* : vorbis plugin header
* VorbisIdentify.cpp : voribs identification
* VorbisConverter.cpp : vorbis converter
2001-07-16 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.cpp : converted CD tracks should be possible
* AudioFileFormat.cpp : fix one nasty "attribute not
initialized" problem.
* README : compilation note for problems when
there are more than one versions of a
helper app installed
2001-07-14 Alexander Feigl <Alexander.Feigl@gmx.de>
* WriteDialog.cpp : move non-UI stuff out
* CDWriter.cpp : - add non-UI stuff from WriteDialog
- new improved API
- calculate correct tracksizes
- support total progress bar
- use needFile
* AudioBuildImage.* : - fix image file deletion
- piping support
* AudioConversion.* : - remove unneccessary parameter
- support passing filename
* AudioConverter.cpp : adapt to AudioConversion changes
* ProgressDialog.* : support automatic update of 2nd
progress
* ProcessInterface.* : - add signal for second progress
information
- set isKilled to 0 when preparing
Process
* CDParanoia.cpp : fix for "total progress"
* CDDA2Wav.cpp : - fix for "total progress"
- remove rename debugging msg
* AudioFile.* : - add needFile method
- add getSourceName method
- add getConverter method
- adapt to new APIs
* AudioFileOp.* : - support writing pipes
- support reading pipes
* CDTrack.* : - add needFile method
- fix needImage for CD source with
boosting/balancing
- make on-the-fly burning for ISO 9660
mastering possible
- make .wav burning work
- make .mp3 / converted audio work
* PipeCopy.cpp : use const strings
* AudioFileConvert.* : - support piping
* CDRWBlank.cpp : set correct blanking speed
2001-07-13 Alexander Feigl <Alexander.Feigl@gmx.de>
* PipeCopy.* : allow more than one pipe pair per
process/instance
to reduce the number of running
processes
* CDTrack.* : changes/API changes for new PipeCopy
* CDWriter.cpp : API changes : set burning tracks etc.
with a seperate
call - store them in object. This
allows calling methods
which report/check something with this
parameters
* WriteDialog.cpp : - use new PipeCopy
- use new CDWriter.cpp
2001-07-11 Alexander Feigl <Alexander.Feigl@gmx.de>
* AppChooser.* : add on the fly setting for AudioRipper
selection
* CDTrack.* : add on the fly stuff
* CDWriter.* : add on the fly stuff
* WriteDialog.* : add on the fly stuff
* PipeCopy.* : new ProcessInterface class to copy
pipes
* Makefile.am : add PipeCopy to Makefile
2001-07-10 Alexander Feigl <Alexander.Feigl@gmx.de>
* BurnerWidet.cpp : get on the fly flag
* ConfigBurnerWidget.* : add checkbox for on the fly
2001-07-09 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.* : use passed progress dialog
* WriterDialog.* : - calc free space, build images
- reuse progress dialog
- add fifo % and whole CD-R % (not
working yet)
* MainWindow.cpp : doesnt build images any more
* CDWriter.cpp : - adapt method for getting free space
- report fifo %
* ProcessInterface.cpp : change for fifo buffer reporting
* ProgressDialog.cpp : - support 3 progress bars and titles
- support fifo buffer display
2001-07-08 Alexander Feigl <Alexander.Feigl@gmx.de>
* kreatecd/*.* : merge new ProcessInterface changes
too many files changed to list
* IsoImage.* : fix compilation errors
* DataRipper.* : fix compilation errors
* AudioRipper.* : fix compilation errors
2001-07-08 Niels Reedijk <nielx@kde.nl>
* doc/en/kreatecd/index.docbook : We're in valid XML now ...
2001-06-28 Joseph Wenninger <jowenn@kde.org>
* IsoWindow.cpp : Can't remember
* MainWindow.* : Cleanup of old, unused functions
* ProjectAdvancedWidget.* : not working yet
* ProjectFile.cpp : Cleanup
* kreatecd/TrackListManager.* : Additional functions for the views to retrieve
track information
* startup.cpp : just changed my email address
2001-06-26 Joseph Wenninger <jowenn@kde.org>
* ProjectAdvancedWidget.* : added (don't useable yet)
uses libkonqlistview for the source tree and if kdebase isn't installed
the classic tree as a fall back
* kreatecdrc : Keeps default config values for the Advanced Project
* IsoWidget.* : Adaptions for use in the IsoWindow
* IsoWindow.* : First step to reduce code redundancy, uses now the IsoWidget
* NewProjectDialog.* : Some eye candy stuff
* TrackListManager.* : adaptions for the Advanced Project
2001-06-24 Joseph Wenninger <jowenn@kde.org>
* acinclude.m4.in
am_edit : Now compilation on pure KDE 2.2 installations
doesn't fail, if there is no kdb2html now
KDE2.2's methode with meinproc is used.
Documentation files, which are created are not
working though, since there seems to be a new
dtd in KDE2.2.
I hope this doesn't break installations (don't have
an older KDE to test)
* *.ui : added additional entries to these files, now they work
even
if QT was compiled without KDE support. You just can't edit them
in the designer than
2001-05-10 Niels Reedijk <nielx@kde.nl>
* WriteDialog.* : Let it compile under KDE 2.0
That version doesn't know KPushButton
* CdDataWidget.* : Added a method to change the
percentage
2001-05-03 Joseph Wenninger <jowenn@kde.org>
* CDTrack.* : first step to a save image function
* ProjectFromDir*.* : save image
2001-05-02 Joseph Wenninger <jowenn@kde.org>
* ProjectFromDirExt_skel.ui : some ui stuff
* WriteDialog.cpp : some ui stuff
* ProjectFromDirExt.* : write button works now
2001-05-01 Joseph Wenninger <jowenn@kde.org>
* ProjectFromDirWidget.* : creation of new widget
* TrackListManager.cpp : small adaption for ProjectFromDirWidget
* ProjectFromDirExt_skel.ui : helper GUI
* kcd_konqy.desktop : Menu entry for RMB for folders in konqy
2001-05-01 Niels Reedijk <nielx@kde.nl>
* .cvsignore : ignore *_skel.cpp and
*_skel.h
* ConfigBurnerWidget.* : Moved to a new widget design
& now incorporates the
Qt designer
* MainWindow.cpp : Remove an unnessecery
include
* Makefile.am : Make the
ConfigBurnerWidget_skel.ui too
2001-04-30 Joseph Wenninger <jowenn@kde.org>
* ProjectFromDirWidget.h : just added to stop CVS bitching
* ProjectFromDirWidget.cpp : just added to stop CVS bitching
* ConfigSCSIWidget_skel.ui : just added, not used atm
* ConfigPathWidget_skel.ui : added and used
* Many files changed : most files include ".moc" files now, speeds up
compilation
2001-04-29 Niels Reedijk <n.reedijk@planet.nl>
* CdDataWidget.* : A new widget, which can
show how full a CD is (graphical)
* Makefile.am : Compile
CdDataWidget.cpp
2001-04-28 Joseph Wenninger <jowenn@kde.org>
* IsoWidget.* : Multisession should
work now
* IsoWindow.cpp : usage of KMessageBox
* NextWritable.cpp : usage of KMessageBox
* ProjectCDCopyWidget.* : layout + reread should work now
* ProjectSingleDataWidget.cpp : now there shouldn't stay any temp files
on app shutdown
* TrackListManager.* : some additions for
ProjectCDCopyWidget + small fix
* kreatecd/kreatecd/startup.cpp : added an option to the help
(but not implemented yet)
2001-04-27 Jospeh Wenninger <jowenn@kde.org>
Just added the temporarily removed stuff
2001-04-23 Joseph Wenninger <jowenn@kde.org>
Sorry seems I forgot to add the ProjectCDCopyWidget.* files, removed them now
temporarily from build
2001-04-22 Joseph Wenninger <jowenn@kde.org>
* ProjectCDCopyWidget.* : First step to CD-Copy project (not really
usefull yet)
* IsoWidget.cpp : smaller fixex
* TrackListManager.* : support for ProjectCDCopyWidget
2001-04-21 Alexander Feigl <Alexander.Feigl@gmx.de>
* WriteDialog.cpp : use methods to get settings
* ConfigBurnerWidget.* : - fix compilation
- fix speed selection
- provide methods to get attr
2001-04-12 Niels Reedijk <n.reedijk@planet.nl>
* ConfigBurnerWidget.* : Save default burn-options and select them
in
this dialog.
* WriteDialog.* : This dialog now uses ConfigBurnerWidget
and
its defaults for the options.
2001-04-12 Joseph Wenninger <jowenn@bigfoot.com>
* FileTree.* : DnD now works directly under the pointer now
2001-04-05 Joseph Wenninger <jowenn@bigfoot.com>
* Add / remove should work in Single Track now, but
it's not tested enough. Don't risk CDs
* Copy-CD type added, but not implemented
2001-03-28 Joseph Wenninger <jowenn@bigfoot.com>
* TrackListManager.cpp : DND now supports audio/basic (.au ....)
2001-03-24 Alexander Feigl <Alexander.Feigl@gmx.de>
* configure.in.in : improve configure, test for readcd
* CDTrack.cpp : use AppChooser to get DataRipper
* AppChooser.cpp : use readcd for ripping if possible
* ReadcdRipper.cpp : new class for readcd ripping
2001-03-23 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFileOp.cpp : fix big endian case of readLELong
2001-03-22 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFile.h : new codecs
* AudioFileOp.* : new codecs
* AudioIdentify.* : new codecs
* WavIdentify.cpp : support new codecs
* AuIdentify.cpp : support new codecs
2001-03-20 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDDA2Wav.cpp : fix progress detection
* AudioFileConvert.cpp : seperate class for sound system
* AudioDevice.cpp : seperate class for sound system
* AudioPlayImage.cpp : seperate class for sound system
* AudioFileOp.cpp : remove unneeded header
* BusScanner.cpp : workaround no longer needed
* AuIdentify.* : new class for au files
* configure.in.in : cleanup for portability
* AudioConverter.cpp : cleanup
* FileTree.cpp : cleanup
* IsoOptions.cpp : cleanup
* MainWindow.cpp : cleanup
* NewProjectDialog.cpp : cleanup
* TOCReader.cpp : cleanup
* TrackDialog.cpp : cleanup
* TrackListManager.cpp : cleanup
* trackview_part.cpp : cleanup
* AudioFile.h : add unsigned PCM
* AudioIdentify.cpp : add unsigned PCM
* AudioFIleOp.* : add functions for unsigned
* AudioFileFormat.cpp : add au identify
* WavIdentify.cpp : fix 8 bit unsigned mode
2001-03-06 Alexander Feigl <Alexander.Feigl@gmx.de>
* configure.in.in : improve build for mdk
2001-03-03 Alexander Feigl <Alexander.Feigl@gmx.de>
* .h : fix enable-final
2001-03-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* TrackDialog.cpp : fix track dialog - display audio again
* AudioFile.cpp : fix audio track burning for CD source
2001-02-28 Alexander Feigl <Alexander.Feigl@gmx.de>
* ISOOptions.cpp : commit patch from Guillaume Laurant to
improve look
* Makefile.am : fix install for mdk RPM
* admin : update to KDE 2.1 admin
2001-02-24 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.cpp : update need image when change bal / vol
2001-02-23 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioConversion.cpp : pad file for CD-R
* MP3Identify.cpp : report size that matches for CD-R
* CDTrack.cpp : support AudioFile getBurnFile()
* AudioFile.* : new getBurnFile()
* it/kreatecd.po : fix po file
2001-02-21 Niels Reedijk <n.reedijk@planet.nl>
* TrackListManager.cpp : compile fix (forgot a t, Joseph)
* kreatecd.kdevprj.in : update to reflect current sources
* ConfigPathWidget.* : you can now define the mpg123 path
* srcdir/trackviewpart : trackviewpart added, however; it is not
usable yet
2001-02-11 Joseph Wenninger <jowenn@bigfoot.com>
* TrackListManagar.* : cleanup on exit fix + SingleData adaption
* kcd_remove.png : added (from KDE iconset)
* kcd_folder_new.png : added (from KDE iconset)
* IsoWidget.* : some additions / not working completely
yet
* index.docbook (en) : Some additions
2001-02-10 Niels Reedijk <n.reedijk@planet.nl>
* TrackListManager.cpp : check if restored, then no new project
dialog
2001-02-10 Alexander Feigl <Alexander.Feigl@gmx.de>
* WriteDialog.cpp : support more recording speeds
2001-02-07 Alexander Feigl <Alexander.Feigl@gmx.de>
* IsoImage.cpp : fix "strict permissions"
* startup.cpp : fix "strict permissions"
* MP3Converter.cpp : fix "strict permissions"
* configure.in.in : improved configure
* Makefile.am : improved configure
* AudioRipper.cpp : adapt to new configure
* BusScanner.cpp : adapt to new configure
* CDDA2Wav.cpp : adapt to new configure
* CDParanoia.cpp : adapt to new configure
* CDRWBlank.cpp : adapt to new configure
* CDWriter.cpp : adapt to new configure
* ConfigPathWidget.cpp : adapt to new configure
* DataRipper.cpp : adapt to new configure
* IsoImage.cpp : adapt to new configure
* MP3Converter.cpp : adapt to new configure
* NextWritable.cpp : adapt to new configure
* ProcessInterface.cpp : adapt to new configure
* TOCCdda2wav.cpp : adapt to new configure
* TOCCdrecord.cpp : adapt to new configure
* TOCReader.cpp : adapt to new configure
* uidcontrol.h : adapt to new configure
2001-02-06 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFileFormat.cpp : only compile mp3 when mpg123 was found
* MP3Identify.cpp : ""
* MP3Converter.cpp : "" + use autodetected path
* WriteDialog.cpp : warn for data tracks at position > 1
* configure.in.in : bump version to 0.9.0
* README : updated readme
* kreatecd/Makefile.am : fix "make messages"
* kreatecd.pot : updated
* *.po : merged
2001-02-05 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioConversion.* : modularization updates
* AudioConverter.* : modularization updates
* AudioIdentify.* : modularization updates
* MP3Identify.* : modularization updates
* WavIdentify.* : modularization updates
* MP3Converter.* : add progress bar handling
2001-02-04 Joseph Wenninger <jowenn@bigfoot.com>
* IsoWidget.* : added
* ProjectSingleDataWidget.* : added
* FileTree.* : new signal for setting image dirty after
DND
* IsoWindow.* : new slot for setting image dirty
after DND
* ProjectClassicWidget.* : GPL notices added
* NewProjectDialog.h : GPL notice added
* TrackListManager.* : adaptions for future
ProjectSingleDataWidget.*
2001-02-04 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDWriter.* : add check for previous sessions
* TrackDialog.* : adapt dialog for MS-choice
* IsoWindow.cpp : call MS-specialized dialog
* WriteDialog.cpp : do some sanity checks
* MP3Identify.cpp : fix for non-cdr format mp3
2001-02-03 Alexander Feigl <Alexander.Feigl@gmx.de>
* IsoWindow.cpp : multisession improvements
2001-02-02 Niels Reedijk <nielx@kde.nl> again
* startup.cpp : update to commandline options (no need for -f
anymore)
* MainWidget.cpp : commandline update
* TrackListManager.cpp : commandline update
2001-02-02 Niels Reedijk <nielx@kde.nl>
* startup.cpp : accept commandline options
* MainWindow.* : idem
* Fork.cpp : compile fix
* Projectfile.cpp : update for commandline options
* TracklistManager.cpp : update for commandline options
* Configdialog.cpp : a fix for whatsthis (had the wrong widget)
* Makefile.am : install the kreatecd type
* Kreatecd.desktop : start with file from konq. Doesn't work!
* x-kreatecd.desktop : the filetype
2001-02-02 Alexander Feigl <Alexander.Feigl@gmx.de>
* IsoFile.* : escape character handling
* D*.* : reident
* F*.* : reident
* I*.* : reident
* L*.* : reident
* M*.* : reident
* N*.* : reident
* P*.* : reident
* startup.cpp : reident
* T*.* : reident
* W*.* : reident
2001-01-29 Alexander Feigl <Alexander.Feigl@gmx.de>
* B*.* : reident
* C*.* : reident
2001-01-29 Joseph Wenninger <jowenn@bigfoot.com>
* LineDialog.* : changed to KDialogbase
+ corrected return values
* IsoWindow.cpp : canceling create dir supported
2001-01-28 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioConverter.* : prepare for dynamic modules
* AudioConversion.* : new conversion class
* MP3Converter.* : adapt to new AudioConverter
* MP3Identify.* : adapt to new AudioConverter
* AudioFile.cpp : adapt to new AudioConverter
* AppChooser.* : reident
* Audio*.* : reident
2001-01-27 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFile.cpp : MP3 conversion improvements
* CDTrack.cpp : MP3 conversion inmpovements
* DeviceRipper.cpp : get rid of null
* MP3Identify.cpp : scan more bytes to detect all Mp3
* configure.in.in : add config detection for mpg123
* MainWindow.cpp : remove unused vars
* IsoImage.cpp : fix crash when canceling isotree
2001-01-26 Joseph Wenninger <jowenn@bigfoot.com>
* ProjectClassicWidget.cpp : removed one debug output
* TopWidget.cpp : Reinserted setCaption
* TrackListManager.cpp : Added support for Audio mode to
addTrack()
* TrackWindow.* : Partly support for audio only projects
2001-01-15 Alexander.Feigl <Alexander.Feigl@gmx.de>
* MP3Identify.* : add first real MP3 identify
2001-01-14 Alexander.Feigl <Alexander.Feigl@gmx.de>
* AudioFileOp.* : add backRead
* AudioIdentify.* : add backRead
2001-01-12 Alexander.Feigl <Alexander.Feigl@gmx.de>
* AudioFileFormat.* : move file identify code to own classes
* AudioIdentify.* : file identify base class
* WavIdentify.* : WAV identify code
* MP3Identify.* : MP3 identify code
* AudioFile.h : adaptions for new code
* AudioFileOp.h : adaptions for new code
2001-01-07 Joseph Wenninger <jowenn@bigfoot.com>
* TrackListManager.* : added to missing slots
* kcd_projecttype_config.png : add image for configdialog
2001-01-05 Joseph Wenninger <jowenn@bigfoot.com>
* ProjectClassicWidget.* : added -> encapsulates the current
KreateCD Listview / Button interface
* ConfigProjectType.* : Module for the configuration dialog,
default projectType, bypass startup dialog
* ConfigDialog.* : adaptions for ConfigProjectType.*
* MainWindow.* : adaptions for TrackListManager,
ProjectClassicWidget
* Tools.cpp : adaptions for TrackListManager,
ProjectClassicWidget
* ProjectFile.cpp : adaptions for TrackListManager,
ProjectClassicWidget
* TrackListManager.* : moved most low-level
tracklist handling here
* TrackListView.* : adaptions for ProjectClassicWidget.* usage
* NewProjectDialog.* : changes for startup bypassing
* Makefile.am : adaptions for additional files
* startup.cpp : added myself to the authors list
2000-12-28 Alexander.Feigl <Alexander.Feigl@gmx.de>
* AudioConverter.cpp : further mp3 updates
* MP3Converter.cpp : further mp3 updates
* AudioFile.cpp : only convert once
* AudioFileFormat.cpp : fix FileName,OrigFileName
* TrackWindow.cpp : do window updates
* CDTrack.h : make createName public
2000-12-27 Alexander.Feigl <Alexander.Feigl@gmx.de>
* AudioOptions.cpp : delete AudioPlayer only if available
* ProcessInterface.cpp : init outputTimer with 0 at constructors
* AudioFile.* : adaptions for mp3 support
* AudioFileFormat.cpp : adaptions for mp3 support
* CDTrack.cpp : adaptions for mp3 support
* Tools.cpp : adaptions for mp3 support
* TrackWindow.cpp : adaptions for mp3 support
* AudioConverter.* : new class for mp3 support
* MP3Converter.* : new class for mp3 support
2000-12-25 Joseph Wenninger <jowenn@bigfoot.com>
* TopWidget.* : changed to use KDE2's KAction/KStdAction mechanism
for menu creation. Menu structure is now defined in
kreatecdui.rc
* TrackListView.* : Accepts now drops of local files (eg ISO-images)
* TrackListManager.* : Handles now the dropped files
* NewProjectDialog.* : Prototype added.
Niels Reedijk <nielx@kde.nl>
* startup.cpp : If there are path problems, it now asks if it should open
the configuration dialog.
* ConfigDialog.cpp : Added some whatsthis and tooltips
* kreatecd.kdevprj.in: Updated to contain the newest sources
* po/Makefile.am : I was messing around in the wrong source dir, and I have
added a merge option. It works
* *.po : The po files weren't up to date! (updated with the make merge)
2000-12-22 Alexander Feigl <Alexander.Feigl@gmx.de>
* startup.cpp : change URL of kreatecd homepage
* kreatecd.lsm : change URL of kreatecd homepage
2000-12-21 Joseph Wenninger <jowenn@bigfoot.com>
* TrackListManager.* : Eventually implemented up and down movement
of items with the mouse in the main window
* TrackListView.* : (Commited earlier)
Replacement for the listview in the mainwindow
* MainWindow.* : (Commited earlier)
Adopted to use the new TrackListView class
2000-12-18 Alexander Feigl <Alexander.Feigl@gmx.de>
* startup.cpp : call destructor for KApp and KAboutData
2000-12-13 Alexander Feigl <Alexander.Feigl@gmx.de>
* ConfigDialog.cpp : do sync when apply settings
* ProcessInterface.cpp : fix hang while SCSI scan without cdrecord
2000-12-09 Alexander Feigl <Alexander.Feigl@gmx.de>
* *.cpp : FALSE->false TRUE->true
* ConfigDialog.cpp : newline at EOF to fix compiler warning
* TopWidget.cpp : reenable help menu
* startup.cpp : create KApp and KAboutData on heap
2000-12-09 Niels Reedijk <nielx@kde.nl>
* ConfigDialog.* : -Added ISOOptions dialog
: -Fixed slotOK to slotOk
: -Fixed a bug when saving
: -Added some Page titles
(a KDialogBase thing)
* IsoOptions.* : Prepared it for ConfigDialog
* Config* : Made applySettings() a public
method instead of a public
slot
2000-12-06 Niels Reedijk <nielx@kde.nl>
* TopLevel.cpp : Remove menu entries of the old config
system and added a new one
* MainWindow.cpp : Removed old ConfPath entry and added
a new one for ConfigDialog
* ConfPath.* : Removed ConfPath.cpp and .h
* ConfigPathWidget.*: Added this one, to be used in ...
* ConfigDialog.* : this one.
* Makefile.am : To support the new files
2000-12-05 Alexander Feigl <Alexander.Feigl@gmx.de>
* MainWindow.cpp : remove compiler warning
Joseph Wenninger <jowenn@bigfoot.com>
* FileTree.cpp : DND feature
* ISOWindow.cpp : build caption with stdCaption
2000-11-27 Alexander Feigl <Alexander.Feigl@gmx.de>
* ConfPath.cpp : fix widget disabling for user mode
* configure.in.in : remove specs directory in configure
2000-09-12 Alexander Feigl <Alexander.Feigl@gmx.de>
* pics : converted .xpm to .png
* po files : recode to UTF-8 if needed
* MainWindow.cpp : use new layout
* TopWidget.cpp : adapt layout
2000-09-11 Alexander Feigl <Alexander.Feigl@gmx.de>
* admin : update "admin" dir
* configure.in.in : drop KDE 1.x support
* *.cpp , *.h : get rid of QT_VERSION ifdefs
* kreatecd.kdelnk : get rid of KDE 1.x kdelnk file
* TopWidget.cpp : port to KMainWindow
* startup.cpp : use KAboutData
* MainWindow.cpp : remove help menu handling
* AboutWindow.cpp : removed
* kreatecd.xpm : removed xpm image
* mini-kreatecd.xpm : removed xpm image
* hi32-app-... : add images
* kreatecd.desktop : update desktop file
2000-08-11 Alexander Feigl <Alexander.Feigl@gmx.de>
* admin : no admin directory - fixed for KDE 1
* configure.in.in : fix for new admin
2000-08-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* ProcessInterface.cpp : KDE 2.0 fix to run under root
2000-07-10 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.cpp : fix when get no ripper
* AppChooser.cpp : use available apps only
* AudioFileOp.cpp : make oss part more portable
2000-07-09 Alexander.Feigl <Alexander.Feigl@gmx.de>
* CDDA2Wav.cpp : new class - cdda2wav support
* AppChooser.cpp : choose cdda2wav for testing
* CDTrack.cpp : use AppChooser
* update configure scripts to support compile without
cdparanoia or cdda2wav
* update project file
2000-06-29 Alexander Feigl <Alexander.Feigl@gmx.de>
* update Italian locales
* configure.in.in : require latest cdrecord snapshot
* IsoImage.cpp : use graft-pointers - no dummy file
2000-06-28 Alexander Feigl <Alexander.Feigl@gmx.de>
* ProcessInterface.cpp : fix for audio dialog crashes
2000-06-24 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.cpp : place hooks to set image size
* TrackWindow.cpp : pass CDTrack to ISOWindow
* ISOWindow.cpp : set track size, update when closing
handling of MS virtual ISO tree objects
* FileTree.cpp : add support for "virtual" CD objects
* IsoImage.cpp : methods to get MS info
* kcd_cd.xpm : added xpm
2000-06-05 Alexander Feigl <Alexander.Feigl@gmx.de>
* NextWritable.cpp : add new class which will read the next
writable address
* ISOImage.cpp : call mkisofs suid root when neccessary
* ISOWindow.cpp : use next writable address in multisession
(ms should work now)
2000-06-04 Alexander Feigl <Alexander.Feigl@gmx.de>
* AppChooser.cpp
* TOCReader.cpp
* TOCCdda2wav.cpp
* TOCCdrecord.cpp : allow to read from CD writer
* ISOImage.cpp : add support to set/save multisession
add part of multisession image building
* ISOWindow.cpp : add "add session" button
2000-06-03 Alexander Feigl <Alexander.Feigl@gmx.de>
* FileTree.cpp
* IsoWindow.cpp : double click adds file
* IsoWindow.cpp
* IsoImage.cpp : iso size calculation
* IsoFile.cpp
* IsoImage.cpp : use -path-list for image creation - makes
it possible to use symlinks and build of
trees on VFAT partitions
2000-06-02 Alexander Feigl <Alexander.Feigl@gmx.de>
* AboutWindow.cpp : remove postal address
* po files : final fixes
* configure.in.in : bump version to 0.4.0
* startup.cpp : ensure to drop root rights before
KApp is created
2000-05-30 Alexander Feigl <Alexander.Feigl@gmx.de>
* various files : change locale->translate to i18n
related changes
* de kreatecd.po : put charset information in
2000-05-29 Alexander Feigl <Alexander.Feigl@gmx.de>
* TopWidget.cpp : change "Exit" menu reaction to fix crash
when leaving via popup menu
fix main window geometry
fix column geometry
* MainWindow.cpp : fix main window geometry
fix column geometry
* TrackWindow.cpp : update URL handling to KDE 2.x
* ConfPath.cpp : update URL handling to KDE 2.x
* ProjectFile.cpp : update URL handling to KDE 2.x
2000-05-20 Lars Gusewski <Lars.Gusewski@gmx.de>
* Kreatecd.po : german translation updated
2000-05-19 Alexander Feigl <Alexander.Feigl@gmx.de>
* IsoImage.cpp : fix "all files" option
2000-05-18 Alexander Feigl <Alexander.Feigl@gmx.de>
* DeviceRipper.cpp : fix read error dialog
2000-05-14 Alexander Feigl <Alexander.Feigl@gmx.de>
* ChooseDialog.cpp : new class to choose within
different options
* DeviceRipper.cpp : adapt DeviceRipper to allow "Ignore all"
2000-05-13 Lars Gusewski <Lars.Gusewski@gmx.de>
* strings in project updated
2000-05-09 Lars Gusewski <Lars.Gusewski@gmx.de>
* Kreatecd.po : german translation finished
2000-05-08 Lars Gusewski <Lars.Gusewski@gmx.de>
* Kreatecd.po : german translation updated
2000-04-25 Alexander Feigl <Alexander.Feigl@gmx.de>
* IsoImage.cpp : fix for new cdrecord 1.8.1
* MainWindow.cpp : move main geometry savings to TopWidget
* TopWidget.cpp : save gemotry here
2000-04- Alexander Feigl <Alexander.Feigl@gmx.de>
* configure.in.in : fix configure problems
2000-03-22 Alexander Feigl <Alexander.Feigl@gmx.de>
* DeviceRipper.cpp : fix bug which was first identified as
cdda2wav TOC read problem. ISO size
read didn't support "moved" ISOs
* ProcessInterface.cpp : block timer when doing output - avoid
endless invocation when popup is
displayed
* TrackWindow.cpp : reverse accidental change (KFileDialog)
2000-03-21 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDWriter.cpp : don't display blank lines
* ProcessInterface.cpp : fix timer behaviour
* ProgressDialog.cpp : fix setProtected (compiler bug?)
* configure.in.in : configure scripts should now recognize
new cdrecord versions without errors
2000-03-02 Alexander Feigl <Alexander.Feigl@gmx.de>
* further release preparements
2000-03-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioBuildImage.cpp : ported to ProcessInterface
* AudioPlayImage.cpp : ported to ProcessInterface
* AudioScanImage.cpp : ported to ProcessInterface
* AudioFileConvert.cpp : added constructor for Fork mode
* AudioFileOp.cpp : added constructor for Fork mode
* ProcessInterface.cpp : added Fork mode support
added QTimer for LF-less output lines
* prepare for alpha release
2000-02-29 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFile.cpp : splitted in many different classes
* AudioFileFormat.cpp : NEW : file format scanning of AudioFile
* AudioFileConvert.cpp : NEW : sample conversion of AudioFile
* AudioScanImage.cpp : NEW : sample scanning of AudioFile
* AudioBuildImage.cpp : NEW : image building of AudioFile
* AudioPlayImage.cpp : NEW : image playing of AudioFile
* AudioFileOp.cpp : NEW : file operation of AudioFile
* AudioOptions.cpp : adapt to new AudioFile API
* CDTrack.cpp : adapt to new AudioFile API
* Fork.cpp : adapt to new AudioFile API
* Tools.cpp : adapt to new AudioFile API
* kreatecd.kdevprj.in : updated project file
2000-02-28 Lars Gusewski <Lars.Gusewski@gmx.de>
* AboutWindow.cpp : extension of copyright
2000-02-28 Alexander Feigl <Alexander.Feigl@gmx.de>
* TOCReader.cpp : class now virtual for child classes
* TOCCdda2wav.cpp : new child class
* TOCCdrecord.cpp : new child class
* AppChooser.cpp : class for choosing helper apps
* Tools.cpp : updates for new TOC scanning
* TrackWindow.cpp : updates for new TOC scanning
* TrackDialog.cpp : updates for new TOC scanning
* CDRWBlank.cpp : make child of ProcessInterface
* CDWriter.cpp : make child of ProcessInterface
* ISOImage.cpp : make child of ProcessInterface
* ProcessInterface : add some wrapper calls
2000-02-18 Alexander Feigl <Alexander.Feigl@gmx.de>
* DriveAccess.cpp : split into CDWriter and BusScanner
* CDWriter.cpp : new
* BusScanner.cpp : new
2000-02-17 Alexander Feigl <Alexnader:Feigl@gmx.de>
* updated kdevprj
* DataRipper.cpp : adapt to ProcessInterface and split
* DeviceRipper.cpp : /dev/* functions from DataRipper
integrated readiso.cpp
* readiso.cpp : outdated
2000-02-16 Alexander Feigl <Alexander.Feigl@gmx.de>
* ProgressDialog.cpp : further improvements
* ProcessInterface.cpp : create new base class for helper process
interaction
* AudioRipper.cpp : adapt to ProcessInterface
* CDParanoia.cpp : adapt to ProcessInterface
2000-02-11 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.cpp : class documentation and tiny
API adaptions - as well adaptions
for the DriveAccess splitting
* DriveAccess.cpp : moved out audio and data ripping
to seperate classes
* IsoImage.cpp : adaptions for new progress dialog
now need for non-modal any more
* ProgressDialog.cpp : first go for a double progress dialog
uses QWidget and own modal implementation
now to allow execution while show(ing)
* AudioRipper.cpp : NEW virtual base class for audio ripping
* CDParanoia.cpp : cdparanoia ripping from DriveAccess
* DataRipper.cpp : data ripping code from DriveAccess
2000-02-10 Alexander Feigl <Alexander.Feigl@gmx.de>
* configure.in.in : some simplifications
kreatecd now builds without wrapper script
* kreatecd.kdevprj : started with a first KDevelop project file
2000-02-06 Alexander Feigl <Alexander.Feigl@gmx.de>
* added configure tests for cdda2wav
* TOCReader.cpp : new class with TOC scanning
cdda2wav TOC scanning - improved API
* DriveAccess.cpp : moved TOC scanning to TOCReader.cpp
* CDTrack.cpp : adaptions for TOCReader class
* Tools.cpp : adaptions for TOCReader class
* TrackDialog.cpp : adaptions for TOCReader class
* TrackWindow.cpp : adaptions for TOCReader class
* ConfPath.cpp : make cdda2wav configurable
simplify path scanning
2000-01-31 Alexander.Feigl <Alexander.Feigl@gmx.de>
* added configure tests for cdrecord, mkisofs, cdparanoia
results will reside in pathconf.h
* configure change to set KDE_VERSION
* install icons in proper places
* changed README and docbook for new requirements
* ConfPath.cpp : change configuration for hardcoded apps
* DriveAccess.cpp : changes for hardcoded apps
* IsoImage.cpp : changes for hardcoded apps
* TopWidget.cpp : changes for CD-RW (menu)
* MainWindow.cpp : add blankMedia calls
* CDRWBlank.cpp : new class for CDRW-Blanking
2000-01-27 Alexander Feigl <Alexander.Feigl@gmx.de>
* added Swedish translation from
Mattias Newzella
* updated configure system -> configure.in.in
2000-01-25 Alexander Feigl <Alexander.Feigl@gmx.de>
* updated to new admin again
* updates for docbook
* FileTree.cpp : port KFileInfo -> QFileInfo
* IsoWindow.cpp : port KFileInfo -> QFileInfo
* ProgressDialog.cpp : fix for KDE 2.0
* Fork.h : make it compilable with new QT moc
* TopWidget.cpp : new file for toplevel widget
* MainWindow.cpp : port to TopWidget
* startup.cpp : adapt to TopWidget
1999-11-11 Alexander Feigl <Alexander.Feigl@gmx.de>
* updated to new official admin
1999-09-11 Alexander Feigl <Alexander.Feigl@gmx.de>
* configure cleanups
1999-17-10 Alexander Feigl <Alexander.Feigl@gmx.de>
* adapt to new KDE 2.0 api (getConfig() -> config())
* compile with NO_KIO_COMPATABILITY
* updated admin directory
1999-21-09 Alexander Feigl <Alexander.Feigl@gmx.de>
* startup.cpp : - fix for KDE 2.0
1999-11-09 Alexander Feigl <Alexander.Feigl@gmx.de>
* DriveAccess.cpp : - reimplement relaxed permissions
* ProgressDialog.cpp : - change weights - minimum size for view
* FileTree.cpp : - implement automatic unfolding
- change layout
* AboutWindow.cpp : - set button text correctly
* updated translation
* kreatecd.spec : - update for 0.3.0
* README : - reversed change log
* configure.in : - bumped version
* pics/Makefile.am : - do install in DESTDIR
* IsoFile.cpp : - fixed uninitalized pointer
- fixes for KDE 2.0
* IsoImage.cpp : - fixes for KDE 2.0
1999-10-09 Alexander Feigl <Alexander.Feigl@gmx.de>
* DriveAccess.cpp : - fix scanbus for new cdrecord1.8a26
output format
1999-01-09 Alexander Feigl <Alexander.Feigl@gmx.de>
* MainWindow.cpp : - fix window close event for ISO config
* IsoOptions.cpp : - finish config window
* IsoImage.cpp : - fix saveConfig for appID
- implementation of setImageRoot()
- implement track load/save
* IsoFile.cpp : - implementation of a "deep copy"
- implementation of getParent()
* CDTrack.cpp : - implement load/save for ISO image trees
1999-29-08 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFile.cpp : - moved inlined functions to header file
(fixes --enable-debug problems)
* IsoFile.cpp : - add method for saving KConfig
* IsoOptions.cpp : - add stuff for config window
* MainWindow.cpp : - add ISO configuration menu
1999-28-08 Alexander Feigl <Alexander.Feigl@gmx.de>
* ConfSCSI.cpp : - improve layout
- print ID for unused devices
* ConfPath.cpp : - improve layout
- use QLineEdit -> cycle chains
- add buttons to open file dialogs
* IsoOptions.cpp : - use QLineEdit -> cycle chains
1999-27-08 Alexander Feigl <Alexander.Feigl@gmx.de>
* FileTree.cpp : - port Icon -> BarIcon
- prefixed icons to avoid collisions
* AudioOptions.cpp : - port Icon -> BarIcon
- prefixed icons to avoid collisions
* pics : - prefix for icons
- added some icons
* icons : - move to pics
* kreatecd.spec : - updated spec file for new icons
* AudioFile.cpp : - don't pad to 4 seconds in play mode
* DriveAccess.cpp : - don't get root rights for cdparanoia /
reading data tracks. WARNING! User needs
r/w access to CDROM drives
- don't get root rights for tray open
workaround
- fix for strange cdrecord behaviour
(cdrecord child process hang around when
killing, hanging kreatecd)
* MainWindow.cpp : - put audio options in a seperate sub window
1999-18-08 Alexander Feigl <Alexander.Feigl@gmx.de>
* FileTree.cpp : - fix problems with KFileInfo
* configure.in : - update version
1999-09-08 Alexander Feigl <Alexander.Feigl@gmx.de>
* update autoconf stuff
* KMsgBox -> QMessageBox (KDE 2.0 port)
* KSlider -> QSlider (KDE 2.0 port)
* Makefile.am : make maintainerclean really clean
1999-26-07 Alexander Feigl <Alexander.Feigl@gmx.de>
* FileTree.cpp : - ported to QListView class
1999-06-07 Alexander Feigl <Alexander.Feigl@gmx.de>
* various files : - use new KDE configure system
: - fixes for QT 2.0 again
* ConfPath.cpp : - fix search in /opt/schily/bin
1999-25-05 Alexander Feigl <Alexander.Feigl@gmx.de>
* various files : - fixes for QT 2.0 again
1999-12-05 Alexander Feigl <Alexander.Feigl@gmx.de>
* ConfPath.cpp : - search binaries in /opt/schily/bin too
* kreatecd.spec : - added spec file (RPM packaging)
1999-06-05 Alexander Feigl <Alexander.Feigl@gmx.de>
* doc : - renamed "default" to "de"
1999-30-04 Alexander Feigl <Alexander.Feigl@gmx.de>
* FileTree.cpp : - fixes to make delete files work
* readiso.cpp : - fix for glibc 2.1
1999-21-04 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFile.cpp : - fixes for 8 bit wav files
1999-05-04 Alexander Feigl <Alexander.Feigl@gmx.de>
* IsoWindow.cpp : - adding a ok button to make it more intuitive
- adding delete button
* IsoOptions.cpp : - adding another OK button
* AudioOptions.cpp : - adding another OK button
* Makefile.am : - changed applnk location to Applications
* FileTree.cpp : - added method for object deletion
1999-16-03 Alexander Feigl <Alexander.Feigl@gmx.de>
* DriveAccess.cpp : - added methods to get CD-R capacity
- display cdrecord status through new status view
- work-around for tray-lock when cdrecord is aborted
* WriteDialog.cpp : - add dialog when data does not fit on CD-R
* ProgressDialog.cpp : - added support for "status view"
* TrackWindow.cpp : - remember last selected data file
1999-06-03 Alexander Feigl <Alexander.Feigl@gmx.de>
* DOZENS of fixes for QT 2.0
1999-20-02 Alexander Feigl <Alexander.Feigl@gmx.de>
* IsoImage.cpp : - added -sysid option for cdrecord 1.8-a17
to implement missing system identifer
setting
(sorry you need a upgrade now)
* AudioFile.cpp - setStartPos() and setEndPos() changed to
limit position range instead of simply ignoring
such positions
* MainWindow.cpp - added some calls to updateTrackSum() to reflect
the new track sum in all cases
1999-17-02 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFile.cpp : - building audio images sometimes seeked
beyond EOF and caused errors
* CDTrack.cpp : - mark all images dirty when loading a
project
1999-16-02 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.cpp : - change to display only selected duration
in project window
- added method to get real duration
(selected duration in audio tracks)
* MainWindow.cpp : - add project sum label
1999-26-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* IsoOptions.cpp : - fix for KDE 1.0 : KLined did not have a
null name in constructor
1999-18-01 David Hobley <davidh@wr.com.au>
* IsoFile.h : - defined IsoFileList (QList) after
base type because it didnt compile
under some compilers
* FileTree.h : - defined FileTreeItems (QList) after
base type because it didnt compile
under some compilers
1999-16-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* acinclude.m4 : - string said that it is scanning for
QT >= 1.40 , but needed QT >= 1.42
1999-13-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* FileTree.cpp : - reworked file scanning : only done
when item is expanded - needed a
dummy item to get expand button
- introduced some methods to allow
to add a bunch of items in one
run without AutoUpdate
- the directory list is sorted now
* IsoImage.cpp : - added command line parameters for
appID,prepID,pubID,sysID to mkisofs
How can I do SysID?
1999-10-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* FileTree.cpp : - display ISOObject ISO_RealDir as
a blue folder
- display ISOObject ISO_RealFile as
a blue "unknown.xpm"
* TrackWindow.cpp : - integrate ISOOptions window
- decode URL when selecting image file
- invalidate images when changes in
audio / ISO options are made
* ProjectFile.cpp : - decode URL in open / save project
* IsoOptions.cpp : - file added : widget to edit ISO options
* Tools.cpp : - invalidate images after boosting
* icons : - new directory for icons
* CDTrack.cpp : - return FALSE for empty tracks in
validateTrack()
* update translation files
1999-09-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* CDTrack.cpp : - adaptions to handle ISO image trees
- new method : setSourceFileSystem()
- new method : getISOImage()
* IsoWindow.cpp : - file added : window to edit ISO trees
* TrackWindow.cpp : - handle filesystem type (source selection)
- integrate ISOWindow
* IsoFile.cpp : - file added : class for ISO9660 files
* IsoImage.cpp : - file added : class for a ISO9660 image
* FileTree.cpp : - handle ISO image trees
* LineDialog.cpp : - file added : dialog with edit line
1999-08-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioOptions.cpp : - fix incorrect constructor for QSliders
* FileTree.cpp : - file added : directory tree widget
1999-08-01 David Hobley <davidh@wr.com.au>
* AudioFile.cpp : - small fix to compile under FreeBSD
1999-05-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioOptions.cpp : - Added cast when setting balance/volume
sliders (warning under gcc otherwise)
- Added update when values are changed
* DriveAccess.cpp : - Workaround added for cdrecord : SCSI
scanbus failed when CDR_DEVICE was set
- support for "eject after write"
* MainWindow.cpp : Listview sorting no longer needed -
caused problems on some systems
* readiso.cpp : used read() instead of ioctl() calls
until it is clear where it works -
should we use libschily?
* WriteDialog.cpp : added button for "eject after write"
* Fork.cpp : own implementation off writeStdIn() :
do syncronous writes
1999-05-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* AudioFile.cpp : Add functions to set/get selected range
* AudioFile.cpp : Add functions to change volume and
balance while playback
* AudioOptions.cpp : add balance and volume widgets /
add widgets to set selected range
* AudioFile.cpp : image file was padded with undefined
values
* CDTrack.cpp : save balance,boost and selected range
1999-04-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* DriveAccess.cpp : - Change autodetection for multiple hosts
- added range check in SCSI query methods
- fixed a hard coded constant instead of
MAX_SCSI_HOSTS in one place
- adapt readTOC() & burnCD() to multi host
* ConfSCSI.cpp : - Changes for multiple SCSI hosts
(major changes)
- adding spin boxes for SCSI host select
(major changes in layout)
- currect handling when no drive selected
* CDTrack.cpp : - handle pre-emphasize audio tracks correctly
* TrackWindow.cpp : enable option window for audio tracks
* AudioOptions.cpp : new widget for audio options
* AudioFile.cpp : major changes for audio playback (DSP)
* Makefile.am : add new source file AudioOptions.cpp
* pics : subdirectory added with some .xpm
1999-01-01 Alexander Feigl <Alexander.Feigl@gmx.de>
* first official release : 0.1.0
|