Update PROGRESS.md - 100 remain

This commit is contained in:
Rikki Tooley 2015-01-04 03:55:22 +00:00
parent d2d4a595a8
commit 27f0d2dbb4
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# Api Progress ![Progress](http://progressed.io/bar/25)
# Api Progress ![Progress](http://progressed.io/bar/26)
These are all the Last.fm API methods currently available.
@ -6,7 +6,7 @@ These are all the Last.fm API methods currently available.
- Methods ~~marked with strikethrough~~ aren't currently implemented. Pull requests are welcome!
- Methods _marked with an asterisk *_ aren't listed on [the Last.fm documentation](http://www.last.fm/api), so they might not work!
This list is generated by the [ProgressReport](https://github.com/inflatablefriends/lastfm/tree/master/src/IF.Lastfm.ProgressReport) tool in the solution. Last updated on 04 January 2015 03:30
This list is generated by the [ProgressReport](https://github.com/inflatablefriends/lastfm/tree/master/src/IF.Lastfm.ProgressReport) tool in the solution. Last updated on 04 January 2015 03:55
## Album
- [album.getInfo](http://www.last.fm/api/show/album.getInfo)
@ -25,6 +25,7 @@ This list is generated by the [ProgressReport](https://github.com/inflatablefrie
- [artist.getInfo](http://www.last.fm/api/show/artist.getInfo)
- [artist.getShouts](http://www.last.fm/api/show/artist.getShouts)
- [artist.getSimilar](http://www.last.fm/api/show/artist.getSimilar)
- [artist.getTags](http://www.last.fm/api/show/artist.getTags)
- [artist.getTopAlbums](http://www.last.fm/api/show/artist.getTopAlbums)
- [artist.getTopTags](http://www.last.fm/api/show/artist.getTopTags)
- [artist.getTopTracks](http://www.last.fm/api/show/artist.getTopTracks)
@ -35,7 +36,6 @@ This list is generated by the [ProgressReport](https://github.com/inflatablefrie
- ~~[artist.getEvents](http://www.last.fm/api/show/artist.getEvents)~~
- ~~[artist.getPastEvents](http://www.last.fm/api/show/artist.getPastEvents)~~
- ~~[artist.getPodcast](http://www.last.fm/api/show/artist.getPodcast)~~
- ~~[artist.getTags](http://www.last.fm/api/show/artist.getTags)~~
- ~~[artist.getTopFans](http://www.last.fm/api/show/artist.getTopFans)~~
- ~~[artist.removeTag](http://www.last.fm/api/show/artist.removeTag)~~
- ~~[artist.share](http://www.last.fm/api/show/artist.share)~~

View File

@ -20,7 +20,7 @@ internal class ArtistGetTagsByUserCommand : GetAsyncCommandBase<PageResponse<Las
public ArtistGetTagsByUserCommand(ILastAuth auth, string artist, string username)
: base(auth)
{
Method = "album.getTags";
Method = "artist.getTags";
ArtistName = artist;
Username = username;