Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe44 committed Sep 9, 2023
1 parent 360ccc7 commit 3d4a4ec
Show file tree
Hide file tree
Showing 69 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.2.0
- use libraop version that re-sends HTTP when *explictely* request a range 0-XXX to try to cope with player that don't understand what HTTP protocol is and keep askign for a small "chunk"
- aircast display iface name upon startup

1.1.9
- HTTP exec function should not crash on error when there is no token returned

Expand Down
6 changes: 4 additions & 2 deletions aircast/src/aircast.c
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,10 @@ static void RemoveCastDevice(struct sMR *Device) {
/*----------------------------------------------------------------------------*/
static bool Start(bool cold) {
// must bind to an address
glHost = get_interface(!strchr(glBinding, '?') ? glBinding : NULL, NULL, &glNetmask);
LOG_INFO("Binding to %s", inet_ntoa(glHost));
char* iface = NULL;
glHost = get_interface(!strchr(glBinding, '?') ? glBinding : NULL, &iface, &glNetmask);
LOG_INFO("Binding to %s@%s", iface, inet_ntoa(glHost));
NFREE(iface);

// can't find a suitable interface
if (glHost.s_addr == INADDR_NONE) return false;
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.1.9"" ("__DATE__" @ "__TIME__")"
#define VERSION "v1.2.0"" ("__DATE__" @ "__TIME__")"

/*----------------------------------------------------------------------------*/
/* typedefs */
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.1.9"" ("__DATE__" @ "__TIME__")"
#define VERSION "v1.2.0"" ("__DATE__" @ "__TIME__")"

/*----------------------------------------------------------------------------*/
/* typedefs */
Expand Down
Loading

0 comments on commit 3d4a4ec

Please sign in to comment.