Skip to content

Commit

Permalink
Merge pull request #76 from InputUsername/development
Browse files Browse the repository at this point in the history
Release version 0.6.0
  • Loading branch information
InputUsername authored Jul 20, 2022
2 parents c197e9c + 73681e9 commit 2cb1eee
Show file tree
Hide file tree
Showing 14 changed files with 254 additions and 520 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## v0.6.0 (2022-07-20)

- Fixed scrobbling behind a HTTP/HTTPS proxy
- Replaced the rustfm-scrobble dependency with a fork that automatically picks up proxy settings
- Filter scripts now receive the `xesam:genre` (song genre) MPRIS property in addition to artist,
title and album name
- Note: you may have to update your filter script to take this into account. For example, the
following Python code now raises an error because the additional line (genre) is not unpacked:
```python
artist, title, album = (l.rstrip() for l in sys.stdin.readlines())
```
This can be fixed by reading and ignoring the additional line:
```python
artist, title, album, _ = (l.rstrip() for l in sys.stdin.readlines())
```
Or, alternatively:
```python
artist = sys.stdin.readline().rstrip()
title = sys.stdin.readline().rstrip()
album = sys.stdin.readline().rstrip()
```
- Moved to Rust 2021 edition

## v0.5.3 (2022-06-16)

- Entered Last.fm passwords are no longer displayed in plaintext
Expand Down
Loading

0 comments on commit 2cb1eee

Please sign in to comment.