Skip to content

Commit f4c5a14

Browse files
committed
1.6.3
1 parent 1591150 commit f4c5a14

File tree

7 files changed

+9
-5
lines changed

7 files changed

+9
-5
lines changed
Binary file not shown.

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
1.6.3
2+
- (airupnp) on error, reset counter to 0 if player responds
3+
14
1.6.2
25
- (airupnp) when player timeout's, use its DescDocURL, not the UpdateData which is NULL...
36

aircast/src/aircast.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,11 +396,11 @@ static void UpdateDevices() {
396396
if (Device->Running && Device->Remove && !CastIsConnected(Device->CastCtx)) {
397397
struct in_addr addr = CastGetAddr(glMRDevices[i].CastCtx);
398398
if (!ping_host(addr, 100)) {
399-
LOG_INFO("[%p]: removing renderer (%s) %d", Device, Device->Config.Name);
399+
LOG_INFO("[%p]: removing renderer (%s)", Device, Device->Config.Name);
400400
raopsr_delete(Device->Raop);
401401
RemoveCastDevice(Device);
402402
} else {
403-
LOG_DEBUG("[%p]: %s mute to mDNS search, but answers ping, so keep it", Device, Device->Config.Name);
403+
LOG_DEBUG("[%p]: (%s) mute to mDNS search, but answers ping, so keep it", Device, Device->Config.Name);
404404
}
405405
}
406406
}

aircast/src/aircast.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "raop_server.h"
1919
#include "cast_util.h"
2020

21-
#define VERSION "v1.6.2"" ("__DATE__" @ "__TIME__")"
21+
#define VERSION "v1.6.3"" ("__DATE__" @ "__TIME__")"
2222

2323
/*----------------------------------------------------------------------------*/
2424
/* typedefs */

airupnp/src/airupnp.c

+1
Original file line numberDiff line numberDiff line change
@@ -712,6 +712,7 @@ static void *UpdateThread(void *args) {
712712
} else {
713713
// device is in trouble, but let's renew grace period
714714
Device->LastSeen = now;
715+
Device->ErrorCount = 0;
715716
LOG_INFO("[%p]: %s mute to discovery, but answers UPnP, so keep it", Device, Device->Config.Name);
716717
}
717718
if (DescDoc) ixmlDocument_free(DescDoc);

airupnp/src/airupnp.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "cross_util.h"
2222
#include "metadata.h"
2323

24-
#define VERSION "v1.6.2"" ("__DATE__" @ "__TIME__")"
24+
#define VERSION "v1.6.3"" ("__DATE__" @ "__TIME__")"
2525

2626
/*----------------------------------------------------------------------------*/
2727
/* typedefs */

common/crosstools

0 commit comments

Comments
 (0)