-
Notifications
You must be signed in to change notification settings - Fork 42
/
ChangeLog
3301 lines (2399 loc) · 98.5 KB
/
ChangeLog
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
2013-01-06 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/config.py:
* morituri/rip/cd.py:
* morituri/rip/drive.py:
Handle missing config better.
Fixes #111.
2013-01-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/config.py:
* morituri/rip/cd.py:
* morituri/test/test_common_config.py:
strip model/release too.
2012-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
* morituri/rip/cd.py:
feature: add %x for extension to track/disc template.
2012-12-22 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
feature: add %r/%R for release type to track/disc template.
* morituri/rip/image.py:
feature: add rip image rename to rename files based on metadata.
2012-12-22 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/musicbrainzngs.py:
* morituri/rip/debug.py:
Also store releaseType for disc metadata.
2012-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
add release id to output.
* morituri/rip/image.py:
add --release-id to rip image retag. Fixes #96.
2012-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/common.py:
Strip bitrate tags too for comparison of dicts.
Add a way to show us the different keys between dicts.
* morituri/common/encode.py:
Debug different keys.
2012-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/encode.py:
Collect all tags by replacing from newer tag messages.
Gets more than bitrate from flacs now.
2012-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
Add rip debug tag to debug reading tags.
2012-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/image.py:
Use getRealPath when retagging an image, fixes bug where it
doesn't find the files relative to the cuepath.
2012-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
* morituri/rip/cd.py:
* morituri/rip/image.py:
Add stdout to program. Use it for getting musicbrainz info.
2012-12-04 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/program/cdparanoia.py:
* morituri/test/test_program_cdparanoia.py:
Add a task that can analyze the drive for whether it defeats
the audio cache.
* morituri/result/result.py:
* morituri/rip/cd.py:
Make it possible to store whether a drive defeats audio cache
in the result.
* morituri/rip/drive.py:
Add rip drive analyze command to analyze caching of a drive,
and store it in the config.
2012-12-04 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/task.py:
Failed and done can stay unimplemented.
If we read stdout or stderr, reschedule immediately to process
all output before considering the possibility the program stopped.
2012-12-04 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/config.py:
Add methods to get/set defeating of audio cache.
Make sure that we set read offset even if section is already there.
2012-12-03 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/task.py:
* morituri/program/cdrdao.py:
Factor out a PopenTask base class.
2012-12-03 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
Store rip result after verifying AccurateRip so those results
are stored too.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/cd.py:
* morituri/result/result.py:
Store versions and encoding profile info in the rip result.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/test_common_gstreamer.py (added):
* morituri/common/gstreamer.py:
* morituri/test/Makefile.am:
add functions to get versions of gstreamer, gst-python,
and element factory plugins.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
add rip debug resultcache log command to generate a log
based on a cached result.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/common.py:
Remove migrated classes.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/cache.py:
Disable the version-based persistence deleting.
Allow not creating a fresh ripresult when getting one.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/cache.py:
* morituri/rip/debug.py:
* morituri/test/test_common_cache.py:
Add rip debug resultcache list to list cached results.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/cache.py (added):
* morituri/test/cache (added):
* morituri/test/cache/result (added):
* morituri/test/cache/result/fe105a11.pickle (added):
* morituri/test/test_common_cache.py (added):
* morituri/common/Makefile.am:
* morituri/common/program.py:
* morituri/test/Makefile.am:
Extract ResultCache object into separate file.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/drive.py:
rip drive list now shows configured read offset if applicable.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/cd.py:
Use configured read offset for drive if possible.
Fixes #76.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/main.py:
Add the config object to the root command.
* morituri/rip/offset.py:
Save the drive's read offset when we find it.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri.spec.in:
* morituri/common/config.py:
Use XDG if we can import xdg.
Fix writing the config.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/drive.py:
* morituri/rip/drive.py:
Extract getDeviceInfo function.
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/config.py (added):
* morituri/test/test_common_config.py (added):
* morituri/common/Makefile.am:
* morituri/test/Makefile.am:
First stab at adding a configuration file to store
drive read offsets.
2012-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
* morituri/rip/cd.py:
Reset rip duration when we continue a rip but have to rerip
a track.
2012-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
* morituri/program/cdparanoia.py:
* morituri/result/result.py:
Track ripping speed for test and encode per-track.
2012-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: mustbenice
* morituri/program/cdparanoia.py:
* morituri/result/result.py:
* morituri/rip/cd.py:
* morituri/test/test_program_cdparanoia.py:
Get cdparanoia version.
Store both cdparanoia and cdrdao versions on rip result.
2012-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/program/cdparanoia.py:
Make sure we calculate fractional speed.
2012-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: mustbenice
* morituri/common/program.py:
* morituri/program/cdparanoia.py:
* morituri/result/logger.py:
* morituri/result/result.py:
Calculate speed of reading track.
Output Test and Copy speed per track in log.
2012-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri.spec.in:
Add plugins directory.
2012-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/result/logger.py:
* morituri/result/result.py:
* morituri/rip/cd.py:
* morituri/rip/main.py:
Expose loggers as pluggable.
Add --logger option to rip cd rip to specify logger.
2012-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
* morituri/configure/installed.py.in:
* morituri/configure/uninstalled.py.in:
Create configure.configure.pluginsdir
2012-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
back to development.
=== release 0.1.3 ===
2012-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
* NEWS:
* README:
* RELEASE:
* configure.ac:
* morituri.doap:
Releasing 0.1.3, "cranes"
2012-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/encode.py:
Also remove buggy audio parsers when encoding.
Fixes #73.
2012-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/encode.py:
Use vbr-quality instead of quality for vbr. Fixes #94.
2012-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/image/cue.py:
* morituri/image/table.py:
* morituri/image/toc.py:
Fix pychecker warnings.
2012-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
Add %y to template for year. Fixes #98.
2012-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/common.py:
* morituri/common/program.py:
* morituri/image/table.py:
* morituri/rip/cd.py:
* morituri/test/test_common_common.py:
* morituri/test/test_image_toc.py:
Handle cases where disc_template and track_template are not in
the same directory.
2012-11-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/test_common_encode.py:
Work around https://bugzilla.gnome.org/show_bug.cgi?id=688625
2012-11-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/common.py:
Make tests log.
2012-11-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/common.py:
* morituri/image/cue.py:
* morituri/image/toc.py:
factor out getRealPath
2012-11-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/image/toc.py:
* morituri/test/test_image_toc.py:
Add test for getRealPath. Fix bug found by it for absolute paths.
2012-11-18 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/image/table.py:
* morituri/test/test_image_table.py:
* morituri/test/test_image_toc.py:
Increase coverage.
2012-11-18 Thomas Vander Stichele <thomas at apestaart dot org>
* Makefile.am:
* doc/Makefile.am:
Adapt to changing over to git module for python-command
2012-11-18 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/task/gstreamer.py:
Fix wrong commit made to fix #89.
2012-11-17 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/offset.py:
Don't let an exception on testing an offset slip pass.
Fixes #99.
2012-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/program/cdparanoia.py:
* morituri/rip/cd.py:
Add a number of tries to rip a track.
2012-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
* misc/pep8.py (added):
* Makefile.am:
Add pep8 target.
2012-08-12 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/task/gstreamer.py:
* morituri/test/test_common_checksum.py:
Protect backslashes in names. Fixes #89.
2012-08-12 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/drive.py:
If cdio.get_devices_with_cap finds a single drive, it returns a
str instead of a list. Work around that bug. Fixes #102.
* morituri/test/test_common_drive.py (added):
* morituri/test/Makefile.am:
Add test for it. Caught a bug in my first implementation, too!
2012-08-12 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/Makefile.am:
* morituri/common/checksum.py:
* morituri/common/encode.py:
Add a GstPipelineTask that lets us log.
Handle checksumming of small tracks better.
2012-07-12 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/main.py:
Handle EmptyError.
2012-07-12 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
Add encode debug.
2012-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
Use a temp var to make code more readable.
2012-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/result/logger.py:
Fix logging of AR data
2012-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
Tell us which track is not in the db.
2012-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/musicbrainzngs.py:
Handle multiple artists correctly.
2012-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: Christophe Fergeau <[email protected])
* morituri/common/program.py:
When morituri finds multiple matches for a given release, it only
keeps the releases whose length are the closest to the CD being
ripped.
However, this currently interacts badly with the --release-id
parameter because this duration filtering is done before trying to
do the release-id matching. The release that the user has specified
may have been removed from the potential matches by the time the
release
id match is tried.
This commit removes the duration filtering when the user explicitly
specified a release id. I've observed this bug with the first disc
of The Wall (Experience Edition) by the Pink Floyd.
Fixes #91.
2012-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: Christophe Fergeau <[email protected])
* morituri/common/program.py:
When --release-id is used, we are not making guesses based on the
CD lengths, so the message saying that we picked the closest match
in duration, which can still trigger, is inappropriate.
2012-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
* TODO:
* morituri/common/program.py:
* morituri/rip/cd.py:
Add rip cd rip --release-id as an option to select the exact
release this disc is a part of.
Fixes Radiohead - Pablo Honey and U2 - Achtung Baby
2012-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
Properly write utf-8 encoded strings to stdout.
2012-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
Actually return the result from verifyTrack.
Debug the cache loading some more. Make a note for a TODO.
2012-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/musicbrainzngs.py:
Get the artist credit for a track/album; Fixes Gorky - Gorky.
2012-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/checksum.py:
* morituri/common/program.py:
Fix/add logging.
2012-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri.spec.in:
Spec fix.
* morituri/image/image.py:
Log fix.
2011-10-29 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
Remove musicbrainz command.
2011-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
Doing a pre-release.
2011-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/test_common_program.py:
Remove use of musicbrainz module.
2011-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/Makefile.am:
Don't package old musicbrainz test.
2011-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/Makefile.am:
Hopefully fix both make and make distcheck.
2011-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/Makefile.am:
* morituri/test/morituri.release.3451f29c-9bb8-4cc5-bfcc-bd50104b94f8.json (added):
* morituri/test/test_common_musicbrainzngs.py (added):
Add test for previous bug of a release not having a date.
2011-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/main.py:
* morituri/common/musicbrainzngs.py:
* morituri/common/program.py:
* morituri/rip/cd.py:
Add -R option to rip to record API results for debugging.
2011-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/musicbrainzngs.py:
Fix case of metadata not having length.
Fix case of release not having a date.
2011-10-22 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/Makefile.am:
* morituri/common/musicbrainzngs.py:
* morituri/common/program.py:
* morituri/extern/Makefile.am:
Use musicbrainz NGS for ripping.
Can now rip Weezer, the Blue Album, both discs.
2011-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
* morituri/common/musicbrainzngs.py (added):
Rewrite using python-musicbrainz-ngs.
Add rip debug musicbrainzngs command for testing,
seems to work on Weezer - Blue Album - disc 2
2011-10-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/Makefile.am:
* morituri/extern/musicbrainzngs/musicbrainz.py (svn:special):
* morituri/extern/musicbrainzngs/mbxml.py (svn:special):
* morituri/extern/musicbrainzngs (added):
* morituri/extern/musicbrainzngs/mbxml.py (added):
* morituri/extern/musicbrainzngs/__init__.py (added):
* morituri/extern/musicbrainzngs/musicbrainz.py (added):
Pull in my fork of python-musicbrainz-ngs
2011-10-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/musicbrainz.py:
* morituri/rip/debug.py:
Doc/output fixes.
2011-10-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
Adapt to splitup.
2011-10-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
Add rip debug musicbrainz command to look up information on
disc id's.
2011-10-19 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/Makefile.am:
* morituri/common/musicbrainz.py:
* morituri/common/program.py:
* morituri/test/test_common_program.py:
* morituri/test/Makefile.am:
* morituri/test/test_common_musicbrainz.py (added):
* morituri/common/musicbrainz.py (added):
Split off musicbrainz-specific code.
2011-10-19 Thomas Vander Stichele <thomas at apestaart dot org>
* TODO:
* morituri/extern/task/task.py:
Instead of chaining next in multi tasks, making the call
chain larger (and exceed maximum depth on track 75), schedule
it immediately.
2011-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/Makefile.am:
Include test .xml responses.
2011-09-18 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/common.py:
Add shrinkPath to write shorter path names.
* morituri/test/test_common_common.py (added):
Add test.
* morituri/program/cdparanoia.py:
Catch ENAMETOOLONG and shrink path.
* morituri/common/program.py:
Update track result's filename if it was shrunk.
* morituri/rip/cd.py:
set the possibly shrunk path on the result.
2011-09-18 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/program/cdparanoia.py:
Log properly again.
Properly set exception when we can't rename the file.
2011-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/task/gstreamer.py:
Query using time if DEFAULT fails.
2011-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
Add Musicbrainz command.
2011-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
If any track is missing duration, set the whole album duration
to 0.
2011-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
flacparse is busted in gst-plugins-good 0.10.30 too.
2011-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
Don't fail if there is no metadata.
2011-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
* morituri/rip/debug.py:
Pychecker fixes.
2011-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
* TODO:
Add a note about das capital disc.
* morituri/test/release.08397059-86c1-463b-8ed0-cd596dbd174f.xml:
* morituri/test/release.93a6268c-ddf1-4898-bf93-fb862b1c5c5e.xml:
Add musicbrainz ws1 results for Das Capital and Ladyhawke.
* morituri/test/test_common_program.py:
Fix typos.
Add tests for Ladyhawke and Das Capital duration and parsing.
* morituri/test/test_image_table.py:
Fix according to new algorithm.
* morituri/test/test_image_toc.py:
Get frame length for both cd's.
* morituri/image/table.py:
Add getFrameLength method. Fix up duration.
2011-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
* morituri/rip/cd.py:
Always print MusicBrainz URL.
2011-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/release.c7d919f4-3ea0-4c4b-a230-b3605f069440.xml:
Add release data for Bettie Serveert, Lamprey
* morituri/test/test_common_program.py:
Add a test for parsing and getting the whole duration.
* morituri/common/common.py:
Add a method to format time.
* morituri/common/program.py:
Add duration to tracks and release metadatas.
When there are multiple matches, look up the closest in duration.
Make sure that multiple matches closest in duration contain same
artist and title.
Complain about the other ones.
* morituri/image/table.py:
Add a method to calculate a duration from the table.
* morituri/test/test_image_table.py:
Add a test for it.
2011-08-13 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/cd.py:
Make sure we definitely fail on failed checksum.
2011-08-13 Thomas Vander Stichele <thomas at apestaart dot org>
* doc/release:
Add note on actually running.
* morituri/common/program.py:
Fix when running rip cd rip --unknown
2011-08-07 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/task/task.py:
Also stub out log calls on Runner.
2011-08-07 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/task/task.py:
Also handle error() log calls.
2011-08-07 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/program/cdparanoia.py:
Make sure exceptions don't prevent the task from chaining up
to the parent stop() implementation, giving the runner a chance
to actually stop.
2011-08-06 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
Add checksum task for debugging.
2011-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/checksum.py:
* morituri/common/common.py:
* morituri/common/encode.py:
* morituri/image/image.py:
* morituri/test/test_common_encode.py:
Moved quoteParse.
2011-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/Makefile.am:
* morituri/common/checksum.py:
* morituri/common/gstreamer.py:
* morituri/extern/Makefile.am:
* morituri/extern/task/gstreamer.py:
* morituri/common/gstreamer.py (added):
Extract function to remove audio parsers.
Fix up dist.
2011-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/task (added):
* morituri/extern/task/taskgtk.py (added):
* morituri/extern/task/gstreamer.py (added):
* morituri/extern/task/task.py (added):
* morituri/common/taskgtk.py (deleted):
* morituri/common/gstreamer.py (deleted):
* morituri/common/task.py (deleted):
Move task-related modules into an extern directory so other
projects can use them.
* morituri/common/checksum.py:
* morituri/common/encode.py:
* morituri/image/image.py:
* morituri/program/cdparanoia.py:
* morituri/program/cdrdao.py:
* morituri/rip/cd.py:
* morituri/rip/debug.py:
* morituri/rip/image.py:
* morituri/rip/main.py:
* morituri/rip/offset.py:
* morituri/test/test_common_checksum.py:
* morituri/test/test_common_encode.py:
* morituri/test/test_image_image.py:
Adapt. Tests work.
2011-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/program/cdrdao.py:
Avoid floating point error.
2011-07-09 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/task.py:
Log which task we are notifying progress on.
* morituri/common/program.py:
Solve a problem where a release does not have an .id,
which means it's only half in musicbrainz (artist
and title, but no URL to the disc)
2011-07-09 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/program/cdrdao.py:
Fix log output.
Do progress output while scanning TOC.
2011-06-05 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
* doc/release:
Back to trunk.
=== release 0.1.2 ===
2011-06-05 Thomas Vander Stichele <thomas at apestaart dot org>
* NEWS:
* README:
* RELEASE:
* configure.ac:
* morituri.doap:
Releasing 0.1.2, "VCR"
2011-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/cd.py:
Use %default in options description.
2011-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/cd.py:
Ouch, was using the DISC TEMPLATE for the tracks.
2011-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/test_common_program.py:
Add a test for the template in #66.
2011-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/cd.py:
Templates should have same number of slashes.
This avoids #66.
(Possibly, it should also be the same directory, or more code
should be written to handle that case).
* morituri/rip/main.py:
Catch CommandError.
2011-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/cd.py:
Create variables for default templates.
2011-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/test_common_program.py:
Add tests for naming of disc output location.
2011-05-29 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
Actually remove it if it's good and old.
2011-05-27 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
In -bad the plugin is called audioparsersbad.
2011-05-25 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
Add debugging about audioparsers removal.
2011-05-25 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
Also remove audioparsers if it's in bad.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
Time for a prerelease.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
Remove parsers for current git trunk of good too.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/encode.py:
Query for duration and use it in level callback to set progress.
Works around F-15 bug where encode progress is not being updated.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/Makefile.am:
* morituri/rip/main.py:
* morituri/rip/debug.py (added):
Add helper command to debug tasks.
* morituri/common/encode.py:
Add debug.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/test_common_encode.py:
Use pink-noise as a wave form to make sure it's long enough.
Fixes last tests for F-15.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/checksum.py:
* morituri/common/gstreamer.py:
Remove audioparsers plugin if it has the known bug.
Fixes #64.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/task.py:
Show us when we stop twice.
* morituri/common/gstreamer.py:
Stop on Exceptions.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/common.py:
Add an EmptyError.
* morituri/common/checksum.py:
Set it when we don't get any frames.
* morituri/rip/main.py:
Catch it and stop ripping if this happens.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/task.py:
More exception handling and debug.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/task.py:
add task argument to TaskRunner.schedule so we can get exceptions.
Add .schedule method to Task to pass self.
* morituri/common/checksum.py:
* morituri/common/encode.py:
* morituri/common/gstreamer.py:
* morituri/program/cdparanoia.py:
* morituri/program/cdrdao.py:
Adapt.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/test_common_encode.py:
Write a non-sine wave so we have an actual flac file that will
typefind.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/image/image.py:
Actually set exception so MultiTask tells us what went wrong.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/task.py:
Document and change name of a method.
2011-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
Add a cvar to stop going to playing.
* morituri/image/image.py:
Convert AudioLengthTask to GstPipelineTask.
* morituri/test/test_image_image.py:
Adapt to new typefind error we run in.
2011-05-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
Stop task when we get an exception.
Don't make pipeline go to PLAYING if we got an exception
before doing so.
2011-05-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/encode.py:
Convert TagReadTask to gstreamer.GstPipelineTask and
remove lots of duplicate code.
2011-05-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/checksum.py:
* morituri/common/encode.py:
* morituri/common/gstreamer.py:
Move play to base class of GstPipelineTask.
2011-05-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
Add a stop method and a stopped overridable handler.
* morituri/common/checksum.py:
* morituri/common/encode.py:
Adapt to using stopped.
2011-05-23 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/test_common_encode.py: