You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
moved from node-style err/result callbacks to returning Promises
moved to ES2015 style code w/classes instead of functions
Refactoring
integrated a parent-level TMDB
tmdbClient is now TMDB.Client
TMDB (server-accessible API) is now TMDB.API
TMDB.API.find is now TMDB.API.findById - it takes the same parameters, but returns a Promise instead of taking a callback as an argument
// 'external_source` can be 'freebase/movie' or 'imdb' => defaults to 'imdb'TMDB.API.findById(id,[external_source]).then((result)=>{// do something with result...})
1.3.0
October 8, 2015
Added search for specific elements
can now search for specific person, movie, or tv show