forked from alsaplayer/alsaplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1591 lines (1287 loc) · 60.1 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
Sat Jun 28 2014
Dominique Michel [email protected]
app/ControlSocket.cpp: Fix seek and relative seek wrong time scale.
Fixes: https://github.com/alsaplayer/alsaplayer/issues/4
interface/gtk2/gtk_interface.cpp: Add missing seconds duration display.
extra/alsaplayer.desktop: Fix for flac MIME type.
app/ControlSocket.cpp: Fix missing header, use system PATH_MAX.
alsaplayer/CorePlayer.h: Add missing linux specific header.
reader/http/http.c: Initialize host and path to NULL,
avoiding double free with http.
input/flac/FlacPlugin.cpp: Avoid const char to char conversion.
app/Main.cpp: Fix long option.
Thanks to piem Paul Brossier from Debian for these last 7 patches.
AUTHORS: Add Erik de Castro Lopo.
interface/gtk2/AboutDialog.cpp: Some updates.
Wed Jun 27 2014
Dominique Michel [email protected]
input/mikmod/mikmod_engine.c: Fix for files wrongly loaded as mikmod files.
Thanks to Hermann Schwaerzler for reporting.
Fixes: https://github.com/alsaplayer/alsaplayer/issues/9
app/Main.cpp: Fixed short and long option for --loopsong; changed to '-L'.
Modified patch from Hermann Schwaerzler.
app/Main.cpp: Added -S --shuffle remote option.
Patch from Hermann Schwaerzler.
app/Main.cpp: Change --looplist to a remote control option.
Patch from Hermann Schwaerzler.
app/Main.cpp: Change --looplist to a on/off switch.
Modified patch from Herman Schwaerzler.
Fixes: https://github.com/alsaplayer/alsaplayer/pull/8
app/Main.cpp: Change --loopsong to a remote control option and on/off switch.
Updated the -h option.
alsaplayer.1.in: updated man page.
Wed dec 11 19:50:00 +0100
Dominique Michel [email protected]
Updated TODO.
Fixes: https://github.com/alsaplayer/alsaplayer/issues/2
Tue dec 03 2013
Dominique Michel [email protected]
Fix for speed when pauding/unpausing from the console
with JACK.
Fixes: https://github.com/alsaplayer/alsaplayer/issues/1
2012-11-25 gettextize <[email protected]>
* m4/gettext.m4: Upgrade to gettext-0.18.1.
* m4/iconv.m4: Upgrade to gettext-0.18.1.
* m4/lib-ld.m4: Upgrade to gettext-0.18.1.
* m4/lib-link.m4: Upgrade to gettext-0.18.1.
* m4/lib-prefix.m4: Upgrade to gettext-0.18.1.
* m4/nls.m4: Upgrade to gettext-0.18.1.
* m4/po.m4: Upgrade to gettext-0.18.1.
* m4/progtest.m4: Upgrade to gettext-0.18.1.
* configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.18.1.
Sat Mar 26 08:44:46 2011 +0100
Dominique Michel [email protected]
patch from Patrick Shirkey <[email protected]>
Moves the entry in the playlist instead of duplicates them.
Tue Mar 22 22:21:00 2011 +1100
Erik de Castro Lopo [email protected]
input/flac/FlacPlugin.cpp : Add frame_count() method.
Tue Mar 22 22:20:28 2011 +1100
Erik de Castro Lopo [email protected]
input/mad/mad_engine.c : Remove debug.
Tue Mar 22 22:10:55 2011 +1100
Erik de Castro Lopo [email protected]
Fix compiler warnings uncovered by new warning flags.
Tue Mar 22 22:07:40 2011 +1100
Erik de Castro Lopo [email protected]
Fix compiler warnings uncovered by new warning flags.
Tue Mar 22 20:23:16 2011 +1100
Erik de Castro Lopo [email protected]
Add frame_count() function to input_plugin struct.
Tue Mar 22 20:20:59 2011 +1100
Erik de Castro Lopo [email protected]
configure.ac : Add more warning flags.
Tue Mar 22 20:18:26 2011 +1100
Erik de Castro Lopo [email protected]
m4/add_*flags.m4 : Test new flags in isolation.
Mon Mar 21 19:46:56 2011 +1100
Erik de Castro Lopo [email protected]
input/flac/FlacMetadataTag.cpp : Fix compiler warning.
Mon Mar 21 19:44:41 2011 +1100
Erik de Castro Lopo [email protected]
configure.ac : When debug is enabled add -fstack-protect to CFLAGS.
Sun Mar 20 15:17:54 2011 +0100
Dominique Michel [email protected]
Added the last commits into the ChangeLog
Sat Mar 19 21:49:30 2011 +1100
Erik de Castro Lopo [email protected]
Lift the actual alsaplayer code up a directory.
Sat Mar 19 20:41:54 2011 +1100
Erik de Castro Lopo [email protected]
Move experimental fftscope midi and python dirs into attic.
Sat Mar 19 19:48:52 2011 +1100
Erik de Castro Lopo [email protected]
Add .gitignore file.
Sat Mar 19 07:21:03 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Fix two minor valgrind warnings.
Sat Mar 19 07:12:42 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Make sure all AM_CFLAGS have @DFLAGS@.
Sat Mar 19 03:49:45 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Fix compiler warnings.
Sat Mar 19 01:52:40 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Change the way CFLAGS and CXXFLAGS are set up.
Sat Mar 19 00:29:21 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Add m4 macros add_cflags.m4 and add_cxxflags.m4.
Fri Mar 18 23:23:30 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
configure.ac : More cleanups.
Fri Mar 18 22:45:46 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Silence doxygen output noise. Explicitly output doxygen warnings.
Fri Mar 18 21:18:12 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Minor configure.ac tweaks.
Fri Mar 18 20:52:11 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Fix compiler warnings.
Fri Mar 18 11:33:36 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Clean up C string handling. Add functions ap_strlcpy() and ap_strlcat() and replace all instances
of strcat/strcpy/strncat/strncpy.
Fri Mar 18 09:32:06 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Replace #include of message.c with message.h. Also required having the alsaplayer app link to libalsaplayer.co.
Fri Mar 18 07:04:56 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Remove deprecated OggFlac stuff.
Wed Mar 16 10:04:14 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
interface/gtk2/gtk_interface.cpp : Fix compile issue arising from configure.ac changes.
Tue Mar 15 11:15:26 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
configure.ac : Cleanup.
Tue Mar 15 11:14:16 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
docs/reference.doxygen.in : Remove deprecated tags.
Tue Mar 15 09:11:00 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Remove m4/audiofile.m4.
Tue Mar 15 08:38:15 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Fix compiler warnings.
Tue Mar 15 08:20:19 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
configure.ac : Insist on external gettext.
Tue Mar 15 08:16:02 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Remove typecast on return value of malloc() in C code.
Tue Mar 15 07:45:17 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/sndfile/sndfile_engine.c : Only handle FLAC if libsndfile has FLAC support.
Tue Mar 15 07:33:34 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Replace more sprintfs with snprintf.
Tue Mar 15 06:56:40 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Replace all uses of sprintf and snprintf.
Tue Mar 15 06:28:18 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/vorbis/vorbis_engine.c : Fix compiler warning.
Tue Mar 15 06:23:17 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Purge bundled gettext library in intl/ directory.
Tue Mar 15 02:41:19 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/vorbis/vorbis_engine.c : Accept files with 'oga' extension.
Mon Mar 14 09:04:26 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Terminology update. Change 'frame' to 'block' where appropriate. Alsaplayer used to use the work 'frame' to describe a block of N (N > 1)
stereo sample pairs. The MPEG encoder/decoder and and speech related DSP
algorithms also use 'frame' this way.
However, Jack, Alsa, libsndfile, Apple's CoreAudio and others use the word
'frame' to describe the M samples (where M is the number of channels) that
belong to the same sampling instance.
With this change we leave change Alsaplayer to agree with Jack, Alsa etc.
Sun Mar 13 21:41:41 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Remove input/mpg123/ directory. This code wasn't currently being used, doesn't compile and bundles what
looks like a really old, hacked version of the mpg123 sources.
We already have the mad MP3 decoder and after the changes to the internals
are done, we can look at doing a MP3 input using libmpg123 instead.
Sun Mar 13 15:54:40 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
TODO : Add new section at top of file.
Sun Mar 13 10:24:05 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Rename output/alsa-final => output/alsa.
Sun Mar 13 10:12:15 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Purge alsa-0.5 output plugin.
Sat Mar 12 23:32:30 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
First step on the way to convert internal data format to float. Originally all audio data was passed aroung Alsaplayer using char* pointers
even though the audio data was actually always 16 bit stereo PCM. This
first step changes all the char* pointers to short*.
Sat Mar 12 22:44:31 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
configure.ac : Remove left over audiofile cruft.
Sat Mar 12 22:11:10 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/sndfile/sndfile_engine.c : Reject files with > 2 channels.
Sat Mar 12 12:42:35 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/ : Prefer sndfile plugin over flac because sndfile handles 24 bit flac files.
Sat Mar 12 12:35:58 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/sndfile/sndfile_engine.c : Reject all files starting with 'http://'.
Sat Mar 12 10:23:25 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Remove redundant wav and audiofile plugins.
Sat Mar 12 02:33:21 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/flac/FlacPlugin.cpp : FIx segfault when FLAC fails to open a file.
Fri Mar 11 09:09:48 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/sndfile/sndfile_engine.c : Cleanup.
Fri Mar 11 07:44:58 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
alsaplayer/output_plugin.h : Fix doxygen comment.
Fri Mar 11 07:44:10 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
input/sndfile/sndfile_engine.c : Remove unused function getfilenamefrompath.
Fri Mar 11 07:42:59 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
docs/reference.doxygen.in : Remove deprecated USE_WINDOWS_ENCODING.
Sun Feb 6 21:00:13 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Remove old debugging cruft.
Sat Jan 29 23:35:48 2011 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Fix compiler warnings in jack output plugin. No able to figure out how to force it to use jack so this is
untested.
Wed Nov 10 17:30:12 2010 +0000
dominique_libre dominique_libre@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Fix compilation failure on 64 bits systems with recent gcc versions
Wed Nov 10 11:29:22 2010 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Add AM_SILENT_RULES to configure.ac.
Wed Nov 10 11:26:35 2010 +0000
mega-nerd mega-nerd@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Fix bootstrap aclocal invocation.
Tue Nov 9 22:46:45 2010 +0000
dominique_libre dominique_libre@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Erik de Castro Lopo: patch that remove the keyword from file headers, confuses Bzr
Tue Nov 9 21:08:42 2010 +0000
dominique_libre dominique_libre@d285aa52-1d29-0410-9d4c-b54c28f01bc6
Erik de Castro Lopo: patch that fix automake warnings about underquoted macro names.
Sun Nov 7 2010
--------------
* Applied a patch by Dominik Kuhlen that fix a lot of compilation warnings.
* The same patch fix double-free errors after closing AP (start with a playlist, click shuffle and exit).
* Updated the date into the About dialog.
Wed Jul 29 2009
---------------
* A missing string: fixes compiling with libmikmod-3.2.0-beta2, Thanks to Has de Goede and Fedora.
" Gcc: Restauring some optimisation CFLAGS
Sun Jul 26 2009
---------------
* Cleaned up CFLAGS.
* Add missong limit.h: fixes compiling with >=glibc-2.8 by Bernard Cafrelli.
* Flac plugin; fix building with glibc 2.10+.
* Id3tag configure option added, thanks to gentoo.
Sat Mar 29 2008
---------------
* Updated the prefernece section and the speed description of the man page.
Wed Dec 19 2007
---------------
* GÅ©nther Stibbe: 2 bug fixes in id3 tag support:
- The last char in id3 tag was missing when a special charachter is in
the tag.
- If an id3 string is longer that the max, the \0 at the end of the string
was missing.
* Hans Fugal: preliminary fix for OSX: replaced include <malloc.h> by <stdlib.h>.
Wed Dec 5 2007
--------------
* Juuso Alasuutari: Fix getting JACK sample rate
Sun Nov 18 2007
---------------
* Madej: Added initial systray icon function in gtk2.
* configure: added --enable-systray and gtk2 test for systray (need gtk+-2.10).
Sun Nov 4 2007
--------------
* Peter Lemenkov:
- Renamed README.CVS to README.SVN and cleaned up README.
- Save path of playing file for future use in CorePlayer.
- Don't stop if we cannot find plugin->stream_info (prepare for future
generic metadata parsing).
- Fix memleak with path copying.
- Moved stream_info structure from inout_object to its own header (we reuse
it further).
- Removed dead code - all sound fx (surround, downsampling etc) must be
handled by specific plugins.
- Another PATH_MAX substitution instead of mysterious 1024
- AlsaNode.h: No need to include bits from esound here.
Sat Nov 3 2007
--------------
* alsaplayer.desktop: removed deprecated keys and fixed Version and
MimeType keys. Removed the -E option in the Exec key. We don't need
this X option anymore with the GTK2 interface.
Mon Oct 29 2007
---------------
* Madej: fixed segfault with PLAY shortcut
* Flacstream: change unsigned int to size_t applied to old API
(from Debian)
* Changed flac plugin version to reflete the name of the different
flac versions
* Updated config.sub & config.guess
Wed Oct 11 2007
---------------
* Hubert Chan: Replaced GTK2 code in mad plugin by Glib2 code
Mon Oct 8 2007
--------------
* Madej: fixed song title in title bar when unknow name
* Fixed crash at startup with "main.default_interface=gtk" in AP
config file
* Fixed flac and oggflac test in configure
Sun Oct 7 2007
--------------
* Fixed libmad in configure and added --enable-mad option
* Removed obsolete gtk1 test in configure
* Changed the echo statement about nls in configure
* Madej: song title in title bar with preference option
Sat Oct 6 2007
--------------
* Ryan Hill: fix man page spellning
* More spellning fixes in the man page
Sat Sep 29 2007
---------------
* Hubert Chan: Fixed loading of the gtk2 config file
Sat Sep 8 2007
--------------
* Added a few words in the man page about Jack output
Wed Sep 5 2007
--------------
" Updated Swedish translation from Lars Lindqvist
" Fix for buffer overflow in vorbis input plugin from Erik Sjölund
Sat Jul 14 2007
---------------
* Updated TODO
Thu Jul 12 2007
---------------
* Changed exception in COPYING
Mon Jul 9 2007
---------
* Peter Lemenkov: added necessary #defines for systems w/o PATH_MAX
* Removed duplicated PATH_MAX stuff.
Sun Jul 08
----------
* Peter Lemenkov: Reorganized code for loading input modules (CorePlayer.cpp).
We should test module before actual assignment.
* Updated licence to GPL-v3 or later.
* Changed numeric value for maximum lenght of pathname to standard macro
definition when avaible. (Peter Lemenkov and Hubert Chan)
Sat Jul 07
----------
* Workaround by Hubert Chan when the album name is on multiple lines (cdda
input plugin).
Tue June 26
-----------
* Fixed typo in header of the german translation.
* Initial swedish translation. Need work.
* Removed wrong category in the desktop file. Added some MIME types. He
validate now.
Mon June 25
-----------
* Madej: updated polish translation.
* Frank Baumgart: german translation.
Sun June 24
-----------
* Madej: fixed icon when "don't start playing at startup" is selected in
the preferences.
* Moved interface/qt into trunk/experimental/obsolete.
Sat June 23
-----------
* Removed Makefile.in files from the scopes2 tree.
* Added French translation.
* Moved GTK1 stuff out of the tree.
" Main.cpp: Fixed help message and gtk2 launch at startup when no $DISPLAY.
* Madej: Fixed segafult when closing a scope wondow.
2007-06-22 gettextize <[email protected]>
* Madej:
* m4/gettext.m4: New file, from gettext-0.16.1.
* m4/iconv.m4: New file, from gettext-0.16.1.
* m4/lib-ld.m4: New file, from gettext-0.16.1.
* m4/lib-link.m4: New file, from gettext-0.16.1.
* m4/lib-prefix.m4: New file, from gettext-0.16.1.
* m4/nls.m4: New file, from gettext-0.16.1.
* m4/po.m4: New file, from gettext-0.16.1.
* m4/progtest.m4: New file, from gettext-0.16.1.
* m4/codeset.m4: New file, from gettext-0.16.1.
* m4/glibc2.m4: New file, from gettext-0.16.1.
* m4/glibc21.m4: New file, from gettext-0.16.1.
* m4/intdiv0.m4: New file, from gettext-0.16.1.
* m4/intl.m4: New file, from gettext-0.16.1.
* m4/intldir.m4: New file, from gettext-0.16.1.
* m4/intmax.m4: New file, from gettext-0.16.1.
* m4/inttypes_h.m4: New file, from gettext-0.16.1.
* m4/inttypes-pri.m4: New file, from gettext-0.16.1.
* m4/lcmessage.m4: New file, from gettext-0.16.1.
* m4/lock.m4: New file, from gettext-0.16.1.
* m4/longdouble.m4: New file, from gettext-0.16.1.
* m4/longlong.m4: New file, from gettext-0.16.1.
* m4/printf-posix.m4: New file, from gettext-0.16.1.
* m4/size_max.m4: New file, from gettext-0.16.1.
* m4/stdint_h.m4: New file, from gettext-0.16.1.
* m4/uintmax_t.m4: New file, from gettext-0.16.1.
* m4/ulonglong.m4: New file, from gettext-0.16.1.
* m4/visibility.m4: New file, from gettext-0.16.1.
* m4/wchar_t.m4: New file, from gettext-0.16.1.
* m4/wint_t.m4: New file, from gettext-0.16.1.
* m4/xsize.m4: New file, from gettext-0.16.1.
* m4/Makefile.am (EXTRA_DIST): Add the new files.
* Makefile.am (SUBDIRS): Add intl, po.
(ACLOCAL_AMFLAGS): New variable.
(EXTRA_DIST): Add config.rpath.
* configure.ac (AC_OUTPUT): Add intl/Makefile, po/Makefile.in.
*Madej: fix for the play at start function.
Wed June 20 2007
----------------
* Removed EffectsWindow files and references as we don't use it.
Mon June 18 2007
----------------
* Madej: improved loop and looper buttons,
Fri June 15 2007
----------------
* Madej: Added don't close window checkbox in the addfile window.
* Takashi Iwai: fixes the build of FLAC plugin on 64 bits.
* Takashi Iwai: fixes possible buffer overflow due to typos for snprintf (Main.cpp).
* Takashi Iwai: Fixes the possible buffer overflow in the cdda engine.
* Madej: mad patch, add extended header support in mp3 files (utf-8, utf-16, utf-16be,
iso-8859-1).
* Madej: adds some new dialogs (which are not really in use yet), changes behaviour
when we remove files, remove some warnings, fixes memory leak (must be still in
gtk1), brings back insert button.
* Madej: adds back folders prefs in gtk2.
Wed June 13 2007
----------------
* Madej: Added mute and center button, fixed drag and drop as well as an
horrible crash when pressing Enter.
Tue June 12 2007
----------------
* Madej patch: GTK2, initial commit of a preferences window.
* Peter Lemenkov: Removed old .cvsignore files.
* Fixed horrible mistake in the desktop file.
Mon June 11 2007
----------------
* Added fflush function in daemon interface, fix bug 1052028.
* Madej patch: initial drag and drop support in playlist (copy and move
(with shift)).
Sun June 10 2007
----------------
* Madej: fixed Credits window to look better.
* Removed unwanted wmclass from GTK2 and scopes2.
* Madej: Added playlist height options in preferences.
* Madej: Fix for quit function: it will save the prefs both when quiting from
the title bar and the quit menu.
Sat June 9 2007
---------------
* Madej patch: restore open file dialog on the play button when the playlist
is empty; clicking on clear will stop playing; fixed some warnings.
* Madej: fix strange speed behaviour when unpausing with jack and smooth
transition; changed mouse wheel behaviour: scroll up with increase the volume
or the speed, the balance will go to the right.
Fri June 8 2007
---------------
* Madej patch: fix weird speed behaviour when resuming from pause with jack output.
Thu June 7 2007
---------------
* Madej work: GTK2: the buttons use gtk themes.
* Madej patch: Fix the volume awarness of the gtk2 interface. It will react
correctly to volume change from the console.
Wed June 6 2007
---------------
* CDDA engine: patch form Hubert Chan (Debian) that fix the CDDB support on port
888. Madej's html support on port 80 is left.
* Madej: 2 patches that fix info display resizing with the font size.
* Madej: sizes in config file, stop and play icons in playlist, infobox collor
changing.
Tue June 5 2007
---------------
* Madej patch: fix the speed awarness of the GTK2 interface. When the speed is
changed from a console, 2 clicks on pause with resume playing at the last used
speed.
* One more from Madej: The playlist window schrink-expand with the playlist
button.
* Madej: Playlist is now in the main window.
Mon June 4 2007
---------------
* New patch from Madej for GTK2: new info window.
* Added wm class and ressource in blurscopes.
Sun June 3 2007
---------------
* Madej: Added labels in the GTK2 interface, second loop function for songs and
info window.
* Madej: Fix for the cdda engine, cddb use html on port 80.
Sat June 2 2007
---------------
* Updated/added the copyright and license information..
* Added filename description and preferences section in the man page.
* Changed contact information. Please use "Dominique Michel"
<[email protected]> now.
Fri June 1 2007
--------------
* Madej: lot of code cleaning on the GTK2 interface, about window,
tooltips, main window can be resized, loop in playlist work
* CDDA engine: removed directory in server name
* Updated TODO list and AUTHORS
Thu May 31 2007
---------------
* Madej patch: html handling in cdda_engine
* Updated AUTHORS file
Tue May 29 2007
---------------
* Updated TODO list
Mon May 28 2007
---------------
* Fixed GTK2 version to GTK2+-2.8.0 in configure.ac
* Updated TODO
* Changed cddb_servername to the correct directory and cddb_serverport to 80
* New Madej patch: Added --disable-opengl configure option
* Fixed keybindings missbehaviour and improved play button
Sat May 26 2007
---------------
* Backported to gtk interface Madej's fix for AP crash with transparency
support.
* Changed the default cddb server to cddb.cddb.org
* Changed default interface to gtk2.
* Fixed the behaviour of the play button. It work now as explained in the
man page.
Fri May 25 2007
---------------
* Madej patch: added the same keybindins and loop function in gtk2 as in gtk.
* Deleted non needed gui folder in gtk2 interface.
* Removed obsolete gtk2 folder.
* New Madej patch. Fixed Alsaplayer (gtk2) crash when transparency support is
enabled in X.
* Fixed return value in CbSetCurrent (gtk2 only issue).
Thu May 24 2007
---------------
* The desktop file will launch the gtk2 interface.
* New Madej patch: Add scopes support in the gtk2 interface.
* Updated obsolete doxygen functions.
* Madej patch: Lifting of the gtk2 interface.
Wed May 23 2007
---------------
* Moved the existing and not working gtk2 interface in interface/gtk2obsolete
* Committed a new and working gtk2 interface in interface/gtk2
This new interface was kindly provide by Madej from Poland.
Tue May 22 2007
---------------
* Fixed the CFLAGS to use AM-CFLAGS
Sat May 19 2007
---------------
* Updated config.guess and config.sub with latest savannah version.
* Added missing include in app/CorePlayer so it will compile with never gcc
and non gcc compilers. Thanks to Debian for this fix.
* Applied Debian patch from Viktor Radnai and Paul Brossier. Add basic
keyboard navigation (skip, pause, etc.), loop mode (looping inside a
selection), pressing play button or key during playback return to the
beginning of the song, speed changes one musical semitone a time using
the keyboard (handy for changing the key the song is played back in).
* Added keyboard shortcuts for speed +/- 1 comma (useful to tune the player
when playing some musical instrument at the same time).
* Updated the man page with those keyboard bindings.
Tue Apr 24 2007
---------------
* Added Player fredesktop sub-category in alsaplayer.desktop.
* Fixed the make system so at it will install alsaplayer.desktop.
* Fixed a bug in the make system (docs/Makefile.am was looking
for a wrong file with the uninstall process).
Wed Apr 6 2007
--------------
* Added support for flac-1.1.3 and flac-1.1.4 in flac input plugin.
Thanks to Jens Maurer for providing the patch.
Modified the patch so at alsaplayer still will work well with older
flac versions.
Thu Mar 22 2007
---------------
* Fixed frame size with small wav files in app/CorePlayer.cpp.
Thanks to Silvan Calarco for providing the fix.
Wed Mar 02 2007
---------------
* Added a note about the correct use of the daemon interface in the man page.
Tue Feb 13 2007
---------------
* Fixed thread in AlsaNode.cpp
* Fixed output format in alsa-0.5 output plugin
Wed Feb 9 2007
--------------
* A desktop file
Thu Feb 1 2007
--------------
* Fixed Makefile to work with gtk gtk2 configure options.
* Various importants security fixes commited by Debian for its distribution
and for the alsaplayer. They include fixes in the http reader, the alsa
output plugin, the ccda engine, for reading flac metada tags, for playing
correctly mono audiofiles, fix in the text interface and the gtk interface,
in the jack output plugin, in the main interface, and in the cdda engine.
Those patches solve the vulnerabilities found by Luigy Auriemma (see
http://secunia.com/advisories/21422/)
* A new man page (Thanks to Debian).
Fri Dec 5 21:41:50 CET 2003
----------------------------
* Code cleanups
* Fix for NPTL enabled systems (Redhat, Debian).
* Fix for new ALSA driver release
* Do not loop the playlist by default
* Fix filename handling with percent signs
* lower resource usage (RAM + CPU) for embedded target
* VOLUME and PAN values are now FLOATS. Interface coders, take note!!
* xosd interface: larger standard font
* xosd interface: configurable font, timeout, hor/vert. offset and color
Thu Apr 24 01:16:41 CEST 2003
-----------------------------
* Fix XING header parsing
* Basic start/stop transport control support in JACK plugin
* Playlist is set to looping by default
* Add --pause parameter to pause/unpause a running player
* Add --status parameter to dump some info about a session
* Add --quit parameter to quit a session
* Added support for ALSA's dmix device. Improved the alsa plugin.
* Fixed a pretty silly bug in AlsaNode which caused crashing when adding
multiple subscribers.
* API Update: scope_plugin, init takes a pointer argument (not used yet)
* API Update: input_plugin, stream_info structure expanded (not used yet)
* API Update: output_plugin, set_buffer call.
* Remove --background parameter, use &
* Eliminate extra memcpy in streaming core
* Remove static JACK mixbuffer.
* Remove the confusing Load/Unload calls from CorePlayer. Open/Close now.
* Made MAD plugin a bit more robust
* Fix crashing bug when shoutcast/icecast stream is not in sync
* Add _interface postfix to all interface plugin shared libraries
* More warning fixes for gcc 3.3
* Fix a whole bunch of compiler warnings.
* Remove deprecated JACK function call, requires jack 0.50.0 or higher now
Thu Feb 6 06:49:35 CET 2003
----------------------------
* New: Initial CDDB parsing for CDDA plugin (Anders)
* New: xosd interface ("-i xosd")
* New: lightweight ap-control program (see examples directory) to control
alsaplayer operation
* New API functions for randomizing and saving the current playlist
* FLAC plugin converted to reader API (Drew) which means we can now also
receive remote FLAC streams.
* Shoutcast metadata handling.
* OGG plugin also supports Icecast/Shoutcast streaming!
* Add initial support for Icecast/Shoutcast streaming!
* Support pls playlist loading (no metadata loading)
* Add preliminary HTTP 302 redirect handling in http reader plugin
* MAD plugin works correctly with non-seekable sources now
* Text interface works much better now
* --quiet mode disables progress bar in text mode interface
* Improved ogg vorbis performance
* New -E option, which replaces the queue in a running alsaplayer
* New -c option, which lets you select a specific config file for use
* New ap_jump_to() libalsaplayer function which allows jumping to specific
playlist tracks.
* New libalsaplayer functions for looping control
* Fix playlist loading
* Fix FLAC playback support
* Fix crashing bug when fragment size was bigger than 16K
* Fix timedisplay for none 44KHz OGG streams
* NAS output plugin fixes
Sun Dec 1 17:11:03 CET 2002
----------------------------
* New --background parameter to put alsaplayer in the background at startup
* Accept m3u (playlist) files on the command line
* JACK output plugin fixes; use jack's samplerate, properly deactive before
disconnecting from jack.
* CDDA player now adds all tracks to the playlist, instead of playing the
audio CD as one huge CD track. Idea from Patrick Shirkey.
* Fix small reentrancy problem in CDDA plugin
* Remove threading from Playlist::Insert(), it was causing too much trouble.
* Bump up input_plugin version, change open() param for const char *path.
Wed Sep 18 11:52:43 CEST 2002
-----------------------------
* Code cleanups
* JACK related updates
* commandline buffer overflow fixes.
* libcurl dependancy remove, rewritten http/ftp reader.
* New sndfile input plugin, not ready for production use, and does not use
the reader API for now.
* extended API; complete playlists may be loaded now
* removed --enable-tophack. It just hid internal problems from the developers.
Mon Jun 24 18:34:04 CEST 2002
-----------------------------
* MAD plugin converted to new reader plugin API. This also means we don't use
mmap() any longer. Now also handles files with large ID3 tags better.
* New reader plugin system by Evgeny. This brings in URI support i.e.
you can now play directly from ftp and http sources (needs libcurl for now)
* --enable-tophack switch to configure. This enables some code that fools
(simple) CPU measuring tools like top into thinking AlsaPlayer is infinitely
fast i.e. top will show that we use 0% CPU even with lots of scopes open and
mp3's decoding! Whenever someone complains about AlsaPlayer CPU usage,
just enable this and the problem will magically disappear *grin*
* Keyboard shortcuts for playlist: Insert, Delete, Return, Left, Right keys.
* List available interfaces and output plugins in help screen.
* New callback API for CorePlayer so interfaces get notified when
something happens.
* New ap_add_and_play(), ap_get|set_volume|pan() calls for libalsaplayer
* New info calls: ap_get_genre(), int ap_get_year(),
ap_get_track_number() and ap_get_comment().
* Modify layout of playlist window buttons slightly
Thu May 16 00:08:08 CEST 2002
-----------------------------
* JACK plugin is now a *real* plugin. Minor changes to the output
plugin API to accommodate this.
* Changes for latest JACK, at least 0.28.2 required now.
* Add genre and album parsing in MAD plugin (Evgeny)
* NEW FLAC input plugin by Drew Hess, FLAC details at http://flac.sf.net/
* Complete reimplentation of socket control API (libalsaplayer)
This breaks all old libalsaplayer apps, fortunately there aren't that many
right now. The new API is much more flexible. It is partly based on ideas
from BeOS' (RIP) BMessage.
* Parse XING headers so VBR mp3's get the correct time (finally! :)
* Load input plugins only once
* Check interface plugin version
* Include prefs_free() call, should have been in the previous version
* Force control socket to be read/write for the owner only
* Fix crashing bug when old visual scopes were present.
* Stop the mikmod plugin from crashing. This plugin was not
reentrant, and it still isn't, not until libmikmod can handle multiple
files simultaneously :(
* Fix nasty NFS gotcha bug when attempting to mmap() files we don't have
read permission for (bus error)
Tue Apr 30 13:43:07 CEST 2002
-----------------------------
* Update included MAD files to 0.14b2.
* Add -I interface for interfaces that want scripts (e.g. python interface)
* Removed mpg123 based plugin from tarball. It will probably make a comeback
as a (sample) standalone input plugin
* Rewrote command line parsing, is much more flexible now.
* libalsaplayer: Change ap_session_running() return values to 1 for
"running" and 0 for "not running"
* Round the total time calculation of mp3's upwards
* Implement some more libalsaplayer commands (AP_GET_INT_SONG_LENGTH_SECOND)
* Implement C interface for playlist interface subscription. It still uses some
STL based datatypes for some parameters so the conversion is not total, just
enough to not need pure virtual member functions.
* Made the song scanning function more efficient.
* Fix nasty bug with CDDA menu entry.
* No playlist interface locking was done when playlist entries were removed.
Mon Apr 8 14:41:39 CEST 2002
-----------------------------
* Song artist - title - time displaying in the playlist.
* Allow multiple selections in playlist for easier deletes.
* Found the real source of all the subtle deadlocks. We weren't acquiring
locks in the same order all the time, a thinko.
* Replace foreground color change with icon for active entry in playlist
Mon Apr 1 03:06:08 CEST 2002
-----------------------------
* Unpause when going to Next/Prev song
* Smooth speed transition, configurable with "gtk_interface.smooth_transition"
in ~/.alsaplayer/config
* Renamed cleanup to shutdown in input_plugin, bumped up version number
* Bump up input plugin version number
* Found another subtle playlist locking bug
* Fixed huuge stack leak!
* ID3 tag support in mad plugin, using libid3tag!
* gtk+ playlist marks active entry
* Renamed mad input plugin to mad_in
* Added check for libmad, and use it if present instead of our own copy
* Renamed 'include' -> 'alsaplayer'
Tue Mar 19 00:08:04 CET 2002
----------------------------
* Scopes will now remember their state
* Added a section parameter to the prefs system
* Changed behaviour of PLAY button in gtk interface
* Fix MAD playback on big-endian machines.
* Doubled the set_data and set_fft rate for smoother scope output
* Changed fft data output slightly
* New Blurscope and OpenGL Spectrum analyzer scopes, ported over from xmms
* Retired fftscope and logfftscope scope plugins. They were just (bad) versions
of logbarscope
* Fix crashing bug when loading old scopes
* Removed scope_open() call since it was never used. Also renamed
scope_close() to scope_shutdown() to better reflect its intended function.
Tue Mar 12 18:54:48 CET 2002
----------------------------
* Fix bugs in external.cpp (libalsaplayer)
* Remove global session limit
* Add status field to stream_info in input plugin
* Fix build problem for MAD plugin on non-x86 platforms
* Remove ap_connect_session from public interface
* Fixed GTK playlist insert bug
* Fixed a bug in the AP_DO_PLAY remote command
Fri Mar 8 21:28:05 CET 2002
----------------------------
* Modified scope plugin interface, optional set_fft() call to scope. There is
a global FFT calculation routine fso scopes can feed off this instead.
Doing internal FFT is of course still possible, see synaescope.
* Fix CDDA (CD) plugin to recognize "Track XX.cdda" files again
* Make our jack output ports terminal.
* alsaplayer will now remember the paths of the play, add, load and save
dialogs whenever you sucessfully complete one of these actions (all paths
default to / initially)
* Removed Qt plugin since it was causing build problems for many folks.
Will make it back, but as a separate plugin.
Tue Feb 26 20:56:34 CET 2002
----------------------------
* More improvements to libalsaplayer. pkg-config support
* alsaplayer headers are also installed by default. First version that
is really ready for external plugin development.
* Preferences system, finally! The code is there, now we need to use it
pervasively. The prefs system is also available to plugins of course.
* More JACK improvements, we try to reconnect if we timeout.
* configure flag --with-jack now works
* The logfftscope does a fast to slow falldown, very subtle change.
* The MAD plugin is now much smarter at detecting the correct start of
MP3 files.
* Placed the pause button inbetween the -100 and +100 speed buttons. Makes
more sense since pause is speed 0.
* Fix NAS detection and nas_set_buffer() function.
* Some more cleanups to the code.
Sat Feb 16 12:59:23 CET 2002
----------------------------
* libalsaplayer becomes reality. Using this lib external programs are able
to control an alsaplayer process (set speed, seek, etc)
* Fix cdda build process
* You can now select to which JACK ports alsaplayer (jackplayer) should
connect to.
* When using JACK exit cleanly if we timeout.
* Code freeze turned out to be coding session :)
Fri Feb 8 02:25:49 CET 2002
----------------------------
* More jack related changes, sync up with latest CVS