Skip to content

Commit

Permalink
Release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devgianlu committed May 9, 2021
1 parent ff6e2cc commit 83b6a08
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 8 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.0] - 09-05-2021
### Added
- Added extended metadata API (#311)
- Added `player.bypassSinkVolume` to ignore volume events (#317)
- Added support for shell events (#329)
- Added API endpoints for repeat and shuffle toggle (7747677641993c012e72135ee3d38ea48591f326, #330)
- Configurable connection timeout (#328)
- Added artifact with `thin` classifier to `player` module (29e6dac909bf3a0a8ddeacd9e91a0f926b5cc664)
- Added Login5 API code (#322)
- Added `/discovery/list` API endpoint to list available Spotify Connect devices (#352)

### Changed
- Improved metadata DACP pipe (#317, 6a2679d8f2e26b31bbb85419fa524913d64ffe86, c10a1c82c90ba29454206587d793b1d706735a7d)
- Use slf4j for logging in `lib` and `player` modules (#336, #338)
- Moved sink code to `sink-api` and `sink` modules (#337)
- Moved DACP code to `dacp` module (7221b2b22b03652c4505ae2f750f40610b783bbd)
- Refactored `PlayableId` and stream loading to prepare for local files playback (#208)
- Moved decoder code to `decoder-api` module (#343, 34ec54647397c0495f5dddeb193c75b347cbb351, 77a558475d860bd5c672bc58dac7baeb17e219c6)
- Centralize Base64 decoding/encoding (#351)

### Fixed
- Fixed unsupported tracks playback (#332)

## [1.5.5] - 13-02-2021
### Added
- Added `playbackEnded` event to the API (#297)
Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-java</artifactId>
<version>1.5.6-SNAPSHOT</version>
<version>1.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion dacp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-java</artifactId>
<version>1.5.6-SNAPSHOT</version>
<version>1.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion decoder-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-java</artifactId>
<version>1.5.6-SNAPSHOT</version>
<version>1.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-java</artifactId>
<version>1.5.6-SNAPSHOT</version>
<version>1.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion player/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-java</artifactId>
<version>1.5.6-SNAPSHOT</version>
<version>1.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-java</artifactId>
<packaging>pom</packaging>
<version>1.5.6-SNAPSHOT</version>
<version>1.6.0</version>

<name>librespot-java</name>
<description>Java port of librespot, the Open Source Spotify client library</description>
Expand Down
2 changes: 1 addition & 1 deletion sink-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-java</artifactId>
<version>1.5.6-SNAPSHOT</version>
<version>1.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion sink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-java</artifactId>
<version>1.5.6-SNAPSHOT</version>
<version>1.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit 83b6a08

Please sign in to comment.