diff --git a/changelog.md b/changelog.md index f3a8247ba..89c43bc62 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,7 @@ +* mkchromecast (0.1.9.1) **released**: 2016/04/27 + + - Fixed node bug introduced in f635c5d66649767a031ac560d7c32ba6bffe33fe. + * mkchromecast (0.1.9) **released**: 2016/04/25 - Play headless youtube URL. diff --git a/mkchromecast.py b/mkchromecast.py index 672504fc5..1a41bcc18 100644 --- a/mkchromecast.py +++ b/mkchromecast.py @@ -21,6 +21,7 @@ if args.youtube == None: print('Switching to soundflower...') + inputdev() outputdev() print('Done!') diff --git a/mkchromecast/threading.py b/mkchromecast/threading.py index 755f1a44a..9733e3205 100644 --- a/mkchromecast/threading.py +++ b/mkchromecast/threading.py @@ -48,6 +48,7 @@ def _play_cast_(self): stream() else: mkchromecast.ffmpeg.main() + inputdev() outputdev() start = casting() start.initialize_cast() diff --git a/mkchromecast/version.py b/mkchromecast/version.py index 692c243b8..a53d2216d 100644 --- a/mkchromecast/version.py +++ b/mkchromecast/version.py @@ -2,4 +2,4 @@ # This file is part of mkchromecast. -__version__ = '0.1.9' +__version__ = '0.1.9.1' diff --git a/setup.py b/setup.py index 1aab50b96..50ed56c3a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ """ from setuptools import setup -version = '0.1.9' +version = '0.1.9.1' APP = ['start_tray.py'] APP_NAME = "mkchromecast" diff --git a/test.py b/test.py index c642b3319..affcd4b6f 100644 --- a/test.py +++ b/test.py @@ -10,6 +10,7 @@ import atexit print('Switching to soundflower') +inputdev() outputdev() stream()