version 0.0.4

This commit is contained in:
Dan Zajdband
2012-10-29 12:29:54 -03:00
parent bbc66145d0
commit ce5b51f637
3 changed files with 15 additions and 6 deletions

View File

@@ -1,3 +1,10 @@
0.0.4 / 2012-10-29
==================
* Added SSL support
* Updated dependencies
0.0.3 / 2012-08-20
==================

View File

@@ -1,8 +1,10 @@
var mdb = require('./lib/moviedb');
var mdb = require('./lib/moviedb')('dc4940972c268b026150cf7be6f01d11');
var m = new mdb('dc4940972c268b026150cf7be6f01d11');
m.searchMovie({query: 'alien'}, function(err, res){
mdb.movieInfo({id: 11}, function(err, res){
console.log('--------','popular');
console.log(res);
}).miscPopularMovies({}, function(err, res){
console.log(err);
console.log(res);
console.log('--------','ninja');
console.log(res);
});

View File

@@ -1,7 +1,7 @@
{
"name" : "moviedb"
, "description" : "Library for interacting with themoviedb.com API"
, "version" : "0.0.3"
, "version" : "0.0.4"
, "keywords" : ["themoviedb","api"]
, "directories" : { "lib" : "./lib" }
, "main" : "index.js"