forked from adplug/adplug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2072 lines (1326 loc) · 60.9 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
2010-04-06 12:03 malvineous
* src/dro.cpp, test/doofus.dro, test/doofus.ref,
test/playertest.cpp, test/samurai.ref: Update DROv1 player to
handle early files with a slightly different header, including
tests for both varieties. Fixes random bytes sent at the end of
early DROv1 files which causes the tests to fail on 32-bit x86
machines.
2010-04-06 12:00 malvineous
* test/michaeld.ref: Update CMF test after previous change
2010-02-07 04:51 dynamite
* adplug.pc.in: Fixed wrong include path for apps using AdPlug.
2010-01-16 13:52 malvineous
* src/cmf.cpp: CMF: Clear OPL3 mode on playback to avoid a previous
song affecting the instruments
2010-01-13 08:48 malvineous
* src/cmf.cpp: CMF: Handle v1.0 files properly, plus fixed a memory
leak
2010-01-01 19:20 malvineous
* ChangeLog, NEWS, README, TODO, adplug.qpg, adplug.spec,
doc/libadplug.texi: Bump version numbers to 2.2, update logs etc.
ready for release
2010-01-01 19:14 malvineous
* test/: Makefile.am, dro_v2.dro, dro_v2.ref, michaeld.ref,
playertest.cpp, samurai.ref: Added/updated CMF, DROv1 and DROv2
tests
2010-01-01 18:41 malvineous
* src/cmf.cpp: New CMF player: replace all printfs with AdPlug's
debug logging mechanism
2010-01-01 18:34 malvineous
* src/rol.cpp: Fixed buffer overflow in ROL player
2010-01-01 18:26 malvineous
* src/: Makefile.am, surroundopl.cpp, surroundopl.h: Moved surround
OPL effect into .cpp file to make debug logging work properly
after installation
2010-01-01 15:15 malvineous
* src/dro.h: Added version number to original DOSBox .dro player
2010-01-01 15:13 malvineous
* src/cmf.cpp: Tiny CMF coding fix
2010-01-01 15:13 malvineous
* src/: Makefile.am, adplug.cpp, dro2.cpp, dro2.h: Added support
for DOSBox .dro version 2.0
2009-12-31 11:08 malvineous
* src/: cmf.cpp, cmf.h: CMF player: Fixed default instruments,
moved OPL tracking code to song init instead of class init (fixes
instruments in XMMS2 plugin), misc code tidy up
2009-12-27 17:17 malvineous
* AUTHORS: Added my recent changes to AUTHORS
2009-12-27 17:03 malvineous
* src/: Makefile.am, surroundopl.h: Added surround (stereo
harmonic) OPL synth wrapper
2009-12-27 15:16 malvineous
* src/: Makefile.am, adplug.cpp, cmf.cpp, cmf.h: Added new CMF
player (more accurate than existing MIDI-based player)
2008-09-14 22:33 dynamite
* doc/Makefile.am: Moved version.texi from CLEANFILES to
MAINTAINERCLEANFILES, where it belongs. It should only be cleaned
when going back to the CVS-distributed version, as it is created
by autoreconf.
2008-09-14 19:46 dynamite
* AUTHORS, NEWS, src/mid.cpp: Applied CMF rhythm mode patch. Thanks
to Adam Nielsen!
2008-06-15 21:50 dynamite
* test/playertest.cpp: Fixed undefined reference to strncmp() error
and deprecated string conversion warning.
2008-06-15 21:47 dynamite
* src/: adplug.cpp, cff.cpp, d00.cpp, fmc.cpp, imf.cpp, mid.cpp,
mid.h, protrack.cpp, rol.h, s3m.cpp, sa2.cpp: Fix many if-else
and other perenthesizing ambiguities. Also applied patch by Per
Karlsen (fixes Bug #1985050) that cures warnings about deprecated
string conversions in mid.cpp.
2008-02-12 06:18 dynamite
* configure.in, src/a2m.cpp, src/adl.cpp, src/adplug.cpp,
src/bmf.cpp, src/cff.cpp, src/dro.cpp, src/dtm.cpp, src/fmc.cpp,
src/mad.cpp, src/mkj.cpp, src/msc.cpp, src/mtk.cpp,
src/protrack.cpp, src/rad.cpp, src/rat.cpp, src/raw.cpp,
src/rix.cpp, src/rol.cpp, src/s3m.cpp, src/sa2.cpp, src/sng.cpp:
Applied patch to fix building with upcoming GCC 4.3.0 (thanks to
Linus Walleij). Adds a couple of cstring #includes.
2007-06-18 06:05 dynamite
* NEWS, src/dro.cpp, test/samurai.ref: DRO player fix (header 3
bytes short) by Adam Nielsen.
2007-04-18 08:19 dynamite
* AUTHORS, NEWS, src/Makefile.am, src/adplug.cpp, test/DEMO4.JBM,
test/DEMO4.ref, test/playertest.cpp: Added test case for JBM
format.
2007-04-18 08:12 dynamite
* src/: adplug.cpp, jbm.cpp, jbm.h: Adapted JBM player for AdPlug.
2007-04-18 08:03 dynamite
* AUTHORS, NEWS, TODO, src/jbm.cpp, src/jbm.h: Added JBM player.
2007-04-18 03:36 dynamite
* src/: d00.cpp, d00.h: Fixed D00 player to accept rewind(-1) and
rewind the current subsong.
2007-04-16 20:47 dynamite
* TODO, test/DUNE19.ref: Added ADL test case reference file.
2007-04-15 04:37 dynamite
* NEWS, TODO, configure.in, doc/libadplug.texi, src/adl.cpp,
src/adl.h, src/hsc.h, src/player.h, test/DUNE19.ADL,
test/playertest.cpp: Added test case for ADL files. Added index
entries to documentation. Changed default subsong of ADL player
to be subsong #2. Added getsubsong() method to CPlayer base
class.
2007-04-10 02:21 dynamite
* ChangeLog: release.
2007-04-10 02:01 dynamite
* AUTHORS, ChangeLog, adplugdb/Makefile.am, test/Makefile.am: Fixed
makefiles.
2007-04-10 01:47 dynamite
* README: Update.
2007-04-10 01:22 dynamite
* README, adplug.spec, src/realopl.cpp, test/playertest.cpp:
Cosmetic changes in CRealopl. Fixed DOS compatibility in
playertest.
2007-04-09 04:53 dynamite
* NEWS, TODO, test/VIB_VOL3.ref: Release candidate.
2007-04-09 04:52 dynamite
* src/: a2m.cpp, a2m.h, amd.cpp, fmc.cpp, opl.h, player.cpp,
player.h, protrack.cpp, protrack.h, rad.cpp, sa2.cpp: Vastly
enhanced generic Protracker player and modified loaders
accordingly. Copl now supports a getchip() method. A2M loader
enhanced for OPL3 features.
2007-04-09 04:51 dynamite
* doc/libadplug.texi: Added docs of new commands and features of
the Protracker player.
2007-04-02 01:41 dynamite
* src/rix.cpp: Removed superfluous exit() call. This was detected
as part of a GCC 4.3 compilation regression test. Thanks to
Martin Michlmayr! Fixes Debian bug #417078.
2007-04-02 01:39 dynamite
* src/: d00.cpp, d00.h: D00 Vibrato and Slides fix. Thanks to
Dennis Lindroos!
2006-09-22 19:46 dynamite
* NEWS: Updated NEWS file.
2006-09-22 04:52 dynamite
* NEWS, TODO, src/rix.cpp, src/rol.cpp: Fixed newline in RIX
player. Fixed buffer overflow in ROL player (many thanks to dai).
2006-08-16 10:20 dynamite
* src/adl.cpp: ADL player is under dual (L)GPL license now.
2006-08-09 08:38 dynamite
* src/: adl.cpp, adl.h: Removed LGPL notice as adl.* is under GPL
license.
2006-08-06 05:49 dynamite
* src/rix.cpp, src/rix.h, test/03B.RIX, test/03B.ref,
test/RI051.RIX, test/RI051.ref, test/playertest.cpp: Applied
palxex' pitch fix patch to RIX player and updated test-suite
accordingly.
2006-07-16 12:12 dynamite
* ChangeLog: Updated changelog.
2006-07-16 11:47 dynamite
* .cvsignore, NEWS, adplugdb/Makefile.am, test/TU_BLESS.ref:
Updated NEWS. Fixed AMD test case. Fixed adplugdb Makefile.
2006-07-16 11:46 dynamite
* .cvsignore: updated cvsignore.
2006-07-16 11:46 dynamite
* INSTALL, NEWS, TODO, test/TU_BLESS.ref: Removed INSTALL file,
it's autogenerated now. Fixed AMD test case.
2006-07-16 08:12 dynamite
* INSTALL: Removed install.
2006-07-16 08:09 dynamite
* BUGS, INSTALL, README, configure.in, adplugdb/Makefile.am,
adplugdb/adplugdb.cpp, adplugdb/getopt.h, adplugdb/mygetopt.h,
contrib/MSVC6/vc6inst.bat, src/amd.cpp, src/bmf.cpp, src/cff.cpp,
src/cff.h, src/d00.cpp, src/d00.h, src/dmo.cpp, src/dmo.h,
src/dtm.cpp, src/dtm.h, src/ksm.cpp, src/msc.cpp, src/mtk.cpp,
src/mtk.h, src/rix.cpp, src/rix.h, src/s3m.cpp, src/u6m.cpp,
src/u6m.h, test/03B.ref: Security fixes. Version 2.0.1.
2006-07-16 07:42 dynamite
* src/amd.cpp: Fixed volume handling, by adding conversion table.
2006-07-06 08:23 dynamite
* BUGS, NEWS, README, TODO, src/cff.cpp, src/cff.h, src/dmo.cpp,
src/dmo.h, src/dtm.cpp, src/dtm.h, src/mtk.cpp, src/mtk.h,
src/s3m.cpp, src/u6m.cpp: Fixed a lot of security issues. Thanks
to Luigi Auriemma.
2006-07-06 08:22 dynamite
* src/rix.cpp, src/rix.h, test/03B.ref: Applied Palxex' patch.
2006-06-15 12:14 dynamite
* TODO: Update.
2006-06-15 12:14 dynamite
* test/03B.ref: Updated reference file according to latest version
of RIX player.
2006-06-15 12:14 dynamite
* src/: adl.cpp, adl.h, d00.cpp, rix.cpp, rix.h: Updated ADL player
to latest upstream version. Incorporated patch from PALXEX into
RIX player to fix bugs introduced while taking out pre-rendering
of audio. Tried to make D00 player platform independent, but is
not working yet.
2006-05-18 13:50 dynamite
* src/rix.cpp, src/rix.h, test/03B.ref: Eliminated DRO prerendering
in RIX player. Memory footprint is much smaller now.
2006-05-18 12:34 dynamite
* src/: adl.h, rix.cpp, rix.h: RIX player dynamically allocates
memory now. Fixed portability issues.
2006-05-17 19:13 dynamite
* TODO, src/adl.cpp, src/bmf.cpp, src/ksm.cpp, src/msc.cpp,
src/u6m.cpp, src/u6m.h: Portability fixes.
2006-05-17 13:49 dynamite
* adplugdb/: adplugdb.cpp, getopt.h, mygetopt.h: Replaced getopt.h
by mygetopt.h to avoid clashes.
2006-05-17 13:49 dynamite
* adplugdb/mygetopt.h: file mygetopt.h was added on branch
adplug-2-0-patches on 2006-07-15 22:09:25 +0000
2006-05-17 12:50 dynamite
* configure.in, adplugdb/Makefile.am, adplugdb/adplugdb.cpp: Fixed
portability issues. getopt.h is autodetected now and used, if
present in the system and libc.
2006-05-17 12:42 dynamite
* src/: d00.cpp, d00.h: Portability fixes.
2006-05-17 10:19 dynamite
* src/adl.cpp: License fixes.
2006-05-17 10:15 dynamite
* src/: adl.cpp, adl.h: Portability fixes.
2006-05-17 10:08 dynamite
* src/: adl.cpp, adl.h: Fixed debug logging of ADL player.
2006-05-17 10:08 dynamite
* AUTHORS: Fixed ADL authors.
2006-05-17 04:17 dynamite
* src/: adl.cpp, adl.h: Fixes. It's playing now.
2006-05-17 04:17 dynamite
* NEWS, TODO: Updates.
2006-05-16 10:56 dynamite
* AUTHORS, NEWS, TODO, configure.in, src/Makefile.am, src/adl.cpp,
src/adl.h, src/adplug.cpp: Bumped version number. Added ADL
player.
2006-05-15 07:42 dynamite
* INSTALL: reconf'd.
2006-05-13 06:36 dynamite
* contrib/MSVC6/vc6inst.bat: Whitespace changes.
2006-05-04 09:19 dynamite
* ChangeLog, doc/Makefile.am, test/Makefile.am: Distribution fixes.
2006-05-04 06:26 dynamite
* doc/libadplug.texi: Updated docs.
2006-05-04 06:25 dynamite
* AUTHORS, test/03B.ref: Fixed AUTHORS info. Fixed RIX test case.
2006-04-24 15:46 dynamite
* src/amd.cpp: Fixed command conversion. Old algorithm did not
always convert the whole song.
2006-04-24 10:25 dynamite
* src/protrack.cpp: New line indentation style. Fixed AMD set
volume command to actually set volume.
2006-04-24 10:18 dynamite
* src/: analopl.cpp, realopl.cpp: Hardware output using first OPL
chip now, as it should be.
2006-04-16 10:11 dynamite
* src/rix.cpp: Fixed initialization of static data.
2006-03-16 18:19 dynamite
* .cvsignore, INSTALL, Makefile.am, NEWS, README, configure.in,
adplugdb/Makefile.am, contrib/README: Moved Watcom build system
to contrib/. Cleaned up build documentation.
2006-03-16 18:17 dynamite
* INSTALL.dos, INSTALL.unix, Makefile.bt, Makefile.wat, README.dos,
adplugdb/Makefile.bt, test/Makefile.bt,
contrib/Watcom/Makefile.bt, contrib/Watcom/Makefile.wat,
contrib/Watcom/adplugdb.bt, contrib/Watcom/install.txt,
contrib/Watcom/readme.txt, contrib/Watcom/src.bt,
contrib/Watcom/test.bt: Moved Watcom build system to contrib/.
2006-03-16 18:14 dynamite
* src/adplug.cpp: Removed version #define, as it's handled by the
build system now.
2006-03-16 18:14 dynamite
* src/: Makefile.am, Makefile.bt, rix.cpp, rix.h: Moved Watcom
build system to contrib/. Applied patch from Lu Chi to RIX
player.
2006-03-05 14:14 dynamite
* src/: s3m.cpp, s3m.h: Some commands always reset the infobyte.
Fixed S3M player to do this, too.
2006-03-05 13:19 dynamite
* INSTALL.win32: is in contrib now.
2006-03-05 13:13 dynamite
* test/Makefile.am: WONDERIN.IMG is WONDERIN.WLF now.
2006-03-05 13:12 dynamite
* adplugdb/Makefile.am: Fixed makefile, since MSVC build is in
contrib now.
2006-03-05 13:12 dynamite
* doc/Makefile.am: adplugdb.1 created by Autoconf now.
2006-03-05 13:07 dynamite
* doc/: Makefile.am, adplugdb.1, adplugdb.1.in: adplugdb.1 now
created by Autoconf.
2006-02-28 16:17 dynamite
* src/: msc.cpp, msc.h, realopl.cpp, rix.cpp: Platform independence
fixes. Added support for the DJGPP compiler on MS-DOS to real OPL
output.
2006-02-28 16:17 dynamite
* src/mid.cpp: Fixed new GCC 4.x warnings.
2006-02-28 16:16 dynamite
* src/: fprovide.h, opl.h: Fixed some new GCC 4.x warnings.
2006-02-28 16:15 dynamite
* adplugdb/: Makefile.am, getopt.h: Changed AdPlug's datadir to
$(sharedstatedir), plus some platform independence fixes.
2006-02-05 12:34 dynamite
* NEWS, TODO: Updated NEWS and TODO list.
2006-02-05 12:34 dynamite
* adplugdb/Makefile.am: Fixed linker flags. libtool now correctly
finds the right libadplug to link to.
2006-02-05 12:33 dynamite
* test/playertest.cpp: Fixed typo.
2006-02-05 12:33 dynamite
* src/rix.cpp, src/rix.h, test/03B.ref: Fixed RIX player to
correctly initialize variables in constructor.
2006-02-05 12:32 dynamite
* src/database.cpp: Fixed saving of database in
platform-independent format.
2006-02-05 05:48 dynamite
* test/: WONDERIN.IMF, WONDERIN.WLF, playertest.cpp: Renamed
WONDERIN.IMF to WONDERIN.WLF, which is now the new default file
extension.
2006-02-05 05:44 dynamite
* src/: imf.cpp, imf.h: Applied Adam's patch. *.IMF files are now
at 560Hz by default. All other files are at 700Hz.
2005-12-04 13:47 dynamite
* src/msc.cpp: Made MSC player platform-independent.
2005-11-14 12:25 dynamite
* TODO: Updated TODO.
2005-11-14 12:07 dynamite
* contrib/MSVC6/: adplugdb.dsp, playertest.dsp: Added AdPlugDB and
player test-suite MSVC6 project files.
2005-11-14 12:07 dynamite
* adplugdb/: adplugdb.dsp, vc6inst.bat: Removed MSVC6 project
files.
2005-11-14 12:06 dynamite
* test/: 03B.RIX, 03B.ref, Makefile.am, blaster2.msc, blaster2.ref,
emutest.cpp, playertest.cpp, playertest.dsp: Added emulator
test-suite. Added MSC and RIX formats to player test-suite.
Removed MSVC6 project file.
2005-11-08 13:21 dynamite
* src/: rix.cpp, rix.h: Flipped from DOS to Unix encoding.
2005-11-08 13:19 dynamite
* src/rix.h: Changed 64k buffer to 640k.
2005-11-08 05:39 dynamite
* AUTHORS, NEWS, TODO, doc/libadplug.texi, src/adplug.cpp,
src/rix.cpp, src/rix.h: Made RIX changes mentioned by Abalone.
2005-10-27 01:40 dynamite
* src/: rix.cpp, rix.h: Fixed "player skipping all subsequent songs
after the first played" bug.
2005-10-26 20:55 dynamite
* AUTHORS, NEWS, README, TODO, src/Makefile.am, src/adplug.cpp,
src/rix.cpp, src/rix.h: Added RIX player.
2005-10-23 23:25 dynamite
* src/: psi.cpp, psi.h: Cleaned endianness of PSI player.
2005-10-23 21:05 dynamite
* src/: hybrid.cpp, rat.cpp, rat.h: Cleaned up endianness in hybrid
and rat players
2005-10-23 04:50 dynamite
* src/mid.cpp, test/ice_thnk.ref, test/mi2.ref, test/michaeld.ref:
Fixed MIDI player to correctly reset OPL chip. Fixed test-suite
accordingly.
2005-10-23 02:06 dynamite
* src/opl.h, test/playertest.cpp, test/samurai.ref: Added
constructor to Copl to set defaults. Modified test-suite to adapt
to new OPL3/Dual-OPL2 support.
2005-10-22 22:08 dynamite
* test/Makefile.am: Fixed linking of test-suite against correct
(un-installed) adplug library.
2005-10-22 20:37 dynamite
* src/diskopl.cpp, src/diskopl.h, src/dro.cpp, src/msc.cpp,
src/realopl.cpp, test/michaeld.ref, test/samurai.dro,
test/samurai.ref: Added OPL3 support to CDiskopl. Version check
in DRO player. Updated test-suite. Other fixes.
2005-10-21 20:43 dynamite
* NEWS, TODO, test/Makefile.am: Fixed forgotten libbinio dependency
in test-suite.
2005-10-17 07:05 dynamite
* src/: emuopl.cpp, mid.cpp: Nevermind again.
2005-10-16 03:46 dynamite
* src/: mid.cpp, mid.h: Nevermind.
2005-10-16 03:33 dynamite
* src/: dro.cpp, dro.h, emuopl.cpp, emuopl.h, kemuopl.h, mid.cpp,
mid.h, opl.h, realopl.cpp, realopl.h: Added CMF rhythm mode to
MID player. Changed Copl interface: Chip type now getable by
anyone and only setable by frontends. DRO player honours chip
type now. Dual OPL2 and OPL3 support in all implementations that
could possibly support it (i.e. all, except Ken's OPL2 emulator).
2005-10-13 21:53 dynamite
* NEWS, README, src/analopl.cpp, src/analopl.h, src/emuopl.cpp,
src/emuopl.h, src/kemuopl.h, src/opl.h, src/raw.cpp, src/raw.h,
src/realopl.cpp, src/realopl.h, src/silentopl.h: Built OPL3 and
dual OPL2 support into emuopl, analopl and realopl classes.
Added OPL3 support to RAW player.
2005-09-26 19:41 dynamite
* NEWS, src/imf.cpp, src/imf.h: Added support for Adam Nielsen's
tag format.
2005-09-19 18:17 dynamite
* doc/libadplug.texi: Fixed line ending.
2005-09-19 06:40 dynamite
* .cvsignore: compile script needs to be ignored, too.
2005-09-19 06:39 dynamite
* AUTHORS, COPYING, INSTALL, Makefile.am, NEWS, adplug.pc.in,
configure.in, adplugdb/Makefile.am, src/Makefile.am,
src/adlibemu.c, src/adlibemu.h, src/msc.cpp: Ken's OPL emulator
is now free. Added pkg-config script. Made compatible with new
libbinio (1.4).
2005-05-13 21:48 dynamite
* ChangeLog: Updated the changelog.
2005-05-13 03:46 dynamite
* AUTHORS, COPYING, NEWS, TODO, configure.in, adplugdb/getopt.h,
src/adlibemu.c, src/adlibemu.h, src/adplug.cpp: Switched license
to fully LGPL'd. This is for release 1.5.1.
2005-01-17 07:12 dynamite
* contrib/MSVC6/.cvsignore: Updated by TortoiseCVS
2005-01-17 06:59 dynamite
* contrib/MSVC6/.cvsignore: Updated by TortoiseCVS
2005-01-17 06:01 dynamite
* contrib/: README, MSVC6/adplug.dsp, MSVC6/readme.txt,
MSVC6/vc6inst.bat: Added contrib repository.
2005-01-17 05:51 dynamite
* src/: adplug.dsp, vc6inst.bat: MSVC projects are now obsolete and
moved to contrib folder
2005-01-03 07:03 dynamite
* AUTHORS, src/Makefile.am, src/Makefile.bt, src/adplug.cpp,
src/adplug.dsp, src/emuopl.cpp, src/emuopl.h, src/msc.cpp,
src/msc.h, src/temuopl.h, src/ymf262.cpp, src/ymf262.h: Added
generic support for dual OPL2 and OPL3 chips. Added support for
MSC files.
2004-10-15 20:17 dynamite
* NEWS, TODO, src/Makefile.am, src/dro.cpp, src/emuopl.cpp,
src/emuopl.h, src/opl.h, src/player.cpp, src/player.h,
src/temuopl.cpp, src/temuopl.h, src/ymf262.cpp: Added OPL3
support.
2004-10-07 20:55 dynamite
* AUTHORS, NEWS, configure.in, adplugdb/getopt.h, src/Makefile.am,
src/adplug.cpp, src/analopl.cpp, src/analopl.h, src/emuopl.cpp,
src/realopl.cpp, src/realopl.h: Added hardware OPL drivers to
UNIX build. Support for MinGW (cross-)compilers.
2004-10-04 17:37 zeromus
* src/opl.h: oops, fixed a goofup
2004-10-04 08:30 zeromus
* src/: opl.h, player.cpp, player.h, dro.cpp, emuopl.cpp, emuopl.h,
ymf262.cpp, ymf262.h: . enhanced DRO support . added opl3 core in
ymf262.cpp . modified driver and player to support more than one
opl core . modified emuopl driver to take advantage of new driver
interfaces. it is now the first driver capable of handling the
new modes (opl3 and dualopl2)
2004-10-01 02:18 dynamite
* src/: adplug.dsp, kemuopl.h: Release 1.5
2004-10-01 00:28 dynamite
* ChangeLog, src/hsp.cpp, test/Makefile.am: Release 1.5
2004-09-30 02:50 dynamite
* test/: SATNIGHT.HSP, SATNIGHT.ref: Added HSP test case.
2004-09-30 02:45 dynamite
* ChangeLog, src/hsp.cpp, src/hsp.h, test/playertest.cpp: Fixed HSP
loader and added test case.
2004-09-30 01:38 dynamite
* doc/: .cvsignore, libadplug.texi: Updated documentation.
2004-09-29 04:37 dynamite
* src/adplug.dsp, src/kemuopl.h, src/lds.cpp, test/loudness.ref:
Updated loudness test reference file.
2004-09-28 06:38 dynamite
* src/lds.h: Forgot to save, woops.
2004-09-28 06:37 dynamite
* INSTALL, README, src/lds.cpp, src/lds.h: Finalized loudness
player! yeah!
2004-09-04 04:43 dynamite
* AUTHORS, BUGS, TODO: Updated some docs.
2004-09-03 23:05 dynamite
* INSTALL.win32, Makefile.bt, Makefile.wat, README, TODO,
src/Makefile.bt, src/adplug.dsp, src/d00.cpp, src/lds.cpp,
src/lds.h, src/s3m.cpp: DOS/Windows fixes.
2004-09-03 21:45 dynamite
* test/: ice_thnk.sci, loudness.lds, mi2.laa: Fixed test-suite.
2004-09-03 21:18 dynamite
* test/Makefile.bt: Added Watcom Makefile
2004-09-03 21:16 dynamite
* test/loudness.lds: [no log message]
2004-09-03 21:07 dynamite
* test/: 2001.ref, ADAGIO.ref, ALLOYRUN.ref, ARAB.ref, BEGIN.ref,
BOOTUP.ref, CHILD1.ref, DTM-TRK1.ref, HIP_D.ref, MARIO.ref,
PLAYMUS1.ref, REVELAT.ref, SAILOR.ref, SCALES.ref, SMKEREM.ref,
SONG1.ref, TOCCATA.ref, TUBES.ref, loudness.lds, playertest.cpp,
TU_BLESS.ref, VIB_VOL3.ref, 2001.MKJ.ref, ADAGIO.DFM.ref,
WONDERIN.ref, adlibsp.ref, bmf1_2.ref, fdance03.ref, flash.ref,
hybrid.ref, hyp.ref, ice_thnk.ref, inc.ref, loudness.ref,
mi2.ref, michaeld.ref, playertest.dsp, psi1.ref, rat.ref,
samurai.ref, ALLOYRUN.RAD.ref, ARAB.BAM.ref, BEGIN.KSM.ref,
BOOTUP.M.ref, CHILD1.XSM.ref, DTM-TRK1.DTM.ref, HIP_D.ROL.ref,
MARIO.A2M.ref, PLAYMUS1.SNG.ref, REVELAT.SNG.ref, SAILOR.CFF.ref,
SCALES.SA2.ref, SMKEREM.HSC.ref, SONG1.sng.ref, TOCCATA.MAD.ref,
TUBES.SAT.ref, TU_BLESS.AMD.ref, VIB_VOL3.D00.ref,
WONDERIN.IMF.ref, adlibsp.s3m.ref, bmf1_2.xad.ref,
fdance03.dmo.ref, flash.xad.ref, hybrid.xad.ref, hyp.xad.ref,
ice_think.sci, ice_think.sci.ref, inc.raw.ref, loudness.lds.ref,
mi2_big_tree1.laa, mi2_big_tree1.laa.ref, michaeld.cmf.ref,
psi1.xad.ref, rat.xad.ref, samurai.dro.ref: Made test-suite
compatible with 8+3 char filename systems (i.e. DOS).
2004-09-03 06:27 dynamite
* test/: .cvsignore: Updated by TortoiseCVS
2004-09-03 05:48 dynamite
* src/dmo.cpp: Fixed endianness of TwinTeam player.
2004-09-03 03:07 dynamite
* BUGS, src/rol.cpp, src/sa2.cpp: More architecture changes.
2004-09-02 07:05 dynamite
* src/rol.cpp, src/rol.h, test/HIP_D.ROL.ref, test/playertest.cpp:
Updated rol player.
2004-09-02 05:07 dynamite
* test/: 2001.MKJ.ref, ADAGIO.DFM.ref, ALLOYRUN.RAD.ref,
ARAB.BAM.ref, BEGIN.KSM.ref, BOOTUP.M.ref, CHILD1.XSM.ref,
DTM-TRK1.DTM.ref, HIP_D.ROL.ref, MARIO.A2M.ref, PLAYMUS1.SNG.ref,
REVELAT.SNG.ref, SAILOR.CFF.ref, SCALES.SA2.ref, SMKEREM.HSC.ref,
SONG1.sng.ref, TOCCATA.MAD.ref, TUBES.SAT.ref, TU_BLESS.AMD.ref,
VIB_VOL3.D00.ref, WONDERIN.IMF.ref, adlibsp.s3m.ref,
bmf1_2.xad.ref, fdance03.dmo.ref, flash.xad.ref, hybrid.xad.ref,
hyp.xad.ref, ice_think.sci.ref, inc.raw.ref, loudness.lds.ref,
mi2_big_tree1.laa.ref, michaeld.cmf.ref, playertest.cpp,
psi1.xad.ref, rat.xad.ref, samurai.dro.ref: Slightly modified
test suite reference format. Now using hex-values.
2004-09-02 03:32 dynamite
* src/: dmo.cpp, dmo.h: Made player endian and wordsize clean.
2004-09-01 22:33 dynamite
* src/dmo.cpp, src/dmo.h, src/hsc.cpp, src/hsc.h, src/lds.cpp,
src/lds.h, src/player.h, test/SMKEREM.HSC.ref,
test/playertest.cpp: Endian fixes. OPL write fixes. LOUDNESS
player now reports song position.
2004-08-31 23:20 dynamite
* test/: HIP_D.ROL.ref, loudness.lds.ref: Updated test-suite.
2004-08-31 08:20 dynamite
* NEWS, src/adplug.cpp, src/lds.cpp: Finalized LOUDNESS player.
just some small quirks left.
2004-08-26 22:23 dynamite
* src/Makefile.am, src/lds.cpp, src/lds.h, src/sa2.cpp,
test/HIP_D.ROL.ref, test/MARIO.A2M.ref, test/loudness.lds,
test/playertest.cpp: Implemented LOUDNESS player. SA2 amd64
fixes. Fixed test-suite.
2004-08-26 00:53 dynamite
* src/: rol.cpp, rol.h: Added pitch event handling and quirks to
make it work on amd64.
2004-08-19 02:33 dynamite
* test/: 2001.MKJ.orig, 2001.MKJ.ref, ADAGIO.DFM.orig,
ADAGIO.DFM.ref, ALLOYRUN.RAD.orig, ALLOYRUN.RAD.ref,
ARAB.BAM.orig, ARAB.BAM.ref, BEGIN.KSM.orig, BEGIN.KSM.ref,
BOOTUP.M.orig, BOOTUP.M.ref, CHILD1.XSM.orig, CHILD1.XSM.ref,
DTM-TRK1.DTM.orig, DTM-TRK1.DTM.ref, HIP_D.ROL.orig,
HIP_D.ROL.ref, MARIO.A2M.orig, MARIO.A2M.ref, PLAYMUS1.SNG.orig,
PLAYMUS1.SNG.ref, REVELAT.SNG.orig, REVELAT.SNG.ref,
SAILOR.CFF.orig, SAILOR.CFF.ref, SCALES.SA2.orig, SCALES.SA2.ref,
SMKEREM.HSC.orig, SMKEREM.HSC.ref, SONG1.sng.orig, SONG1.sng.ref,
TOCCATA.MAD.orig, TOCCATA.MAD.ref, TUBES.SAT.orig, TUBES.SAT.ref,
TU_BLESS.AMD.orig, TU_BLESS.AMD.ref, VIB_VOL3.D00.orig,
VIB_VOL3.D00.ref, WONDERIN.IMF.orig, WONDERIN.IMF.ref,
adlibsp.s3m.orig, adlibsp.s3m.ref, bmf1_2.xad.orig,
bmf1_2.xad.ref, fdance03.dmo.orig, fdance03.dmo.ref,
flash.xad.orig, flash.xad.ref, hybrid.xad.orig, hybrid.xad.ref,
hyp.xad.orig, hyp.xad.ref, ice_think.sci.orig, ice_think.sci.ref,
inc.raw.orig, inc.raw.ref, mi2_big_tree1.laa.orig,
mi2_big_tree1.laa.ref, michaeld.cmf.orig, michaeld.cmf.ref,
playertest.cpp, psi1.xad.orig, psi1.xad.ref, rat.xad.orig,
rat.xad.ref, samurai.dro.orig, samurai.dro.ref: .orig was a bad
file extension decision for the reference files, as it is the
standard extension used by patch to mark an original and is also
ignored by CVS by default. I thus renamed all reference files to
have an extension of .ref instead.
2004-08-19 02:24 dynamite
* test/: HIP_D.ROL.orig, bmf1_2.xad.orig, flash.xad.orig,
hybrid.xad.orig, hyp.xad.orig, psi1.xad.orig: Added more
reference file formats.
2004-08-19 02:23 dynamite
* src/dro.cpp, src/raw.cpp, test/HIP_D.ROL, test/bmf1_2.xad,
test/flash.xad, test/hybrid.xad, test/hyp.xad, test/inc.raw.orig,
test/playertest.cpp, test/psi1.xad, test/standard.bnk: Added more
reference formats to test-suite.
2004-08-19 00:48 dynamite
* test/: 2001.MKJ.orig, 2001.MKJ.orig.raw, ADAGIO.DFM.orig,
ADAGIO.DFM.orig.raw, ALLOYRUN.RAD.orig, ALLOYRUN.RAD.orig.raw,
ARAB.BAM.orig, ARAB.BAM.orig.raw, BEGIN.KSM.orig,
BEGIN.KSM.orig.raw, BOOTUP.M.orig, BOOTUP.M.orig.raw,
CHILD1.XSM.orig, CHILD1.XSM.orig.raw, DTM-TRK1.DTM.orig,
DTM-TRK1.DTM.orig.raw, MARIO.A2M.orig, MARIO.A2M.orig.raw,
PLAYMUS1.SNG.orig, PLAYMUS1.SNG.orig.raw, REVELAT.SNG.orig,
REVELAT.SNG.orig.raw, SAILOR.CFF.orig, SAILOR.CFF.orig.raw,
SCALES.SA2.orig, SCALES.SA2.orig.raw, SMKEREM.HSC.orig,
SMKEREM.HSC.orig.raw, SONG1.sng.orig, SONG1.sng.orig.raw,
TOCCATA.MAD.orig, TOCCATA.MAD.orig.raw, TUBES.SAT.orig,
TUBES.SAT.orig.raw, TU_BLESS.AMD.orig, TU_BLESS.AMD.orig.raw,
VIB_VOL3.D00.orig, VIB_VOL3.D00.orig.raw, WONDERIN.IMF.orig,
WONDERIN.IMF.orig.raw, adlibsp.s3m.orig, adlibsp.s3m.orig.raw,
fdance03.dmo.orig, fdance03.dmo.orig.raw, ice_think.sci.orig,
ice_think.sci.orig.raw, inc.raw.orig, inc.raw.orig.raw,
mi2_big_tree1.laa.orig, mi2_big_tree1.laa.orig.raw,
michaeld.cmf.orig, michaeld.cmf.orig.raw, playertest.cpp,
rat.xad.orig, rat.xad.orig.raw, samurai.dro.orig,
samurai.dro.orig.raw: Switched to new player test reference file
format.
2004-08-18 06:30 dynamite
* src/cff.cpp, src/dmo.cpp, src/dtm.cpp, src/mid.cpp,
src/protrack.cpp, src/raw.cpp, src/sng.cpp,
test/TOCCATA.MAD.orig.raw, test/TUBES.SAT.orig.raw,
test/TU_BLESS.AMD.orig.raw, test/inc.raw.orig.raw,
test/playertest.cpp: Fixed multiple memory leaks.
2004-08-17 07:15 dynamite
* INSTALL, INSTALL.unix, NEWS: Updated autotools.
2004-08-17 07:10 dynamite
* INSTALL, src/mkj.cpp, test/2001.MKJ.orig.raw,
test/playertest.cpp: Fixed MKJamz player on multi-CPU platforms.
2004-08-16 23:44 dynamite
* test/playertest.cpp: Added status info.
2004-08-16 08:20 dynamite
* test/playertest.cpp: Added playernames.
2004-08-16 08:15 dynamite
* test/.cvsignore: Added .cvsignore.
2004-08-16 08:14 dynamite
* test/2001.MKJ, test/2001.MKJ.orig.raw, test/ADAGIO.DFM,
test/ADAGIO.DFM.orig.raw, test/ALLOYRUN.RAD,
test/ALLOYRUN.RAD.orig.raw, test/ARAB.BAM,
test/ARAB.BAM.orig.raw, test/BEGIN.KSM, test/BEGIN.KSM.orig.raw,
test/BOOTUP.M, test/BOOTUP.M.orig.raw, test/CHILD1.XSM,
test/CHILD1.XSM.orig.raw, test/DTM-TRK1.DTM,
test/DTM-TRK1.DTM.orig.raw, test/MARIO.A2M,
test/MARIO.A2M.orig.raw, test/Makefile.am, test/PLAYMUS1.SNG,
test/PLAYMUS1.SNG.orig.raw, test/REVELAT.SNG,
test/REVELAT.SNG.orig.raw, test/SAILOR.CFF,
test/SAILOR.CFF.orig.raw, test/SCALES.SA2,
test/SCALES.SA2.orig.raw, test/SMKEREM.HSC,
test/SMKEREM.HSC.orig.raw, test/SONG1.ins, test/SONG1.sng,
test/SONG1.sng.orig.raw, test/TOCCATA.MAD,
test/TOCCATA.MAD.orig.raw, test/TUBES.SAT,
test/TUBES.SAT.orig.raw, test/TU_BLESS.AMD,
test/TU_BLESS.AMD.orig.raw, test/VIB_VOL3.D00,
test/VIB_VOL3.D00.orig.raw, test/WONDERIN.IMF,
test/WONDERIN.IMF.orig.raw, test/adlibsp.s3m,
test/adlibsp.s3m.orig.raw, test/fdance03.dmo,
test/fdance03.dmo.orig.raw, test/ice_think.sci,
test/ice_think.sci.orig.raw, test/icepatch.003, test/inc.raw,
test/inc.raw.orig.raw, test/insts.dat, test/mi2_big_tree1.laa,
test/mi2_big_tree1.laa.orig.raw, test/michaeld.cmf,
test/michaeld.cmf.orig.raw, test/playertest.cpp, test/rat.xad,
test/rat.xad.orig.raw, test/samurai.dro,
test/samurai.dro.orig.raw, Makefile.am, configure.in: Added
Test-Suite.
2004-08-09 22:08 dynamite
* adplugdb/getopt.c, adplugdb/getopt.h, doc/Makefile.am: Reverted
getopt.
2004-08-09 05:20 dynamite
* adplugdb/: adplugdb.cpp, getopt.c, getopt.h: Updated getopt.
2004-08-07 07:45 dynamite
* NEWS, README, doc/Makefile.am, src/dro.cpp: Updated distclean
target.
2004-07-09 23:11 dynamite
* src/: adplug.dsp, amd.cpp: Windows fixes.
2004-07-05 23:03 dynamite
* AUTHORS, COPYING, src/Makefile.am, src/adplug.cpp, src/amd.cpp,
src/dro.cpp, src/dro.h: Added "DOSBox Raw OPL" player (.dro).
Fixed AMD loader.
2004-05-15 01:21 dynamite
* src/ksm.cpp: Fixed drums in ksm player.
2004-05-13 19:33 dynamite
* COPYING, NEWS, README, adplugdb/.cvsignore, src/Makefile.am,
src/adlibemu.c, src/adlibemu.h, src/emuopl.h, src/kemuopl.h,
src/lds.cpp, src/opl.h: Added Ken Silverman's emulator again.