Commit 6c266ac5 6c266ac5e7cdeb42e65413d78d25dcf62d5d0d06 by Nicolas Perriault

bump 0.6.1

1 parent 7d88a761
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 Subproject commit 96895e7d4b64bf4d5c4cb9d62197b7c834a1e4ce 1 Subproject commit a87370ee456f4ebb1e5b89eec311c10d0b8b9764
......
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"
......