disconnect
Advanced tools
Comparing version 0.3.2 to 0.3.3
@@ -0,1 +1,5 @@ | ||
0.3.3 / 2014-07-08 | ||
================== | ||
* Discogs has fixed the `/images/<filename>` endpoint, so changed `database().image()` accordingly | ||
0.3.2 / 2014-07-01 | ||
@@ -22,3 +26,3 @@ ================== | ||
================== | ||
* Implemented/fixed broken `database.image()` function from `0.1.1` | ||
* Implemented/fixed broken `database().image()` function from `0.1.1` | ||
* Added rate limiting header info to the callback params | ||
@@ -25,0 +29,0 @@ |
@@ -95,3 +95,3 @@ var util = require('./util.js'), | ||
if(client.authenticated()){ | ||
client.get({url: '/image/'+file, encoding: 'binary'}, callback); | ||
client.get({url: '/images/'+file, encoding: 'binary'}, callback); | ||
}else{ | ||
@@ -98,0 +98,0 @@ callback(new authError()); |
{ | ||
"name": "disconnect", | ||
"description": "An easy to use client library to connect with the discogs.com API v2.0", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"keywords": ["discogs", "api", "client", "oauth"], | ||
@@ -6,0 +6,0 @@ "homepage": "https://github.com/bartve/disconnect", |
@@ -61,3 +61,3 @@ ## About | ||
Set your own custom [User-Agent](http://www.discogs.com/developers/accessing.html#required-headers). This is optional as when omitted `disconnect` will set a default one with the value `DisConnectClient/x.x.x`. | ||
Set your own custom [User-Agent](http://www.discogs.com/developers/accessing.html#required-headers). This is optional as when omitted `disconnect` will set a default one with the value `DisConnectClient/x.x.x` where `x.x.x` is the installed version of `disconnect`. | ||
```javascript | ||
@@ -64,0 +64,0 @@ var dis = new Discogs('MyUserAgent/1.0'); |
43361