Skip to content

Releases: guo-yu/player

v0.6.0

29 Oct 09:05
Compare
Choose a tag to compare

Thanks @ewnd9 and @ObsidianX , player module v0.6.0 is now fully supports volume control and pause

these PRs have been merged in this very release.

PS: v0.6.x will be the last stable version to support versions lt Node v4.x, after this release, source codes will NOT be compiled by babel.

v0.5.1

28 Sep 06:07
Compare
Choose a tag to compare
  • Update dependencies to support Node.js v4.x

v0.5.0

15 May 12:54
Compare
Choose a tag to compare
  • Core functions have been rewrited
  • Now supporting shuffle songs, to enable shuffle mode, via player.enable('shuffle') or parse a option.shuffle = true when initing player instance.
  • API added:
    • player.enable() enable a option after instance inited
    • player.disable() disable a option after instance inited
    • getter list via this.list
    • getter playing via this.playing
  • API changed:
    • player.play() DO NOT accept callback function anymore, to add a listener to play done, use player.on('finish') instead.
    • player.next() DO NOT accept callback function anymore.

v0.4.1

15 May 06:26
Compare
Choose a tag to compare
  • Bugfix:
    • Fix a player.next() bug caused by player.once()

v0.4.0

15 May 05:55
Compare
Choose a tag to compare
  • Rewrited in ES6
  • Update dependencies to lastest stable version
  • Support Node.js v0.12.x
  • API Changed:
    • player.playlist() now changed to getter player.list
    • player.meta() in one of the new API to fetch metadata by optional dependency lib musicmetadata

v0.3.2

05 Feb 04:33
Compare
Choose a tag to compare
  • Bugfix: fix bug EventEmitter memory leak, releated issue #30 and #16 closed.

v0.3.1

30 Jan 13:12
Compare
Choose a tag to compare
  • Bugfix: fix issue #29

v0.3.0

03 Dec 04:27
Compare
Choose a tag to compare
  • Support playing music stream with option.stream = true
  • Update out-of-date dependencies : async, lame and speaker
  • Add debug dev-dep in examples, instead of console.log

v0.2.0

02 Dec 14:36
Compare
Choose a tag to compare

Release last stable version of player, the core module of douban.fm cli tool.

  • Support HTTP Proxy
  • Support Playing from URI and local file stream
  • Support Playlist
  • Support Action play, stop, next