diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ae2704e..793887858 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,10 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor ### v1.11.12 +**v1.11.12.9** *(2015-10-21)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.12.9/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.12.9/builds/4chan-X-noupdate.crx "Chromium version")] +- Workarounds for Google's latest captcha bugs. +- Ignore `Force Noscript Captcha` if Recaptcha v1 is selected. + **v1.11.12.8** *(2015-10-18)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.12.8/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.12.8/builds/4chan-X-noupdate.crx "Chromium version")] - Update to support MathJax on /sci/. diff --git a/src/General/css/style.css b/src/General/css/style.css index 975293c09..5198076ad 100755 --- a/src/General/css/style.css +++ b/src/General/css/style.css @@ -111,6 +111,10 @@ hr + div.center:not(.ad-cnt):not(.topad):not(.middlead):not(.bottomad) { #captchaContainerAlt td:nth-child(2) { display: table-cell !important; } +/* Disable obnoxious captcha fade-in. */ +body > div:last-of-type { + transition: none !important; +} /* Anti-autoplay */ audio.controls-added { diff --git a/src/Posting/Captcha.fixes.coffee b/src/Posting/Captcha.fixes.coffee index c0c1df119..95947d2e3 100644 --- a/src/Posting/Captcha.fixes.coffee +++ b/src/Posting/Captcha.fixes.coffee @@ -52,6 +52,7 @@ Captcha.fixes = @fixImages() new MutationObserver(=> @fixImages()).observe d.body, {childList: true, subtree: true} $.on d, 'keydown', @keybinds.bind(@) + window.focus() initNoscript: -> @noscript = true