Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bradmartin committed Oct 9, 2016
1 parent f167287 commit 52a7612
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,15 @@ Attribute to specify an event callback to execute when the video has loaded.
- **pause()** - pause the video
- **seekToTime(time: number)** - seek the video to a time (milliseconds)
- **getCurrentTime()** - returns the current time in the video duration (milliseconds)
- **getDuration()** - returns the duration of the video (milliseconds)
- **destroy()** - destroy the video player and free resources
- **mute(boolean)** - mute the current video

### Android only

- **getDuration()** - returns the duration of the video (milliseconds)
- **stop()** - stop the playback - this resets the player and remove the video src




### Contributors

- Alex Ziskind [@digitalix](https://twitter.com/digitalix)
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": "nativescript-videoplayer",
"version": "1.0.10",
"version": "1.1.0",
"main": "videoplayer.js",
"typings": "videoplayer.d.ts",
"description": "A NativeScript plugin that uses the native video players to play local and remote videos.",
Expand Down
2 changes: 1 addition & 1 deletion videoplayer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ export declare class Video extends View {


/**
* *** ANDROID ONLY ***
* Returns the duration of the video in milliseconds.
* @returns {number} Video duration in milliseconds.
*/
getDuration(): number;


/**
* *** ANDROID ONLY ***
Expand Down

0 comments on commit 52a7612

Please sign in to comment.