diff --git a/client/Makefile b/client/Makefile index f5406a51..8673228d 100644 --- a/client/Makefile +++ b/client/Makefile @@ -1,4 +1,4 @@ -VERSION = 0.3.90 +VERSION = 0.4.90 TARGET = snapclient SHELL = /bin/bash diff --git a/server/Makefile b/server/Makefile index 466582ea..306f49ae 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,4 +1,4 @@ -VERSION = 0.3.90 +VERSION = 0.4.90 TARGET = snapserver SHELL = /bin/bash diff --git a/server/snapServer.cpp b/server/snapServer.cpp index f1fa8ecd..8f7e19a4 100644 --- a/server/snapServer.cpp +++ b/server/snapServer.cpp @@ -55,7 +55,7 @@ int main(int argc, char* argv[]) Value sampleFormatValue("s", "sampleformat", "sample format", settings.sampleFormat.getFormat()); Value codecValue("c", "codec", "transport codec [flac|ogg|pcm][:options]\nType codec:? to get codec specific options", settings.codec, &settings.codec); Value fifoValue("f", "fifo", "name of the input fifo file", settings.fifoName, &settings.fifoName); - Implicit daemonOption("d", "daemon", "daemonize\noptional process priority [-20..19]", -3, &processPriority); + Implicit daemonOption("d", "daemon", "daemonize\noptional process priority [-20..19]", 0, &processPriority); Value bufferValue("b", "buffer", "buffer [ms]", settings.bufferMs, &settings.bufferMs); Value pipeBufferValue("", "pipeReadBuffer", "pipe read buffer [ms]", settings.pipeReadMs, &settings.pipeReadMs);