]> kaliko git repositories - python-musicpd.git/commitdiff
Update changelog and copyright header
authorKaliko Jack <kaliko@azylum.org>
Tue, 26 Feb 2019 15:35:48 +0000 (16:35 +0100)
committerKaliko Jack <kaliko@azylum.org>
Tue, 26 Feb 2019 15:35:48 +0000 (16:35 +0100)
CHANGES.txt
musicpd.py

index e8f3380d49dd8959ed07bb4cbddb373b99031b89..a134a0c84b66e1f3db598ab67fc1781b1ef0b057 100644 (file)
@@ -4,6 +4,8 @@ python-musicpd Changes List
 Changes in 0.4.4 UNRELEASED
 ---------------------------
 
+* Add tcp socket timeout, exposed in musicpd.CONNECTION_TIMEOUT, defaults to 5s
+  (Thanks to Bart Van Loon)
 * Add partition commands (Thanks Naglis Jonaitis)
 * Add listfiles command
 * Add tagtypes (disable|enable|clear|all) commands
index e8f786324d5e24f9850512dccc5c2fdda51acab0..383ba0983568c93e5bdfc26633059474b0cd6115 100644 (file)
@@ -2,6 +2,7 @@
 # Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
 # Copyright (C) 2012-2019  Kaliko Jack <kaliko@azylum.org>
 # Copyright (C) 2019       Naglis Jonaitis <naglis@mailbox.org>
+# Copyright (C) 2019       Bart Van Loon <bbb@bbbart.be>
 #
 # python-musicpd is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -29,9 +30,9 @@ ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
 VERSION = '0.4.4'
-
 CONNECTION_TIMEOUT = 5  # seconds before a tcp connection attempt times out
 
+
 def iterator_wrapper(func):
     """Decorator handling iterate option"""
     @wraps(func)