Merge branch 'master' into feature/deb-packaging

pull/195/head
aatchison 2016-06-17 20:15:00 -05:00
commit b127291b43
3 changed files with 9 additions and 2 deletions

View File

@ -30,6 +30,7 @@ from mycroft.messagebus.client.ws import WebsocketClient
from mycroft.messagebus.message import Message from mycroft.messagebus.message import Message
from mycroft.util import kill from mycroft.util import kill
from mycroft.util.log import getLogger from mycroft.util.log import getLogger
from mycroft.skills.volume import VolumeSkill
__author__ = 'aatchison + jdorleans' __author__ = 'aatchison + jdorleans'
@ -74,6 +75,12 @@ class EnclosureReader(Thread):
self.client.emit(Message("mycroft.stop")) self.client.emit(Message("mycroft.stop"))
kill(['mimic']) # TODO - Refactoring in favor of Mycroft Stop kill(['mimic']) # TODO - Refactoring in favor of Mycroft Stop
if "volume.up" in data:
self.client.emit(Message("IncreaseVolumeIntent"))
if "volume.down" in data:
self.client.emit(Message("DecreaseVolumeIntent"))
def stop(self): def stop(self):
self.alive = False self.alive = False
self.join() self.join()

View File

@ -1 +1 @@
0.1.2 0.1.3

View File

@ -139,7 +139,7 @@ class AudioRecordSkill(ScheduledSkill):
def handle_stop_play(self, message): def handle_stop_play(self, message):
self.speak_dialog('audio.record.stop.play') self.speak_dialog('audio.record.stop.play')
if self.play_process: if self.play_process:
self.stop(self.play_process) self.stop()
self.play_process = None self.play_process = None
def stop(self): def stop(self):