Skip to content

Commit 88b1d09

Browse files
committed
Major version bump (release 3.0.0)
1 parent 125e322 commit 88b1d09

File tree

10 files changed

+15
-4
lines changed

10 files changed

+15
-4
lines changed

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
unreleased
22
==========
33

4+
bluez-alsa v3.0.0 (2020-09-15)
5+
==============================
6+
47
- separate D-Bus paths for PCM sink and source (API breakage)
8+
- store PCM sample physical width in the D-Bus format property
59
- list available and supported audio codecs via D-Bus API
610
- support for A2DP audio codec selection or reconfiguration
711
- fix SBC encoder bit-pool selection (support SBC XQ quality)
812
- allow to disable software volume scaling via D-Bus API
913
- great improvement to the PCM I/O plug-in (thanks to @borine)
14+
- install bluez-alsa manual pages (optional, requires pandoc)
1015
- bluealsa-aplay: list connected BT devices and available PCMs
1116
- bluealsa-aplay: fix PCM corruption due to out-of-bounds read
1217

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Dependencies:
5353
`--enable-aptx` and/or `--enable-aptx-hd`)
5454
- [libldac](https://github.com/EHfive/ldacBT) (when LDAC encoding support is enabled with
5555
`--enable-ldac`)
56-
- [pandoc](https://pandoc.org/) (when man pages building is enabled with `--enable-manpages`)
56+
- [pandoc](https://pandoc.org/) (when man pages build is enabled with `--enable-manpages`)
5757

5858
Dependencies for client applications (e.g. `bluealsa-aplay`):
5959

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
AC_PREREQ([2.60])
55
AC_INIT([BlueALSA],
6-
[m4_normalize(esyscmd([test -d .git && git describe || echo v2.1.0]))],
6+
[m4_normalize(esyscmd([test -d .git && git describe || echo v3.0.0]))],
77
[[email protected]], [bluez-alsa], [https://github.com/Arkq/bluez-alsa])
88
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
99

src/audio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "audio.h"
1212

1313
#include <endian.h>
14+
#include <stdbool.h>
1415
#include <string.h>
1516

1617
#include <glib.h>

src/ba-adapter.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#include "ba-adapter.h"
1212

1313
#include <errno.h>
14-
#include <stdint.h>
1514
#include <stdio.h>
1615
#include <stdlib.h>
1716
#include <string.h>

src/bluealsa-iface.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
#include "bluealsa-iface.h"
1212

13+
#include <stddef.h>
14+
1315
static const GDBusArgInfo arg_codec = {
1416
-1, "codec", "s", NULL
1517
};

src/dbus.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#include <stdbool.h>
1515
#include <string.h>
1616

17+
#include <glib-object.h>
18+
1719
#include "shared/defs.h"
1820
#include "shared/log.h"
1921

src/ofono-iface.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
#include "ofono-iface.h"
1212

13+
#include <stddef.h>
14+
1315
static const GDBusArgInfo arg_card = {
1416
-1, "card", "o", NULL
1517
};

src/shared/dbus-client.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#define BLUEALSA_SHARED_DBUSCLIENT_H_
1313

1414
#include <poll.h>
15+
#include <stddef.h>
1516
#include <bluetooth/bluetooth.h>
1617
#include <dbus/dbus.h>
1718

src/utils.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
#include <stdbool.h>
1919
#include <stdint.h>
20-
#include <time.h>
2120

2221
#include <bluetooth/bluetooth.h>
2322

0 commit comments

Comments
 (0)