Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
52438b1
Use rodio for jackaudio backend
Lcchy Feb 5, 2021
aad4dba
Merge branch 'dev' into rodiojack-backend
sashahilton00 Feb 10, 2021
59f87dc
Amend conditional compilation to fail on unsupported systems
sashahilton00 Feb 10, 2021
f483075
Merge pull request #548 from Lcchy/rodiojack-backend
sashahilton00 Feb 11, 2021
34733ba
Bump crypto crates
Johannesd3 Feb 13, 2021
392a12a
Fix toggling in SpircCommand::PlayPause
flaktack Feb 20, 2021
7662bc5
librespot-audio: update librespot-tremor.
ericonr Jan 28, 2021
a173fa7
Remove depreciated error description method
sashahilton00 Jan 31, 2021
4e0f5e4
Add skip-merge and dry-run options to publish script. Update Cargo.lock.
sashahilton00 Feb 20, 2021
66566e0
remove errant live code in dry-run of publish.sh
sashahilton00 Feb 20, 2021
2c110ca
Update version numbers to 0.1.5
sashahilton00 Feb 20, 2021
91dc147
Update Cargo.lock
sashahilton00 Feb 20, 2021
7f705ed
Merge branch 'master' into dev
sashahilton00 Feb 20, 2021
0b211f9
Stabilization of libmdns at 0.2.7 (includes fix for NetBSD)
willstott101 Feb 21, 2021
89ad7a4
Update Cargo.lock
willstott101 Feb 21, 2021
91152b4
Merge pull request #607 from willstott101/master
sashahilton00 Feb 21, 2021
4e1c24d
Merge pull request #602 from Johannesd3/bumb_crypto_crates
sashahilton00 Feb 21, 2021
2060901
Merge pull request #605 from flaktack/spirc-command-play-pause
sashahilton00 Feb 21, 2021
6407c20
Merge branch 'master' into dev
sashahilton00 Feb 22, 2021
b7c3609
Update version numbers to 0.1.6
sashahilton00 Feb 22, 2021
d4b36b2
Bump cargo.lock
sashahilton00 Feb 22, 2021
d8c1b49
Merge branch 'master' into dev
sashahilton00 Feb 22, 2021
34bc286
ogg passthrough
philippe44 Jan 7, 2021
19e22ef
Add note on issues/discussions.
sashahilton00 Feb 23, 2021
e8204c9
Merge pull request #569 from philippe44/passthrough-v3
sashahilton00 Feb 23, 2021
1fc5267
Revert "Merge pull request #548 from Lcchy/rodiojack-backend"
Johannesd3 Feb 23, 2021
678d177
Merge branch 'dev' into tokio_migration
Johannesd3 Feb 23, 2021
c0942f1
Restore rodiojack support
Johannesd3 Feb 23, 2021
9253be7
Small refactor of librespot-core
Johannesd3 Feb 10, 2021
8cff10e
Put apresolve behind feature flag
Johannesd3 Feb 10, 2021
10827bd
Clean up dependencies of librespot-core
Johannesd3 Feb 10, 2021
a6ed685
Clean up dependencies in librespot-metadata
Johannesd3 Feb 10, 2021
746e6c8
Put lewton behind feature flag
Johannesd3 Feb 10, 2021
b83976a
Remove "extern crate"s from librespot-audio
Johannesd3 Feb 10, 2021
5c42d2e
Clean up dependencies in librespot-audio
Johannesd3 Feb 10, 2021
5aeb733
Clean up dependencies in librespot-playback
Johannesd3 Feb 22, 2021
45f42ac
Refactor 'find_available_alternatives'
Johannesd3 Feb 22, 2021
27f308b
Replace error_chain by thiserror
Johannesd3 Feb 13, 2021
f9c0e26
Simplify code
Johannesd3 Feb 13, 2021
d064ffc
Use tokio channels and fix compilation errors
Johannesd3 Feb 21, 2021
59c5566
Clean up librespot-connect dependencies
Johannesd3 Feb 21, 2021
18179e7
Remove unused dependencies and fix feature flags
Johannesd3 Feb 21, 2021
b606d8c
Replace "extern crate"s
Johannesd3 Feb 21, 2021
f22b419
Update url crate to 2.1
Johannesd3 Feb 22, 2021
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
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
- run: cargo build --locked --no-default-features --features "portaudio-backend"
- run: cargo build --locked --no-default-features --features "pulseaudio-backend"
- run: cargo build --locked --no-default-features --features "jackaudio-backend"
- run: cargo build --locked --no-default-features --features "rodiojack-backend"
- run: cargo build --locked --no-default-features --features "rodio-backend"
- run: cargo build --locked --no-default-features --features "sdl-backend"
- run: cargo build --locked --no-default-features --features "gstreamer-backend"
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ target
spotify_appkey.key
.vagrant/
.project
.history
.history
*.save


1 change: 1 addition & 0 deletions COMPILING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Depending on the chosen backend, specific development libraries are required.
|PortAudio | `portaudio19-dev` | `portaudio-devel` | `portaudio` |
|PulseAudio | `libpulse-dev` | `pulseaudio-libs-devel` | |
|JACK | `libjack-dev` | `jack-audio-connection-kit-devel` | |
|JACK over Rodio | `libjack-dev` | `jack-audio-connection-kit-devel` | - |
|SDL | `libsdl2-dev` | `SDL2-devel` | |
|Pipe | - | - | - |

Expand Down
Loading