Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.8.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
jammus committed Jan 23, 2013
2 parents c7b1998 + 6d0cfd9 commit efe2c5b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.8.4
* Added some user functions to list of signed methods (maxkueng)
* Added some library functions to list of write methods (maxkueng)

## 0.8.3
* Fix issue where undefined mbid in track object would cause scrobble
to fail. (maxkueng)
Expand Down
4 changes: 3 additions & 1 deletion lib/lastfm/lastfm-request.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ var WRITE_METHODS = ["album.addtags", "album.removetag", "album.share",
"artist.addtags", "artist.removetag", "artist.share", "artist.shout",
"event.attend", "event.share", "event.shout",
"library.addalbum", "library.addartist", "library.addtrack",
"library.removealbum", "library.removeartist", "library.removetrack", "library.removescrobble",
"playlist.addtrack", "playlist.create",
"radio.tune",
"track.addtags", "track.ban", "track.love", "track.removetag",
"track.scrobble", "track.share", "track.unban", "track.unlove",
"track.updatenowplaying",
"user.shout"],
SIGNED_METHODS = ["auth.getmobilesession", "auth.getsession", "auth.gettoken",
"radio.getplaylist"];
"radio.getplaylist",
"user.getrecentstations", "user.getrecommendedartists", "user.getrecommendedevents"];

var LastFmRequest = module.exports = function(lastfm, method, params) {
var that = this;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lastfm",
"description": "Read and write to Last.fm",
"version": "0.8.3",
"version": "0.8.4",
"author": "James Scott <jammus@gmail.com>",
"contributors": [
"Garrett Wilkin <garrett.wilkin@gmail.com> (http://geethink.com)",
Expand Down

0 comments on commit efe2c5b

Please sign in to comment.