Skip to content

v0.6.0

Compare
Choose a tag to compare
@InputUsername InputUsername released this 20 Jul 19:47
· 48 commits to master since this release
2cb1eee
  • 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:
      artist, title, album = (l.rstrip() for l in sys.stdin.readlines())
      This can be fixed by reading and ignoring the additional line:
      artist, title, album, _ = (l.rstrip() for l in sys.stdin.readlines())
      Or, alternatively:
      artist = sys.stdin.readline().rstrip()
      title = sys.stdin.readline().rstrip()
      album = sys.stdin.readline().rstrip()
  • Moved to Rust 2021 edition