forked from andreasvc/cplay
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ChangeLog
1020 lines (715 loc) · 26.4 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
2024-08-03 Tobias Bengfort <[email protected]>
*** 5.3.1 ***
- fix compatibility with mpv 0.38.0
- do not mess up the terminal when importing the cplay python module
- make `__version__` comply with pep440
2024-05-20 Tobias Bengfort <[email protected]>
*** 5.3.0 ***
- allow to start URLs with offset (see https://www.w3.org/TR/media-frags/)
- fix compatibility with mpv 0.38 and above (thanks to @AlkyoneAoide)
2023-03-09 Tobias Bengfort <[email protected]>
*** 5.2.0 ***
- use mpv's native volume controls (thanks to @AlkyoneAoide)
- use XDG_RUNTIME_DIR for mpv socket
- do not crash on invalid utf-8 from mpv
2022-11-22 Tobias Bengfort <[email protected]>
*** 5.1.0 ***
- change keys for previous/next search match to [ and ]
- if a stream contains metadata, display the name of the currently playing
track
- use @DEFAULT_SINK@ instead of hardcoded index to set volume
2021-08-30 Tobias Bengfort <[email protected]>
*** 5.0.1 ***
- Fix in-app version number
2021-08-30 Tobias Bengfort <[email protected]>
*** 5.0.0 ***
- changes to playlists are no longer automatically written back to their
files. Instead, a * is appended to the playlist title if there are unsaved
modifications. They can be written to a file with the `w` key.
- cplay now uses a single instance of mpv and its IPC mechanism instead of
parsing command line output.
- fix: stop playback when cplay crashes
- fix: do not crash on tiny screen size
- fix: mpv 0.33 compatibility
2020-09-07 Tobias Bengfort <[email protected]>
*** 4.0.0 ***
This is a complete rewrite which massively simplifies the code
and intentionally breaks a lot of things in the process.
* breaking changes:
- drop support for all players except mpv
- drop support for all mixers except pulse
- drop support for all playlists except m3u
- drop support for translations
- drop support for fifo/cnq
- drop support for metadata (mutagen)
- rm all command line arguments
- rm some key bindings, most without replacement
- z for play/pause (use x or Space instead)
- p for previous track
- +/- for volume control (use 0..9 instead)
- </> for horizontal scrolling
- l for list mode
- t/T/u/U/i/Space for tagging
- o for open path
- anything involving the ctrl key
- Q no longer asks for confirmation
* new features:
- state and presentation have been decoupled, resulting in simpler code
- support for unicode input
- interactive recursive search
- it is now possible to open a playlist file and edit it rather than just
adding its contents to the internal playlist
2019-09-20 Tobias Bengfort <[email protected]>
*** 3.0.0 ***
* breaking changes:
- drop support for python 2
- drop support for configuration
- drop support for macros
- drop support for executing shell commands
- drop support for bookmarks
- drop support for playing videos
- drop support for vlc backend
- drop support for deprecated python-oss
- drop "stop after each track" feature
* new features:
- add --autoexit option to close at the end of the playlist
- automatically start playing if a file was passed
- add support for webm
- allow moving the current track if none is tagged
2018-04-10 Tobias Bengfort <[email protected]>
*** 2.4.1 ***
- fix an issue with translation
- fix outdated references in README
2018-04-10 Tobias Bengfort <[email protected]>
*** 2.4.0 ***
- do not add individual files when there are playlists
- add support for cue files
- add mpv backend
- a lot of refactoring an small fixes
2017-06-05 Tobias Bengfort <[email protected]>
*** 2.3.0 ***
- fix various unicode issues
- fix detection of valid song/playlist on URLs
- fix: terminate backend on crash
- internal restructuring to facilitate search plugins
- new backend: ffplay
- add http support to avplay and gst123 backends
- fix: infinite loop in vlc backend
2017-01-30 Tobias Bengfort <[email protected]>
*** 2.2.0 ***
- fix: space not allowed in extra requirement name
- fix unicode issue with mplayer
- improve sox backend
- allow https in URLs
- add avplay backend
- wrap-around find
2016-01-03 Tobias Bengfort <[email protected]>
*** 2.1.2 ***
- fix warning when using setup.py without babel installed
- allow http protocol
- various fixes related to mixers
2015-12-28 Tobias Bengfort <[email protected]>
*** 2.1.1 ***
- add --version option
- fix displaying bytestrings in python3
2015-10-30 Tobias Bengfort <[email protected]>
*** 2.1.0 ***
- dropped support for ncurses
- dropped support for mplayer specific features (speed, equalizer)
- removed lircrc
- removed cplay.list
- added support for VLC
- added support for playing videos
- added -s flag to allow saving state on close and restoring on open
- log error instead of crash on invalid cplayrc
- fixed some python3 bytestring issues
- translations are now managed on
https://www.transifex.com/projects/p/cplay-ng/
- metadata detection has been refactored and should now be more reliable
- a lot of internal restructuring to ease collaboration with Andreas van
Cranenburgh's fork at https://github.com/andreasvc/cplay
2015-03-20 Tobias Bengfort <[email protected]>
*** 2.0.3 ***
- test are now run with python2.7, python3.4 and pypy
- some fixes to the pulseaudio volumn mixer (Andreas van Cranenburgh)
- fix parsing of mpg123 output (times larger than 1h)
2014-07-13 Tobias Bengfort <[email protected]>
*** 2.0.2 ***
- fix regression where cplay crashed when opened with an argument
- replace getopt by argparse which provides a better command line
interface
- allow to select a socket for use with cnq
2014-06-18 Tobias Bengfort <[email protected]>
*** 2.0.1 ***
This release brings a basic testing environment and some internal
restructuring. The following bugs have been fixed:
* cplay:
- fix regular expressions in python3
- only add valid songs to playlist
- don't crash on missing backend
- don't require babel for installation
* cnq:
- declare missing argparse dependency
2014-06-15 Tobias Bengfort <[email protected]>
*** 2.0.0 ***
cplay has been unmaintained for many years now. I tried to contact the
original developers but without luck. So now I am announcing a fork of
cplay: cplay-ng.
My short time goal with this was to be able to install cplay from pypi.
This goals has now been reached. Future plans include new features and a
test suite.
* cplay:
- renamed to cplay-ng
- dropped support for python < 2.6
- python3 compatibility
- pep8 compatibility
- setuptools integration
- pulse mixer support (Andreas van Cranenburgh)
- add gst123 backend which uses gstreamer and therefore supports many audio
formats
- midi support through timidity
- scale key-volume mapping such that 9 is 100%
* cnq:
- renamed to cnq-ng
- complete rework to become a full featured remote control for cplay-ng
2011-04-27 Tomi Pieviläinen <[email protected]>
*** 1.50 ***
* cplay:
- fix insecure /tmp handling (DB#255768, DB#324913) (Peter Samuelson)
- fix shell crashing (DB#375060)
- UTF-8 support (DB#279000)
- debug logging
- mutagen support (with ogg/flac metadata and fix to DB#413738)
- file recognition with magic (based on Jesus Climent)
- mplayer support with equalizer and speed support (Tom Adams,
Daniel Michalik)
- preliminary ALSA mixer support (Tom Adams)
- bugfixes (many authors)
* cnq: New executable to enque tracks to cplay (Tom Adams, fixes
DB#226167)
2011-04-15 Daniel Michalik <[email protected]>
Five years after the last pre-release by Ulf Betlehem some development
took place, individually distributed amongst various persons. This
version of cplay collects the found fixes and improvements and
provides:
- proper MPlayer support,
- volume control using ALSA and OSS,
- fixes of all known critical bugs, more bug fixes and clean up work.
Enjoy your updated cplay experience!
For you information and entertainment the following list contains the
"recent" development history, trying to give proper credits to the
developers involved. I tried to be as complete and accurate as possible,
please let me know if there is someone I forgot or if there is
something that I put down incorrectly.
- Peter Samuelson fixed the insecure /tmp handling (DB#255768,
DB#324913) together with Martin Michlmayr.
- Tom Adams collected the complete version history of cplay and
published it on github. Furthermore he provided basic MPlayer
support, the cnq script and ALSA mixer control.
- Tomi Pieviläinen fixed the shell crashing bug (DB#375060), added
logging and added mutagen support for reading meta data information
from played files (DB#413738). Various other improvements include the
removal of the kludge variable and clean up work/commenting.
- Adrian C. fixed various small bugs and made cplay ready for ncurses 5.8.
- Daniel Michalik replaced the mplayer FIFO by internal pipes to
prevent permission and IO blocking problems, added speed control and
equalizer support when using MPlayer and fixed some bugs (DB#387871,
DB#303282, sanity check of counter values).
2006-05-09 Ulf Betlehem <[email protected]>
*** 1.50pre7 ***
* cplay:
- work-around backspace problem (shrizza)
- shell crash work-around
2005-11-10 Ulf Betlehem <[email protected]>
*** 1.50pre6 ***
* cplay:
- share filedescriptors (Antoine Reilles)
2005-10-21 Ulf Betlehem <[email protected]>
*** 1.50pre5 ***
Over a year since last pre-release! I will probably have broken more
things than I have fixed, but here goes:
* cplay:
- fixed URL bug on command line (Georg Lehner)
- replaced deprecated apply()
- one-line scrolling
- continue after errors during recursive add
- added FrameOffsetPlayerMpp
- handle_command a bit differently
2004-07-25 Ulf Betlehem <[email protected]>
*** 1.50pre4 ***
* cplay:
- ogg123 now handles .flac and .spx
- require either ID3 or ogg modules for viewing metadata
2004-02-09 Ulf Betlehem <[email protected]>
*** 1.50pre3 ***
* cplay:
- replaced volup and voldown FIFOControl commands with
one "volume set|cue|toggle N" command
- removed inc_volume and dec_volume wrappers
- added FIFOControl command "empty" (delete playlist)
* lircrc:
- volup, voldown => volume command
2004-02-07 Ulf Betlehem <[email protected]>
*** 1.50pre2 ***
* po/pt_BR.po:
- new file (Ricardo Niederberger Cabral)
* cplay:
- allow shell from playlist
- user definable macros (for example MACRO['d'] = '!rm "$@"\n')
- new remote control commands: macro <key>, add <pathname>
* README:
- documented macros and shell positional arguments
2004-02-07 Ulf Betlehem <[email protected]>
*** 1.50pre1 ***
* cplay:
- user definable macros (for example MACRO['d'] = '!rm "$@"\n')
- new remote control commands: macro <key>, add <pathname>
* README:
- documented macros and shell positional arguments
2004-02-05 Ulf Betlehem <[email protected]>
* README:
- mkfifo /var/tmp/cplay_control (Ricardo Niederberger Cabral)
2004-01-07 Ulf Betlehem <[email protected]>
* po/Makefile, Makefile:
- SHELL = /bin/bash (Murphy)
2003-12-05 Ulf Betlehem <[email protected]>
*** 1.49 ***
* README, cplay.1:
- document restricted mode
2003-11-08 Ulf Betlehem <[email protected]>
*** 1.49pre4 ***
* cplay:
- restricted mode (suggested by Yoann AUBINEAU)
- connect player stdin to a pipe
- removed sleep(1) if player exec failed
- combined pause/unpause -> toggle_pause
- no parse_buf() if stopped or seeking
- removed --no-tty-control from madplay (stdin no longer tty)
- reduced codesize
2003-11-06 Ulf Betlehem <[email protected]>
* cplay:
- use 'm' for bookmarking instead of 'b'
- minor code clean-up
- modified help page
2003-11-02 Ulf Betlehem <[email protected]>
*** 1.49pre3 ***
* cplay.list:
- ESP Package Manager support (http://www.easysw.com/epm/)
* cplay:
- removed excessive update() from get_bookmark()
- rewritten delete and move commands for speed
2003-11-01 Ulf Betlehem <[email protected]>
* cplay:
- move active status support from ListEntry to PlaylistEntry
2003-10-04 Ulf Betlehem <[email protected]>
* cplayrc:
- removed execute permissions
2003-10-01 Ulf Betlehem <[email protected]>
* cplay:
- possible bugfix for increasing CPU usage
2003-10-01 Ulf Betlehem <[email protected]>
*** 1.49pre2 ***
* cplay:
- possible bugfix for increasing CPU usage
2003-09-28 Ulf Betlehem <[email protected]>
* cplay:
- use curses.KEY_ENTER for xwsh (wave++)
2003-09-13 Ulf Betlehem <[email protected]>
*** 1.49pre1 ***
* cplay:
- support and prefer ossaudiodev (dorphell)
2003-09-01 Ulf Betlehem <[email protected]>
* cplay:
- fixed playlist identification for 1.48 (Jean-Nicolas Kuttler)
2003-08-28 Ulf Betlehem <[email protected]>
* Makefile:
- cplayrc generation
* cplay.1:
- execute both /etc/cplayrc and ~/.cplayrc
- ignore /etc/cplayrc if ~/.cplayrc exists
- speex
- xmp
* README:
- speex
- ~/.cplayrc
2003-08-26 Ulf Betlehem <[email protected]>
*** 1.48 ***
* cplay:
- xmp regexp (Yuri D'Elia)
- URL support in mpg123 regexp (Martin Michlmayr)
- rudimentary /etc/cplayrc support (Toni Timonen)
* cplay.1:
- xmp, play and cplayrc references
* cplayrc:
- new file
2003-08-20 Ulf Betlehem <[email protected]>
* cplay(1.48pre1):
- discontinue python1.5 support
- mixer/volume control using python-oss module
- horizontal scrolling with < and >
- show tail (was head) of long input lines
- import random instead of whrandom
- minor progress parsing modification
- NoOffsetPlayer simply counts seconds (Martin Michlmayr)
- TimeOffsetPlayer with full madplay support
- added partial xmp and play (sox) support
2003-08-17 Ulf Betlehem <[email protected]>
* po/hu.po:
- new file (Gergely Nagy)
* po/pl.po:
- new file (Perry)
- fixed help text not showing
* po/da.po:
- new file (Christian Storgaard)
- specified charset/encoding
2003-05-13 Ulf Betlehem <[email protected]>
* cplay:
- display "Adding tagged files" instead of a separate message for each file (Martin Michlmayr)
- avoid error-messages when interrupting cplay when started via xargs (Moshe Zadka)
2003-04-13 Ulf Betlehem <[email protected]>
*** 1.47 ***
* README:
- mp3info and ogginfo modules are both required
* TODO: *** empty log message ***
* cplay.1:
- mention help window
- shell command and positional parameters
- document control_fifo in FILES section
- BUGS section
2003-04-11 Ulf Betlehem <[email protected]>
* cplay(1.47rc4):
- removed "quit silently" command-line option (use Q instead)
- fixed missing ": " for isearch-prompt
- always add absolute paths to playlist (args and stdin)
2003-04-10 Ulf Betlehem <[email protected]>
* cplay(1.47rc3):
- uses glob.glob() instead of fnmatch.filter()
2003-04-08 Ulf Betlehem <[email protected]>
* cplay(1.47rc2):
- bugfix
* cplay(1.47rc1):
- status and title now use viewpoints (l)
- hide cursor after shell command
- help window updates
2003-04-07 Ulf Betlehem <[email protected]>
* cplay(1.47pre5):
- '!' shell command with positional args
- TAB completion
- kill word/line with C-w/C-u
- invert tags command 'i'
- removed hide partial pathnames feature
- renamed 'X' from [manual] to [stop]
- bookmarks
- fixed .. -> ../
- actually chdir in filelist
- fixed seek/stop/pause crash
- minor code cleanup
2003-03-02 Ulf Betlehem <[email protected]>
* cplay(1.47pre4):
- X toggles manual/automatic playlist advancement (Väinö Järvelä)
- C-s C-s now remembers previous isearch string
- minor code cleanup here and there
- absolute seeking with C-a and ^ for bof, C-e and $ for eof
- HelpWindow includes "Undocumented commands"
- seeking now yield similar results when stopped and paused
- fixed byteorder issues with mixer on different architectures?
2003-02-09 Ulf Betlehem <[email protected]>
* cplay(1.47pre3):
- The "Quit? (y/N)" prompt no longer requires Enter.
- The number of dirs to hide can be adjusted with < and > for the
pathname viewpoint. However, this might still change.
- Sorting is now done according to viewpoint, which means that 'S'
no longer toggles sorting methods.
- Minor help window updates.
2003-01-30 Ulf Betlehem <[email protected]>
* cplay(1.47pre2):
- command line option to quit silently without confirmation
- isearch speedup (suggested by Eric Max Francis)
- viewpoint speedup
2003-01-25 Ulf Betlehem <[email protected]>
* cplay(1.47pre1):
- added os.path.exists check to get_tag()
2002-12-16 Ulf Betlehem <[email protected]>
* lircrc:
- new file (Pugo)
* cplay:
- documented @ command
- get_tag improvement (Martin Michlmayr)
* cplay.1:
- combined v and V options into one.
2002-12-16 Ulf Betlehem <[email protected]>
*** 1.46 ***
* cplay:
- documented @ command
- get_tag improvement (Martin Michlmayr)
* cplay.1:
- combined v and V options into one.
2002-12-04 Ulf Betlehem <[email protected]>
* cplay (1.46rc1):
- includes latest version of Martin's get_tag
2002-11-30 Ulf Betlehem <[email protected]>
* cplay (1.46pre9):
- alternative metadata support through get_tag (Martin Michlmayr)
- misc refactoring: TagListWindow, PlaylistEntry, etc.
- scrollable Help Window
- fixed keybinding for toggle counter mode
- new @ command that jumps to the active playlist entry
- removed V command and option, v toggles MASTER/PCM instead
- removed custom normpath
2002-11-08 Ulf Betlehem <[email protected]>
* cplay.1:
- Use minuses instead of hyphens for command line options. (Martin)
2002-10-27 Ulf Betlehem <[email protected]>
* cplay (1.46pre8)
- modified keymap!
- updated help window
- filelist tagging support (based on a patch by Jason M. Felice)
- improved status message behavior
- added retry if resize failed
- show cursor in input mode
2002-10-24 Ulf Betlehem <[email protected]>
* cplay (1.46pre7)
- a couple of status message changes
- faster delete when not in random mode
- rudimentary .pls playlist support
- improved streaming support
- advance playlist if player not found
- changed player priority order
2002-10-21 Ulf Betlehem <[email protected]>
* cplay (1.46pre6)
- new and improved random mode (Radu)
2002-10-20 Ulf Betlehem <[email protected]>
* cplay:
- refactoring
- list mode (l = toggle viewpoints)
- q = quit (y/n) and Q = Quit immediately
- isearch turnaround change
- input cursor position
- recursive search duplicates fix
- case insensitive regex marking
- regex marking matches viewpoint
- VALID_SONG regex matches basename
- playlist sorting by filename or pathname
- don't move empty list of marked entries
- SIGTERM -> SIGINT (again)
- updated mikmod switches
2002-10-15 Ulf Betlehem <[email protected]>
* cplay:
- pad input with space for cursor position
2002-10-11 Ulf Betlehem <[email protected]>
* cplay (1.46pre5)
- string.punctuation kludge for python 1.5
- recursive search in filelist!
- include 669|mtm|it in mikmod regex (Samium Gromoff)
2002-08-28 Ulf Betlehem <[email protected]>
* cplay (1.46pre4)
- bugfix
2002-08-28 Ulf Betlehem <[email protected]>
* cplay (1.46pre3)
- LIRC support via control FIFO (Pugo)
2002-08-21 Ulf Betlehem <[email protected]>
* cplay (1.46pre2)
- allow printable chars as input
- alias commands: Q for q and = for +
- grid bug removed from line number display
- keep current position after auto filelist updates
- quiet auto filelist updates (Martin Michlmayr)
- select child in filelist after a parent command
- parse player output only once every second
- PCM/MASTER volume commands show current volume
* LICENSE: new file
2002-03-31 Ulf Betlehem <[email protected]>
* cplay (1.46pre1)
- remember playlist filename (Patrice Neff)
2002-03-24 Ulf Betlehem <[email protected]>
*** 1.45 ***
2002-03-19 Ulf Betlehem <[email protected]>
* cplay (1.45pre5):
- emulate insstr() for python1.5
- new commands m/M = move after/before
- new command D = delete current (Jay Felice)
- line numbers
2002-01-19 Ulf Betlehem <[email protected]>
* cplay (1.45pre4):
- added options -v and -V to control either PCM or MASTER volume
- increase and decrease volume in steps of 3% (kludge)
2002-01-13 Ulf Betlehem <[email protected]>
* cplay (1.45pre3):
- progressbar cosmetics
- tilde expansion (Patrice Neff)
2001-12-27 Ulf Betlehem <[email protected]>
* cplay (1.45pre2):
- added "--no-tty-control" option for madplay
- removed "-d oss" option from ogg123 (Han)
- use insstr instead of addstr to work around a classical curses-
problem with writing the rightmost character without scrolling.
2001-12-01 Ulf Betlehem <[email protected]>
*** 1.44 ***
* cplay:
- partial support for madplay
- partial support for mikmod (yason)
- removed sox support - unless someone needs it
- toggle counter mode: time done / time left
- seek acceleration based on song length
- avoid listing dot-files (Martin Michlmayr)
- remove ".." entry from root (Martin Michlmayr)
- show playlist upon startup if playing (Patrice Neff)
- removed TERMIOS warning with recent python versions
- add directories from command line (Han)
- fixed x-bug (Chris Liechti)
- changed write_playlist key from 'o' to 'w'
- changed goto command key from 'g' to 'o'
- added 'g' (home) and 'G' (end) keys
- added '/' and '?' keys for searching
- misc tweaks
* cplay.1:
- update
* README:
- update
2001-03-15 Ulf Betlehem <[email protected]>
*** 1.43 ***
* cplay:
- partial support for splay
- commandline arguments: repeat/random (Gerald Stieglbauer)
- volume fine tuning via +/- (Martin Michlmayr)
- simplified player framework
- mark/clear regexp
2001-01-18 Ulf Betlehem <[email protected]>
*** 1.42 ***
* cplay:
- ignore bogus gettext module
- correct devfs paths
- use seconds instead of frames
- shuffle speedup (Martin Persson)
- changed player hierarchy
- improved ogg123 support
2000-12-08 Ulf Betlehem <[email protected]>
*** 1.41 ***
* README: a few words about mpg123 and streaming
* po/de.po, cplay.1: updated (Martin Michlmayr)
* po/Makefile, Makefile: use "install -c" for compatibility
* cplay:
- autoplay initial playlist
- is now a front-end for various audio players
- ogg123 support (Martin Michlmayr)
- devfs paths (Martin Michlmayr)
- playlist url support (Charl P. Botha)
- fixed signalling bug
- minor code cleanup
2000-10-19 Ulf Betlehem <[email protected]>
*** 1.40 ***
* README: added instructions on how to change player options
* cplay: new versioning scheme
fixed locale setting
python 2.0 compatible
prefers standard gettext to fintl
delayed warnings for missing players and unknown fileformats
fixed hline with zero length in progressline
set title to xterm in cleanup
better support for mpg123 buffers by signalling progress groups
* README: modified usage
* Makefile: install man page
* cplay.1: man page (Martin Michlmayr)
* ChangeLog, TODO: new entry
* po/de.po: update (Martin Michlmayr)
2000-09-06 Ulf Betlehem <[email protected]>
* cplay: Python 1.6 compatible
2000-08-09 Ulf Betlehem <[email protected]>
* po/de.po: new file
* po/Makefile: new Makefile
* killpgmodule.c: *** empty log message ***
* README: new README
* Makefile: new Makefile
2000-07-31 Ulf Betlehem <[email protected]>
* cplay: added i18n support by Martin Michlmayr
fixed locale support
2000-07-25 Ulf Betlehem <[email protected]>
* cplay:
added support for sox to play .wav, .au and other sound formats
* cplay: shows status in titlebar under X -- thanks Chmouel Boudjnah
2000-05-23 Ulf Betlehem <[email protected]>
* cplay: doesn't stat() cwd when idle
* cplay: supports both pyncurses and the old cursesmodule
2000-04-24 Ulf Betlehem <[email protected]>
* cplay: - restores terminal settings on exceptions
- global mp3 and m3u regexps
- new and improved keymap class
- removed a possible "division by zero" bug
2000-03-24 Ulf Betlehem <[email protected]>
* cplay: translate evil characters to '?'
2000-02-07 Ulf Betlehem <[email protected]>
* cplay: fixed a bug in FilelistWindow.add_dir()
2000-01-20 Ulf Betlehem <[email protected]>
* cplay:
- changed the player class so that one can hold down 'n' or 'p' when
changing tracks without cplay crashing ;)
2000-01-19 Ulf Betlehem <[email protected]>
* cplay: Enter now plays files bypassing the playlist
Space adds files to playlist
a adds recursively
z toggles pause
x toggles stop
m3u lines beginning with '#' are now silently discarded
1999-12-22 Ulf Betlehem <[email protected]>
* cplay: - lot's of small changes
1999-12-13 Ulf Betlehem <[email protected]>
* cplay: handles SIGWINCH correctly
automatically rereads current dir when modified
lot's of minor changes
1999-10-26 Ulf Betlehem <[email protected]>
* cplay: Added two commands:
R = random play order (keeps your playlist intact)
S = sort playlist by filename
Removed a seldom used (also undocumented) command:
N = previous track
1999-05-10 Ulf Betlehem <[email protected]>
* cplay: catches os.error if os.listfiles() fails.
1999-02-13 Ulf Betlehem <[email protected]>
* cplay: Added error-checking to prevent manipulating empty playlists.
Raised default seek speed from Pi to 4.
1999-02-07 Ulf Betlehem <[email protected]>
* cplay: Corrected a feature that caused automatic loading of playlists
upon entering a directory where the cursor was over a .m3u file.
1999-01-29 Ulf Betlehem <[email protected]>
* cplay:
Uses frames_done and frames_left instead of time_done and time_left.
Minor code clean-up.
* cplay: Now supports at least mpg123 v0.59o through v0.59q
1999-01-19 Ulf Betlehem <[email protected]>
* cplay: o Is now "pure Python", which means there is no need for the
killpgmodule.so anymore. Oh, joy!
o mpg123 is now automatically located in the PATH if not specified absolutely.
o Moved mark() to 'space' and pause_or_unpause() to 'p' and stop_or_unstop()
to 'k'.
o Playlists are now always saved with the extension .m3u.
1998-12-11 Ulf Betlehem <[email protected]>
* cplay: now consumes anything written on stdout
1998-11-29 Ulf Betlehem <[email protected]>
* cplay: select() now only timeouts when necessary.
1998-11-20 Ulf Betlehem <[email protected]>
* cplay: added PlaylistWindow.command_mark_all()
1998-11-12 Ulf Betlehem <[email protected]>
* cplay: SIGTERM -> SIGINT
* cplay: fixed sigchld bug
added help window
1998-11-11 Ulf Betlehem <[email protected]>
* cplay: random -> whrandom
* cplay: Too many changes!
Reorganization
Change of policy
1998-10-29 Ulf Betlehem <[email protected]>
* cplay: separated PLAYER and COMMAND
checks if the PLAYER is valid before it continues
1998-10-27 Ulf Betlehem <[email protected]>
* cplay: kludged mixed case in curses constants
1998-10-12 Ulf Betlehem <[email protected]>