bump 0.6.1
Showing
4 changed files
with
15 additions
and
3 deletions
1 | CasperJS Changelog | 1 | CasperJS Changelog |
2 | ================== | 2 | ================== |
3 | 3 | ||
4 | 2012-01-16, v0.6.1 | ||
5 | ------------------ | ||
6 | |||
7 | - restablished js-emulated click simulation first, then native QtWebKit | ||
8 | events as a fallback; some real world testing have surprinsingly proven the former being often | ||
9 | more efficient than the latter | ||
10 | - fixed casperjs executable could not handle a `PHANTOMJS_EXECUTABLE` containing spaces | ||
11 | - fixed casper could not be used without the executable [as documented](http://n1k0.github.com/casperjs/#faq-executable) | ||
12 | - fixed wrong `debug` log level on `ClientUtils.click()` error; set to `error` | ||
13 | |||
14 | Please check the [updated documentation](http://n1k0.github.com/casperjs). | ||
15 | |||
4 | 2012-01-12, v0.6.0 | 16 | 2012-01-12, v0.6.0 |
5 | ------------------ | 17 | ------------------ |
6 | 18 | ... | ... |
... | @@ -33,7 +33,7 @@ phantom.loadCasper = function() { | ... | @@ -33,7 +33,7 @@ phantom.loadCasper = function() { |
33 | phantom.casperVersion = { | 33 | phantom.casperVersion = { |
34 | major: 0, | 34 | major: 0, |
35 | minor: 6, | 35 | minor: 6, |
36 | patch: 0, | 36 | patch: 1, |
37 | ident: undefined, | 37 | ident: undefined, |
38 | toString: function() { | 38 | toString: function() { |
39 | var version = [this.major, this.minor, this.patch].join('.'); | 39 | var version = [this.major, this.minor, this.patch].join('.'); | ... | ... |
1 | { | 1 | { |
2 | "name": "casperjs", | 2 | "name": "casperjs", |
3 | "description": "Navigation scripting & testing utility for PhantomJS", | 3 | "description": "Navigation scripting & testing utility for PhantomJS", |
4 | "version": "0.6.0", | 4 | "version": "0.6.1", |
5 | "keywords": [ | 5 | "keywords": [ |
6 | "phantomjs", | 6 | "phantomjs", |
7 | "javascript" | 7 | "javascript" | ... | ... |
-
Please register or sign in to post a comment