dtas 0.17.0 → 0.18.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 +1 -1
- data/Documentation/dtas-console.pod +1 -1
- data/Documentation/dtas-ctl.pod +1 -1
- data/Documentation/dtas-cueedit.pod +1 -1
- data/Documentation/dtas-enq.pod +1 -1
- data/Documentation/dtas-env.pod +1 -1
- data/Documentation/dtas-msinkctl.pod +1 -1
- data/Documentation/dtas-player.pod +1 -1
- data/Documentation/dtas-player_effects.pod +1 -1
- data/Documentation/dtas-player_protocol.pod +1 -1
- data/Documentation/dtas-player_sink_examples.pod +1 -1
- 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 +1 -1
- data/Documentation/dtas-xdelay.pod +1 -1
- data/Documentation/update-footer.rb +1 -1
- data/GIT-VERSION-GEN +2 -2
- data/GNUmakefile +1 -1
- data/HACKING +1 -1
- data/INSTALL +9 -19
- data/README +6 -5
- data/Rakefile +1 -1
- data/TODO +1 -1
- data/bin/dtas-archive +1 -1
- 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 +1 -1
- 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 +1 -1
- data/dtas-mpris.gemspec +1 -1
- data/dtas.gemspec +1 -1
- data/lib/dtas.rb +9 -1
- data/lib/dtas/buffer.rb +10 -7
- data/lib/dtas/buffer/fiddle_splice.rb +216 -0
- data/lib/dtas/buffer/read_write.rb +3 -3
- data/lib/dtas/buffer/splice.rb +3 -1
- 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/encoding.rb +1 -1
- data/lib/dtas/fadefx.rb +1 -1
- data/lib/dtas/format.rb +1 -1
- data/lib/dtas/mcache.rb +1 -1
- data/lib/dtas/mlib.rb +1 -1
- 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 +1 -1
- data/lib/dtas/pipe.rb +13 -9
- data/lib/dtas/pipeline.rb +1 -1
- data/lib/dtas/player.rb +1 -1
- data/lib/dtas/player/client_handler.rb +1 -1
- data/lib/dtas/process.rb +1 -1
- data/lib/dtas/replaygain.rb +1 -1
- data/lib/dtas/rg_state.rb +1 -1
- data/lib/dtas/serialize.rb +1 -1
- data/lib/dtas/sigevent.rb +6 -3
- data/lib/dtas/sigevent/efd.rb +3 -1
- data/lib/dtas/sigevent/fiddle_efd.rb +38 -0
- data/lib/dtas/sigevent/pipe.rb +2 -2
- data/lib/dtas/sink.rb +1 -1
- data/lib/dtas/source.rb +1 -1
- data/lib/dtas/source/av.rb +1 -1
- data/lib/dtas/source/av_ff_common.rb +1 -1
- 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 +1 -1
- data/lib/dtas/source/splitfx.rb +1 -1
- data/lib/dtas/spawn_fix.rb +1 -1
- data/lib/dtas/splitfx.rb +1 -1
- 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/watchable.rb +59 -58
- data/lib/dtas/watchable/fiddle_ino.rb +78 -0
- data/lib/dtas/watchable/inotify.rb +13 -0
- data/lib/dtas/writable_iter.rb +1 -1
- data/lib/dtas/xs.rb +1 -1
- data/perl/dtas-graph +1 -1
- data/setup.rb +1 -2
- data/test/covshow.rb +1 -1
- data/test/helper.rb +1 -1
- data/test/player_integration.rb +1 -1
- data/test/test_buffer.rb +6 -6
- data/test/test_encoding.rb +1 -1
- 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 +1 -1
- data/test/test_mlib.rb +1 -1
- data/test/test_parse_freq.rb +1 -1
- data/test/test_pipeline.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 +1 -1
- data/test/test_rg_state.rb +1 -1
- data/test/test_sigevent.rb +20 -0
- data/test/test_sink.rb +1 -1
- data/test/test_sink_pipe_size.rb +13 -16
- data/test/test_sink_tee_integration.rb +1 -1
- data/test/test_source_av.rb +1 -1
- data/test/test_source_sox.rb +1 -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 +8 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3234969a259bbd208ab8990043cada0a730f7a26fbd926e9faa8e7a817900f6
|
|
4
|
+
data.tar.gz: 20a1d5e7e193a8121c004e87cbe24dd15b760c3a680eb5a85652d5620a06d3b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8538abec27232c2a97be96e9f5d6983fc073c138f78df7472971c2d35242026dc889ab58daddead8e461835cfc334c9a55a9b41035ae4fd685b552e2af618bc
|
|
7
|
+
data.tar.gz: 9919b3bbeeead4c49d07a68e9f65451c243564815f532ba36c85cd3f04dc948af652952fae4168992538f5c17469b8a9a75ca07d81bf75856ee79edfebf4b2c9
|
data/.gitignore
CHANGED
data/Documentation/.gitignore
CHANGED
data/Documentation/GNUmakefile
CHANGED
|
@@ -56,7 +56,7 @@ Number of times to repeat the L<sndfile-cmp(1)> check. Default: 1
|
|
|
56
56
|
|
|
57
57
|
=head1 COPYRIGHT
|
|
58
58
|
|
|
59
|
-
Copyright 2013-
|
|
59
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
60
60
|
|
|
61
61
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
62
62
|
|
|
@@ -84,7 +84,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
84
84
|
|
|
85
85
|
=head1 COPYRIGHT
|
|
86
86
|
|
|
87
|
-
Copyright 2013-
|
|
87
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
88
88
|
|
|
89
89
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
90
90
|
|
data/Documentation/dtas-ctl.pod
CHANGED
|
@@ -68,7 +68,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
68
68
|
|
|
69
69
|
=head1 COPYRIGHT
|
|
70
70
|
|
|
71
|
-
Copyright 2013-
|
|
71
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
72
72
|
|
|
73
73
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
74
74
|
|
|
@@ -29,7 +29,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
29
29
|
|
|
30
30
|
=head1 COPYRIGHT
|
|
31
31
|
|
|
32
|
-
Copyright 2013-
|
|
32
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
33
33
|
|
|
34
34
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
35
35
|
|
data/Documentation/dtas-enq.pod
CHANGED
|
@@ -34,7 +34,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
34
34
|
|
|
35
35
|
=head1 COPYRIGHT
|
|
36
36
|
|
|
37
|
-
Copyright 2013-
|
|
37
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
38
38
|
|
|
39
39
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
40
40
|
|
data/Documentation/dtas-env.pod
CHANGED
|
@@ -70,6 +70,6 @@ No subscription is necessary to post to the mailing list.
|
|
|
70
70
|
|
|
71
71
|
=head1 COPYRIGHT
|
|
72
72
|
|
|
73
|
-
Copyright 2013-
|
|
73
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
74
74
|
|
|
75
75
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -51,7 +51,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
51
51
|
|
|
52
52
|
=head1 COPYRIGHT
|
|
53
53
|
|
|
54
|
-
Copyright 2013-
|
|
54
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
55
55
|
|
|
56
56
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
57
57
|
|
|
@@ -115,7 +115,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
115
115
|
|
|
116
116
|
=head1 COPYRIGHT
|
|
117
117
|
|
|
118
|
-
Copyright 2013-
|
|
118
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
119
119
|
|
|
120
120
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
121
121
|
|
|
@@ -98,6 +98,6 @@ No subscription is necessary to post to the mailing list.
|
|
|
98
98
|
|
|
99
99
|
=head1 COPYRIGHT
|
|
100
100
|
|
|
101
|
-
Copyright 2013-
|
|
101
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
102
102
|
|
|
103
103
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -470,6 +470,6 @@ No subscription is necessary to post to the mailing list.
|
|
|
470
470
|
|
|
471
471
|
=head1 COPYRIGHT
|
|
472
472
|
|
|
473
|
-
Copyright 2013-
|
|
473
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
474
474
|
|
|
475
475
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -77,7 +77,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
77
77
|
|
|
78
78
|
=head1 COPYRIGHT
|
|
79
79
|
|
|
80
|
-
Copyright 2013-
|
|
80
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
81
81
|
|
|
82
82
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
83
83
|
|
|
@@ -13,7 +13,7 @@ dtas-sinkedit SINKNAME
|
|
|
13
13
|
dtas-sinkedit spawns an editor to allow editing of a sink as a YAML file.
|
|
14
14
|
See L<dtas-player_protocol(7)> for details on SINKARGS.
|
|
15
15
|
|
|
16
|
-
On Linux machines
|
|
16
|
+
On Linux machines, L<inotify(7)>
|
|
17
17
|
is used to monitor the file for changes while the text editor is running.
|
|
18
18
|
Each time a user finishes saving a file, changes are committed immediately.
|
|
19
19
|
This behavior may be disabled by using the -N or --no-watch command-line
|
|
@@ -70,7 +70,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
70
70
|
|
|
71
71
|
=head1 COPYRIGHT
|
|
72
72
|
|
|
73
|
-
Copyright 2013-
|
|
73
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
74
74
|
|
|
75
75
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
76
76
|
|
|
@@ -16,7 +16,7 @@ a pipe or file, it is parsed as YAML and fed to the L<dtas-player(1)> instance
|
|
|
16
16
|
non-interactively. This is useful for loading various profiles from the
|
|
17
17
|
filesystem.
|
|
18
18
|
|
|
19
|
-
On Linux machines
|
|
19
|
+
On Linux machines, L<inotify(7)>
|
|
20
20
|
is used to monitor the file for changes while the text editor is running.
|
|
21
21
|
Each time a user finishes saving a file, changes are committed immediately.
|
|
22
22
|
This behavior may be disabled by using the -N or --no-watch command-line
|
|
@@ -77,7 +77,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
77
77
|
|
|
78
78
|
=head1 COPYRIGHT
|
|
79
79
|
|
|
80
|
-
Copyright 2013-
|
|
80
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
81
81
|
|
|
82
82
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
83
83
|
|
|
@@ -262,7 +262,7 @@ imbalance in a live concert recording from the audience:
|
|
|
262
262
|
|
|
263
263
|
=head1 COPYRIGHT
|
|
264
264
|
|
|
265
|
-
Copyright 2013-
|
|
265
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
266
266
|
|
|
267
267
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
268
268
|
|
data/Documentation/dtas-tl.pod
CHANGED
|
@@ -120,7 +120,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
120
120
|
|
|
121
121
|
=head1 COPYRIGHT
|
|
122
122
|
|
|
123
|
-
Copyright 2013-
|
|
123
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
124
124
|
|
|
125
125
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
126
126
|
|
|
@@ -86,7 +86,7 @@ No subscription is necessary to post to the mailing list.
|
|
|
86
86
|
|
|
87
87
|
=head1 COPYRIGHT
|
|
88
88
|
|
|
89
|
-
Copyright 2013-
|
|
89
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
90
90
|
|
|
91
91
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
92
92
|
|
data/GIT-VERSION-GEN
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
3
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.18.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
|
@@ -23,5 +23,5 @@ No subscription is necessary to post to the mailing list.
|
|
|
23
23
|
|
|
24
24
|
# COPYRIGHT
|
|
25
25
|
|
|
26
|
-
Copyright 2013-
|
|
26
|
+
Copyright 2013-2020 all contributors <dtas-all@nongnu.org>.\
|
|
27
27
|
License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
data/INSTALL
CHANGED
|
@@ -16,18 +16,7 @@ Debian 7+ users can install dependencies easily:
|
|
|
16
16
|
|
|
17
17
|
sudo apt-get install sox libsox-fmt-all mp3gain flac ruby-dev
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
Be sure to have Ruby development headers and a working C compiler.
|
|
22
|
-
This will pull in the sleepy_penguin RubyGems for minor
|
|
23
|
-
speedups. If you cannot be bothered to have a development
|
|
24
|
-
environment, just use "gem install dtas".
|
|
25
|
-
|
|
26
|
-
sudo gem install dtas-linux
|
|
27
|
-
|
|
28
|
-
This should pull in the "sleepy_penguin" RubyGems
|
|
29
|
-
|
|
30
|
-
For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
|
|
19
|
+
For future upgrades of dtas
|
|
31
20
|
|
|
32
21
|
sudo gem update dtas
|
|
33
22
|
|
|
@@ -39,25 +28,26 @@ For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
|
|
|
39
28
|
|
|
40
29
|
Grab the latest tarball from our HTTPS site:
|
|
41
30
|
|
|
42
|
-
https://80x24.org/dtas/
|
|
31
|
+
https://80x24.org/dtas/2020/dtas-0.18.0.tar.gz
|
|
43
32
|
|
|
44
|
-
$ tar zxvf dtas-0.
|
|
45
|
-
$ cd dtas-0.
|
|
33
|
+
$ tar zxvf dtas-0.18.0.tar.gz
|
|
34
|
+
$ cd dtas-0.18.0
|
|
46
35
|
$ sudo ruby setup.rb
|
|
47
36
|
|
|
48
|
-
GNU/Linux users may optionally install the "sleepy_penguin"
|
|
37
|
+
GNU/Linux users may optionally install the "sleepy_penguin" RubyGem
|
|
38
|
+
for a tiny speed improvement over the default "fiddle" RubyGem.
|
|
49
39
|
|
|
50
|
-
* sleepy_penguin - https://
|
|
40
|
+
* sleepy_penguin - https://yhbt.net/sleepy_penguin/
|
|
51
41
|
|
|
52
42
|
# CONTACT
|
|
53
43
|
|
|
54
44
|
Please do not hesitate to send plain-text mail to <dtas-all@nongnu.org>
|
|
55
45
|
regarding installation and to share your notes/experiences.
|
|
56
46
|
Mailing list archives available at <https://80x24.org/dtas-all/> or
|
|
57
|
-
<
|
|
47
|
+
<https://lists.gnu.org/archive/html/dtas-all/>
|
|
58
48
|
No subscription is necessary to post to the mailing list.
|
|
59
49
|
|
|
60
50
|
# COPYRIGHT
|
|
61
51
|
|
|
62
|
-
Copyright 2013-
|
|
52
|
+
Copyright 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
63
53
|
License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
data/README
CHANGED
|
@@ -74,10 +74,11 @@ All feedback (comments, results, feature requests, bug reports, patches,
|
|
|
74
74
|
pull-requests) via plain-text mail to the mailing list is very much
|
|
75
75
|
appreciated.
|
|
76
76
|
|
|
77
|
-
Please send plain-text mail to the list at <dtas-all@nongnu.org
|
|
78
|
-
HTML mail will not be read. dtas is for GUI-phobes, by GUI-phobes
|
|
79
|
-
Mailing list archives available at <
|
|
80
|
-
|
|
77
|
+
Please send plain-text mail to the list at <dtas-all@nongnu.org>
|
|
78
|
+
HTML mail will not be read. dtas is for GUI-phobes, by GUI-phobes.
|
|
79
|
+
Mailing list archives available at <https://80x24.org/dtas-all/> or
|
|
80
|
+
<https://lists.gnu.org/archive/html/dtas-all/>.
|
|
81
|
+
|
|
81
82
|
No subscription is necessary to post to the mailing list.
|
|
82
83
|
You may also read via:
|
|
83
84
|
NNTP: <nntp://news.public-inbox.org/inbox.comp.audio.dtas>
|
|
@@ -86,7 +87,7 @@ Atom: <https://80x24.org/dtas-all/new.atom>
|
|
|
86
87
|
|
|
87
88
|
## Copyright
|
|
88
89
|
|
|
89
|
-
Copyright 2013-
|
|
90
|
+
Copyright 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
90
91
|
License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
91
92
|
|
|
92
93
|
dtas is copyrighted Free Software by all contributors, see logs
|
data/Rakefile
CHANGED
data/TODO
CHANGED
data/bin/dtas-archive
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2015-
|
|
2
|
+
# Copyright (C) 2015-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
usage = "#$0 SOURCE DESTINATION"
|
data/bin/dtas-console
CHANGED
data/bin/dtas-ctl
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
require 'dtas/unix_client'
|
data/bin/dtas-cueedit
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
require 'tempfile'
|
data/bin/dtas-enq
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
require 'dtas/unix_client'
|
data/bin/dtas-mlib
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2015-
|
|
2
|
+
# Copyright (C) 2015-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
usage = "#$0 [-d DATABASE-URI] ACTION [ARGS]"
|
data/bin/dtas-msinkctl
CHANGED
data/bin/dtas-partstats
CHANGED
data/bin/dtas-player
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
Thread.abort_on_exception = $stderr.sync = $stdout.sync = true
|
data/bin/dtas-readahead
CHANGED
data/bin/dtas-sinkedit
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
require 'optparse'
|
data/bin/dtas-sourceedit
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
require 'optparse'
|
data/bin/dtas-splitfx
CHANGED
data/bin/dtas-tl
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
# encoding: binary
|