dtas 0.16.1 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/Documentation/.gitignore +1 -1
  4. data/Documentation/GNUmakefile +2 -2
  5. data/Documentation/dtas-archive.pod +2 -2
  6. data/Documentation/dtas-console.pod +2 -2
  7. data/Documentation/dtas-ctl.pod +2 -2
  8. data/Documentation/dtas-cueedit.pod +2 -2
  9. data/Documentation/dtas-enq.pod +2 -2
  10. data/Documentation/dtas-env.pod +3 -3
  11. data/Documentation/dtas-msinkctl.pod +2 -2
  12. data/Documentation/dtas-player.pod +2 -2
  13. data/Documentation/dtas-player_effects.pod +2 -2
  14. data/Documentation/dtas-player_protocol.pod +4 -4
  15. data/Documentation/dtas-player_sink_examples.pod +2 -2
  16. data/Documentation/dtas-sinkedit.pod +4 -4
  17. data/Documentation/dtas-sourceedit.pod +4 -4
  18. data/Documentation/dtas-splitfx.pod +7 -1
  19. data/Documentation/dtas-tl.pod +4 -4
  20. data/Documentation/dtas-xdelay.pod +2 -2
  21. data/Documentation/update-footer.rb +2 -2
  22. data/GIT-VERSION-FILE +1 -1
  23. data/GIT-VERSION-GEN +2 -2
  24. data/GNUmakefile +13 -1
  25. data/HACKING +2 -2
  26. data/INSTALL +10 -24
  27. data/NEWS +103 -0
  28. data/README +14 -8
  29. data/Rakefile +1 -1
  30. data/TODO +3 -1
  31. data/bin/dtas-archive +1 -1
  32. data/bin/dtas-console +17 -21
  33. data/bin/dtas-ctl +1 -1
  34. data/bin/dtas-cueedit +1 -1
  35. data/bin/dtas-enq +1 -1
  36. data/bin/dtas-mlib +1 -1
  37. data/bin/dtas-msinkctl +1 -1
  38. data/bin/dtas-partstats +1 -1
  39. data/bin/dtas-player +1 -1
  40. data/bin/dtas-readahead +3 -3
  41. data/bin/dtas-sinkedit +1 -1
  42. data/bin/dtas-sourceedit +1 -1
  43. data/bin/dtas-splitfx +8 -1
  44. data/bin/dtas-tl +1 -1
  45. data/bin/dtas-xdelay +1 -1
  46. data/dtas-linux.gemspec +2 -2
  47. data/dtas-mpris.gemspec +2 -2
  48. data/dtas.gemspec +3 -3
  49. data/dtas.sh +7 -0
  50. data/examples/zsh-completion/README +3 -0
  51. data/examples/zsh-completion/_dtas-archive +16 -0
  52. data/examples/zsh-completion/_dtas-ctl +114 -0
  53. data/examples/zsh-completion/_dtas-cueedit +7 -0
  54. data/examples/zsh-completion/_dtas-enq +7 -0
  55. data/examples/zsh-completion/_dtas-mlib +29 -0
  56. data/examples/zsh-completion/_dtas-msinkctl +8 -0
  57. data/examples/zsh-completion/_dtas-partstats +7 -0
  58. data/examples/zsh-completion/_dtas-sinkedit +11 -0
  59. data/examples/zsh-completion/_dtas-sourceedit +11 -0
  60. data/examples/zsh-completion/_dtas-splitfx +17 -0
  61. data/examples/zsh-completion/_dtas-tl +52 -0
  62. data/examples/zsh-completion/_dtas-xdelay +17 -0
  63. data/lib/dtas/buffer/fiddle_splice.rb +216 -0
  64. data/lib/dtas/buffer/read_write.rb +3 -3
  65. data/lib/dtas/buffer/splice.rb +9 -5
  66. data/lib/dtas/buffer.rb +10 -7
  67. data/lib/dtas/command.rb +1 -1
  68. data/lib/dtas/compat_onenine.rb +1 -1
  69. data/lib/dtas/cue_index.rb +1 -1
  70. data/lib/dtas/disclaimer.rb +1 -1
  71. data/lib/dtas/edit_client.rb +1 -1
  72. data/lib/dtas/encoding.rb +8 -9
  73. data/lib/dtas/fadefx.rb +1 -1
  74. data/lib/dtas/format.rb +1 -1
  75. data/lib/dtas/mcache.rb +1 -1
  76. data/lib/dtas/mlib/migrations/0001_initial.rb +1 -1
  77. data/lib/dtas/mlib.rb +19 -7
  78. data/lib/dtas/nonblock.rb +1 -1
  79. data/lib/dtas/parse_freq.rb +1 -1
  80. data/lib/dtas/parse_time.rb +1 -1
  81. data/lib/dtas/partstats.rb +2 -3
  82. data/lib/dtas/pipe.rb +13 -9
  83. data/lib/dtas/pipeline.rb +1 -1
  84. data/lib/dtas/player/client_handler.rb +23 -15
  85. data/lib/dtas/player.rb +3 -3
  86. data/lib/dtas/process.rb +1 -1
  87. data/lib/dtas/replaygain.rb +1 -1
  88. data/lib/dtas/rg_state.rb +1 -1
  89. data/lib/dtas/serialize.rb +1 -1
  90. data/lib/dtas/sigevent/efd.rb +3 -1
  91. data/lib/dtas/sigevent/fiddle_efd.rb +38 -0
  92. data/lib/dtas/sigevent/pipe.rb +2 -2
  93. data/lib/dtas/sigevent.rb +6 -3
  94. data/lib/dtas/sink.rb +1 -1
  95. data/lib/dtas/source/av.rb +1 -1
  96. data/lib/dtas/source/av_ff_common.rb +2 -2
  97. data/lib/dtas/source/cmd.rb +1 -1
  98. data/lib/dtas/source/common.rb +1 -1
  99. data/lib/dtas/source/ff.rb +1 -1
  100. data/lib/dtas/source/file.rb +1 -1
  101. data/lib/dtas/source/mp3gain.rb +1 -1
  102. data/lib/dtas/source/sox.rb +2 -2
  103. data/lib/dtas/source/splitfx.rb +1 -1
  104. data/lib/dtas/source.rb +1 -1
  105. data/lib/dtas/spawn_fix.rb +1 -1
  106. data/lib/dtas/splitfx.rb +9 -8
  107. data/lib/dtas/state_file.rb +1 -1
  108. data/lib/dtas/tfx.rb +1 -1
  109. data/lib/dtas/track.rb +1 -1
  110. data/lib/dtas/tracklist.rb +1 -1
  111. data/lib/dtas/unix_accepted.rb +1 -1
  112. data/lib/dtas/unix_client.rb +1 -1
  113. data/lib/dtas/unix_server.rb +1 -1
  114. data/lib/dtas/util.rb +1 -1
  115. data/lib/dtas/version.rb +1 -1
  116. data/lib/dtas/watchable/fiddle_ino.rb +78 -0
  117. data/lib/dtas/watchable/inotify.rb +13 -0
  118. data/lib/dtas/watchable.rb +59 -58
  119. data/lib/dtas/writable_iter.rb +1 -1
  120. data/lib/dtas/xs.rb +1 -1
  121. data/lib/dtas.rb +10 -2
  122. data/man/dtas-archive.1 +15 -15
  123. data/man/dtas-console.1 +19 -19
  124. data/man/dtas-ctl.1 +16 -16
  125. data/man/dtas-cueedit.1 +12 -12
  126. data/man/dtas-enq.1 +12 -12
  127. data/man/dtas-env.7 +15 -15
  128. data/man/dtas-msinkctl.1 +12 -12
  129. data/man/dtas-player.1 +24 -24
  130. data/man/dtas-player_effects.7 +9 -9
  131. data/man/dtas-player_protocol.7 +48 -48
  132. data/man/dtas-player_sink_examples.7 +15 -15
  133. data/man/dtas-sinkedit.1 +16 -16
  134. data/man/dtas-sourceedit.1 +17 -17
  135. data/man/dtas-splitfx.1 +43 -38
  136. data/man/dtas-tl.1 +16 -16
  137. data/man/dtas-xdelay.1 +16 -16
  138. data/perl/dtas-graph +7 -2
  139. data/setup.rb +1 -2
  140. data/test/covshow.rb +1 -1
  141. data/test/helper.rb +1 -1
  142. data/test/player_integration.rb +1 -1
  143. data/test/test_buffer.rb +6 -6
  144. data/test/test_encoding.rb +1 -1
  145. data/test/test_env.rb +1 -1
  146. data/test/test_fadefx.rb +1 -1
  147. data/test/test_format.rb +1 -1
  148. data/test/test_format_change.rb +1 -1
  149. data/test/test_mcache.rb +1 -1
  150. data/test/test_mlib.rb +1 -1
  151. data/test/test_parse_freq.rb +1 -1
  152. data/test/test_pipeline.rb +1 -1
  153. data/test/test_player.rb +1 -1
  154. data/test/test_player_client_handler.rb +1 -1
  155. data/test/test_player_integration.rb +1 -1
  156. data/test/test_process.rb +1 -1
  157. data/test/test_rg_integration.rb +1 -1
  158. data/test/test_rg_state.rb +1 -1
  159. data/test/test_sigevent.rb +20 -0
  160. data/test/test_sink.rb +1 -1
  161. data/test/test_sink_pipe_size.rb +13 -16
  162. data/test/test_sink_tee_integration.rb +1 -1
  163. data/test/test_source_av.rb +1 -1
  164. data/test/test_source_sox.rb +1 -1
  165. data/test/test_splitfx.rb +1 -1
  166. data/test/test_tfx.rb +1 -1
  167. data/test/test_tracklist.rb +1 -1
  168. data/test/test_unixserver.rb +1 -1
  169. data/test/test_util.rb +1 -1
  170. metadata +23 -4
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
1
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
2
2
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  # frozen_string_literal: true
4
4
  require_relative '../dtas'
data/lib/dtas/xs.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
1
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
2
2
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  # frozen_string_literal: true
4
4
  require_relative '../dtas'
data/lib/dtas.rb CHANGED
@@ -1,9 +1,9 @@
1
- # Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
1
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
2
2
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  # frozen_string_literal: true
4
4
 
5
5
  # DTAS currently exposes no public API for Ruby programmers.
6
- # See https://80x24.org/dtas/ for more info.
6
+ # See https://80x24.org/dtas.git/about/ for more info.
7
7
  module DTAS
8
8
 
9
9
  # try to use the monotonic clock in Ruby >= 2.1, it is immune to clock
@@ -25,6 +25,14 @@ module DTAS
25
25
  @null ||= File.open('/dev/null', 'r+')
26
26
  end
27
27
 
28
+ @libc = nil
29
+ def self.libc
30
+ @libc ||= begin
31
+ require 'fiddle'
32
+ Fiddle.dlopen(nil)
33
+ end
34
+ end
35
+
28
36
  # String#-@ will deduplicate strings when Ruby 2.5 is released (Dec 2017)
29
37
  # https://bugs.ruby-lang.org/issues/13077
30
38
  if RUBY_VERSION.to_f >= 2.5
data/man/dtas-archive.1 CHANGED
@@ -1,4 +1,4 @@
1
- .\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28)
1
+ .\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35)
2
2
  .\"
3
3
  .\" Standard preamble:
4
4
  .\" ========================================================================
@@ -46,7 +46,7 @@
46
46
  .ie \n(.g .ds Aq \(aq
47
47
  .el .ds Aq '
48
48
  .\"
49
- .\" If the F register is turned on, we'll generate index entries on stderr for
49
+ .\" If the F register is >0, we'll generate index entries on stderr for
50
50
  .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
51
51
  .\" entries marked with X<> in POD. Of course, you'll have to process the
52
52
  .\" output yourself in some meaningful fashion.
@@ -56,12 +56,12 @@
56
56
  ..
57
57
  .nr rF 0
58
58
  .if \n(.g .if rF .nr rF 1
59
- .if (\n(rF:(\n(.g==0)) \{
60
- . if \nF \{
59
+ .if (\n(rF:(\n(.g==0)) \{\
60
+ . if \nF \{\
61
61
  . de IX
62
62
  . tm Index:\\$1\t\\n%\t"\\$2"
63
63
  ..
64
- . if !\nF==2 \{
64
+ . if !\nF==2 \{\
65
65
  . nr % 0
66
66
  . nr F 2
67
67
  . \}
@@ -133,7 +133,7 @@
133
133
  .\" ========================================================================
134
134
  .\"
135
135
  .IX Title "DTAS-ARCHIVE 1"
136
- .TH DTAS-ARCHIVE 1 "1994-10-02" "dtas 0.14.2.13.g9152" "dtas user manual"
136
+ .TH DTAS-ARCHIVE 1 "1994-10-02" "dtas 0.18.1" "dtas user manual"
137
137
  .\" For nroff, turn off justification. Always turn off hyphenation; it makes
138
138
  .\" way too many mistakes in technical documents.
139
139
  .if n .ad l
@@ -149,11 +149,11 @@ dtas-archive is intended for archiving audio data to/from laptops,
149
149
  marginal \s-1USB\s0 ports, and computers without \s-1ECC\s0 memory, attempting
150
150
  to read data multiple times in an attempt to detect memory or
151
151
  bus corruption. dtas-archive may only be effective on machines
152
- running the Linux kernel where \fIposix_fadvise\fR\|(2) can be used to
153
- drop caches for a particular file after \fIfsync\fR\|(2).
152
+ running the Linux kernel where \fBposix_fadvise\fR\|(2) can be used to
153
+ drop caches for a particular file after \fBfsync\fR\|(2).
154
154
  .PP
155
- dtas-archive spawns \fIsox\fR\|(1) to archive audio data (likely uncompressed
156
- \&\s-1WAVE\s0) to \s-1FLAC\s0 and verifies the result using \fIsndfile\-cmp\fR\|(1), a tool
155
+ dtas-archive spawns \fBsox\fR\|(1) to archive audio data (likely uncompressed
156
+ \&\s-1WAVE\s0) to \s-1FLAC\s0 and verifies the result using \fBsndfile\-cmp\fR\|(1), a tool
157
157
  implemented by different than sox and less likely to share the same bugs
158
158
  (if any) as sox.
159
159
  .SH "OPTIONS"
@@ -177,20 +177,20 @@ Run and save the text output of the sox \*(L"stats\*(R" effect as
177
177
  Continue after error
178
178
  .IP "\-r, \-\-repeat [\s-1COUNT\s0]" 4
179
179
  .IX Item "-r, --repeat [COUNT]"
180
- Number of times to repeat the \fIsndfile\-cmp\fR\|(1) check. Default: 1
180
+ Number of times to repeat the \fBsndfile\-cmp\fR\|(1) check. Default: 1
181
181
  .SH "COPYRIGHT"
182
182
  .IX Header "COPYRIGHT"
183
- Copyright 2013\-2016 all contributors <mailto:dtas\-all@nongnu.org>
183
+ Copyright 2013\-2020 all contributors <mailto:dtas\-all@nongnu.org>
184
184
  .PP
185
- License: \s-1GPL\-3.0+ \s0<https://www.gnu.org/licenses/gpl\-3.0.txt>
185
+ License: \s-1GPL\-3.0+\s0 <https://www.gnu.org/licenses/gpl\-3.0.txt>
186
186
  .SH "CONTACT"
187
187
  .IX Header "CONTACT"
188
188
  All feedback welcome via plain-text mail to: <mailto:dtas\-all@nongnu.org>
189
189
  .PP
190
190
  Mailing list archives available at <https://80x24.org/dtas\-all/>
191
- and <ftp://lists.gnu.org/dtas\-all/>
191
+ and <https://lists.gnu.org/archive/html/dtas\-all/>
192
192
  .PP
193
193
  No subscription is necessary to post to the mailing list.
194
194
  .SH "SEE ALSO"
195
195
  .IX Header "SEE ALSO"
196
- \&\fIsndfile\-cmp\fR\|(1), \fIsox\fR\|(1)
196
+ \&\fBsndfile\-cmp\fR\|(1), \fBsox\fR\|(1)
data/man/dtas-console.1 CHANGED
@@ -1,4 +1,4 @@
1
- .\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28)
1
+ .\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35)
2
2
  .\"
3
3
  .\" Standard preamble:
4
4
  .\" ========================================================================
@@ -46,7 +46,7 @@
46
46
  .ie \n(.g .ds Aq \(aq
47
47
  .el .ds Aq '
48
48
  .\"
49
- .\" If the F register is turned on, we'll generate index entries on stderr for
49
+ .\" If the F register is >0, we'll generate index entries on stderr for
50
50
  .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
51
51
  .\" entries marked with X<> in POD. Of course, you'll have to process the
52
52
  .\" output yourself in some meaningful fashion.
@@ -56,12 +56,12 @@
56
56
  ..
57
57
  .nr rF 0
58
58
  .if \n(.g .if rF .nr rF 1
59
- .if (\n(rF:(\n(.g==0)) \{
60
- . if \nF \{
59
+ .if (\n(rF:(\n(.g==0)) \{\
60
+ . if \nF \{\
61
61
  . de IX
62
62
  . tm Index:\\$1\t\\n%\t"\\$2"
63
63
  ..
64
- . if !\nF==2 \{
64
+ . if !\nF==2 \{\
65
65
  . nr % 0
66
66
  . nr F 2
67
67
  . \}
@@ -133,7 +133,7 @@
133
133
  .\" ========================================================================
134
134
  .\"
135
135
  .IX Title "DTAS-CONSOLE 1"
136
- .TH DTAS-CONSOLE 1 "1994-10-02" "dtas 0.14.2.13.g9152" "dtas user manual"
136
+ .TH DTAS-CONSOLE 1 "1994-10-02" "dtas 0.18.1" "dtas user manual"
137
137
  .\" For nroff, turn off justification. Always turn off hyphenation; it makes
138
138
  .\" way too many mistakes in technical documents.
139
139
  .if n .ad l
@@ -151,24 +151,24 @@ used as an approximation of the current playback time of a track.
151
151
  It cannot display an accurate playback time due to variable buffering
152
152
  in the sinks and pipes.
153
153
  .PP
154
- See \fIdtas\-player_protocol\fR\|(7) for a detailed description of the protocol.
154
+ See \fBdtas\-player_protocol\fR\|(7) for a detailed description of the protocol.
155
155
  .SH "KEYBOARD CONTROL"
156
156
  .IX Header "KEYBOARD CONTROL"
157
- Key bindings are inspired partially by \fImplayer\fR\|(1)
157
+ Key bindings are inspired partially by \fBmplayer\fR\|(1)
158
158
  .IP "'j'/'k' \- seek backward/forward 5 seconds" 4
159
159
  .IX Item "'j'/'k' - seek backward/forward 5 seconds"
160
160
  .PD 0
161
- .IP "\s-1LEFT/RIGHT \-\s0 seek backward/forward 10 seconds" 4
161
+ .IP "\s-1LEFT/RIGHT\s0 \- seek backward/forward 10 seconds" 4
162
162
  .IX Item "LEFT/RIGHT - seek backward/forward 10 seconds"
163
- .IP "\s-1UP/DOWN \-\s0 seek forward/backward 1 minute" 4
163
+ .IP "\s-1UP/DOWN\s0 \- seek forward/backward 1 minute" 4
164
164
  .IX Item "UP/DOWN - seek forward/backward 1 minute"
165
- .IP "\s-1PGUP/PGDWN \-\s0 seek forward/backward 10 minutes" 4
165
+ .IP "\s-1PGUP/PGDWN\s0 \- seek forward/backward 10 minutes" 4
166
166
  .IX Item "PGUP/PGDWN - seek forward/backward 10 minutes"
167
- .IP "\s-1SPACE \-\s0 toggle play/pause state of the playback" 4
167
+ .IP "\s-1SPACE\s0 \- toggle play/pause state of the playback" 4
168
168
  .IX Item "SPACE - toggle play/pause state of the playback"
169
169
  .IP "'p'/'P' \- decrease/increase timer resolution" 4
170
170
  .IX Item "'p'/'P' - decrease/increase timer resolution"
171
- .IP "\s-1BACKSPACE \-\s0 seek to the beginning of the track" 4
171
+ .IP "\s-1BACKSPACE\s0 \- seek to the beginning of the track" 4
172
172
  .IX Item "BACKSPACE - seek to the beginning of the track"
173
173
  .IP "7/8 \- decrease/increase ReplayGain preamp" 4
174
174
  .IX Item "7/8 - decrease/increase ReplayGain preamp"
@@ -189,7 +189,7 @@ Key bindings are inspired partially by \fImplayer\fR\|(1)
189
189
  .PD
190
190
  .SH "ENVIRONMENT"
191
191
  .IX Header "ENVIRONMENT"
192
- \&\s-1DTAS_PLAYER_SOCK \-\s0 the path to the dtas-player control socket.
192
+ \&\s-1DTAS_PLAYER_SOCK\s0 \- the path to the dtas-player control socket.
193
193
  This defaults to ~/.dtas/player.sock
194
194
  .SH "CAVEATS"
195
195
  .IX Header "CAVEATS"
@@ -207,15 +207,15 @@ a problem.
207
207
  All feedback welcome via plain-text mail to: <mailto:dtas\-all@nongnu.org>
208
208
  .PP
209
209
  Mailing list archives available at <https://80x24.org/dtas\-all/>
210
- and <ftp://lists.gnu.org/dtas\-all/>
210
+ and <https://lists.gnu.org/archive/html/dtas\-all/>
211
211
  .PP
212
212
  No subscription is necessary to post to the mailing list.
213
213
  .SH "COPYRIGHT"
214
214
  .IX Header "COPYRIGHT"
215
- Copyright 2013\-2016 all contributors <mailto:dtas\-all@nongnu.org>
215
+ Copyright 2013\-2020 all contributors <mailto:dtas\-all@nongnu.org>
216
216
  .PP
217
- License: \s-1GPL\-3.0+ \s0<https://www.gnu.org/licenses/gpl\-3.0.txt>
217
+ License: \s-1GPL\-3.0+\s0 <https://www.gnu.org/licenses/gpl\-3.0.txt>
218
218
  .SH "SEE ALSO"
219
219
  .IX Header "SEE ALSO"
220
- \&\fIdtas\-player\fR\|(1), \fIdtas\-player_protocol\fR\|(7), \fIdtas\-ctl\fR\|(1),
221
- \&\fIdtas\-sinkedit\fR\|(1), \fIdtas\-sourceedit\fR\|(1)
220
+ \&\fBdtas\-player\fR\|(1), \fBdtas\-player_protocol\fR\|(7), \fBdtas\-ctl\fR\|(1),
221
+ \&\fBdtas\-sinkedit\fR\|(1), \fBdtas\-sourceedit\fR\|(1)
data/man/dtas-ctl.1 CHANGED
@@ -1,4 +1,4 @@
1
- .\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28)
1
+ .\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35)
2
2
  .\"
3
3
  .\" Standard preamble:
4
4
  .\" ========================================================================
@@ -46,7 +46,7 @@
46
46
  .ie \n(.g .ds Aq \(aq
47
47
  .el .ds Aq '
48
48
  .\"
49
- .\" If the F register is turned on, we'll generate index entries on stderr for
49
+ .\" If the F register is >0, we'll generate index entries on stderr for
50
50
  .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
51
51
  .\" entries marked with X<> in POD. Of course, you'll have to process the
52
52
  .\" output yourself in some meaningful fashion.
@@ -56,12 +56,12 @@
56
56
  ..
57
57
  .nr rF 0
58
58
  .if \n(.g .if rF .nr rF 1
59
- .if (\n(rF:(\n(.g==0)) \{
60
- . if \nF \{
59
+ .if (\n(rF:(\n(.g==0)) \{\
60
+ . if \nF \{\
61
61
  . de IX
62
62
  . tm Index:\\$1\t\\n%\t"\\$2"
63
63
  ..
64
- . if !\nF==2 \{
64
+ . if !\nF==2 \{\
65
65
  . nr % 0
66
66
  . nr F 2
67
67
  . \}
@@ -133,7 +133,7 @@
133
133
  .\" ========================================================================
134
134
  .\"
135
135
  .IX Title "DTAS-CTL 1"
136
- .TH DTAS-CTL 1 "1994-10-02" "dtas 0.14.2.13.g9152" "dtas user manual"
136
+ .TH DTAS-CTL 1 "1994-10-02" "dtas 0.18.1" "dtas user manual"
137
137
  .\" For nroff, turn off justification. Always turn off hyphenation; it makes
138
138
  .\" way too many mistakes in technical documents.
139
139
  .if n .ad l
@@ -147,9 +147,9 @@ dtas-ctl [\s-1ARGS...\s0]
147
147
  .IX Header "DESCRIPTION"
148
148
  dtas-ctl passes command-line arguments as-is to dtas-player. It is mainly
149
149
  useful for simple commands such as (\*(L"current\*(R", \*(L"play_pause\*(R", \*(L"pause\*(R", \*(L"play\*(R",
150
- \&\*(L"rg \s-1RGARGS\*(R", \s0\*(L"seek \s-1HH:MM:SS\*(R", \s0\*(L"skip\*(R").
150
+ \&\*(L"rg \s-1RGARGS\*(R",\s0 \*(L"seek \s-1HH:MM:SS\*(R",\s0 \*(L"skip\*(R").
151
151
  .PP
152
- See \fIdtas\-player_protocol\fR\|(7) for a detailed description of the protocol.
152
+ See \fBdtas\-player_protocol\fR\|(7) for a detailed description of the protocol.
153
153
  .SH "EXAMPLES"
154
154
  .IX Header "EXAMPLES"
155
155
  display the currently playing track
@@ -158,7 +158,7 @@ display the currently playing track
158
158
  \& $ dtas\-ctl current
159
159
  .Ve
160
160
  .PP
161
- enqueue a file for playback (\fIdtas\-enq\fR\|(1) is easier to use, here)
161
+ enqueue a file for playback (\fBdtas\-enq\fR\|(1) is easier to use, here)
162
162
  .PP
163
163
  .Vb 1
164
164
  \& $ dtas\-ctl enq /absolute/path/to/file
@@ -196,29 +196,29 @@ skip to the next track
196
196
  .Ve
197
197
  .PP
198
198
  To play the output of an arbitrary command (note the quotes) and usage
199
- of \f(CW$SOXFMT\fR (see \fIdtas\-player_protocol\fR\|(7)).
199
+ of \f(CW$SOXFMT\fR (see \fBdtas\-player_protocol\fR\|(7)).
200
200
  .PP
201
201
  .Vb 1
202
202
  \& $ dtas\-ctl enq\-cmd \*(Aqsox \-n $SOXFMT \- synth 3 pluck\*(Aq
203
203
  .Ve
204
204
  .SH "ENVIRONMENT"
205
205
  .IX Header "ENVIRONMENT"
206
- \&\s-1DTAS_PLAYER_SOCK \-\s0 the path to the dtas-player control socket.
206
+ \&\s-1DTAS_PLAYER_SOCK\s0 \- the path to the dtas-player control socket.
207
207
  This defaults to ~/.dtas/player.sock
208
208
  .SH "CONTACT"
209
209
  .IX Header "CONTACT"
210
210
  All feedback welcome via plain-text mail to: <mailto:dtas\-all@nongnu.org>
211
211
  .PP
212
212
  Mailing list archives available at <https://80x24.org/dtas\-all/>
213
- and <ftp://lists.gnu.org/dtas\-all/>
213
+ and <https://lists.gnu.org/archive/html/dtas\-all/>
214
214
  .PP
215
215
  No subscription is necessary to post to the mailing list.
216
216
  .SH "COPYRIGHT"
217
217
  .IX Header "COPYRIGHT"
218
- Copyright 2013\-2016 all contributors <mailto:dtas\-all@nongnu.org>
218
+ Copyright 2013\-2020 all contributors <mailto:dtas\-all@nongnu.org>
219
219
  .PP
220
- License: \s-1GPL\-3.0+ \s0<https://www.gnu.org/licenses/gpl\-3.0.txt>
220
+ License: \s-1GPL\-3.0+\s0 <https://www.gnu.org/licenses/gpl\-3.0.txt>
221
221
  .SH "SEE ALSO"
222
222
  .IX Header "SEE ALSO"
223
- \&\fIdtas\-player\fR\|(1), \fIdtas\-player_protocol\fR\|(7), \fIdtas\-enq\fR\|(1),
224
- \&\fIdtas\-sinkedit\fR\|(1), \fIdtas\-sourceedit\fR\|(1)
223
+ \&\fBdtas\-player\fR\|(1), \fBdtas\-player_protocol\fR\|(7), \fBdtas\-enq\fR\|(1),
224
+ \&\fBdtas\-sinkedit\fR\|(1), \fBdtas\-sourceedit\fR\|(1)
data/man/dtas-cueedit.1 CHANGED
@@ -1,4 +1,4 @@
1
- .\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28)
1
+ .\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35)
2
2
  .\"
3
3
  .\" Standard preamble:
4
4
  .\" ========================================================================
@@ -46,7 +46,7 @@
46
46
  .ie \n(.g .ds Aq \(aq
47
47
  .el .ds Aq '
48
48
  .\"
49
- .\" If the F register is turned on, we'll generate index entries on stderr for
49
+ .\" If the F register is >0, we'll generate index entries on stderr for
50
50
  .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
51
51
  .\" entries marked with X<> in POD. Of course, you'll have to process the
52
52
  .\" output yourself in some meaningful fashion.
@@ -56,12 +56,12 @@
56
56
  ..
57
57
  .nr rF 0
58
58
  .if \n(.g .if rF .nr rF 1
59
- .if (\n(rF:(\n(.g==0)) \{
60
- . if \nF \{
59
+ .if (\n(rF:(\n(.g==0)) \{\
60
+ . if \nF \{\
61
61
  . de IX
62
62
  . tm Index:\\$1\t\\n%\t"\\$2"
63
63
  ..
64
- . if !\nF==2 \{
64
+ . if !\nF==2 \{\
65
65
  . nr % 0
66
66
  . nr F 2
67
67
  . \}
@@ -133,7 +133,7 @@
133
133
  .\" ========================================================================
134
134
  .\"
135
135
  .IX Title "DTAS-CUEEDIT 1"
136
- .TH DTAS-CUEEDIT 1 "1994-10-02" "dtas 0.14.2.13.g9152" "dtas user manual"
136
+ .TH DTAS-CUEEDIT 1 "1994-10-02" "dtas 0.18.1" "dtas user manual"
137
137
  .\" For nroff, turn off justification. Always turn off hyphenation; it makes
138
138
  .\" way too many mistakes in technical documents.
139
139
  .if n .ad l
@@ -147,23 +147,23 @@ dtas-cueedit /path/to/audio.flac
147
147
  .IX Header "DESCRIPTION"
148
148
  dtas-cueedit spawns an editor to edit the embedded cuesheet in \s-1FLAC\s0 files.
149
149
  In the future, other audio formats with embedded cuesheets may be supported.
150
- Use with the \fImetaflac\fR\|(1) is required.
150
+ Use with the \fBmetaflac\fR\|(1) is required.
151
151
  .SH "ENVIRONMENT"
152
152
  .IX Header "ENVIRONMENT"
153
- \&\s-1VISUAL / EDITOR \-\s0 your favorite *nix text editor, defaults to 'vi' if unset.
153
+ \&\s-1VISUAL / EDITOR\s0 \- your favorite *nix text editor, defaults to 'vi' if unset.
154
154
  .SH "CONTACT"
155
155
  .IX Header "CONTACT"
156
156
  All feedback welcome via plain-text mail to: <mailto:dtas\-all@nongnu.org>
157
157
  .PP
158
158
  Mailing list archives available at <https://80x24.org/dtas\-all/>
159
- and <ftp://lists.gnu.org/dtas\-all/>
159
+ and <https://lists.gnu.org/archive/html/dtas\-all/>
160
160
  .PP
161
161
  No subscription is necessary to post to the mailing list.
162
162
  .SH "COPYRIGHT"
163
163
  .IX Header "COPYRIGHT"
164
- Copyright 2013\-2016 all contributors <mailto:dtas\-all@nongnu.org>
164
+ Copyright 2013\-2020 all contributors <mailto:dtas\-all@nongnu.org>
165
165
  .PP
166
- License: \s-1GPL\-3.0+ \s0<https://www.gnu.org/licenses/gpl\-3.0.txt>
166
+ License: \s-1GPL\-3.0+\s0 <https://www.gnu.org/licenses/gpl\-3.0.txt>
167
167
  .SH "SEE ALSO"
168
168
  .IX Header "SEE ALSO"
169
- \&\fImetaflac\fR\|(1)
169
+ \&\fBmetaflac\fR\|(1)
data/man/dtas-enq.1 CHANGED
@@ -1,4 +1,4 @@
1
- .\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28)
1
+ .\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35)
2
2
  .\"
3
3
  .\" Standard preamble:
4
4
  .\" ========================================================================
@@ -46,7 +46,7 @@
46
46
  .ie \n(.g .ds Aq \(aq
47
47
  .el .ds Aq '
48
48
  .\"
49
- .\" If the F register is turned on, we'll generate index entries on stderr for
49
+ .\" If the F register is >0, we'll generate index entries on stderr for
50
50
  .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
51
51
  .\" entries marked with X<> in POD. Of course, you'll have to process the
52
52
  .\" output yourself in some meaningful fashion.
@@ -56,12 +56,12 @@
56
56
  ..
57
57
  .nr rF 0
58
58
  .if \n(.g .if rF .nr rF 1
59
- .if (\n(rF:(\n(.g==0)) \{
60
- . if \nF \{
59
+ .if (\n(rF:(\n(.g==0)) \{\
60
+ . if \nF \{\
61
61
  . de IX
62
62
  . tm Index:\\$1\t\\n%\t"\\$2"
63
63
  ..
64
- . if !\nF==2 \{
64
+ . if !\nF==2 \{\
65
65
  . nr % 0
66
66
  . nr F 2
67
67
  . \}
@@ -133,7 +133,7 @@
133
133
  .\" ========================================================================
134
134
  .\"
135
135
  .IX Title "DTAS-ENQ 1"
136
- .TH DTAS-ENQ 1 "1994-10-02" "dtas 0.14.2.13.g9152" "dtas user manual"
136
+ .TH DTAS-ENQ 1 "1994-10-02" "dtas 0.18.1" "dtas user manual"
137
137
  .\" For nroff, turn off justification. Always turn off hyphenation; it makes
138
138
  .\" way too many mistakes in technical documents.
139
139
  .if n .ad l
@@ -146,7 +146,7 @@ dtas-enq [\s-1FILE...\s0]
146
146
  .SH "DESCRIPTION"
147
147
  .IX Header "DESCRIPTION"
148
148
  dtas-enq will enqueue a list of files given on the command-line to a
149
- running instance of \fIdtas\-player\fR\|(1). dtas-player will start playing
149
+ running instance of \fBdtas\-player\fR\|(1). dtas-player will start playing
150
150
  the newly enqueued files in the order given.
151
151
  .SH "EXAMPLE"
152
152
  .IX Header "EXAMPLE"
@@ -155,21 +155,21 @@ the newly enqueued files in the order given.
155
155
  .Ve
156
156
  .SH "ENVIRONMENT"
157
157
  .IX Header "ENVIRONMENT"
158
- \&\s-1DTAS_PLAYER_SOCK \-\s0 the path to the dtas-player listen socket.
158
+ \&\s-1DTAS_PLAYER_SOCK\s0 \- the path to the dtas-player listen socket.
159
159
  This defaults to ~/.dtas/player.sock
160
160
  .SH "CONTACT"
161
161
  .IX Header "CONTACT"
162
162
  All feedback welcome via plain-text mail to: <mailto:dtas\-all@nongnu.org>
163
163
  .PP
164
164
  Mailing list archives available at <https://80x24.org/dtas\-all/>
165
- and <ftp://lists.gnu.org/dtas\-all/>
165
+ and <https://lists.gnu.org/archive/html/dtas\-all/>
166
166
  .PP
167
167
  No subscription is necessary to post to the mailing list.
168
168
  .SH "COPYRIGHT"
169
169
  .IX Header "COPYRIGHT"
170
- Copyright 2013\-2016 all contributors <mailto:dtas\-all@nongnu.org>
170
+ Copyright 2013\-2020 all contributors <mailto:dtas\-all@nongnu.org>
171
171
  .PP
172
- License: \s-1GPL\-3.0+ \s0<https://www.gnu.org/licenses/gpl\-3.0.txt>
172
+ License: \s-1GPL\-3.0+\s0 <https://www.gnu.org/licenses/gpl\-3.0.txt>
173
173
  .SH "SEE ALSO"
174
174
  .IX Header "SEE ALSO"
175
- \&\fIdtas\-player\fR\|(1), \fIdtas\-ctl\fR\|(1)
175
+ \&\fBdtas\-player\fR\|(1), \fBdtas\-ctl\fR\|(1)