File: ChangeLog

package info (click to toggle)
soundconverter 0.9.3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 832 kB
  • ctags: 289
  • sloc: python: 1,732; sh: 596; makefile: 31
file content (660 lines) | stat: -rw-r--r-- 20,005 bytes parent folder | download
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
2006-10-18  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Fixed Tag writing when converting to mp3.
	  Fixed progress.

2006-10-15  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Only remove files when conversion was
	  sucessfull.
	* release 0.9.2

2006-10-12  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Fixed (?) loading of badly encoded filenames.
	  now files encoded in latin-1 should be loadable instead of
	  triggering an UnicodeDecodeError.
	  (thanks Christopher)

2006-09-26  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Added an option to delete original files.
	 (thanks James)

2006-09-19  Gautier Portet <kassoulet gmail com>

	* po/fr.po: french translation updated, Thanks Guillaume.

2006-09-12  Gautier Portet <kassoulet gmail com>

	* po/sv_SE.po: new swedish translation, Thanks Daniel.

2006-09-07  Gautier Portet <kassoulet gmail com>

	* release 0.9.1

2006-09-06  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Fix vorbis encoder.

2006-09-05  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Add a blacklist of mime type known not to have tags,
	to pass them faster.

2006-09-03  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Fix quoting of tags when generating filenames.

2006-08-15  Gautier Portet <kassoulet gmail com>

	* po/pl.po: Updated polish translation.

2006-08-21  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: batch mode will now overwrite files.

2006-08-02  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: progressbar work. some code cleanup.

2006-08-01  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: finally got gstreamer0.10 to work ?

2006-06-21  Gautier Portet <kassoulet gmail com>

	*soundconverter.py: Added and option to select the threading model of
	 BackgroundTask.

2006-06-13  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Batch mode fixes merged from 0.8.

2006-06-12  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: The TagReader timeout starts now when the task really
	  starts.

2006-06-06  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Finally progress is working with GStreamer 0.10!

2006-06-05  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: YEEPEE!!! The bug plagging the gst0.10 port is GONE !!
	  Merge & cleanup from 0.8 branch:

	* soundconverter.py: Use filesrc instead of gnomevfssrc if it's absent.
	  (#7652) (debian #367253)
	* soundconverter: Added Spanish translation.
	* soundconverter: Added a custom file pattern choice. (thanks Adolfo)
	* soundconverter.py: Fix doubled folder (#7403).
	* soundconverter.py: Fix an uncatched InvalidURIError when adding files.
	* soundconverter.glade: Removed preferences and exit toolbar buttons
	  as requested (#6777).


2006-03-29  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: More gstreamer0.10 love. The new api is nice, but
	  porting to it sucks big time.

2006-03-19  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Files permissions are copied from source file.
	  Some more code for gstreamer0.10.

2006-02-06  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Progress dialog is working now.

2006-02-03  Gautier Portet <kassoulet gmail com>

	* soundconverter.glade: Corrected wrong signal called by the
	  addfolder menuitem.

2006-02-02  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Ouch, fixed broken converter pipeline.
	* soundconverter.glade: Fixed broken progressbar.

2006-02-01  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: We will now use gst_parse_launch() to create a
	  pipeline, since it allows us to be much more flexible. Some issues
	  with progressbar where fixed also.

2006-01-27  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Applied patch to remove stupid pygtk warning at
	  exit. thanks Hanno!

2006-01-24  Gautier Portet <kassoulet gmail com>

	* Makefile: Fixed build on Gentoo. And corrected a typo causing pl and
	  pt to be not installed
	* soundconverter.py|glade: Applied patch with new FileChooser.
	  thanks Regis!

2006-01-21  Gautier Portet <kassoulet gmail com>

	Release 0.8.3
	
	Added Error handling when trying to load files with invalid
	characters...
	
	
	Release 0.8.2

	make install-local #1154
	Pause button #1455

	Unique file #5334
	Folder dropping #5561
	Filtering by mime #5789
	Fixed problem with vbr #5872

	French Translation
	New list display
	UI Changes
	More precise progress bar
	Async tag reading
	Fixed gnomevfs problems with folders


2006-01-21  Gautier Portet <kassoulet gmail com>

	* Makefile: Added translations to build system.
	* fr.po: Updated french translation.
	* soundconverter.glade: Some minors changes.
	* soundconverter.py: Some minors fixes. The UI is now unsensitive
	  when we are converting. Fixed the convert button beiing called
	  when we were unpausing. And that's all!

2006-01-20  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: Fixed the convert/stop buttons, and some more
	  minor UI fixes.

2006-01-19  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: The progressbar should be more precise now. 

2006-01-16  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: hum?!?!? File dropping was *again* broken, maybe
	  it's my evil twin who edits the code :)
	* soundconverter.py: added a timeout when reading tags.

2006-01-15  Gautier Portet <kassoulet gmail com>

	* soundconverter.glade: Reverted to old UI to make a release soon.
	* soundconverter.py: Changed the gst-lame problem at vbr-quality=9
	  handling for a cleaner one. 

2006-01-11  Gautier Portet <kassoulet gmail com>

	* Makefile: Added install-local. 
	  #1154 (Thanks Régis & Janis)
	* Added a makedirs() that use gnomevfs, so folders will really be
	  created now, even on remote filesystems.

2006-01-10  Gautier Portet <kassoulet gmail com>

	* Wow, fixed the problem when we generate filenames from tags but tags
	  are not read when preparing filenames.
	  This was a big mess, and I tried numerous solutions, but I will keep
	  the only one that is working for now: just wait tags to be read
	  before starting conversion. Sorry, this sucks...
	  Hopefully I read that GStreamer 0.10 is better with threads :)

2006-01-07  Gautier Portet <kassoulet gmail com>

	* Added the possibility to pause the conversion.

2005-12-25  Gautier Portet <kassoulet gmail com>

	* Files can only be added once in the list.

2005-12-22  Gautier Portet <kassoulet gmail com>

	* Finally got walking on gnomevfs to work. Now folder importing is really
	  usable...
	* Added a default to tags, so tag-filled destination paths will
	  be valid.

2005-12-20  Gautier Portet  <kassoulet gmail com>

	* Better type detection.
	* Temporary solved the (non?) problem when trying to convert files which
	  don't have tags filled yet.
	

2005-12-05  Gautier Portet  <kassoulet gmail com>

	* Files types are now detected at loading, expect filtering on types
	  soon.

2005-11-29 Gautier Portet  <kassoulet gmail com>

	* file list is now filled asynchronously with tags if they are
	  present.
	* list display is handled completely differently, hope its better like
	  this

2005-11-08  Gautier Portet <kassoulet gmail com>

	* better folder dropping: now we generate a good base/filename for
	  SoundFile. But it works not so well when we want to create folders
	  based on tags, so it will need some more work.

2005-11-07  Gautier Portet <kassoulet gmail com>

	* fixed broken folder dropping. (#5561)

2005-11-06 Gautier Portet <kassoulet gmail com>
	* drag and drop is now able to import a folder.
	* better display of example filename in preferences.
	* gnomevfs support.
	  #1365
	* add a temporary hack for abr/vbr mp3 with quality==9
	  #5445
	* release 0.8.1
	

2005-11-02 Gautier Portet <kassoulet gmail com>
	* fixed tree structure being lost when importing folders.
	  #5336

2005-10-25 Gautier Portet <kassoulet gmail com>
	* added brazilian translation.
	  (thanks jonh)
	* woops, really added polish translation this time.

2005-10-18 Gautier Portet <kassoulet gmail com>
	* applied patch for polish tranlation
	  (thanks Dominik)

2005-10-09 Gautier Portet <kassoulet gmail com>
	* added an option to apply to all queue the option choose
	  when overwriting.
	  #1341

2005-09-28 Gautier Portet <kassoulet gmail com>
	* applied patch from Elias for Gentoo

2005-09-20 ???  Gautier Portet <kassoulet gmail com>
	* added a display of the approximate bitrate of the output
	* fixed output format not always displayed updated
	  #4736 (thanks Janis)	
	* at least a correct handling of the absence of gstreamer-lame
	* fixed a crash whith some output folders folders
	  #3840 (thanks Jason)
	* added a button to add a folder recursively
	* fixed a crash when loading preferences
	  #5128 (thanks Joe)



2005-06-13  Gautier Portet <kassoulet gmail com>
	* added french tranlation. 
	  (thanks Guillaume Bedot <littletux@zarb.org>)
	* fixed a bug causing ogg tags to be ignored.
	  (thanks Noa Resare <noa@resare.com>)

2005-04-15  Gautier Portet <kassoulet gmail com>

	* reverted quality setting to 'real-world' quantities
	  -> values stored in gconf are now the values passed
       	  to gstreamer and not meaningless enums.
       	* added a label showing an aproximate bitrate in the
          preference window


2005-03-24  Gautier Portet <kassoulet gmail com>

	* Gracefully handled gnome.vfs deprecation (#3649)
	* Fixed broken "replace messy chars" button
	* Make use of urllib.unquote where appropriate (#3655)
	  (makedirs, replace messy chars)
	* Making release version 0.7.1 

2005-03-24  Gautier Portet <kassoulet gmail com>

	* Making release version 0.7

2005-03-24  Gautier Portet <kassoulet gmail com>

	* soundconverter.glade: added a logo on the about box.
	
	* soundconverter.py: fixed about dialog showing only once (we need an 
	optimal method for handling dialogs).

2005-03-23  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: added a dialog asking what to do when a file
	exists.  

2005-03-22  Gautier Portet <kassoulet gmail com>

	* soundconverter.glade: added an Add button on toolbar, added
	separators.

2005-03-17  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: removed xing header generation when outputing mp3, 
	since it seems to break xmms mad decoder.
	
	* soundconverter.glade: changed the preference dialog, for a cleaner
	one.

2005-03-15  Gautier Portet <kassoulet gmail com>

	* added the quality settings for vorbis and mp3
	
	* soundconverter.py: some code cleanup.

2005-03-14  Gautier Portet <kassoulet gmail com>

	* soundconverter.py: changed deprecated import gnome.vfs to gnomevfs

2005-02-27  Gautier Portet <kassoulet gmail com>

	* Added basic mp3 support

2004-12-31  Lars Wirzenius  <liw iki fi>

	* Making release version 0.5.

2004-12-31  Lars Wirzenius  <liw iki fi>

	* COPYING: Added.
	
	* README: Added copyright and license information.

2004-12-31  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Make sure all the keys used for formatting
	target names exist in the dict used for input to the patterns.

2004-12-31  Lars Wirzenius  <liw iki fi>

	* soundconverter.1: Wrote.

2004-12-31  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Better way to stop a TagReader pipeline
	that doesn't cause Gstreamer runtime warnings. Also, allow
	selecting multiple files in the new filechooser for adding
	files.

2004-12-31  Lars Wirzenius  <liw iki fi>

	* soundconverter.glade, soundconverter.py: Removed the addchoser
	dialog from the Glade file. Added code to create it in the Python
	file instead. The reason: mysteriously the "Cancel" and "Open"
	buttons disappeared from the dialog and this was the way to get
	them back, since it seems they need to be added explicitly when
	the dialog is created. Weird.

2004-12-31  Lars Wirzenius  <liw iki fi>

	* soundconverter.glade: Added a shortcut ctrl-O for adding new files.

2004-12-31  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Since we can deal with lots of kinds of input
	files, let's not have a filter in the file chooser.

2004-12-28  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Now using the "decodebin" GstElement for finding
	tags and decoding. Now we should be able to handle anything GStreamer
	can handle for input.

2004-12-27  Lars Wirzenius  <liw iki fi>

	* Making release version 0.4.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Handle error printing in cli mode as well.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py, soundconverter.glade: Refactoring to make
	error dialogs and their use better.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py, soundconverter.glade: Added example filename
	shown in the preferences dialog that is updated after each change.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Don't encode the name of the selected folder,
	just subfolders that are created and the basename.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: I am no longer a klutz. Implemented the 
	creation of subfolders according to patterns.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py, soundconverter.glade: User may choose whether
	to create subfolders below the selected folder. Not that they are
	yet created, but I happened to commit the change already by
	mistake so now I need to write a ChangeLog entry as well. I am
	such a klutz.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py, soundconverter.glade: User may now choose
	whether output files are put into the same directory as the 
	corresponding input files, or into a folder the user has 
	specifically chosen.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py, soundconverter.glade: Made it possible again
	to choose whether "messy" characters in the target filenames are
	replaced with other characters.

2004-12-24  Lars Wirzenius  <liw iki fi>

	* soundconverter.py, soundconverter.glade: Simplified selection of
	basename generation: now there is only a single ComboBox selection
	instead of that plus two radio buttons. This should be clearer.

2004-12-23  Lars Wirzenius  <liw iki fi>

	* soundconverter.py, soundconverter.glade: The user may now
	choose how the output file is named: basename is the same as
	input file (but with suffix changed) or output name is
	constructed from meta data tags.

2004-12-23  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Changed the TargetNameGenerator to support
	keyword based patterns for location and basename.
	
	* soundconverterTests.py: Related changes.

2004-12-23  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Refactoring. Information about the input file
	(location, tags) is now kept in a separate class.

2004-12-23  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Added support for audio/x-wav for file chooser
	filter.
	
        * soundconverter.py, soundconverter.glade: Reworked the
        Preferences dialog. Only selection of output format and Ogg
        Vorbis quality levels work for now. The rest will follow.

2004-12-18  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Set name on the filter for the file chooser.

2004-12-15  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Make the GUI report how much time was spent
	for the conversions.
	
	* README: Add note about performance.

2004-12-15  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Reset the internal counters for dealing with
	progress when the job is finished, so that if we start a new job,
	the counters start from zero, not at the end of the previous job.

2004-12-15  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Added support for drag-and-dropping files
	from Nautilus to the file list in Sound Converter. This was based
	on a patch from Chris Jones, but I re-did to fit the style of
	my code.

2004-12-12  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: In Pipeline.work, don't do anything if the
	pipeline is stopped.
	
        * soundconverter.py: In TagReader.finish, call found_tag_hook
        unless it has been called already.
        
        * soundconverter.py: Add -q/--quiet option.

2004-12-05  Lars Wirzenius  <liw iki fi>

	* Making release version 0.3.

2004-12-05  Lars Wirzenius  <liw iki fi>

        * soundconverter.py: Added support for Wave files as output.
        
	* README: Updated.

2004-12-05  Lars Wirzenius  <liw iki fi>

        * soundconverter.py: Added support for Wave files (.wav,
        audio/x-wav) as input.

2004-12-05  Lars Wirzenius  <liw iki fi>

	* Makefile: Use snd/* for simple tag finding in "make check".
	
	* soundconverter.py: Minor refactoring.

2004-12-05  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Changed the output pipeline to use 
	gnomevfssink for output, rather than filesink. We now do all I/O
	to the sound files via GNOME vfs.

2004-12-05  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Changed TargetNameGenerator to generate 
	uris instead of filenames.
	
	* soundconverterTests.py: Related changes.

2004-12-05  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Input is now via gnomevfssrc, instead of
	filesrc, and all filenames that refer to the input have been
	converted to use file: urls.

2004-12-05  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Made usable from command line as well.

2004-11-28  Lars Wirzenius  <liw iki fi>

        * Making release version 0.2.

2004-11-28  Lars Wirzenius  <liw iki fi>

        * soundconverter.py: Fixed stopping.

2004-11-28  Lars Wirzenius  <liw iki fi>

        * soundconverter.py: the about dialog now shows name and version
        number.
        
        * soundconverter.glade: Added a bit of space around the label in
        the prefs dialog. This didn't make it less ugly, however.

2004-11-28  Lars Wirzenius  <liw iki fi>

        * soundconverter.py: Re-added support for vorbis-quality.
        
        * Makefile: Added "clean" target.
        
        * README: Cleanups and updates.

2004-11-28  Lars Wirzenius  <liw iki fi>

        * soundconverter.py: Rewrote task handling and tag reading and
        conversion stuff.
        
        * README: Added.
        
        * .cvsignore: Added.

2004-11-08  Lars Wirzenius  <liw iki fi>

        * soundconverter.py: Ported to work with current version
        (0.7.93-1) of python-gst. The change: can't create a
        gst.Element("foo"), need to call gst.element_factory_find("foo")
        instead.
        
        * soundconverter.py: Wrote a class TargetNameGenerator to generate
        the names of output files, and modified the rest of the program
        to use it. This should eventually implement a language for
        describing the output name (user can set patterns like
        "%(artist)s-%(album)s-%(title)s.%(suffix)s").
	
	* soundconverterTests.py: Wrote tests for TargetNameGenerator.
	
	* Makefile: Added a "check" target.

2004-10-29  Lars Wirzenius  <liw iki fi>

	* Making release version 0.1.

2004-10-29  Lars Wirzenius  <liw iki fi>

	* soundconverter.glade, soundconverter.py: If an output file
	  exists, ask the user what to do.

2004-10-29  Lars Wirzenius  <liw iki fi>

	* Makefile: Wrote.

2004-10-29  Lars Wirzenius  <liw iki fi>

	* soundconverter.glade, soundconverter.py: Added a preferences
	  dialog to allow setting of the quality level of the Ogg Vorbis
	  files we create. The value is stored in GConf.

2004-10-29  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Got rid of the useless File class, since the
	  same data is stored in the GtkListStore as well.

2004-10-25  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: More refactoring. Got rid of the useless
	  (since we only have one window) SoundConverterApp class.

2004-10-25  Lars Wirzenius  <liw iki fi>

	* soundconverter.py: Refactored so that the two background tasks
	  are based on a common base class that contains the common
	  functionality.