-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog.3
1523 lines (1115 loc) · 55.2 KB
/
ChangeLog.3
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
2012-06-28 TAMUKI Shoichi <[email protected]>
* configure.in: Change version to 2.14.0
2012-06-28 Yair K. <[email protected]>
* interface/xaw_i.c: Under some rare circumstances (a file
with a specifically crafted name and timidity executed from
the same directory), a missing NULL check in setDirACT can
lead to a crash. Add the check. While at it, add another
NULL check just in case.
2012-06-26 TAMUKI Shoichi <[email protected]>
* NEWS: Add new entry for 2.14.0
2012-06-25 Yair K. <[email protected]>
* timidity/timidity.c: Make timidity continue the dynamic
interface loading loop if dl_load_file fails. Earlier, it
simply returned NULL in that case, which meant that if an
dlopen failed at an dynamic interface loaded before arriving
at the desired interface (say, because of missing
dependencies or bad symlink) one couldn't load said desired
(dynamically-linked) interface at all.
* interface/TiMidity-uj.ad, interface/TiMidity.ad,
interface/x_trace.c, interface/xaw_i.c: Make a double-click
open/save a file in the dialogs. It also removes some
useless casts, and a no longer necessary action
(do-popdown()).
* interface/x_trace.c: Make the trace cut off text in the
instrument name column correctly in the Xft case.
2012-06-12 Yair K. <[email protected]>
* interface/xaw_i.c: xaw interface: various fixes
- There was an off-by-one in the ARGB converter.
- Make sure the pause button can't be set when not playing
- and visa versa for the play button
- leak less memory
* interface/TiMidity-uj.ad, interface/TiMidity.ad,
interface/x_trace.c, interface/xaw_i.c, interface/xdnd.c:
Various fixes
- make the play button activate when autostarting a saved
list and when saving a file (two chunks).
- add a few consts (not needed by most compilers)
- add some keysyms of the numeric keyboard to the resource
files
2012-06-05 Yair K. <[email protected]>
* doc/C/README.xaw, interface/TiMidity-uj.ad,
interface/TiMidity.ad, interface/xaw_i.c, interface/xdnd.c,
interface/xdnd.h: xaw: Setup _NET_WM_ICON correctly
Having upgraded to a new KDE version, I noticed the task
switcher didn't display timidity's thumbnail. Apparently it
doesn't acknowledge the WM_HINTS bitmap.
So the attached diff includes a trivial converter (1bit
bitmap->ARGB) to set up _NET_WM_ICON correctly. It uses the
simple timidity.xbm icon (I also had a version using the
color icon from pixmap/timidity.xpm but I prefer this icon -
I could add that as an option).
The diff also includes some #include rationalization and
resource renaming ("noPlaying" had a different spelling in
.ad files vs the code).
2012-06-01 Takashi Iwai <[email protected]>
* interface/xskin_spectrum.c: [PATCH 1/9] Fix possible invalid
access below the array range
* interface/server_c.c: [PATCH 3/9] Fix the faulty check of
parameters in server_c.c:control_getcmd()
The check of the array size in server_c.c:control_getcmd()
is wrong as the nparmas is incremeted after the check with
MAX_GETCMD_PARAMS. Also, there are other bugs that *nparams
isn't initialized when the first token is NULL, etc.
Overall, the code is unnecessarily tricky.
This patch simplifies the code and fixes the array size
check.
Bugzila: https://bugzilla.novell.com/show_bug.cgi?id=517719
* libunimod/mloader.c: [PATCH 4/9] Add missing void argument
for function declarations
* autoconf/utils.m4: [PATCH 5/9] Add missing quotes in
autoconf/utils.m4
* timidity/timidity.h: [PATCH 6/9] Add the lzma decompression
support
* interface/emacs_c.c: [PATCH 7/9] Fix the missing return
value in emacs_c.c
* timidity/smplfile.c: [PATCH 8/9] Fix type-punning in
smplfile.c
* autoconf/alsa.m4, autoconf/ao.m4, autoconf/arts.m4,
autoconf/esd.m4, autoconf/gtk-2.0.m4, autoconf/gtk.m4,
autoconf/libFLAC.m4, autoconf/libOggFLAC.m4,
autoconf/ogg.m4, autoconf/vorbis.m4, configure.in:
[PATCH 9/9] Use AS_HELP_STRING to make the --help output
more readable
2012-05-29 Yair K. <[email protected]>
* doc/C/README.xaw, interface/TiMidity-uj.ad,
interface/TiMidity.ad, interface/xaw_c.c, interface/xaw_i.c,
interface/xaw_p.h: Make the interface apply the previous
volume. It also fixes some minor display issues (remove the
checkmark next to hidetrace menu item when initing the trace
the first time after starting with '-ia' and 'Disp:Trace'
set to 0, don't allow activing the play button when no files
are loaded).
* interface/x_trace.c, interface/x_trace.h, interface/xaw_i.c,
interface/xdnd.c: Fix some off by ones (one prevented the
channel number being displayed when muting it [right-click
in trace mode], another in xdnd.c led to a gcc warning with
-Wall), and free a bit more memory (less valgrind warnings).
* timidity/miditrace.c: Revert fix soundspec in trace mode
2012-05-26 Hans de Goede <[email protected]>
* configure.in: configure: Fix building of dynamic user
interfaces
* timidity/mac_main.c, timidity/timidity.c: Add a trysource
config file directive
Add a "trysource" config file directive, which allows to try
and source other config files, while continuing without
error if the specified file is missing.
Also cleanup the user config loading code using this new
functionality.
* interface/x_trace.c, interface/xaw_c.c: xaw-interface: Fix
crash when MAX_CHANNELS > 32 (by Yair K.)
* configure.in, doc/C/README.xaw, interface/Makefile.am,
interface/TiMidity-uj.ad, interface/TiMidity.ad,
interface/x_trace.c, interface/x_trace.h, interface/xaw.h,
interface/xaw_c.c, interface/xaw_i.c, interface/xaw_p.h,
interface/xdnd.h: xaw interface update (by Yair K.)
* timidity/timidity.h: Improve timidity default settings
(by Yair K.)
* configure.in: configure: Fix building with X11 based
userinterfaces builtin (Reported by Yair K.)
* interface/xaw_i.c, interface/xdnd.c: Fix compiler warnings
from clang (by Yair K.)
* interface/xaw_i.c: Xaw: unbreak xdnd (by Yair K.)
2011-12-30 TAMUKI Shoichi <[email protected]>
* COPYING: Remove due to autogenerated file
* Makefile.am, autogen.sh: Add autogen.sh
2011-12-22 Hans de Goede <[email protected]>
* configure.in: [PATCH 18/18] configure: Don't add -lX11 to
the generic LIBS
This stops timidity itself from depending on libX11 even
when build without any interfaces builtin which need libX11.
(revised by TAMUKI Shoichi)
* interface/x_sherry.c: Fix to fit with libpng 1.5 and newer
2011-12-18 TAMUKI Shoichi <[email protected]>
* Makefile.in, aclocal.m4, autoconf/Makefile.in,
autoconf/config.guess, autoconf/config.sub,
autoconf/depcomp, autoconf/install-sh, autoconf/missing,
autoconf/mkinstalldirs, config.h.in, configs/Makefile.in,
configure, doc/C/Makefile.in, doc/Makefile.in,
doc/ja_JP.eucJP/Makefile.in, interface/Makefile.in,
interface/bitmaps/Makefile.in,
interface/motif_bitmaps/Makefile.in,
interface/pixmaps/Makefile.in, libarc/Makefile.in,
libunimod/Makefile.in, script/Makefile.in,
timidity/Makefile.in, utils/Makefile.in, windrv/Makefile.in:
Remove all the autogenerated files
2011-12-08 TAMUKI Shoichi <[email protected]>
* interface/alsaseq_c.c: About 4 years ago, a simple patch was
merged, which disabled ALSA sequencer interface polling,
when it's not needed. As a result, when using ALSA
sequencer interface (timidity -iA -B2,8 -q0/0), it comes to
cause a terrible sound. That improves with "timidity -iA",
however the real-time response is too bad for practical use.
So, I reverted the patch as a workaround. And then, I
applied yet another patch instead, which works fine. See
http://fedev.blogspot.com/2007/07/timidity-power-usage.html
2011-12-07 TAMUKI Shoichi <[email protected]>
* timidity/playmidi.c: About 6 years ago, a simple patch was
merged, which changed sustained notes not to drop when
opt_overlap_voice_allow is enabled. Perhaps, that might
have a good effect in a certain case, however it often
misses the tracer display. So, I reverted the patch as a
workaround.
2011-12-06 TAMUKI Shoichi <[email protected]>
* interface/Makefile.am, interface/timidity.el,
interface/timidity.pel: Set the absolute path of timidity
in timidity.el automatically; add timidity.pel file to be
preprocessed, and remove timidity.el
* configure.in: In the case of --enable-dynamic=emacs and
--enable-dynamic=alsaseq, make install timidity.el and
enable the long option of ALSA sequencer interface,
respectively (in addition, autoreconf)
2011-12-05 Hans de Goede <[email protected]>
* interface/tkmidity.ptcl, interface/tkpanel.tcl,
script/dllutl.rb: [PATCH 11/17] Make shebang paths
/usr/bin/foo rather then /usr/local/bin/foo
This makes life easier for packagers, people who want to use
non standard paths will need to fix this up themselves...
(revised by TAMUKI Shoichi)
2011-12-04 TAMUKI Shoichi <[email protected]>
* configure.in: Support for Tcl/Tk 8.5 and autoreconf
2011-12-04 Hans de Goede <[email protected]>
* timidity/esd_a.c: [PATCH 1/9] esd_a: Don't start ESD
Don't start ESD if it is not running yet, esp. not from
detect() !
* timidity/ao_a.c: [PATCH 2/9] libao: Add a detect() function
Most Linux distros use pulseaudio by now, and libao is the
best way to use pulseaudio from timidity. This patch adds a
detect function to libao, which will make libao autodetect
succeed only when pulse is available, so that we can prefer
libao in the probe order to get pulse, without also getting
libao on systems where we should be using alsa directly.
* timidity/output.c: [PATCH 3/9] Change audio output detection
order
First try the various desktop daemons we support, and only
when those are not available use the systems native sound
system. Also try ALSA before the native sound system, since
the native sound system on Linux is set to OSS, and ALSA
definitely is preferable over OSS.
* doc/C/timidity.1, doc/C/timidity.cfg.5: [PATCH 4/9] Various
man page fixes
courtesy of Debian (revised by TAMUKI Shoichi)
* interface/alsaseq_c.c, timidity/timidity.c: [PATCH 6/9] Fork
earlier when we're going to run deamonized in ALSA sequencer
mode
If we're going to fork for daemon mode, we need to fork
earlier, as certain output libraries (pulseaudio) become
unhappy if initialized before forking and then being used
from the child.
* timidity/flac_a.c: [PATCH 7/9] flac_a: Fix compiling with
recent flac versions
The LEGACY_FLAC test was only succeeding on windows since
the FLAC/export.h was inside a windows #ifdef block.
While at it also fix various compiler warnings, including
atleast 2 real bugs:
1) The missing include for common.h meant the safe_malloc
prototype was missing, making the compiler assume it
returns an int -> fail on 64 bits
2) The | with FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA
in the error handling test was missing () and it is the
wrong thing to do in general since this is an enum not a
flags field.
* timidity/controls.c, timidity/effect.c, timidity/oss_a.c,
timidity/playmidi.h, timidity/speex_a.c, timidity/wrd.h:
[PATCH 8/9] Fix a bunch of: warning: implicit declaration of
function ... warnings
* timidity/sndfont.c: [PATCH 9/9] sndfont: Work around
soundfonts with missing links between stereo samples
Some sf2 files have all their link ids between stereo
samples set to 0, this patch works around that, atleast for
files which have 2 matching the matched left + right samples
directly after each other in the instruments layers list.
* interface/gtk_i.c, interface/server_c.c, interface/tk_c.c,
interface/wrdt_tty.c, interface/x_sherry.c, interface/xaw_c.c,
interface/xaw_i.c, interface/xskin_c.c, libarc/unlzh.c,
libunimod/load_far.c, libunimod/load_it.c, libunimod/mloader.c,
libunimod/mlutil.c, timidity/ao_a.c, timidity/calcnewt.c,
timidity/common.c, timidity/effect.c, timidity/esd_a.c,
timidity/freq.c, timidity/instrum.c, timidity/loadtab.c,
timidity/m2m.c, timidity/miditrace.c, timidity/output.c,
timidity/playmidi.c, timidity/readmidi.c, timidity/recache.c,
timidity/resample.c, timidity/reverb.c, timidity/smplfile.c,
timidity/speex_a.c, timidity/timidity.c, utils/net.c,
utils/nkflib.c: [PATCH 10/17] Fix / silence various compiler
warnings
* configure.in: [PATCH 14/17] Silence autofoo warnings about
have_speex ac cache identifier (autoreconf by TAMUKI Shochi)
* interface/Makefile.am, interface/dynamic_c.c,
timidity/controls.c, timidity/timidity.c,
(remove) interface/dynamic_c.c: [PATCH 15/17] Get rid of the
dynamic_control_mode ControlMode
This is a left over from before the dynamic_interface_module()
rewrite, not only is it no longer needed its code is plain
wrong, as it still contains a prototype for the old way
different dynamic_interface_module() and tries to call it as
if it were the old version, if that code path where to ever
be invoked bad things (tm) would happen. Luckily it is never
used, so simply nuke it. (autoreconf by TAMUKI Shoichi)
* timidity/dl_dlopen.c: [PATCH 16/17] Silence dlsym errors
The way the new dynamic_interface_module() function probes
for dynamic interfaces cause it to always hit a few dlsym
errors as soon as you have more then one dynamic interface,
so silence these errors.
* timidity/timidity.c: [PATCH 17/17] Fix listing of dynamic
interfaces in --help output
2010-09-19 Kentaro Sato <[email protected]>
* timidity/instrum.[ch]: Fix a bug created at the previous commit
that prevents alternate instruments from loading occasionally.
* timidity/instrum.c, timidity/readmidi.[ch]:
Fix a bug that ignores user drum source instrument when
"soundfont" directive is used.
* timidity/playmidi.c: Fix a bug that ignores non-standard drumsets
when a soundfont is specified with "soundfont" directive and
the instrument is loaded as needed.
* interface/w32g_pref.c: Fix potential uninitialized pointers access.
* interface/w32g_syn.c: Add access keys to some of twsyng menuitems.
2010-09-12 Kentaro Sato <[email protected]>
* timidity/timidity.c (set_val_float_t):
Fix an error message for the bad floating point values.
* timidity/instrum.c: Fix a bug that ignores non-standard drumsets
when a soundfont is specified with "soundfont" directive.
2010-08-28 Kentaro Sato <[email protected]>
* timidity/timidity.c: Remove the current directory for
the search path of LoadLibrary(), which is invoked when using
output formats that depends on a DLL. (Windows executable)
Quick fix for Microsoft Security Advisory 2269637.
2010-07-10 Kentaro Sato <[email protected]>
* timidity/sndfont.c: Correct soundfont broken loop point
to avoid infinite loop on resampling.
2010-06-05 Kentaro Sato <[email protected]>
* timidity/reverb.[ch]:
Fix insertion effect Lo-Fi making loud noise.
* timidity/mix.c: Workaround for Moog VCF making loud noise.
* timidity/playmidi.c: Remove obsolete filter frequency cap.
2010-05-23 Kentaro Sato <[email protected]>
* timidity/readmidi.c, timidity/reverb.[ch]:
Fix ch_3tap_delay crash.
* timidity/sndfont.c:
Fix infinite loop on reusing soundfont struct.
2010-05-17 Eric A. Welsh <[email protected]>
* timidity/readmidi.c: Allow Device Numbers other than 0x10 for
XG SYSTEM ON SYSEX events.
* timidity/mix.c: Fix existing anti-popping minimum volume ramps
for expression, volume, pans, etc.
Extend anti-popping minimum volume ramps to envelope amp changes.
2009-12-23 Yair K. <[email protected]>
* timidity/sun_a.c (acntl):
Fix for message PM_REQ_GETQSIZ, PM_REQ_GETFRAGSIZ.
2009-12-19 Kentaro Sato <[email protected]>
* timidity/readmidi.c: Fixed crash when loading long music.
* timidity/output.[ch], timidity/timidity.c:
Fixed corruption of the default device encoding on some occasion.
* timidity/output.[ch], timidity/w32_a.c:
Fixed Windows audio driver 24-bit output.
* interface/w32g_syn.c: Better tray icon removal.
2009-10-04 Kentaro Sato <[email protected]>
* doc/C/timidity.1, doc/ja_JP.eucJP/timidity.1,
timidity/reverb.[ch], timidity/timidity.c:
Added Freeverb parameter options to --reverb.
* timidity/freq.c, timidity/sndfont.c:
Reduced warnings.
2009-03-16 TAMUKI Shoichi <[email protected]>
* timidity/readmidi.c (gloom_list):
Fix for GM2 drumch on program change
* timidity/playmidi.c (midi_drumpart_change): Beautify
2009-03-15 Kentaro Sato <[email protected]>
* timidity/miditrace.c:
Fix for Mac sound spectrum being out of sync in trace mode.
* timidity/reverb.c:
Revert r1.69 change for panning delay that caused off-by-one.
2009-03-15 Kentaro Sato <[email protected]>
* interface/w32g_c.c: Display errors reported on startup.
* interface/w32g_utl.c: Add configuration fallbacks.
* timidity/midi_a.c: Remove unused local variables.
* timidity/sndfont.c:
CFG_FOR_SF_SUPPORT_FFT can be externally defined. (cfgforsf)
2009-03-04 TAMUKI Shoichi <[email protected]>
* interface/ncurs_c.c, timidity/readmidi.c:
Fix to fit with MAX_CHANNELS > 32
* timidity/playmidi.c (find_voice): Beautify
2008-12-06 Keishi Suenaga <[email protected]>
* configure.in: Fix mingw detection and replace wsock32 by ws2_32.
* timidity/w32_libOggFLAC_dll.c: Small fix.
* utils/getaddrinfo.c(new file), utils/Makefile.am, utils/net.c:
utils/net.h: Windows 2000 compatible network.
2008-05-22 Yair K. <[email protected]>
* interface/xaw_i.c: reinstate one line.
2008-05-22 TAMUKI Shoichi <[email protected]>
* utils/net.c: Fix for AI_ADDRCONFIG unsupported
2008-05-21 Yair K. <[email protected]>
* interface/server_c.c, libarc/url_ftp.c, libarc/url_http.c,
libarc/url_news.c, timidity/timidity.c, utils/net.c:
add ipv6 support.
* timidity/sysdep.h: include more possible LP64 defines.
* timidity/readmidi.c: fix for broken karaoke files produced
by abc2mid.
* interface/xaw_i.c, interface/xaw.h: make compatible with
xaw3d v1.5, style changes.
* interface/TiMidity(-uj).ad: move useButtom, useRight resources
from xaw_i.c to here.
* timidity/oss_a.c: use 0x7fff arg to get maximum number of
fragments. modernize ioctls a bit.
2008-04-16 Keishi Suenaga <[email protected]>
* interface/w32g_pref.c: WIN64 with AMD64 small fix
2008-04-16 Keishi Suenaga <[email protected]>
patches by Yair K.
* interface/xaw_i.c, interface/x_trace.c, interface/x_trace.h:
xaw SIGSEGV fix.
2008-04-16 Keishi Suenaga <[email protected]>
a patch by Stas Sergeev
* interface/alsaseq_c.c: idle time patch.
2008-04-13 Keishi Suenaga <[email protected]>
* configure.in, doc/C/README.w32, doc/ja_JP.eucJP/README.w32,
interface/Makefile.am, timidity/sysdep.h:
update files about Compile for Windows.
* interface/w32g.h, interface/w32g_c.c, interface/w32g_i.c,
interface/w32g_pref.c, interface/w32g_ut2.c, interface/w32g_utl.c,
timidity/controls.h, timidity/optcode.h, timidity/playmidi.c,
timidity/sysdep.h, timidity/w32_a.c, timidity/reverb.c:
support for WIN64 with AMD64
2008-04-08 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c: Fix atavism (reversion) and change a bit
2008-04-08 Keishi Suenaga <[email protected]>
* timidity/ao_a.c, timidity/portaudio_a.c, timidity/timidity.c,
timidity/w32_a.c: select audio device only in -o option
2008-04-06 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c: Revert short -Od(n) option for output
device ID
2008-04-06 Keishi Suenaga <[email protected]>
* timidity/w32_libFLAC_dll.c, timidity/w32_libFLAC_dll_g.h:
support new flac dll(1.2.1)
2008-04-06 Keishi Suenaga <[email protected]>
* timidity/common.c, timidity/speex_a.c: fix compliation
* timidity/midi_a.c: BorlancC patch
2008-04-05 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c: Remove short option -Od(n) for output
device ID because -O? option is assigned for output format
* TiMidity(-uj).ad, interface/Makefile.am: Fix trivial typo,
translate into Japanese, and move to interface directory
TODO: update man page of timidity.1
--output-devices=n
--preserve-silence
TODO: update ja_JP.eucJP/README.xaw
2008-04-03 Keishi Suenaga <[email protected]>
patches by Yair K.
* interface/Makefile.am, bitmaps/Makefile.am, interface/arrow.xbm,
interface/check.xbm, interface/off.xbm, interface/on.xbm: remove
2008-04-02 Keishi Suenaga <[email protected]>
patches by Yair K.
* timidity/common.c, common.makefile.in, configure.in,
doc/C/README.xaw, interface/arrow.xbm, interface/check.xbm,
interface/Makefile.am, interface/off.xbm, interface/on.xbm,
interface/xaw_c.c, interface/xaw.h, interface/xaw_i.c,
Makefile.am, Makefile.in, script/unix2dos.sh, timidity/aiff_a.c,
timidity/au_a.c, timidity/common.c, timidity/flac_a.c,
timidity/gogo_a.c, timidity/m2m.c, timidity/midi_a.c,
timidity/modmid_a.c, imidity/output.h, timidity/playmidi.c,
timidity/raw_a.c, timidity/speex_a.c, timidity/vorbis_a.c,
timidity/wave_a.c: some improvements of XAW interface.
* interface/bitmaps/arrow.xbm, interface/bitmaps/check.xbm,
interface/bitmaps/fast.xbm, interface/bitmaps/keydown.xbm,
interface/bitmaps/keyup.xbm, interface/bitmaps/off.xbm,
interface/bitmaps/on.xbm, interface/bitmaps/slow.xbm,
interface/xdnd.c, interface/xdnd.h, interface/x_trace.c,
interface/x_trace.h, TiMidity.ad, TiMidity-uj.ad: add
* TiMidity.ad.in, TiMidity-uj.ad.in: remove
2008-04-01 Keishi Suenaga <[email protected]>
a patch by Milan Zamazal
* timidity/playmidi.c, timidity/playmidi.h, timidity/readmidi.c,
timidity/timidity.c: add preserve-silence option
2008-03-31 Keishi Suenaga <[email protected]>
a patch from Yair K.
* configure.in, utils/support.c, utils/support.h: fix-snprintf-crash
2008-03-30 Keishi Suenaga <[email protected]>
patches from Yair K.
* libarc/arc_tar.c: fix archive add crash
* timidity/reverb.c: fix reverb crash from Debian
* timidity/miditrace.c: fix soundspec in trace mode
* autoconf/utils.m4, configure.in, timidity/Makefile.am,
timidity/midi_a.c, timidity/output.c, timidity/reverb.c,
timidity/reverb.h, timidity/sun_a.c, timidity/sysdep.h:
for support OpenBSD
2008-03-28 Stas Sergeev <[email protected]>
* timidity/midi_a.c: remove gnuc extensions
2007-03-10 Keishi Suenaga <[email protected]>
* interface/npsyn_c.c, interface/rtsyn.h, interface/rtsyn_common.c,
interface/rtsyn_npipe.c, timidity/npipe_a.c, timidity/playmidi.c,
timidity/portaudio_a.c, timidity/timidity.c, utils/timer.c:
Windows Named Pipe interface.
2007-02-09 Keishi Suenaga <[email protected]>
* interface.h.in: Windows Named Pipe interface
* timidity/timidity.c: fix typo
2007-02-09 Keishi Suenaga <[email protected]>
* configure.in, interface/Makefile.am, interface/rtsyn.h,
interface/rtsyn_common.c, timidity/Makefile.am, timidity/output.c,
timidity/timidity.c, timidity/controls.c:
Windows Named Pipe interface (new)
* interface/npsyn_c.c, interface/rtsyn_npipe.c, timidity/npipe_a.c:
(add)
* timidity/resample.c: small fix freeing gauss_table.
* windrv/timiditydrv.c, windrv/timiwp_timidity.c:
fix for WindowsMediaPlayer.
2007-01-28 Keishi Suenaga <[email protected]>
* interface/rtsyn_common.c: fix sysex check
* timidity/portaudio_a.c, timidity/w32_a.c: small fix for compiling
* timidity/timidity.c: w32 cfg file sequence changed
(option > exe dir > win dir). w32 set stdin&out binarymode
* windrv/Makefile.am, windrv/timiditydrv.idl: re-add timidity.idl
* windrv/timiditydrv.c: re-add MIDIOUTCAPS2A(W)
2007-01-14 Keishi Suenaga <[email protected]>
* timidity/flac_a.c, timidity/gogo_a.c, timidity/speex_a.c,
timidity/vorbis_a.c, timidity/wave_a.c, timidity/output_a.c:
fix for autofilename
2007-01-13 Keishi Suenaga <[email protected]>
* timidity/wave_a.c: fix for server interface.
2007-01-12 Keishi Suenaga <[email protected]>
* timidity/wave_a.c: fix for autofilename.
2007-01-05 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c (main): Fix to avoid segmentation fault
when "." or nonexistent archive name is given
2007-01-04 Keishi Suenaga <[email protected]>
Fix -iW and timiditydrv.dll sound problem.
* timidity/portaudio_a.c: fix buffer overlow.
2007-01-04 TAMUKI Shoichi <[email protected]>
* timidity/midi_a.c (M_FWRITE):
Keep backward compatibility for gcc-2.95 or earlier
* timidity/timidity.c (parse_opt_output_device): Change a bit
2007-01-03 Keishi Suenaga <[email protected]>
Fix -iW and timiditydrv.dll sound problem.
* timidity/portaudio_a.c: remove broken acntl()s.
2007-01-01 Keishi Suenaga <[email protected]>
* timidity/timidity.c, timidity/w32_a.c,
timidity/portaudio_a.c: can select output device.
2007-01-01 Kentaro Sato <[email protected]>
* timidity/playmidi.[ch], timidity/readmidi.c:
Added support for GM2 Master Fine/Coarse Tuning, GS Master Tune
and XG Master Tuning (4C not 27) SysEx.
* timidity/readmidi.c: Fix suspected typo.
* libarc/unlzh.c: Reverted a useless fix of the previous commit.
2006-12-30 Keishi Suenaga <[email protected]>
* interfece/w32g_pref.c: can change timidity.cfg editor
by environment valuable TIMIDITY_CFG_EDITOR.
2006-12-29 Kentaro Sato <[email protected]>
* timidity/controls.[ch]: Changed argument type of std_write().
* timidity/midi_a.c: Imploved system independency.
* libarc/unlzh.c: Fixed vulnerabilities named
CVE-2006-4335, CVE-2006-4337, CVE-2006-4338.
2006-12-27 Keishi Suenaga <[email protected]>
* timidity/portaudio_a.c: bug fix
* interface/w32g_pref.c, interface/w32g_pref.h,
w32_portaudio_dll.c: asio dialog in win GUI.
2006-12-26 Keishi Suenaga <[email protected]>
* timidity/portaudio_a.c,
timidity/w32_portaudio_dll.c: fix portaudio v19 support
now use only one dll named portaudio.dll.
2006-12-23 Keishi Suenaga <[email protected]>
* windrv/Makefile.am, windrv/timiditydrv.c: free from idl
* windrv/timiditydrv.idl: removed
* windrv/oemsetup.inf: removed
* doc/C/README.w32, doc/ja_JP.eucJP/README.w32: updated
2006-12-23 Keishi Suenaga <[email protected]>
* configure.in, doc/C/README.w32, doc/ja_JP.eucJP/README.w32,
interface/Makefile.am, interface/ncurs_c.c,
interface/rtsyn_common.c, interface/rtsyn_winmm.c,
interface/w32g_syn.c, interface/winsyn_c.c,
interface/wrdt_w32g.c, libarc/Makefile.am, libarc/url_file.c,
libarc/url_ftp.c, libarc/url_http.c, libarc/url_mem.c,
libarc/url_news.c, libarc/url_newsgroup.c, libunimod/Makefile.am,
libunimod/unimod.h, timidity/Makefile.am, timidity/aiff_a.c,
timidity/aq.c, timidity/au_a.c, timidity/controls.c,
timidity/flac_a.c, timidity/gogo_a.c, timidity/list_a.c,
timidity/midi_a.c, timidity/miditrace.c, timidity/mod2midi.c,
timidity/playmidi.c, timidity/playmidi.h, timidity/portaudio_a.c,
timidity/raw_a.c, timidity/readmidi.c, timidity/recache.c,
timidity/sndfont.c, timidity/sysdep.h, timidity/timidity.c,
timidity/w32_a.c, timidity/w32_gogo.c,
timidity/w32_libFLAC_dll.c, timidity/w32_libOggFLAC_dll.c,
timidity/wave_a.c, utils/Makefile.am, utils/mblock.c,
utils/readdir.h, utils/readdir_win.c, utils/support.c,
utils/tmdy_getopt.h, windrv/Makefile.am: Pelles C Compiler support
2006-12-21 Keishi Suenaga <[email protected]>
C++ dependency is removed.
* configure.in: remove AC_PROG_CXX, always link winsock32 for midi_a.c
* windrv/timiditydrv.cpp: removed
* windrv/timiditydrv.c: added
* windrv/Makefile_am: remove C++ dependency
2006-12-20 Keishi Suenaga <[email protected]>
* timidity/midi_a.c: windows compilers support.
* timidity/effect.c: remove duplicate definitions.
2006-12-18 Keishi Suenaga <[email protected]>
* timidity/midi_a.c: u_int8_t must be uint8_t.
* timidity/flac_a.c: fix for mingw.
2006-12-18 Keishi Suenaga <[email protected]>
* autoconf/ogg.m4: from libogg-1.1.3.tar.gz
* autoconf/vorbis.m4: from libvorbis-1.1.2.tar.gz
* timidity/portaudio_a.c: bug fix
2006-12-14 Stas Sergeev <[email protected]>
* interface/server_c.c: extend midi protocol.
* timidity/midi_a.c: new file.
2006-12-13 URABE Shyouhei <[email protected]>
* timidity/flac_a.c: merge patch from FLAC team.
* interface/xaw_i.c: merge patch fixing gcc4 compilation problem.
* interface/alsaseq_c.c, interface/emacs_c.c, interface/gtk_c.c,
interface/mac_c.c, interface/motif_c.c, interface/ncurs_c.c,
interface/portmidisyn_c.c, interface/server_c.c,
interface/tk_c.c, interface/w32g_c.c, interface/w32g_syn.c,
interface/winsyn_c.c, interface/xaw_c.c, interface/xskin_c.c,
timidity/controls.h, timidity/playmidi.c, timidity/playmidi.h,
timidity/sndfont.c, timidity/timidity.c:
propagate return code
2006-07-27 Keishi Suenaga <[email protected]>
* timidity/timidity.c (open_file): Fix coredump when random play.
(free files problem)
2006-06-02 TAMUKI Shoichi <[email protected]>
* timidity/common.c (open_file): Ignore directories only when
loading a GUS/patch instrument in order to avoid the trouble
in {gtk,motif,tcltk} interface and WRD display
* timidity/timidity.c (main): Revert fix supplying suffix '/'
to each argv elements when the path *is* a directory but
*is not* suffixed by '/'
2006-05-31 TAMUKI Shoichi <[email protected]>
* timidity/instrum.c, timidity/readmidi.c:
Revert and fix around alternate assign
2006-05-28 TAMUKI Shoichi <[email protected]>
* interface/mac_c.c, interface/motif_c.c, interface/vt100_c.c,
interface/xaw_c.c, timidity/sndfont.c:
Add struct member of ControlMode to fit with new interface
2006-05-26 Eric A. Welsh <[email protected]>
* timidity/timidity.c (main): The free(files[i]) loop was causing
segfaults by free'ing previously free'd memory. The strings
within files[] are allocated as a single block pointed to by
files[0], then the other string pointers point to the separate
strings within the files[0] block. Thus only files[0] should
be free'd.
2006-05-12 TAMUKI Shoichi <[email protected]>
* coufigure.in: Fix CFLAGS issue
2006-05-06 URABE Shyouhei <[email protected]>
* configure.in: add wcc386 check.
2006-04-14 Stas Sergeev <[email protected]>
* interface/server_c.c: add midi protocol.
2006-03-21 Kentaro Sato <[email protected]>
* timidity/aq.c: Made use of free-on-exit thingie.
* timidity/instrum.c: Reverted needless r1.24 changes.
* timidity/resample.c: Reverted gauss_table to be realloc'ed to allow
interfaces to change N-order dynamically. No leaks.
* timidity/timidity.c: Reverted r1.173 changes around mblock.
* libarc/arc.c: Better path separators skipping.
2006-03-19 Stas Sergeev <[email protected]>
* timidity/timidity.c (main): dynamic allocation of
dynamic_lib_root
* interface/server_c.c: save CPU power
2006-02-04 Keishi Suenaga <[email protected]>
* configure.in, doc/ja_JP.eucJP/README.w32, timidity/Makefile.am,
windrv/Makefile.am, windrv/timiditydrv.cpp, windrv/timiditydrv.def:
timiditydrv.dll can comple with digital Mars
* timidity/portaudio_a.c: enable WRD with portaudio.
* timidity/playmidi.c, interface/rtsyn_common.c, timidity/instrum.c,
timidity/readmidi.c: fix unfreed memory.
2006-01-29 Keishi Suenaga <[email protected]>
* timidity/playmidy.c: export reet_midi();
* interface/rtsyn_common.c: bugfix
* timidity/portaudio_a.c: latency changes by interface charactor.
2006-01-28 Keishi Suenaga <[email protected]>
Fixes of memory leak (checked with win_and dumb win_gui)
* interface/w32g.h, interface/w32g_mag.c, interface/w32g_mag.h,
interface/w32g_playlist.c, interface/w32g_subwin.c,
interface/w32g_subwin.h, interface/w32g_utl.c, interface/w32g_utl.h,
libarc/arc.c, timidity/aq.c, timidity/aq.h, timidity/instrum.c,
timidity/instrum.h, timidity/playmidi.c, timidity/readmidi.c,
timidity/readmidi.h, timidity/recache.c, timidity/recache.h,
timidity/resample.c, timidity/resample.h, timidity/sffile.c,
timidity/sndfont.c, timidity/timidity.c, timidity/wrdt.c,
windrv/timiwp_timidity.c, interface/rtsyn_common.c:
not free_global_mblock() bitween sound;
2006-01-25 Keishi Suenaga <[email protected]>
* windrv/mmddk.h: Added. LGPL version.
* windrv/Makefile.am, doc/ja_JP.eucJP/README.w32, doc/C/README.w32:
no more depence on NTDDK.
* interface/rtsyn_common.c: call free_global_mblock() with option -U
* timidity/readmidi.c: Mingw gcc3 and Borland C hack
2006-01-23 Keishi Suenaga <[email protected]>
* timidity/mix.c, timidity/optcode.c, timidity/optcode.h,
timidity/playmidi.c, timidity/reverb.c, timidity/timidity.c,
timidity/wrd.h, timidity/wrdt.c: supress Borland C inline warrings.
2006-01-23 Keishi Suenaga <[email protected]>
* timidity/readmidi.c: XG reverb fix
* timidity/sysdep.h: digital mars fix
2006-01-21 Keishi Suenaga <[email protected]>
* timidity/portaudio_a.c: bug fix
* interface/w32g_syn.c: digital mars compile fix
* timidity/effect.c: Noise shaping noise fix.
2006-01-19 Keishi Suenaga <[email protected]>
Can compile with Digital Mars.
* configure.in, interface/Makefile.am, libarc/Makefile.am,
libunimod/Makefile.am, timidity/Makefile.am, utils/Makefile.am,
timidity/common.c, timidity/list_a.c, timidity/timidity.c,
utils/support.c: Changes for Digital Mars.
* timidity/effect.c.orig: Noise shaping noise hack.
* script/unix2dos.sh: Added. newline code conversion(LF->CRLF).
2006-01-17 Keishi Suenaga <[email protected]>
* interface/w32g.h: fix LCD array size mismatch hang up.
* interface/w32g_pref.c, interface/w32g_utl.c:
fix over 256 voces hang up about win GUI.
* timidity/reverb.h: small fix.
2006-01-16 Keishi Suenaga <[email protected]>
Supress linker errors about Windows GUI executables.
* configure.in: shape up.
* interface/Makefile.am: don't link tty and dumb objs
to GUI executables.
* interface/w32g_i.c: borand C volatile link problem fix.
* interface/w32g_ut2.c.orig: small fix.
* timidity/controls.c, timidity/timidity.c, timidity/wrdt.c:
GUI executables don't use dumb or tty controls.
* timidity/reverb.c: don't define public variables in .h file.
2006-01-15 Keishi Suenaga <[email protected]>
* configure.in: MSVC compile fix
* windrv/timiditydrv.cpp: use _beginthreadex not CreateThread
* doc/ja_JP.eucJP/README.w32: typo
* script/Makefile.am: add script/wpp386_w.sh
* interface/ncurs_c.c: fix
2006-01-12 Keishi Suenaga <[email protected]>
* doc/C/README.w32, doc/ja_JP.eucJP/README.w32:
add wine wrc.exe discription
* interface/Makefile.am: add rc.exe japanese language option -l0x11
2006-01-12 Keishi Suenaga <[email protected]>
* configure.in: Add mkstemp check
* doc/C/README.w32, doc/ja_JP.eucJP/README.w32:
About timiditydrv compilation
* windrv/Makefile.am: Change to use midl.exe
* windrv/dlldata.c, windrv/timiditydrv.h, windrv/timiditydrv_i.c,
windrv/timiditydrv_p.c:
Removed because will be ganerated by midl.exe.
2006-01-08 Keishi Suenaga <[email protected]>
* configure configure.in, utils/tmdy_getopt.h, doc/C/README.w32,
doc/ja_JP.eucJP/README.w32, script/wcc386_w.sh, timidity/au_a.c,
timidity/wave_a.c, utils/support.h: Changes for OpenWatcom 1.4
2005-12-19 Stas Sergeev <[email protected]>
* interface/server_c.c: Add server version.
2005-12-03 Stas Sergeev <[email protected]>
* interface/server_c.c: Do not ignore SIGPIPE
2005-11-26 URABE Shyouhei <[email protected]>
* timidity/timidity.c (parse_opt_i): fix for possible null-pointer
dereference when interface plugin is not found.
2005-11-26 Stas Sergeev <[email protected]>
* interface/ncurs_c.c, interface/dumb_c.c, interface/slang_c.c,
interface/tk_c.c, interface/emacs_c.c, interface/xskin_c.c,
interface/gtk_c.c, interface/server_c.c, interface/alsaseq_c.c,
interface/dynamic_c.c, timidity/controls.h, timidity/tables.c,
timidity/raw_a.c, timidity/controls.c, timidity/flac_a.c,
timidity/vorbis_a.c, timidity/au_a.c, timidity/wave_a.c,
timidity/aiff_a.c, timidity/speex_a.c:
warn when output to stdout makes no sense
2005-11-15 URABE Shyouhei <[email protected]>
* timidity/sysdep.h: [timidity-bugs-en:61] Add stdint.h check
2005-11-02 Kentaro Sato <[email protected]>
* timidity/playmidi.c: Changed sustained notes not to drop
when opt_overlap_voice_allow is enabled.
* interface/rtsyn.h: Added #ifdef for <sys/types.h>.
2005-11-01 URABE Shyouhei <[email protected]>
* doc/ja_JP.eucJP/README.tk: not -itt but -ikt
(thanks AOKI Taichi @naist)
2005-10-31 Stas Sergeev <[email protected]>
* interface/server_c.c: fix for timing bugs
2005-10-31 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c: Change a bit
2005-10-31 Keishi Suenaga <[email protected]>
* Makefile.am, configure.in, doc/C/README.w32, timidity/Makefile.am,
timidity/timidity.c: Changed files
* windrv/Makefile.am, windrv/dlldata.c, windrv/oemsetup.inf,
windrv/timiditydrv.cpp, windrv/timiditydrv.def,
windrv/timiditydrv.h, windrv/timiditydrv.i,
windrv/timiditydrv.idl, windrv/timiditydrv.inf,
windrv/timiditydrv_i.c, windrv/timiditydrv_p.c,
windrv/timiwp_timidity.c, windrv/timiwp_timidity.h:
Windows Driver merged (New files)
2005-10-31 Keishi Suenaga <[email protected]>
* timidity/portaudio_a.c: for ASIO4ALL fix
* interface/rtsyn.h, interface/rtsyn_common.c: Change a bit
2005-10-30 TAMUKI Shoichi <[email protected]>
* timidity/playmidi.c, timidity/sndfont.c, timidity/timidity.c:
Change a bit
2005-10-28 Keishi Suenaga <[email protected]>
* timidity/w32_gogo.h: small fix
* interface/w32g_utl.c, interface/w32g_syn.c: changes for gcc4 windows
* interface/rtsyn_portmidi.c, interface/rtsyn_winmm.c,
timidity/playmidi.c, interface/rtsyn.h, timidity/instrum.h,
timidity/sndfont.c, interface/rtsyn_common.c, timidity/timidity.c:
New version of windows synthesizer mode. (new windows synth.)
Introduce --rtsyn-latency=(seconds) long-option.
* doc/C/README.w32, doc/ja_JP.eucJP/README.w32: correlated changes.
2005-10-22 Stas Sergeev <[email protected]>
* interface/server_c.c: fix for cmd_setbuf
2005-09-30 Stas Sergeev <[email protected]>
* interface/xaw_i.c, interface/server_c.c, interface/soundspec.c,
interface/motif_i.c, libarc/url_newsgroup.c, libarc/url_http.c,
libarc/url.c, libarc/url_ftp.c, libarc/url_file.c,
libarc/url_news.c, timidity/audriv_mme.c, timidity/wrd_read.c:
use stderr instead of stdout
2005-09-30 Eric A. Welsh <[email protected]>
* timidity/mod2midi.c: Defining out the ME_KEYPRESSURE related code
2005-09-28 URABE Shyouhei <[email protected]>
* interface/Makefile.am (EXTRA_DIST, install.dynamics):
sorry, this file was broken.
2005-09-26 Stas Sergeev <[email protected]>