Skip to content

Commit

Permalink
- Fixed node bug.
Browse files Browse the repository at this point in the history
- Bumped version to 0.1.9.1.
  • Loading branch information
muammar committed Apr 27, 2016
1 parent 2e6ec12 commit 62e0a44
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions mkchromecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

if args.youtube == None:
print('Switching to soundflower...')
inputdev()
outputdev()
print('Done!')

Expand Down
1 change: 1 addition & 0 deletions mkchromecast/threading.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def _play_cast_(self):
stream()
else:
mkchromecast.ffmpeg.main()
inputdev()
outputdev()
start = casting()
start.initialize_cast()
Expand Down
2 changes: 1 addition & 1 deletion mkchromecast/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# This file is part of mkchromecast.

__version__ = '0.1.9'
__version__ = '0.1.9.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""
from setuptools import setup

version = '0.1.9'
version = '0.1.9.1'

APP = ['start_tray.py']
APP_NAME = "mkchromecast"
Expand Down
1 change: 1 addition & 0 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import atexit

print('Switching to soundflower')
inputdev()
outputdev()
stream()

Expand Down

0 comments on commit 62e0a44

Please sign in to comment.