Skip to content

Commit

Permalink
release: 1.2.9
Browse files Browse the repository at this point in the history
Fixed a crash when using an mpv binary built from git master.
  • Loading branch information
winneon committed Feb 7, 2018
1 parent 7b3915a commit c1b7677
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Watch with MPV",
"description": "Open the current web stream with MPV.",
"version": "1.2.8",
"version": "1.2.9",
"icons": {
"128": "icons/mpv.png"
},
Expand Down
3 changes: 2 additions & 1 deletion native/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ process.stdin
fs.writeFileSync(directory, message.cookies.join('\n'))

let player = new MPV({
debug: false
debug: false,
ipc_command: '--input-ipc-server'
}, [
'--cookies',
process.platform === 'win32' ? `--cookies-file="${directory}"` : `--cookies-file=${directory}`,
Expand Down
2 changes: 1 addition & 1 deletion native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "watch-with-mpv-native",
"description": "The native host for the Watch with MPV Chrome extension.",
"author": "Jesse Bryan <[email protected]>",
"version": "1.2.8",
"version": "1.2.9",
"license": "MIT",
"repository": "winneon/watch-with-mpv",
"bin": {
Expand Down

0 comments on commit c1b7677

Please sign in to comment.