summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-08-20 19:13:57 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-08-20 19:13:57 +0200
commitd93226b3ad30e65a607a0ee47acd32de844d312c (patch)
tree3ffec1097bac6face6c40bd9c9964c4ea79f6faa
parent70e600346fb5875defe14d578883c9838695d533 (diff)
downloadtrivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.tar
trivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.tar.gz
trivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.tar.bz2
trivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.tar.xz
trivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.zip
Allow synchronising with 0 files
-rw-r--r--trivmix.cabal2
-rw-r--r--trivmix.nix2
-rw-r--r--trivmix/Trivmix.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/trivmix.cabal b/trivmix.cabal
index 6ce861a..1aebf91 100644
--- a/trivmix.cabal
+++ b/trivmix.cabal
@@ -2,7 +2,7 @@
2-- documentation, see http://haskell.org/cabal/users-guide/ 2-- documentation, see http://haskell.org/cabal/users-guide/
3 3
4name: trivmix 4name: trivmix
5version: 2.7.3 5version: 2.7.4
6-- synopsis: 6-- synopsis:
7-- description: 7-- description:
8license: PublicDomain 8license: PublicDomain
diff --git a/trivmix.nix b/trivmix.nix
index 734fb36..c8149cf 100644
--- a/trivmix.nix
+++ b/trivmix.nix
@@ -4,7 +4,7 @@
4}: 4}:
5mkDerivation { 5mkDerivation {
6 pname = "trivmix"; 6 pname = "trivmix";
7 version = "2.7.3"; 7 version = "2.7.4";
8 src = ./.; 8 src = ./.;
9 isLibrary = true; 9 isLibrary = true;
10 isExecutable = true; 10 isExecutable = true;
diff --git a/trivmix/Trivmix.hs b/trivmix/Trivmix.hs
index fdd94b4..50caa1b 100644
--- a/trivmix/Trivmix.hs
+++ b/trivmix/Trivmix.hs
@@ -77,7 +77,7 @@ optionParser = Options
77 <> help "Execute a file once setup of jacks is done (use this to autoconnect)\nThe executable gets passed the input port (including client name) as its first argument and the output as its second." 77 <> help "Execute a file once setup of jacks is done (use this to autoconnect)\nThe executable gets passed the input port (including client name) as its first argument and the output as its second."
78 ) 78 )
79 ) 79 )
80 <*> some (strArgument ( metavar "FILE..." 80 <*> many (strArgument ( metavar "FILE..."
81 <> help "Files that contain levels to assume and synchronize\nFor deterministic behaviour use flock(2).\nThe format used in these files is either a signed float, using ‘.’ as a decimal point or a signed float postfixed with ‘dB’.\nCaveat: ‘-InfinitydB’ exists and works as expected (i.e.: it is equal to ‘0.0’)" 81 <> help "Files that contain levels to assume and synchronize\nFor deterministic behaviour use flock(2).\nThe format used in these files is either a signed float, using ‘.’ as a decimal point or a signed float postfixed with ‘dB’.\nCaveat: ‘-InfinitydB’ exists and works as expected (i.e.: it is equal to ‘0.0’)"
82 ) 82 )
83 ) 83 )