Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor version bump (release 3.1.0) #454

Merged
merged 1 commit into from
Jun 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ jobs:
build:
strategy:
matrix:
feature-set1:
- --enable-aac --enable-msbc
features:
- --enable-debug
- --enable-debug --enable-aac --enable-msbc
- --enable-debug --enable-mp3lame --enable-mpg123
feature-set2:
- --enable-mp3lame --enable-ofono --enable-upower
- --enable-cli --enable-rfcomm --enable-manpages
runs-on: ubuntu-18.04
Expand Down Expand Up @@ -37,8 +37,7 @@ jobs:
working-directory: ${{ github.workspace }}/build
run: |
${{ github.workspace }}/configure \
${{ matrix.feature-set1 }} \
${{ matrix.feature-set2 }} \
${{ matrix.features }} \
--enable-test
- name: Build
working-directory: ${{ github.workspace }}/build
Expand Down
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ List of contributors in alphabetical order.

borine <32966433+borine@users.noreply.github.com>
Christoph Scheurer <christoph.scheurer@web.de>
Đoàn Trần Công Danh <congdanhqx@gmail.com>
Graham Horner <graham@hornercs.co.uk>
Guillaume Zin <guillaume.zin@gmail.com>
John Cox <jc@kynesim.co.uk>
Expand All @@ -17,4 +18,5 @@ Sebastian Würl <bastiwuerl@gmail.com>
Snehal Tangadpalliwar <snehal.tangadpalliwar@fusionentertainment.com>
tassig <57493426+tassig@users.noreply.github.com>
Thierry Bultel <thierry.bultel@iot.bzh>
Trent Piepho <tpiepho@gmail.com>
Wade Berrier <wberrier@gmail.com>
8 changes: 8 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
unreleased
==========

bluez-alsa v3.1.0 (2021-06-01)
==============================

- higher PCM bit depth for apt-X HD (24-bit) and LDAC (32-bit)
- support for A2DP Sink with apt-X (HD) if decoder is available
- support for A2DP Sink with LDAC codec if decoder is available
- better audio volume scaling (Bluetooth volume as loudness)
- support TLV data for dB calculations in ALSA control plug-in
- fix PCM delay reporting from connected Bluetooth devices
- most recently connected Bluetooth device as a default PCM
- lots of improvements to the ALSA PCM I/O plug-in
- use rst2man (docutils) instead of pandoc to build man-pages
- bluealsa-cli: utility for using D-Bus API from command line
- bash completion script for installed applications
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ For a comprehensive installation guide, please look at the [Installation from
source](https://github.com/Arkq/bluez-alsa/wiki/Installation-from-source) bluez-alsa wiki page. If
you've found something missing or incorrect, fill free to make a wiki contribution. Alternatively,
if you are using Debian-based distribution, take a look at the
[build-and-test.yml](.github/workflows/build-and-test.yml) GitHub workflow file, it might give you
a hint about required packages.
[build-and-test.yaml](.github/workflows/build-and-test.yaml) GitHub workflow file, it might give
you a hint about required packages.

## Configuration & Usage

Expand Down
12 changes: 11 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

AC_PREREQ([2.60])
AC_INIT([BlueALSA],
[m4_normalize(esyscmd([test -d .git && git describe || echo v3.0.0]))],
[m4_normalize(esyscmd([test -d .git && git describe || echo v3.1.0]))],
[arkadiusz.bokowy@gmail.com], [bluez-alsa], [https://github.com/Arkq/bluez-alsa])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])

Expand Down Expand Up @@ -314,3 +314,13 @@ AM_COND_IF([ALSA_1_1_2__1_1_3], [
AC_MSG_WARN([Either compile alsa-lib without this feature or export])
AC_MSG_WARN([LIBASOUND_THREAD_SAFE=0 while using bluealsa PCM.])
])

# notify user that using libopenaptx might be a good idea
AM_COND_IF([ENABLE_APTX_OR_APTX_HD], [
AM_COND_IF([WITH_LIBOPENAPTX], [], [
AC_MSG_NOTICE([ *** using apt-X (HD) via Qualcomm API ***])
AC_MSG_NOTICE([Enabled apt-X (HD) support requires encoder (and decoder)])
AC_MSG_NOTICE([library with a proprietary Qualcomm API. Please consider])
AC_MSG_NOTICE([using --with-libopenaptx option which will use a library])
AC_MSG_NOTICE([based on FFmpeg project with better decoding support.])
])])