diff --git a/.github/workflows/self-hosted.yml b/.github/workflows/self-hosted.yml
index 310247b0..cb5c024c 100644
--- a/.github/workflows/self-hosted.yml
+++ b/.github/workflows/self-hosted.yml
@@ -16,7 +16,7 @@ jobs:
- name: cmake make
run: cmake --build build -- -j 2
- name: debian package
- run: fakeroot make -f debian/rules CMAKEFLAGS="-DBOOST_ROOT=/home/pi/Develop/boost_1_75_0" binary
+ run: fakeroot make -f debian/rules CMAKEFLAGS="-DBOOST_ROOT=/home/pi/Develop/boost_1_75_0 -DCMAKE_CXX_COMPILER_LAUNCHER=ccache" binary
- name: Archive artifacts
uses: actions/upload-artifact@v2
with:
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 94451faa..d2b272df 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -35,7 +35,7 @@ jobs:
- name: cmake make
run: cmake --build build --parallel 3
- name: debian package
- run: fakeroot make -f debian/rules CMAKEFLAGS="-DBOOST_ROOT=boost_1_75_0" binary
+ run: fakeroot make -f debian/rules CMAKEFLAGS="-DBOOST_ROOT=boost_1_75_0 -DCMAKE_CXX_COMPILER_LAUNCHER=ccache" binary
- name: Archive artifacts
uses: actions/upload-artifact@v2
with:
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c305d406..fb5f93bf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.2)
-project(snapcast LANGUAGES CXX VERSION 0.23.102)
+project(snapcast LANGUAGES CXX VERSION 0.23.103)
set(PROJECT_DESCRIPTION "Multiroom client-server audio player")
set(PROJECT_URL "https://github.com/badaix/snapcast")
diff --git a/client/Makefile b/client/Makefile
index 1cd5f53d..3e520adc 100644
--- a/client/Makefile
+++ b/client/Makefile
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
-VERSION = 0.23.102
+VERSION = 0.23.103
BIN = snapclient
ifeq ($(TARGET), FREEBSD)
diff --git a/client/snapclient.cpp b/client/snapclient.cpp
index 6f1e0aab..c179e81f 100644
--- a/client/snapclient.cpp
+++ b/client/snapclient.cpp
@@ -194,7 +194,7 @@ int main(int argc, char** argv)
if (versionSwitch->is_set())
{
- cout << "snapclient v" << VERSION << ", built " << __DATE__ << "\n"
+ cout << "snapclient v" << VERSION << "\n"
<< "Copyright (C) 2014-2021 BadAix (snapcast@badaix.de).\n"
<< "License GPLv3+: GNU GPL version 3 or later .\n"
<< "This is free software: you are free to change and redistribute it.\n"
diff --git a/debian/changelog b/debian/changelog
index 90fd709d..d1dc98f5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-snapcast (0.23.100-1) unstable; urgency=medium
+snapcast (0.23.103-1) unstable; urgency=medium
* Features
-Client: Lorem ipsum
diff --git a/server/Makefile b/server/Makefile
index 0df9df8e..a9fc703b 100644
--- a/server/Makefile
+++ b/server/Makefile
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
-VERSION = 0.23.102
+VERSION = 0.23.103
BIN = snapserver
ifeq ($(TARGET), FREEBSD)
diff --git a/server/snapserver.cpp b/server/snapserver.cpp
index 03343c52..49b9d765 100644
--- a/server/snapserver.cpp
+++ b/server/snapserver.cpp
@@ -149,7 +149,7 @@ int main(int argc, char* argv[])
if (versionSwitch->is_set())
{
- cout << "snapserver v" << VERSION << ", built " << __DATE__ << "\n"
+ cout << "snapserver v" << VERSION << "\n"
<< "Copyright (C) 2014-2021 BadAix (snapcast@badaix.de).\n"
<< "License GPLv3+: GNU GPL version 3 or later .\n"
<< "This is free software: you are free to change and redistribute it.\n"
diff --git a/server/streamreader/posix_stream.cpp b/server/streamreader/posix_stream.cpp
index c28c2ef3..df375e89 100644
--- a/server/streamreader/posix_stream.cpp
+++ b/server/streamreader/posix_stream.cpp
@@ -97,7 +97,7 @@ void PosixStream::do_read()
// no data available, fill with silence
memset(chunk_->payload + len, 0, toRead - len);
- // avoid overflow after 186min 24s silence (at 48000:16:2)
+ // avoid overflow after 186min 24s silence (at 48000:16:2)
if (idle_bytes_ <= max_idle_bytes_)
idle_bytes_ += toRead - len;
break;