diff --git a/CHANGELOG.md b/CHANGELOG.md index 00d4d5d5f..062b3efa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ### v1.14.14 +**v1.14.14.3** *(2019-09-14)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.14.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.14.3/builds/4chan-X-noupdate.crx)] +- Fix bug in handling captcha errors when using captcha prerequest. + **v1.14.14.2** *(2019-09-12)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.14.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.14.2/builds/4chan-X-noupdate.crx)] - (saxamaphone69) CSS Fix for Post Jumper so it doesn't show up in catalog. - Improve accuracy of determining that comment is only a quote and thus captcha should not be opened yet. #2421, #2431 diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index 577b86f17..806d5694c 100644 Binary files a/builds/4chan-X-beta.crx and b/builds/4chan-X-beta.crx differ diff --git a/builds/4chan-X-beta.meta.js b/builds/4chan-X-beta.meta.js index 03f52cf31..86963c437 100644 --- a/builds/4chan-X-beta.meta.js +++ b/builds/4chan-X-beta.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X beta -// @version 1.14.14.2 +// @version 1.14.14.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X-beta.user.js b/builds/4chan-X-beta.user.js index 669980ea7..65a45a9f3 100644 --- a/builds/4chan-X-beta.user.js +++ b/builds/4chan-X-beta.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X beta -// @version 1.14.14.2 +// @version 1.14.14.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -211,7 +211,7 @@ docSet = function() { }; g = { - VERSION: '1.14.14.2', + VERSION: '1.14.14.3', NAMESPACE: '4chan X.', sites: Object.create(null), boards: Object.create(null) @@ -23094,7 +23094,11 @@ Captcha = {}; isReply: isReply })) { _this.prerequested = true; - _this.submitCB = _this.save.bind(_this); + _this.submitCB = function(captcha) { + if (captcha) { + return _this.save(captcha); + } + }; return _this.updateCount(); } } diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 6f2db8992..f47001dad 100644 Binary files a/builds/4chan-X-noupdate.crx and b/builds/4chan-X-noupdate.crx differ diff --git a/builds/4chan-X-noupdate.user.js b/builds/4chan-X-noupdate.user.js index 90c7894ac..b9eb96b46 100644 --- a/builds/4chan-X-noupdate.user.js +++ b/builds/4chan-X-noupdate.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.14.14.2 +// @version 1.14.14.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -211,7 +211,7 @@ docSet = function() { }; g = { - VERSION: '1.14.14.2', + VERSION: '1.14.14.3', NAMESPACE: '4chan X.', sites: Object.create(null), boards: Object.create(null) @@ -23094,7 +23094,11 @@ Captcha = {}; isReply: isReply })) { _this.prerequested = true; - _this.submitCB = _this.save.bind(_this); + _this.submitCB = function(captcha) { + if (captcha) { + return _this.save(captcha); + } + }; return _this.updateCount(); } } diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index c6fce4bcd..fa3b57956 100644 Binary files a/builds/4chan-X.crx and b/builds/4chan-X.crx differ diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js index 300e9f8c5..ecd30181b 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.14.14.2 +// @version 1.14.14.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index ffbd87a06..47a89d069 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.14.14.2 +// @version 1.14.14.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -211,7 +211,7 @@ docSet = function() { }; g = { - VERSION: '1.14.14.2', + VERSION: '1.14.14.3', NAMESPACE: '4chan X.', sites: Object.create(null), boards: Object.create(null) @@ -23094,7 +23094,11 @@ Captcha = {}; isReply: isReply })) { _this.prerequested = true; - _this.submitCB = _this.save.bind(_this); + _this.submitCB = function(captcha) { + if (captcha) { + return _this.save(captcha); + } + }; return _this.updateCount(); } } diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index bd73789ef..4007cd538 100644 Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ diff --git a/builds/updates-beta.json b/builds/updates-beta.json index 37a891510..c9f21ebe5 100644 --- a/builds/updates-beta.json +++ b/builds/updates-beta.json @@ -3,7 +3,7 @@ "4chan-x@4chan-x.net": { "updates": [ { - "version": "1.14.14.2", + "version": "1.14.14.3", "update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx" } ] diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml index 072fd0ea6..666757e47 100644 --- a/builds/updates-beta.xml +++ b/builds/updates-beta.xml @@ -1,7 +1,7 @@ - + diff --git a/builds/updates.json b/builds/updates.json index 8b6eb7a12..820830f18 100644 --- a/builds/updates.json +++ b/builds/updates.json @@ -3,7 +3,7 @@ "4chan-x@4chan-x.net": { "updates": [ { - "version": "1.14.14.2", + "version": "1.14.14.3", "update_link": "https://www.4chan-x.net/builds/4chan-X.crx" } ] diff --git a/builds/updates.xml b/builds/updates.xml index 45ef4e768..6071c20ef 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index 8a59c123a..2dc06e17b 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.14.14.2", - "date": "2019-09-12T04:27:54.601Z" + "version": "1.14.14.3", + "date": "2019-09-14T17:22:37.118Z" } \ No newline at end of file