dtas 0.14.2 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/Documentation/.gitignore +1 -1
- data/Documentation/GNUmakefile +1 -1
- data/Documentation/dtas-archive.pod +2 -2
- data/Documentation/dtas-console.pod +2 -2
- data/Documentation/dtas-ctl.pod +2 -2
- data/Documentation/dtas-cueedit.pod +2 -2
- data/Documentation/dtas-enq.pod +2 -2
- data/Documentation/dtas-env.pod +2 -2
- data/Documentation/dtas-msinkctl.pod +2 -2
- data/Documentation/dtas-player.pod +2 -2
- data/Documentation/dtas-player_effects.pod +2 -2
- data/Documentation/dtas-player_protocol.pod +19 -4
- data/Documentation/dtas-player_sink_examples.pod +2 -2
- data/Documentation/dtas-sinkedit.pod +2 -2
- data/Documentation/dtas-sourceedit.pod +2 -2
- data/Documentation/dtas-splitfx.pod +1 -1
- data/Documentation/dtas-tl.pod +2 -2
- data/Documentation/dtas-xdelay.pod +2 -2
- data/Documentation/update-footer.rb +3 -3
- data/GIT-VERSION-GEN +2 -2
- data/GNUmakefile +1 -1
- data/HACKING +2 -2
- data/INSTALL +10 -10
- data/README +6 -5
- data/Rakefile +5 -5
- data/TODO +1 -1
- data/bin/dtas-archive +2 -2
- data/bin/dtas-console +1 -1
- data/bin/dtas-ctl +1 -1
- data/bin/dtas-cueedit +1 -1
- data/bin/dtas-enq +1 -1
- data/bin/dtas-mlib +1 -1
- data/bin/dtas-msinkctl +1 -1
- data/bin/dtas-partstats +1 -1
- data/bin/dtas-player +1 -1
- data/bin/dtas-readahead +19 -8
- data/bin/dtas-sinkedit +1 -1
- data/bin/dtas-sourceedit +1 -1
- data/bin/dtas-splitfx +1 -1
- data/bin/dtas-tl +1 -1
- data/bin/dtas-xdelay +1 -1
- data/dtas-linux.gemspec +2 -2
- data/dtas-mpris.gemspec +2 -2
- data/dtas.gemspec +2 -2
- data/lib/dtas.rb +15 -2
- data/lib/dtas/buffer.rb +1 -1
- data/lib/dtas/buffer/read_write.rb +1 -1
- data/lib/dtas/buffer/splice.rb +1 -2
- data/lib/dtas/command.rb +1 -1
- data/lib/dtas/compat_onenine.rb +1 -1
- data/lib/dtas/cue_index.rb +1 -1
- data/lib/dtas/disclaimer.rb +1 -1
- data/lib/dtas/edit_client.rb +1 -1
- data/lib/dtas/fadefx.rb +2 -2
- data/lib/dtas/format.rb +9 -5
- data/lib/dtas/mcache.rb +31 -0
- data/lib/dtas/mlib.rb +11 -7
- data/lib/dtas/mlib/migrations/0001_initial.rb +1 -1
- data/lib/dtas/nonblock.rb +1 -1
- data/lib/dtas/parse_freq.rb +1 -1
- data/lib/dtas/parse_time.rb +1 -1
- data/lib/dtas/partstats.rb +2 -3
- data/lib/dtas/pipe.rb +1 -1
- data/lib/dtas/player.rb +2 -1
- data/lib/dtas/player/client_handler.rb +74 -16
- data/lib/dtas/process.rb +1 -1
- data/lib/dtas/replaygain.rb +1 -1
- data/lib/dtas/rg_state.rb +4 -9
- data/lib/dtas/serialize.rb +1 -1
- data/lib/dtas/sigevent.rb +1 -1
- data/lib/dtas/sigevent/efd.rb +1 -1
- data/lib/dtas/sigevent/pipe.rb +1 -1
- data/lib/dtas/sink.rb +1 -1
- data/lib/dtas/source.rb +2 -1
- data/lib/dtas/source/av.rb +1 -1
- data/lib/dtas/source/av_ff_common.rb +7 -3
- data/lib/dtas/source/cmd.rb +1 -1
- data/lib/dtas/source/common.rb +1 -1
- data/lib/dtas/source/ff.rb +1 -1
- data/lib/dtas/source/file.rb +1 -1
- data/lib/dtas/source/mp3gain.rb +1 -1
- data/lib/dtas/source/sox.rb +59 -32
- data/lib/dtas/spawn_fix.rb +1 -1
- data/lib/dtas/splitfx.rb +11 -6
- data/lib/dtas/state_file.rb +1 -1
- data/lib/dtas/tfx.rb +1 -1
- data/lib/dtas/track.rb +1 -1
- data/lib/dtas/tracklist.rb +1 -1
- data/lib/dtas/unix_accepted.rb +1 -1
- data/lib/dtas/unix_client.rb +1 -1
- data/lib/dtas/unix_server.rb +1 -1
- data/lib/dtas/util.rb +1 -1
- data/lib/dtas/writable_iter.rb +1 -1
- data/lib/dtas/xs.rb +1 -1
- data/perl/dtas-graph +1 -1
- data/test/covshow.rb +1 -1
- data/test/helper.rb +1 -1
- data/test/player_integration.rb +1 -1
- data/test/test_buffer.rb +11 -7
- data/test/test_env.rb +1 -1
- data/test/test_fadefx.rb +1 -1
- data/test/test_format.rb +1 -1
- data/test/test_format_change.rb +1 -1
- data/test/test_mcache.rb +19 -0
- data/test/test_mlib.rb +1 -1
- data/test/test_parse_freq.rb +1 -1
- data/test/test_player.rb +1 -1
- data/test/test_player_client_handler.rb +1 -1
- data/test/test_player_integration.rb +1 -1
- data/test/test_process.rb +1 -1
- data/test/test_rg_integration.rb +2 -2
- data/test/test_rg_state.rb +9 -2
- data/test/test_sink.rb +1 -1
- data/test/test_sink_pipe_size.rb +1 -1
- data/test/test_sink_tee_integration.rb +1 -1
- data/test/test_source_av.rb +1 -1
- data/test/test_source_sox.rb +2 -1
- data/test/test_splitfx.rb +1 -1
- data/test/test_tfx.rb +1 -1
- data/test/test_tracklist.rb +1 -1
- data/test/test_unixserver.rb +1 -1
- data/test/test_util.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b38ad68d0ac0b303e95ef7a6de996581fd4a5c73
|
|
4
|
+
data.tar.gz: 84066e2d52ede911d045b0d9f62a6d0cb741a0a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e02cd6429e8df6fca2d6d0745e5fa1094910c6688ecbbc404d309f044a6abba32dfc0f0b03f60f5d8a487f94fc64fe6cedc0365c5a5cf539fb6d1db80b05bcad
|
|
7
|
+
data.tar.gz: 8849acee6e2ec2ec588f686d7d56e741db25e480a8d9661d0feee4f95fe6f8dbd030ae07806654b7aa6020abd46243bfab8a7f33e25e977467aafe1b7a824352
|
data/.gitignore
CHANGED
data/Documentation/.gitignore
CHANGED
data/Documentation/GNUmakefile
CHANGED
|
@@ -58,13 +58,13 @@ Number of times to repeat the L<sndfile-cmp(1)> check. Default: 1
|
|
|
58
58
|
|
|
59
59
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
60
60
|
|
|
61
|
-
License: GPL-3.0+ L<
|
|
61
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
62
62
|
|
|
63
63
|
=head1 CONTACT
|
|
64
64
|
|
|
65
65
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
66
66
|
|
|
67
|
-
Mailing list archives available at L<
|
|
67
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
68
68
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
69
69
|
|
|
70
70
|
No subscription is necessary to post to the mailing list.
|
|
@@ -77,7 +77,7 @@ a problem.
|
|
|
77
77
|
|
|
78
78
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
79
79
|
|
|
80
|
-
Mailing list archives available at L<
|
|
80
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
81
81
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
82
82
|
|
|
83
83
|
No subscription is necessary to post to the mailing list.
|
|
@@ -86,7 +86,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
86
86
|
|
|
87
87
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
88
88
|
|
|
89
|
-
License: GPL-3.0+ L<
|
|
89
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
90
90
|
|
|
91
91
|
=head1 SEE ALSO
|
|
92
92
|
|
data/Documentation/dtas-ctl.pod
CHANGED
|
@@ -61,7 +61,7 @@ This defaults to ~/.dtas/player.sock
|
|
|
61
61
|
|
|
62
62
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
63
63
|
|
|
64
|
-
Mailing list archives available at L<
|
|
64
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
65
65
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
66
66
|
|
|
67
67
|
No subscription is necessary to post to the mailing list.
|
|
@@ -70,7 +70,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
70
70
|
|
|
71
71
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
72
72
|
|
|
73
|
-
License: GPL-3.0+ L<
|
|
73
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
74
74
|
|
|
75
75
|
=head1 SEE ALSO
|
|
76
76
|
|
|
@@ -22,7 +22,7 @@ VISUAL / EDITOR - your favorite *nix text editor, defaults to 'vi' if unset.
|
|
|
22
22
|
|
|
23
23
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
24
24
|
|
|
25
|
-
Mailing list archives available at L<
|
|
25
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
26
26
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
27
27
|
|
|
28
28
|
No subscription is necessary to post to the mailing list.
|
|
@@ -31,7 +31,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
31
31
|
|
|
32
32
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
33
33
|
|
|
34
|
-
License: GPL-3.0+ L<
|
|
34
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
35
35
|
|
|
36
36
|
=head1 SEE ALSO
|
|
37
37
|
|
data/Documentation/dtas-enq.pod
CHANGED
|
@@ -27,7 +27,7 @@ This defaults to ~/.dtas/player.sock
|
|
|
27
27
|
|
|
28
28
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
29
29
|
|
|
30
|
-
Mailing list archives available at L<
|
|
30
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
31
31
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
32
32
|
|
|
33
33
|
No subscription is necessary to post to the mailing list.
|
|
@@ -36,7 +36,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
36
36
|
|
|
37
37
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
38
38
|
|
|
39
|
-
License: GPL-3.0+ L<
|
|
39
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
40
40
|
|
|
41
41
|
=head1 SEE ALSO
|
|
42
42
|
|
data/Documentation/dtas-env.pod
CHANGED
|
@@ -63,7 +63,7 @@ temporary files are placed for most programs.
|
|
|
63
63
|
|
|
64
64
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
65
65
|
|
|
66
|
-
Mailing list archives available at L<
|
|
66
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
67
67
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
68
68
|
|
|
69
69
|
No subscription is necessary to post to the mailing list.
|
|
@@ -72,4 +72,4 @@ No subscription is necessary to post to the mailing list.
|
|
|
72
72
|
|
|
73
73
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
74
74
|
|
|
75
|
-
License: GPL-3.0+ L<
|
|
75
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -44,7 +44,7 @@ This defaults to ~/.dtas/player.sock
|
|
|
44
44
|
|
|
45
45
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
46
46
|
|
|
47
|
-
Mailing list archives available at L<
|
|
47
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
48
48
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
49
49
|
|
|
50
50
|
No subscription is necessary to post to the mailing list.
|
|
@@ -53,7 +53,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
53
53
|
|
|
54
54
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
55
55
|
|
|
56
|
-
License: GPL-3.0+ L<
|
|
56
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
57
57
|
|
|
58
58
|
=head1 SEE ALSO
|
|
59
59
|
|
|
@@ -108,7 +108,7 @@ state across restarts of dtas-player.
|
|
|
108
108
|
|
|
109
109
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
110
110
|
|
|
111
|
-
Mailing list archives available at L<
|
|
111
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
112
112
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
113
113
|
|
|
114
114
|
No subscription is necessary to post to the mailing list.
|
|
@@ -117,7 +117,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
117
117
|
|
|
118
118
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
119
119
|
|
|
120
|
-
License: GPL-3.0+ L<
|
|
120
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
121
121
|
|
|
122
122
|
=head1 SEE ALSO
|
|
123
123
|
|
|
@@ -91,7 +91,7 @@ playback hardware are applied at the sink:
|
|
|
91
91
|
|
|
92
92
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
93
93
|
|
|
94
|
-
Mailing list archives available at L<
|
|
94
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
95
95
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
96
96
|
|
|
97
97
|
No subscription is necessary to post to the mailing list.
|
|
@@ -100,4 +100,4 @@ No subscription is necessary to post to the mailing list.
|
|
|
100
100
|
|
|
101
101
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
102
102
|
|
|
103
|
-
License: GPL-3.0+ L<
|
|
103
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -96,7 +96,7 @@ Commands here should be alphabetized according to `LC_ALL=C sort'
|
|
|
96
96
|
|
|
97
97
|
PENDING: this may be renamed to "queue clear" or "queue-clear"
|
|
98
98
|
|
|
99
|
-
=item cue - display the index/offsets of the embedded
|
|
99
|
+
=item cue - display the index/offsets of the embedded CUE sheet
|
|
100
100
|
|
|
101
101
|
=item cue next - skip to the next cue sheet offset
|
|
102
102
|
|
|
@@ -109,11 +109,26 @@ This may just seek to the beginning
|
|
|
109
109
|
if there is no embedded cue sheet or if we are playing the first
|
|
110
110
|
(embedded) track.
|
|
111
111
|
|
|
112
|
-
=item cue goto INTEGER - go to the cue index denoted by INTEGER
|
|
112
|
+
=item cue goto INTEGER [TIMESTAMP] - go to the cue index denoted by INTEGER
|
|
113
113
|
|
|
114
114
|
0 is first track as returned by "cue".
|
|
115
115
|
Negative values of INTEGER allows selecting track relative to the last
|
|
116
116
|
track (-1 is the last track, -2 is the penultimate, and so on).
|
|
117
|
+
The optional TIMESTAMP allows starting the index track at a given
|
|
118
|
+
point, negative values allow going to a set point before the given
|
|
119
|
+
index. In other words: "cue goto 1 -5" seeks to the last five seconds
|
|
120
|
+
of the first track while "cue goto 1 5" seeks to the fifth second of
|
|
121
|
+
the second track
|
|
122
|
+
|
|
123
|
+
=item cue seek TIMESTAMP - seek within the current cue index
|
|
124
|
+
|
|
125
|
+
Like the normal "seek" command, but this confines the seeking
|
|
126
|
+
within the currently playing index. As with "seek",
|
|
127
|
+
"+" and "-" prefixes allow seeking relative to the currently
|
|
128
|
+
playing position
|
|
129
|
+
|
|
130
|
+
Using a "=-" prefix allows seeking to the previous track within
|
|
131
|
+
the CUE sheet, relative to the currently playing track.
|
|
117
132
|
|
|
118
133
|
=item current - output information about the current track/command in YAML
|
|
119
134
|
|
|
@@ -448,7 +463,7 @@ another client socket to issue non-watch commands.
|
|
|
448
463
|
|
|
449
464
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
450
465
|
|
|
451
|
-
Mailing list archives available at L<
|
|
466
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
452
467
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
453
468
|
|
|
454
469
|
No subscription is necessary to post to the mailing list.
|
|
@@ -457,4 +472,4 @@ No subscription is necessary to post to the mailing list.
|
|
|
457
472
|
|
|
458
473
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
459
474
|
|
|
460
|
-
License: GPL-3.0+ L<
|
|
475
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -70,7 +70,7 @@ See L<dtas-xdelay(1)>.
|
|
|
70
70
|
|
|
71
71
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
72
72
|
|
|
73
|
-
Mailing list archives available at L<
|
|
73
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
74
74
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
75
75
|
|
|
76
76
|
No subscription is necessary to post to the mailing list.
|
|
@@ -79,7 +79,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
79
79
|
|
|
80
80
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
81
81
|
|
|
82
|
-
License: GPL-3.0+ L<
|
|
82
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
83
83
|
|
|
84
84
|
=head1 SEE ALSO
|
|
85
85
|
|
|
@@ -63,7 +63,7 @@ This defaults to ~/.dtas/player.sock
|
|
|
63
63
|
|
|
64
64
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
65
65
|
|
|
66
|
-
Mailing list archives available at L<
|
|
66
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
67
67
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
68
68
|
|
|
69
69
|
No subscription is necessary to post to the mailing list.
|
|
@@ -72,7 +72,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
72
72
|
|
|
73
73
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
74
74
|
|
|
75
|
-
License: GPL-3.0+ L<
|
|
75
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
76
76
|
|
|
77
77
|
=head1 SEE ALSO
|
|
78
78
|
|
|
@@ -70,7 +70,7 @@ This defaults to ~/.dtas/player.sock
|
|
|
70
70
|
|
|
71
71
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
72
72
|
|
|
73
|
-
Mailing list archives available at L<
|
|
73
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
74
74
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
75
75
|
|
|
76
76
|
No subscription is necessary to post to the mailing list.
|
|
@@ -79,7 +79,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
79
79
|
|
|
80
80
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
81
81
|
|
|
82
|
-
License: GPL-3.0+ L<
|
|
82
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
83
83
|
|
|
84
84
|
=head1 SEE ALSO
|
|
85
85
|
|
|
@@ -264,7 +264,7 @@ imbalance in a live concert recording from the audience:
|
|
|
264
264
|
|
|
265
265
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
266
266
|
|
|
267
|
-
License: GPL-3.0+ L<
|
|
267
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
268
268
|
|
|
269
269
|
=head1 SEE ALSO
|
|
270
270
|
|
data/Documentation/dtas-tl.pod
CHANGED
|
@@ -113,7 +113,7 @@ This defaults to ~/.dtas/player.sock
|
|
|
113
113
|
|
|
114
114
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
115
115
|
|
|
116
|
-
Mailing list archives available at L<
|
|
116
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
117
117
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
118
118
|
|
|
119
119
|
No subscription is necessary to post to the mailing list.
|
|
@@ -122,7 +122,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
122
122
|
|
|
123
123
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
124
124
|
|
|
125
|
-
License: GPL-3.0+ L<
|
|
125
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
126
126
|
|
|
127
127
|
=head1 SEE ALSO
|
|
128
128
|
|
|
@@ -79,7 +79,7 @@ are greatly appreciated.
|
|
|
79
79
|
|
|
80
80
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
81
81
|
|
|
82
|
-
Mailing list archives available at L<
|
|
82
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
83
83
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
84
84
|
|
|
85
85
|
No subscription is necessary to post to the mailing list.
|
|
@@ -88,7 +88,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
88
88
|
|
|
89
89
|
Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
|
|
90
90
|
|
|
91
|
-
License: GPL-3.0+ L<
|
|
91
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
92
92
|
|
|
93
93
|
=head1 SEE ALSO
|
|
94
94
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# Copyright 2015-2016 all contributors <dtas-all@nongnu.org>
|
|
3
|
-
# License: GPL-3.0+ <
|
|
3
|
+
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
contact = %q{
|
|
6
6
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
7
7
|
|
|
8
|
-
Mailing list archives available at L<
|
|
8
|
+
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
9
9
|
and L<ftp://lists.gnu.org/dtas-all/>
|
|
10
10
|
|
|
11
11
|
No subscription is necessary to post to the mailing list.
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
copyright = %q{
|
|
15
15
|
Copyright %s all contributors L<mailto:dtas-all@nongnu.org>
|
|
16
16
|
|
|
17
|
-
License: GPL-3.0+ L<
|
|
17
|
+
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
ENV['TZ'] = 'UTC'
|
data/GIT-VERSION-GEN
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
|
|
3
|
-
# License: GPL-3.0+
|
|
3
|
+
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
CONSTANT = "DTAS::VERSION"
|
|
6
6
|
RVF = "lib/dtas/version.rb"
|
|
7
7
|
GVF = "GIT-VERSION-FILE"
|
|
8
|
-
DEF_VER = "v0.
|
|
8
|
+
DEF_VER = "v0.15.0"
|
|
9
9
|
vn = DEF_VER
|
|
10
10
|
|
|
11
11
|
# First see if there is a version file (included in release tarballs),
|
data/GNUmakefile
CHANGED
data/HACKING
CHANGED
|
@@ -17,11 +17,11 @@ We use git(7) and develop dtas on a public mailing list like git
|
|
|
17
17
|
developers do. Please send patches via git-send-email(1) to the public
|
|
18
18
|
mailing list at <dtas-all@nongnu.org>. Pull requests should be
|
|
19
19
|
formatted using git-request-pull(1).\
|
|
20
|
-
Mailing list archives available at <
|
|
20
|
+
Mailing list archives available at <https://80x24.org/dtas-all/> and
|
|
21
21
|
<ftp://lists.gnu.org/dtas-all/>\
|
|
22
22
|
No subscription is necessary to post to the mailing list.
|
|
23
23
|
|
|
24
24
|
# COPYRIGHT
|
|
25
25
|
|
|
26
26
|
Copyright 2013-2016 all contributors <dtas-all@nongnu.org>.\
|
|
27
|
-
License: GPL-3.0+ <
|
|
27
|
+
License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
data/INSTALL
CHANGED
|
@@ -37,29 +37,29 @@ For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
|
|
|
37
37
|
|
|
38
38
|
# installing dtas via tarball and setup.rb
|
|
39
39
|
|
|
40
|
-
Grab the latest tarball from our
|
|
40
|
+
Grab the latest tarball from our HTTPS site:
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
https://80x24.org/dtas/2017/dtas-0.15.0.tar.gz
|
|
43
43
|
|
|
44
|
-
$ tar zxvf dtas-0.
|
|
45
|
-
$ cd dtas-0.
|
|
44
|
+
$ tar zxvf dtas-0.15.0.tar.gz
|
|
45
|
+
$ cd dtas-0.15.0
|
|
46
46
|
$ sudo ruby setup.rb
|
|
47
47
|
|
|
48
48
|
GNU/Linux users may optionally install "io_splice" and
|
|
49
49
|
"sleepy_penguin" packages:
|
|
50
50
|
|
|
51
|
-
* io_splice -
|
|
52
|
-
* sleepy_penguin -
|
|
51
|
+
* io_splice - https://bogomips.org/ruby_io_splice/
|
|
52
|
+
* sleepy_penguin - https://bogomips.org/sleepy_penguin/
|
|
53
53
|
|
|
54
54
|
# CONTACT
|
|
55
55
|
|
|
56
56
|
Please do not hesitate to send plain-text mail to <dtas-all@nongnu.org>
|
|
57
57
|
regarding installation and to share your notes/experiences.
|
|
58
|
-
Mailing list archives available at <
|
|
59
|
-
<ftp://lists.gnu.org/dtas-all
|
|
58
|
+
Mailing list archives available at <https://80x24.org/dtas-all/> or
|
|
59
|
+
<ftp://lists.gnu.org/dtas-all>
|
|
60
60
|
No subscription is necessary to post to the mailing list.
|
|
61
61
|
|
|
62
62
|
# COPYRIGHT
|
|
63
63
|
|
|
64
|
-
Copyright 2013-2016 all contributors <dtas-all@nongnu.org
|
|
65
|
-
License: GPL-3.0+ <
|
|
64
|
+
Copyright 2013-2016 all contributors <dtas-all@nongnu.org>
|
|
65
|
+
License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|