Skip to content

Commit

Permalink
0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongyihui committed Aug 31, 2017
1 parent 93c1351 commit ea8e0ca
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History
=======

0.0.7 (2017-08-31)
------------------

* able to handle a few kind of connection failures and do reconnection

0.0.6 (2017-08-30)
------------------

Expand Down
2 changes: 1 addition & 1 deletion avs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """Yihui Xiong"""
__email__ = 'yihui.xiong@hotmail.com'
__version__ = '0.0.6'
__version__ = '0.0.7'
25 changes: 11 additions & 14 deletions avs/interface/speaker.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@


class Speaker(object):

def __init__(self, event_queue):
pass

def AdjustVolume(self):
pass

def VolumeChanged(self):
pass

Expand All @@ -20,12 +17,12 @@ def MuteChanged(self):
@property
def context(self):
return {
"header": {
"namespace": "Speaker",
"name": "VolumeState"
},
"payload": {
"volume": 50,
"muted": False
}
}
"header": {
"namespace": "Speaker",
"name": "VolumeState"
},
"payload": {
"volume": 50,
"muted": False
}
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

setup(
name='avs',
version='0.0.6',
version='0.0.7',
description="Python implementation of Alexa Voice Service App",
long_description=readme + '\n\n' + history,
author="Yihui Xiong",
Expand Down

0 comments on commit ea8e0ca

Please sign in to comment.