diff --git a/CHANGELOG.md b/CHANGELOG.md index b28b64f6f..20b12f43f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor ### v1.11.16 +**v1.11.16.5** *(2015-11-15)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.16.5/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.16.5/builds/4chan-X-noupdate.crx "Chromium version")] +- Change report form link from NCMEC to 4chan's hosting; only show below captcha. + **v1.11.16.4** *(2015-11-14)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.16.4/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.16.4/builds/4chan-X-noupdate.crx "Chromium version")] - Report window fixes: Restore backspace to refresh, unhide audio captcha, change pass ad to complaint link, and add NCMEC link. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index 718359e11..94410f21a 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 d11071759..1e0173ff7 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.11.16.4 +// @version 1.11.16.5 // @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 62f9008f1..ccd62c41f 100644 --- a/builds/4chan-X-beta.user.js +++ b/builds/4chan-X-beta.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name 4chan X beta -// @version 1.11.16.4 +// @version 1.11.16.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -433,7 +433,7 @@ doc = d.documentElement; g = { - VERSION: '1.11.16.4', + VERSION: '1.11.16.5', NAMESPACE: '4chan X.', boards: {} }; @@ -16398,17 +16398,11 @@ return $.ready(this.ready); }, ready: function() { - var link, passAd, prev, ref; + var passAd, prev, ref; $.addStyle(Report.css); if (Conf['Archive Report']) { Report.archive(); } - link = $.el('a', { - href: 'https://report.cybertip.org/', - textContent: 'Report to NCMEC', - target: '_blank' - }); - $.add(d.body, [$.tn(' ['), link, $.tn(']')]); if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) { $.extend(passAd, { textContent: 'Complain', @@ -16418,6 +16412,13 @@ if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) { prev.nodeValue = prev.nodeValue.replace(/4chan Pass[^\.]*\./i, 'reCAPTCHA malfunctioning?'); } + $.after(passAd, [ + $.tn('] ['), $.el('a', { + href: 'mailto:abuse@quadranet.com', + textContent: 'abuse@quadranet.com', + target: '_blank' + }) + ]); } if (Conf['Use Recaptcha v2 in Reports'] && $.hasClass(doc, 'js-enabled')) { new MutationObserver(function() { diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 92c2351ca..bac29b74b 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 6df8fc88e..316db7a09 100644 --- a/builds/4chan-X-noupdate.user.js +++ b/builds/4chan-X-noupdate.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name 4chan X -// @version 1.11.16.4 +// @version 1.11.16.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -433,7 +433,7 @@ doc = d.documentElement; g = { - VERSION: '1.11.16.4', + VERSION: '1.11.16.5', NAMESPACE: '4chan X.', boards: {} }; @@ -16398,17 +16398,11 @@ return $.ready(this.ready); }, ready: function() { - var link, passAd, prev, ref; + var passAd, prev, ref; $.addStyle(Report.css); if (Conf['Archive Report']) { Report.archive(); } - link = $.el('a', { - href: 'https://report.cybertip.org/', - textContent: 'Report to NCMEC', - target: '_blank' - }); - $.add(d.body, [$.tn(' ['), link, $.tn(']')]); if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) { $.extend(passAd, { textContent: 'Complain', @@ -16418,6 +16412,13 @@ if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) { prev.nodeValue = prev.nodeValue.replace(/4chan Pass[^\.]*\./i, 'reCAPTCHA malfunctioning?'); } + $.after(passAd, [ + $.tn('] ['), $.el('a', { + href: 'mailto:abuse@quadranet.com', + textContent: 'abuse@quadranet.com', + target: '_blank' + }) + ]); } if (Conf['Use Recaptcha v2 in Reports'] && $.hasClass(doc, 'js-enabled')) { new MutationObserver(function() { diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index d58f5e9d2..530ac032b 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 99e4ca3a1..16b1ac278 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.11.16.4 +// @version 1.11.16.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 013b7ee60..79698e7b0 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name 4chan X -// @version 1.11.16.4 +// @version 1.11.16.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -433,7 +433,7 @@ doc = d.documentElement; g = { - VERSION: '1.11.16.4', + VERSION: '1.11.16.5', NAMESPACE: '4chan X.', boards: {} }; @@ -16398,17 +16398,11 @@ return $.ready(this.ready); }, ready: function() { - var link, passAd, prev, ref; + var passAd, prev, ref; $.addStyle(Report.css); if (Conf['Archive Report']) { Report.archive(); } - link = $.el('a', { - href: 'https://report.cybertip.org/', - textContent: 'Report to NCMEC', - target: '_blank' - }); - $.add(d.body, [$.tn(' ['), link, $.tn(']')]); if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) { $.extend(passAd, { textContent: 'Complain', @@ -16418,6 +16412,13 @@ if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) { prev.nodeValue = prev.nodeValue.replace(/4chan Pass[^\.]*\./i, 'reCAPTCHA malfunctioning?'); } + $.after(passAd, [ + $.tn('] ['), $.el('a', { + href: 'mailto:abuse@quadranet.com', + textContent: 'abuse@quadranet.com', + target: '_blank' + }) + ]); } if (Conf['Use Recaptcha v2 in Reports'] && $.hasClass(doc, 'js-enabled')) { new MutationObserver(function() { diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index d1d2d7d95..1ac716584 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 ef252ee6c..cd49606f3 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 cdf12ad97..9555e1496 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index e465d1dd5..7b67b0b16 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.11.16.4", - "date": "2015-11-14T22:50:42.534Z" + "version": "1.11.16.5", + "date": "2015-11-15T22:49:06.409Z" }