Release 4chan X v1.11.16.5.
This commit is contained in:
parent
c182d1b07d
commit
e2a180a964
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.16
|
### 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")]
|
**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.
|
- Report window fixes: Restore backspace to refresh, unhide audio captcha, change pass ad to complaint link, and add NCMEC link.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.16.4
|
// @version 1.11.16.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.16.4
|
// @version 1.11.16.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.16.4',
|
VERSION: '1.11.16.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -16398,17 +16398,11 @@
|
|||||||
return $.ready(this.ready);
|
return $.ready(this.ready);
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
var link, passAd, prev, ref;
|
var passAd, prev, ref;
|
||||||
$.addStyle(Report.css);
|
$.addStyle(Report.css);
|
||||||
if (Conf['Archive Report']) {
|
if (Conf['Archive Report']) {
|
||||||
Report.archive();
|
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"]'))) {
|
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
||||||
$.extend(passAd, {
|
$.extend(passAd, {
|
||||||
textContent: 'Complain',
|
textContent: 'Complain',
|
||||||
@ -16418,6 +16412,13 @@
|
|||||||
if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) {
|
if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) {
|
||||||
prev.nodeValue = prev.nodeValue.replace(/4chan Pass[^\.]*\./i, 'reCAPTCHA malfunctioning?');
|
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')) {
|
if (Conf['Use Recaptcha v2 in Reports'] && $.hasClass(doc, 'js-enabled')) {
|
||||||
new MutationObserver(function() {
|
new MutationObserver(function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.16.4
|
// @version 1.11.16.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.16.4',
|
VERSION: '1.11.16.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -16398,17 +16398,11 @@
|
|||||||
return $.ready(this.ready);
|
return $.ready(this.ready);
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
var link, passAd, prev, ref;
|
var passAd, prev, ref;
|
||||||
$.addStyle(Report.css);
|
$.addStyle(Report.css);
|
||||||
if (Conf['Archive Report']) {
|
if (Conf['Archive Report']) {
|
||||||
Report.archive();
|
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"]'))) {
|
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
||||||
$.extend(passAd, {
|
$.extend(passAd, {
|
||||||
textContent: 'Complain',
|
textContent: 'Complain',
|
||||||
@ -16418,6 +16412,13 @@
|
|||||||
if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) {
|
if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) {
|
||||||
prev.nodeValue = prev.nodeValue.replace(/4chan Pass[^\.]*\./i, 'reCAPTCHA malfunctioning?');
|
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')) {
|
if (Conf['Use Recaptcha v2 in Reports'] && $.hasClass(doc, 'js-enabled')) {
|
||||||
new MutationObserver(function() {
|
new MutationObserver(function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.16.4
|
// @version 1.11.16.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.16.4
|
// @version 1.11.16.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.16.4',
|
VERSION: '1.11.16.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -16398,17 +16398,11 @@
|
|||||||
return $.ready(this.ready);
|
return $.ready(this.ready);
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
var link, passAd, prev, ref;
|
var passAd, prev, ref;
|
||||||
$.addStyle(Report.css);
|
$.addStyle(Report.css);
|
||||||
if (Conf['Archive Report']) {
|
if (Conf['Archive Report']) {
|
||||||
Report.archive();
|
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"]'))) {
|
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
||||||
$.extend(passAd, {
|
$.extend(passAd, {
|
||||||
textContent: 'Complain',
|
textContent: 'Complain',
|
||||||
@ -16418,6 +16412,13 @@
|
|||||||
if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) {
|
if (((ref = (prev = passAd.previousSibling)) != null ? ref.nodeType : void 0) === Node.TEXT_NODE) {
|
||||||
prev.nodeValue = prev.nodeValue.replace(/4chan Pass[^\.]*\./i, 'reCAPTCHA malfunctioning?');
|
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')) {
|
if (Conf['Use Recaptcha v2 in Reports'] && $.hasClass(doc, 'js-enabled')) {
|
||||||
new MutationObserver(function() {
|
new MutationObserver(function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.16.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.16.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.16.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.16.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.16.4",
|
"version": "1.11.16.5",
|
||||||
"date": "2015-11-14T22:50:42.534Z"
|
"date": "2015-11-15T22:49:06.409Z"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user