Skip to content

Commit

Permalink
Version bump 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
evandcoleman committed Apr 9, 2018
1 parent 0371fe5 commit 5977b49
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const credentials_1 = require("../lib/credentials");
const scan_1 = require("./scan");
const pair_1 = require("./pair");
cli
.version('1.0.5')
.version('1.0.7')
.command('pair', 'Pair with an Apple TV')
.option('--timeout <timeout>', 'The amount of time (in seconds) to scan for Apple TVs', cli.INTEGER)
.action((args, options, logger) => {
Expand Down
2 changes: 1 addition & 1 deletion dist/lib/appletv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export declare class AppleTV extends TypedEventEmitter<AppleTV.Events> {
* @param waitForResponse Whether or not to wait for a response before resolving the Promise.
* @returns A promise that resolves to the response from the AppleTV.
*/
sendMessage(definitionFilename: string, messageType: string, body: {}, waitForResponse: boolean): Promise<Message>;
sendMessage(definitionFilename: string, messageType: string, body: {}, waitForResponse: boolean, priority?: number): Promise<Message>;
/**
* Requests the current playback queue from the Apple TV.
* @param options Options to send
Expand Down
2 changes: 0 additions & 2 deletions dist/lib/appletv.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,6 @@ class AppleTV extends typed_events_1.default {
return this.connection
.send(message, waitForResponse, priority, this.credentials);
});
}
});
}
/**
* Requests the current playback queue from the Apple TV.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-appletv",
"version": "1.0.6",
"version": "1.0.7",
"description": "A Node.js library for communicating with an Apple TV",
"homepage": "https://github.com/edc1591/node-appletv",
"bugs": "https://github.com/edc1591/node-appletv/issues",
Expand Down
2 changes: 1 addition & 1 deletion src/bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { scan } from './scan';
import { pair } from './pair';

cli
.version('1.0.6')
.version('1.0.7')
.command('pair', 'Pair with an Apple TV')
.option('--timeout <timeout>', 'The amount of time (in seconds) to scan for Apple TVs', cli.INTEGER)
.action((args, options, logger) => {
Expand Down

0 comments on commit 5977b49

Please sign in to comment.