File: ChangeLog

package info (click to toggle)
bsl 0.5.0-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,024 kB
  • ctags: 238
  • sloc: sh: 10,658; ansic: 1,673; makefile: 95
file content (751 lines) | stat: -rw-r--r-- 17,420 bytes parent folder | download | duplicates (2)
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
2009-07-23  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Use two new public methods to update sequence with out refreshing
	  after each pattern.

2009-06-05  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Fix the volume ranges back. It was off in the pattern view.

2009-06-04  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Swap voice and ticks to fix pattern loading.

2009-05-12  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Activate blah page if there are comments in the file. Add some debug
	  only impl for reading pdlg and a dummy one for midi.

2009-05-10  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Also load WAVE section if present (alias for CWAV).

2009-05-10  Stefan Kost  <ensonic@users.sf.net>

	* autogen.sh:
	  aclocal gather all the necessary macros. And libtoolize installs m4 files.
	  They must be present before running aclocal. Without this patch, autoconf
	  complains about unknown libtool macros (using 2.2.6a-4 on Debian).

2009-04-30  Stefan Kost  <ensonic@users.sf.net>

	* NEWS:
	  Prepare for pre-releasing.

2009-04-24  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Log expected and real file position for each sections.

2009-04-24  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Don't print random crap.

2009-04-24  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Don't use parameters the songs claims, but the machine does not have.
	  Also more comments and indenting.

2009-04-16  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Remove note-off work-around, now that we properly support it.

2009-02-25  Stefan Kost  <ensonic@users.sf.net>

	* Makefile.am:
	* autogen.sh:
	* m4/shave.m4:
	* shave-libtool.in:
	* shave.in:
	  Update shave.

2009-02-20  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	* m4/shave.m4:
	* shave-libtool.in:
	* shave.in:
	* m4/shave.m4 (added):
	* shave.in (added):
	* shave-libtool.in (added):
	  Have a less verbose build.

2009-02-18  Stefan Kost  <ensonic@users.sf.net>

	* NEWS:
	  Bump to be able to test make distcheck.

	* configure.ac:
	  Strip newline.

2009-01-17  Stefan Kost  <ensonic@users.sf.net>

	* src/Makefile.am:
	* src/song-io-buzz.c:
	  Update for buzztard changes.

2008-12-30  Stefan Kost  <ensonic@users.sf.net>

	* Makefile.am:
	* autogen.sh:
	* configure.ac:
	* m4 (added):
	  Make use of a macro dir.

2008-12-28  Stefan Kost  <ensonic@users.sf.net>

	* src/Makefile.am:
	  Replace @srcdir@ with $(srcdir).

2008-12-27  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  Use more automake features.

	* po/POTFILES.in:
	* po/POTFILES.skip:
	  Update filenames.

	* po/de.po:
	  Update.

2008-12-26  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  Run 'autoupdate' on configure.ac.

2008-12-20  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Fix small log inconsistency.

2008-12-08  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Take return code from read.

2008-12-05  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Format string fixes.

2008-11-26  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  Back to development.
	  
=== release 0.4.0 ===

2008-11-26  Stefan Kost  <ensonic@users.sf.net>

	* NEWS:
	  Prepare release.

2008-11-03  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	* src/bsl.c:
	  Take i18n into use.

2008-10-15  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Remove quirk mode, now that sample reading is fully fixed.

2008-10-12  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Add quicks mode for resyncing sample loading. Need to figure out how
	  to properly fix it.

2008-09-24  Stefan Kost  <ensonic@users.sf.net>

	* src/Makefile.am:
	  Don't confuse CPPFLAGS with CFLAGS.

2008-09-24  Stefan Kost  <ensonic@users.sf.net>

	* src/Makefile.am:
	  Get rid of INCLUDES variable (automake deprecates it).

2008-09-22  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  Display summary after configure.

2008-09-09  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Adjust to gst-buzztard api break.

2008-09-08  Stefan Kost  <ensonic@users.sf.net>

	* src/bsl.h:
	  Fix one more use of old include path.

2008-09-07  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  Check for pkgconfig file under new name.

2008-09-07  Stefan Kost  <ensonic@users.sf.net>

	* src/Makefile.am:
	* src/buzztard-songio-buzz.desktop.in:
	* src/buzztard-songio-buzz.xml.in:
	* src/bsl.desktop.in:
	* src/buzztard-bsl.xml.in:
	  Rename files.

2008-09-05  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Also take master volume, bpm and tp from buzzsongs. There is still
	  something wrong with it as some songs are way too slow.

2008-09-04  Stefan Kost  <ensonic@users.sf.net>

	* src/Makefile.am:
	  Don't install static lib for plugins.

	* src/song-io-buzz.c:
	  Rename plugin dir.

2008-08-29  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Also apply channel change here (moved from wavelevel to wave).

2008-08-16  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Clear default author - we don't know it for buzz songs.

2008-07-29  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Adjust to api change (moving channel property).

2008-07-11  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Also read loop-flags and volume.

2008-07-08  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Use buzz note conversion from gst-buzztard.

2008-07-06  Stefan Kost  <ensonic@users.sf.net>

	* src/bsl.c:
	  Adjusting to new bt-core API.

2008-05-28  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Be more fault toterant for attribute names.

2008-05-27  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Make type names more canonical.

2008-05-27  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Fix a double free. Better initialze parameters.

2008-05-22  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Pass pointer to data and not address of pointer to data :)
	  Be more failsafe when setting properties.

2008-05-22  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Some experiments with log-volume.

2008-05-22  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Attempt to decode buzz samples. Runs, buts results look suspicious.

2008-05-02  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  Cleanup.

	* src/song-io-buzz.c:
	  Adjust wave-api usage.

2008-04-16  Stefan Kost  <ensonic@users.sf.net>

	* Makefile.am:
	* README:
	* TODO:
	* autogen.sh:
	* configure.ac:
	* docs/design.txt:
	* src/bsl.c:
	* src/bsl.h:
	* src/song-io-buzz-private.h:
	* src/song-io-buzz.c:
	* src/song-io-buzz.h:
	* src/version.h.in:
	* tests/bt-cfg.sh.in:
	* tests/bt-cmd-encode.sh:
	* tests/bt-cmd-info.sh:
	  Svn property tuning.

008-03-26  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  Back to development.
	  
=== release 0.3.0 ===

2008-03-26  Stefan Kost  <ensonic@users.sf.net>

	* NEWS:
	* src/bsl.h:
	  Update NEWS and fix the build.

2008-03-09  Stefan Kost  <ensonic@users.sf.net>

	* po/de.po:
	  Translate.

2008-03-09  Stefan Kost  <ensonic@users.sf.net>

	* Makefile.am:
	* NEWS:
	* configure.ac:
	  Prepare the release.

	* po/POTFILES.in:
	* po/de.po:
	* src/Makefile.am:
	* src/buzztard-bsl.xml:
	* src/buzztard-bsl.xml.in:
	  Make distcheck fixes.

2008-02-19  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Also handle no-value for master volume.

2008-02-18  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	* src/Makefile.am:
	  Install plugin as unversioned library. Do not install static version.

	* src/song-io-buzz.c:
	  Swap master volume once again. Handle switches a bit better.

2008-02-14  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Only give plugin name for missing machines.

2008-02-12  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  One more possible segfault when loding songs with missing machines.

2008-02-08  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Fix more crashers when loding songs with missing machines.

2008-02-08  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Don't skip master pattern parameters.

2008-02-08  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  One more fix for locale independent conversion.

2008-02-08  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Fix panorama more and data in wire-patterns.

2008-01-21  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Volume seems to be scaled by 32768 and not 16384.

2008-01-18  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	  Adjust to wire API changes. Implements wire-patterns. Convert volume
	  and pan. Convert master-volume. Fix attribute name conversion.

2007-09-23  Stefan Kost  <ensonic@users.sf.net>

	* Makefile.am:
	* configure.ac:
	  Improved lcov detection.

2007-07-09  Stefan Kost  <ensonic@users.sf.net>

	* Makefile.am:
	* configure.ac:
	* src/Makefile.am:
	  Add more Makefile boilerplate.

2007-07-08  Stefan Kost  <ensonic@users.sf.net>

	* src/bsl.desktop.in:
	  Shorten name.

	* src/song-io-buzz.c: (read_mach_section):
	  Don't set properties on master for now. Fixes #1749733.

2007-06-29  Stefan Kost  <ensonic@users.sf.net>

	* Makefile.am:
	* configure.ac:
	* po/LINGUAS:
	* po/Makevars:
	* po/POTFILES.in:
	* po/POTFILES.skip:
	* po/de.po:
	  Add and now also commit the i18n stuff.

2007-06-29  Stefan Kost  <ensonic@users.sf.net>

	* autogen.sh:
	* configure.ac:
	* src/Makefile.am:
	* src/bsl.desktop.in:
	  Create filetype assignment for bt-edit.

2007-06-24  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c: (bt_song_io_buzz_load):
	  Set song name from filename.

2007-06-24  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	* src/Makefile.am:
	* src/buzztard-bsl.xml:
	  Tell the shared-mime system about buzz file types.

	* src/song-io-buzz.c: (read_mach_section), (read_patt_section):
	  Support buzz < 1.2 files. Better readabillity.

2007-06-07  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c (BT_SONG_IO_BUZZ_C, io_error, number_of_sections,
	  read_section_name, read_null_string, read_parameters,
	  get_section_entry, read_section_table, read_bver_section,
	  read_para_section, read_mach_section, read_conn_section,
	  bml_note_value_2_string, read_patt_section, read_sequ_section,
	  read_wavt_section, read_cwav_section, read_blah_section,
	  bt_song_io_buzz_load, bt_song_io_buzz_finalize, bt_song_io_buzz_init,
	  bt_song_io_buzz_class_init):
	  Start support for buzz < 1.2 files.

2007-05-02  Stefan Kost  <ensonic@users.sf.net>

	* ChangeLog:
	  Released

=== release 0.2.0 ===

2007-05-02  Stefan Kost  <ensonic@users.sf.net>

	* NEWS:
	* README:
	* configure.ac:
	  Releasing

2007-03-16  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  no need to check for popt.h

2007-01-29  Stefan Kost  <ensonic@users.sf.net>

	* README:
	  tell about the tests

	* tests/bt-cfg.sh.in:
	  add missing file

	* tests/bt-cmd-info.sh:
	  use envvar to locate the songs

2007-01-27  Stefan Kost  <ensonic@users.sf.net>

	* TODO:
	* configure.ac:
	* src/song-io-buzz-private.h:
	* src/song-io-buzz.c: (read_mach_section), (read_patt_section),
	(read_sequ_section):
	  mach section can have nr_events=0

	* tests/bt-cmd-encode.sh:
	* tests/bt-cmd-info.sh:
	  add scripts to probe all my buzz-songs

2007-01-26  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  configure cleanups

2007-01-22  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c: (read_mach_section),
	(bt_song_io_buzz_get_type):
	  don't use static for local data that gets copied anyway, update
	  comment about machine blob

2006-11-26  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c: (read_conn_section):
	   max amp from buzz is 16384 and not 100

2006-11-16  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c: (bml_note_value_2_string),
	(read_patt_section):
	  add note number to string conversion

2006-11-16  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c: (read_mach_section), (read_patt_section),
	(read_sequ_section):
	  handle the case when we can't instantiate a machine and remember
	  missing machines

2006-11-12  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	  APP_DEBUG -> USE_DEBUG

=== release 0.1.0 ===

2006-10-30  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c: (bt_song_io_buzz_load),
	(bt_song_io_buzz_class_init):
        fix compilation with latest buzztard

2006-08-27  Stefan Kost  <ensonic@users.sf.net>

	* NEWS:
	* configure.ac:
	* src/Makefile.am:
        prepare release 0.1.0

2006-08-24  Stefan Kost  <ensonic@users.sf.net>

	* src/bsl.c:
	* src/bsl.h:
	* src/song-io-buzz-private.h:
	* src/song-io-buzz.c: (read_section_name), (read_patt_section),
	(read_sequ_section):
	* src/song-io-buzz.h:
	* src/version.h.in:
        upgrade to api change, add licence headers

2006-05-25  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c: (read_conn_section):
	set wire volume

2006-04-09  Stefan Kost  <ensonic@users.sf.net>

	* src/song-io-buzz.c: (bt_song_io_buzz_class_init):
        use g_type_class_peek_parent() instead of g_type_class_ref()

2006-02-13 23:33  Stefan Kost <ensonic@users.sf.net>

	* configure.ac, src/song-io-buzz.c:
	changed private data handling

2005-12-16 19:47  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	hide another symbol

2005-12-04 14:26  Stefan Kost <ensonic@users.sf.net>

	* configure.ac:
	update dependencies

2005-10-04 15:57  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	added 2 todos

2005-10-02 22:57  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	fixed plugin name mapping load pattern data

2005-09-13 00:44  Stefan Kost <ensonic@users.sf.net>

	* configure.ac, src/song-io-buzz.c:
	updated for 0.9 enabled loading emulated machines

2005-07-15 17:07  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	ported loader to sequence structure changes

2005-06-14 09:20  Stefan Kost <ensonic@users.sf.net>

	* configure.ac, src/song-io-buzz.c:
	added -Wall to cflags fixed warnings uncovered by
	this

2005-06-01 13:30  Stefan Kost <ensonic@users.sf.net>

	* configure.ac:
	removed some unneeded libs

2005-05-03 23:44  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	fixed missing param

2005-04-13 20:11  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	load some wavetable data

2005-04-13 11:33  Stefan Kost <ensonic@users.sf.net>

	* README:
	spell checking the README

2005-04-12 16:19  Stefan Kost <ensonic@users.sf.net>

	* configure.ac:
	properly initialize automake in configure.ac

2005-02-05 18:45  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	ensure unique machine names

2005-01-28 08:27  Stefan Kost <ensonic@users.sf.net>

	* TODO:
	updated TODOs

2005-01-16 11:04  Stefan Kost <ensonic@users.sf.net>

	* README:

2005-01-14 16:15  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	update for ref change

2005-01-14 11:54  Stefan Kost <ensonic@users.sf.net>

	* Makefile.am, configure.ac, src/song-io-buzz.c,
	src/song-io-buzz.h:
	fixed problem integer overflow bug (Alex)

2004-12-15 19:30  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	loads the sequence as well

2004-12-03 17:30  Stefan Kost <ensonic@users.sf.net>

	* src/: song-io-buzz-private.h, song-io-buzz.c:
	pattern loading (reverse engeneered)

2004-12-02 19:36  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	sequence and pattern reading

2004-12-01 21:46  Stefan Kost <ensonic@users.sf.net>

	* src/: song-io-buzz-private.h, song-io-buzz.c:
	para, mach and conn sections A: a little more savety for broken
	files

2004-11-29 18:31  Stefan Kost <ensonic@users.sf.net>

	* src/: song-io-buzz-private.h, song-io-buzz.c:
	partially reading sections

2004-11-25 22:10  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	song header reading

2004-11-19 11:45  Stefan Kost <ensonic@users.sf.net>

	* src/: song-io-buzz.c, song-io-buzz.h:
	status changes C: file access

2004-09-26 03:50  Stefan Kost <ensonic@users.sf.net>

	* src/song-io-buzz.c:
	better detection

2004-09-25 22:45  Stefan Kost <ensonic@users.sf.net>

	* src/: song-io-buzz.c, song-io-buzz.h:
	now really added the files ;-)

2004-09-25 22:44  Stefan Kost <ensonic@users.sf.net>

	* configure.ac, docs/design.txt, src/Makefile.am, src/bsl.c,
	src/bsl.h:
	initial song-io sub-object A: debugging stuff

2004-09-25 18:00  Stefan Kost <ensonic@users.sf.net>

	* .cvsignore, src/.cvsignore:
	another go at engancing cvsignore

2004-09-25 17:57  Stefan Kost <ensonic@users.sf.net>

	* .cvsignore:
	enhanced .cvsigonore file

2004-09-25 17:56  Stefan Kost <ensonic@users.sf.net>

	* .cvsignore, AUTHORS, ChangeLog, NEWS, src/bsl.c:
	another batch of the skelleton files

2004-09-25 17:52  Stefan Kost <ensonic@users.sf.net>

	* Makefile.am, autogen.sh, configure.ac, src/Makefile.am,
	src/bsl.h, src/version.h.in:
	project skelleton files

2004-09-10 19:38  Stefan Kost <ensonic@users.sf.net>

	* TODO:
	todos for this bsl subproject

2004-09-10 19:32  Stefan Kost <ensonic@users.sf.net>

	* README:
	initial readme