diff --git a/client/debian/changelog b/client/debian/changelog index c8d06903..e0cd0207 100644 --- a/client/debian/changelog +++ b/client/debian/changelog @@ -1,8 +1,18 @@ snapclient (0.11.0~beta-1) unstable; urgency=low * Features + -Multi instance + -daemon can run as different user (default: snapclient) + -Spotify plugin does not require username and password (PR #181) + -Spotify plugin is compatible to librespot's pipe backend (PR #158) + -Clients are organized in groups + -JSON RPC API: Support batch requests * Bugfixes + -Resync issue on macOS (Issue #156) + -Id in JSON RPC API can be String, Number or NULL (Issue #161) * General + -JSON RPC API is versionized. Current version is 2.0.0 + -Restructured Android App to support Groups -- Johannes Pohl Sun, 26 Feb 2017 00:13:37 +0200 diff --git a/client/snapClient.cpp b/client/snapClient.cpp index 6b30c17a..deb7388f 100644 --- a/client/snapClient.cpp +++ b/client/snapClient.cpp @@ -148,10 +148,7 @@ int main (int argc, char **argv) } if (instance <= 0) - { - cout << "instance id must be >= 1\n"; - exit(EXIT_FAILURE); - } + std::invalid_argument("instance id must be >= 1"); std::clog.rdbuf(new Log("snapclient", LOG_DAEMON));