diff --git a/CHANGELOG.md b/CHANGELOG.md index 60af85c5e..8f93e944b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ### v1.13.8 +**v1.13.8.4** *(2017-02-21)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.4/builds/4chan-X-noupdate.crx)] +- As a workaround for 4chan's recent removal of the ability to start new threads using the v1 (text) Recaptcha, the `Use Recaptcha v1` option now only applies within threads. You can enable the new option `Use Recaptcha v1 on Index` to get Recaptcha v1 in the index and catalog, but unless 4chan's change is reverted, this will interfere with starting threads. + **v1.13.8.3** *(2017-02-11)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.3/builds/4chan-X-noupdate.crx)] - Make posts from archives with files deleted (by archive) show as "File Deleted". #1287 diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index 2b6a54188..5118386b3 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 b0c14d778..e1c45be71 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.13.8.3 +// @version 1.13.8.4 // @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 f80243521..9d5a3c23a 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.13.8.3 +// @version 1.13.8.4 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -151,7 +151,7 @@ docSet = function() { }; g = { - VERSION: '1.13.8.3', + VERSION: '1.13.8.4', NAMESPACE: '4chan X.', boards: {} }; @@ -316,7 +316,8 @@ Config = (function() { 'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1], 'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1], 'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'], - 'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form.'], + 'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form in threads.'], + 'Use Recaptcha v1 on Index': [false, 'Use the old text version of Recaptcha on the index and catalog. Warning: May interfere with starting threads.'], 'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'], 'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'], 'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.'] @@ -19994,7 +19995,7 @@ Captcha = {}; }); return; } - if (((Conf['Use Recaptcha v1'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) { + if (((Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) { $.ready(Captcha.replace.v1); return; } @@ -20764,7 +20765,7 @@ QR = (function() { if (g.VIEW === 'archive') { return; } - version = Conf['Use Recaptcha v1'] && Main.jsEnabled ? 'v1' : 'v2'; + version = Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && Main.jsEnabled ? 'v1' : 'v2'; this.captcha = Captcha[version]; $.on(d, '4chanXInitFinished', function() { return BoardConfig.ready(QR.initReady); diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 9e300e2eb..3ff9d2d0e 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 0fe975126..39607ac51 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.13.8.3 +// @version 1.13.8.4 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -151,7 +151,7 @@ docSet = function() { }; g = { - VERSION: '1.13.8.3', + VERSION: '1.13.8.4', NAMESPACE: '4chan X.', boards: {} }; @@ -316,7 +316,8 @@ Config = (function() { 'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1], 'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1], 'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'], - 'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form.'], + 'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form in threads.'], + 'Use Recaptcha v1 on Index': [false, 'Use the old text version of Recaptcha on the index and catalog. Warning: May interfere with starting threads.'], 'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'], 'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'], 'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.'] @@ -19994,7 +19995,7 @@ Captcha = {}; }); return; } - if (((Conf['Use Recaptcha v1'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) { + if (((Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) { $.ready(Captcha.replace.v1); return; } @@ -20764,7 +20765,7 @@ QR = (function() { if (g.VIEW === 'archive') { return; } - version = Conf['Use Recaptcha v1'] && Main.jsEnabled ? 'v1' : 'v2'; + version = Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && Main.jsEnabled ? 'v1' : 'v2'; this.captcha = Captcha[version]; $.on(d, '4chanXInitFinished', function() { return BoardConfig.ready(QR.initReady); diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index ea56d6e6e..2eab8e834 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 9d140bb31..f9e17f4c9 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.8.3 +// @version 1.13.8.4 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 9b54b14b3..5ce942ba7 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.8.3 +// @version 1.13.8.4 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -151,7 +151,7 @@ docSet = function() { }; g = { - VERSION: '1.13.8.3', + VERSION: '1.13.8.4', NAMESPACE: '4chan X.', boards: {} }; @@ -316,7 +316,8 @@ Config = (function() { 'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1], 'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1], 'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'], - 'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form.'], + 'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form in threads.'], + 'Use Recaptcha v1 on Index': [false, 'Use the old text version of Recaptcha on the index and catalog. Warning: May interfere with starting threads.'], 'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'], 'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'], 'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.'] @@ -19994,7 +19995,7 @@ Captcha = {}; }); return; } - if (((Conf['Use Recaptcha v1'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) { + if (((Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) { $.ready(Captcha.replace.v1); return; } @@ -20764,7 +20765,7 @@ QR = (function() { if (g.VIEW === 'archive') { return; } - version = Conf['Use Recaptcha v1'] && Main.jsEnabled ? 'v1' : 'v2'; + version = Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && Main.jsEnabled ? 'v1' : 'v2'; this.captcha = Captcha[version]; $.on(d, '4chanXInitFinished', function() { return BoardConfig.ready(QR.initReady); diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 6a33a6457..4a0e20a73 100644 Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml index df9aabd81..264a31b12 100644 --- a/builds/updates-beta.xml +++ b/builds/updates-beta.xml @@ -1,7 +1,7 @@ - + diff --git a/builds/updates.xml b/builds/updates.xml index 6f3be9618..343d11614 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index c296c1fad..66de6842e 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.13.8.3", - "date": "2017-02-11T23:08:20.851Z" + "version": "1.13.8.4", + "date": "2017-02-21T05:22:04.853Z" } \ No newline at end of file