Skip to content

Commit

Permalink
1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe44 committed Jan 9, 2024
1 parent 1591150 commit f4c5a14
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
Binary file renamed AirConnect-1.6.2.zip → AirConnect-1.6.3.zip
Binary file not shown.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.6.3
- (airupnp) on error, reset counter to 0 if player responds

1.6.2
- (airupnp) when player timeout's, use its DescDocURL, not the UpdateData which is NULL...

Expand Down
4 changes: 2 additions & 2 deletions aircast/src/aircast.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,11 +396,11 @@ static void UpdateDevices() {
if (Device->Running && Device->Remove && !CastIsConnected(Device->CastCtx)) {
struct in_addr addr = CastGetAddr(glMRDevices[i].CastCtx);
if (!ping_host(addr, 100)) {
LOG_INFO("[%p]: removing renderer (%s) %d", Device, Device->Config.Name);
LOG_INFO("[%p]: removing renderer (%s)", Device, Device->Config.Name);
raopsr_delete(Device->Raop);
RemoveCastDevice(Device);
} else {
LOG_DEBUG("[%p]: %s mute to mDNS search, but answers ping, so keep it", Device, Device->Config.Name);
LOG_DEBUG("[%p]: (%s) mute to mDNS search, but answers ping, so keep it", Device, Device->Config.Name);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion aircast/src/aircast.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "raop_server.h"
#include "cast_util.h"

#define VERSION "v1.6.2"" ("__DATE__" @ "__TIME__")"
#define VERSION "v1.6.3"" ("__DATE__" @ "__TIME__")"

/*----------------------------------------------------------------------------*/
/* typedefs */
Expand Down
1 change: 1 addition & 0 deletions airupnp/src/airupnp.c
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,7 @@ static void *UpdateThread(void *args) {
} else {
// device is in trouble, but let's renew grace period
Device->LastSeen = now;
Device->ErrorCount = 0;
LOG_INFO("[%p]: %s mute to discovery, but answers UPnP, so keep it", Device, Device->Config.Name);
}
if (DescDoc) ixmlDocument_free(DescDoc);
Expand Down
2 changes: 1 addition & 1 deletion airupnp/src/airupnp.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "cross_util.h"
#include "metadata.h"

#define VERSION "v1.6.2"" ("__DATE__" @ "__TIME__")"
#define VERSION "v1.6.3"" ("__DATE__" @ "__TIME__")"

/*----------------------------------------------------------------------------*/
/* typedefs */
Expand Down
2 changes: 1 addition & 1 deletion common/crosstools
Submodule crosstools updated 1 files
+1 −0 src/platform.h

0 comments on commit f4c5a14

Please sign in to comment.