Skip to content

Commit

Permalink
Pypi release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesBlonde committed Jul 5, 2017
1 parent 2324556 commit 256aae3
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include README.md
include LICENSE.md
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

This Python 2.7+/3.4+ library allows you to control [Bose Soundtouch devices](https://www.soundtouch.com/).

[http://libsoundtouch.readthedocs.io](http://libsoundtouch.readthedocs.io)

## How to use it ?


Expand Down Expand Up @@ -53,6 +55,9 @@ device.play_media(Source.SPOTIFY, 'spotify:track:5J59VOgvclrhLDYUoH5OaW', spot_u
account_id = device.status().content_item.source_account
device.play_media(Source.LOCAL_MUSIC, 'album:1', account_id, Type.ALBUM)

# Play URL
device.play_url('http://fqdn/file.mp3')

# Volume object
# device.volume() will do an HTTP request. Try to cache this value if needed.
volume = device.volume()
Expand Down Expand Up @@ -88,6 +93,7 @@ print(len(zone_status.slaves))
* shuffle on/off
* select preset (bookmark)
* playback selected music
* play HTTP URL (HTTPS not supported)
* Websockets notification

### Multi-room
Expand Down Expand Up @@ -177,6 +183,7 @@ You have to sent an email and you'll received a response in a minute with 2 PDF:

| Version | Date | Features |
|---------|:----------:|----------------------------------------------------------------------------|
| 0.7.0 | 2017/07/05 | Add play_url method to play an HTTP URL (HTTPS not supported) |
| 0.6.2 | 2017/06/21 | Fix websocket source status in messages |
| 0.6.1 | 2017/06/19 | Use enum-compat instead of enum34 directly |
| 0.6.0 | 2017/06/17 | Add discovery (mDNS) support |
Expand Down
12 changes: 10 additions & 2 deletions RELEASES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
Version 0.7.0
~~~~~~~~~~~~~

:Date:
2017/07/05

- Add play_url to play an HTTP URL (not HTTPS)

Version 0.6.2
~~~~~~~~~~~~~

:Date:
2017/06/21
2017/06/21

- Fix: websocket source status in messages
- Fix: websocket source status in messages

Version 0.6.1
~~~~~~~~~~~~~
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@

setup(
name="libsoundtouch",
version="0.6.2",
version="0.7.0",
license="Apache License 2.0",
url="https://github.com/CharlesBlonde/libsoundtouch",
url="http://libsoundtouch.readthedocs.io",
download_url="https://github.com/CharlesBlonde/libsoundtouch",
author="Charles Blonde",
author_email="charles.blonde@gmail.com",
Expand Down

0 comments on commit 256aae3

Please sign in to comment.