Release 4chan X v1.14.17.3.
This commit is contained in:
parent
9e8ebbba4e
commit
c5b693aa28
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.14.17
|
### v1.14.17
|
||||||
|
|
||||||
|
**v1.14.17.3** *(2020-04-19)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.17.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.17.3/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Fix captcha loading issue when captcha language option is used. #2531
|
||||||
|
|
||||||
**v1.14.17.2** *(2020-04-16)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.17.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.17.2/builds/4chan-X-noupdate.crx)]
|
**v1.14.17.2** *(2020-04-16)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.17.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.17.2/builds/4chan-X-noupdate.crx)]
|
||||||
- Add hcaptcha.com and subdomains to Javascript Whitelist so that captcha on Cloudflare security check operates properly. #2584
|
- Add hcaptcha.com and subdomains to Javascript Whitelist so that captcha on Cloudflare security check operates properly. #2584
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.17.2
|
// @version 1.14.17.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.17.2
|
// @version 1.14.17.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -215,7 +215,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.17.2',
|
VERSION: '1.14.17.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -23523,10 +23523,10 @@ Captcha = {};
|
|||||||
if (Conf['captchaLanguage'].trim() || Conf['Captcha Fixes']) {
|
if (Conf['captchaLanguage'].trim() || Conf['Captcha Fixes']) {
|
||||||
if ((ref = location.hostname) === 'boards.4chan.org' || ref === 'boards.4channel.org') {
|
if ((ref = location.hostname) === 'boards.4chan.org' || ref === 'boards.4channel.org') {
|
||||||
return $.onExists(doc, '#captchaFormPart', function(node) {
|
return $.onExists(doc, '#captchaFormPart', function(node) {
|
||||||
return $.onExists(node, 'iframe', Captcha.replace.iframe);
|
return $.onExists(node, 'iframe[src^="https://www.google.com/recaptcha/"]', Captcha.replace.iframe);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
return $.onExists(doc, 'iframe', Captcha.replace.iframe);
|
return $.onExists(doc, 'iframe[src^="https://www.google.com/recaptcha/"]', Captcha.replace.iframe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -23542,7 +23542,7 @@ Captcha = {};
|
|||||||
$.rm(original);
|
$.rm(original);
|
||||||
insert = function() {
|
insert = function() {
|
||||||
span.innerHTML = noscript.textContent;
|
span.innerHTML = noscript.textContent;
|
||||||
return Captcha.replace.iframe($('iframe', span));
|
return Captcha.replace.iframe($('iframe[src^="https://www.google.com/recaptcha/"]', span));
|
||||||
};
|
};
|
||||||
if ((toggle = $('#togglePostFormLink a, #form-link'))) {
|
if ((toggle = $('#togglePostFormLink a, #form-link'))) {
|
||||||
return $.on(toggle, 'click', insert);
|
return $.on(toggle, 'click', insert);
|
||||||
@ -23810,7 +23810,7 @@ Captcha = {};
|
|||||||
$.queueTask((function(_this) {
|
$.queueTask((function(_this) {
|
||||||
return function() {
|
return function() {
|
||||||
var iframe;
|
var iframe;
|
||||||
if (_this.nodes.container && d.activeElement === _this.nodes.counter && (iframe = $('iframe', _this.nodes.container))) {
|
if (_this.nodes.container && d.activeElement === _this.nodes.counter && (iframe = $('iframe[src^="https://www.google.com/recaptcha/"]', _this.nodes.container))) {
|
||||||
iframe.focus();
|
iframe.focus();
|
||||||
return QR.focus();
|
return QR.focus();
|
||||||
}
|
}
|
||||||
@ -23884,7 +23884,7 @@ Captcha = {};
|
|||||||
ref = mutation.addedNodes;
|
ref = mutation.addedNodes;
|
||||||
for (j = 0, len1 = ref.length; j < len1; j++) {
|
for (j = 0, len1 = ref.length; j < len1; j++) {
|
||||||
node = ref[j];
|
node = ref[j];
|
||||||
if ((iframe = $.x('./descendant-or-self::iframe', node))) {
|
if ((iframe = $.x('./descendant-or-self::iframe[starts-with(@src, "https://www.google.com/recaptcha/")]', node))) {
|
||||||
this.setupIFrame(iframe);
|
this.setupIFrame(iframe);
|
||||||
}
|
}
|
||||||
if ((textarea = $.x('./descendant-or-self::textarea', node))) {
|
if ((textarea = $.x('./descendant-or-self::textarea', node))) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.17.2
|
// @version 1.14.17.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -215,7 +215,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.17.2',
|
VERSION: '1.14.17.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -23523,10 +23523,10 @@ Captcha = {};
|
|||||||
if (Conf['captchaLanguage'].trim() || Conf['Captcha Fixes']) {
|
if (Conf['captchaLanguage'].trim() || Conf['Captcha Fixes']) {
|
||||||
if ((ref = location.hostname) === 'boards.4chan.org' || ref === 'boards.4channel.org') {
|
if ((ref = location.hostname) === 'boards.4chan.org' || ref === 'boards.4channel.org') {
|
||||||
return $.onExists(doc, '#captchaFormPart', function(node) {
|
return $.onExists(doc, '#captchaFormPart', function(node) {
|
||||||
return $.onExists(node, 'iframe', Captcha.replace.iframe);
|
return $.onExists(node, 'iframe[src^="https://www.google.com/recaptcha/"]', Captcha.replace.iframe);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
return $.onExists(doc, 'iframe', Captcha.replace.iframe);
|
return $.onExists(doc, 'iframe[src^="https://www.google.com/recaptcha/"]', Captcha.replace.iframe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -23542,7 +23542,7 @@ Captcha = {};
|
|||||||
$.rm(original);
|
$.rm(original);
|
||||||
insert = function() {
|
insert = function() {
|
||||||
span.innerHTML = noscript.textContent;
|
span.innerHTML = noscript.textContent;
|
||||||
return Captcha.replace.iframe($('iframe', span));
|
return Captcha.replace.iframe($('iframe[src^="https://www.google.com/recaptcha/"]', span));
|
||||||
};
|
};
|
||||||
if ((toggle = $('#togglePostFormLink a, #form-link'))) {
|
if ((toggle = $('#togglePostFormLink a, #form-link'))) {
|
||||||
return $.on(toggle, 'click', insert);
|
return $.on(toggle, 'click', insert);
|
||||||
@ -23810,7 +23810,7 @@ Captcha = {};
|
|||||||
$.queueTask((function(_this) {
|
$.queueTask((function(_this) {
|
||||||
return function() {
|
return function() {
|
||||||
var iframe;
|
var iframe;
|
||||||
if (_this.nodes.container && d.activeElement === _this.nodes.counter && (iframe = $('iframe', _this.nodes.container))) {
|
if (_this.nodes.container && d.activeElement === _this.nodes.counter && (iframe = $('iframe[src^="https://www.google.com/recaptcha/"]', _this.nodes.container))) {
|
||||||
iframe.focus();
|
iframe.focus();
|
||||||
return QR.focus();
|
return QR.focus();
|
||||||
}
|
}
|
||||||
@ -23884,7 +23884,7 @@ Captcha = {};
|
|||||||
ref = mutation.addedNodes;
|
ref = mutation.addedNodes;
|
||||||
for (j = 0, len1 = ref.length; j < len1; j++) {
|
for (j = 0, len1 = ref.length; j < len1; j++) {
|
||||||
node = ref[j];
|
node = ref[j];
|
||||||
if ((iframe = $.x('./descendant-or-self::iframe', node))) {
|
if ((iframe = $.x('./descendant-or-self::iframe[starts-with(@src, "https://www.google.com/recaptcha/")]', node))) {
|
||||||
this.setupIFrame(iframe);
|
this.setupIFrame(iframe);
|
||||||
}
|
}
|
||||||
if ((textarea = $.x('./descendant-or-self::textarea', node))) {
|
if ((textarea = $.x('./descendant-or-self::textarea', node))) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.17.2
|
// @version 1.14.17.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.17.2
|
// @version 1.14.17.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -215,7 +215,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.17.2',
|
VERSION: '1.14.17.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -23523,10 +23523,10 @@ Captcha = {};
|
|||||||
if (Conf['captchaLanguage'].trim() || Conf['Captcha Fixes']) {
|
if (Conf['captchaLanguage'].trim() || Conf['Captcha Fixes']) {
|
||||||
if ((ref = location.hostname) === 'boards.4chan.org' || ref === 'boards.4channel.org') {
|
if ((ref = location.hostname) === 'boards.4chan.org' || ref === 'boards.4channel.org') {
|
||||||
return $.onExists(doc, '#captchaFormPart', function(node) {
|
return $.onExists(doc, '#captchaFormPart', function(node) {
|
||||||
return $.onExists(node, 'iframe', Captcha.replace.iframe);
|
return $.onExists(node, 'iframe[src^="https://www.google.com/recaptcha/"]', Captcha.replace.iframe);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
return $.onExists(doc, 'iframe', Captcha.replace.iframe);
|
return $.onExists(doc, 'iframe[src^="https://www.google.com/recaptcha/"]', Captcha.replace.iframe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -23542,7 +23542,7 @@ Captcha = {};
|
|||||||
$.rm(original);
|
$.rm(original);
|
||||||
insert = function() {
|
insert = function() {
|
||||||
span.innerHTML = noscript.textContent;
|
span.innerHTML = noscript.textContent;
|
||||||
return Captcha.replace.iframe($('iframe', span));
|
return Captcha.replace.iframe($('iframe[src^="https://www.google.com/recaptcha/"]', span));
|
||||||
};
|
};
|
||||||
if ((toggle = $('#togglePostFormLink a, #form-link'))) {
|
if ((toggle = $('#togglePostFormLink a, #form-link'))) {
|
||||||
return $.on(toggle, 'click', insert);
|
return $.on(toggle, 'click', insert);
|
||||||
@ -23810,7 +23810,7 @@ Captcha = {};
|
|||||||
$.queueTask((function(_this) {
|
$.queueTask((function(_this) {
|
||||||
return function() {
|
return function() {
|
||||||
var iframe;
|
var iframe;
|
||||||
if (_this.nodes.container && d.activeElement === _this.nodes.counter && (iframe = $('iframe', _this.nodes.container))) {
|
if (_this.nodes.container && d.activeElement === _this.nodes.counter && (iframe = $('iframe[src^="https://www.google.com/recaptcha/"]', _this.nodes.container))) {
|
||||||
iframe.focus();
|
iframe.focus();
|
||||||
return QR.focus();
|
return QR.focus();
|
||||||
}
|
}
|
||||||
@ -23884,7 +23884,7 @@ Captcha = {};
|
|||||||
ref = mutation.addedNodes;
|
ref = mutation.addedNodes;
|
||||||
for (j = 0, len1 = ref.length; j < len1; j++) {
|
for (j = 0, len1 = ref.length; j < len1; j++) {
|
||||||
node = ref[j];
|
node = ref[j];
|
||||||
if ((iframe = $.x('./descendant-or-self::iframe', node))) {
|
if ((iframe = $.x('./descendant-or-self::iframe[starts-with(@src, "https://www.google.com/recaptcha/")]', node))) {
|
||||||
this.setupIFrame(iframe);
|
this.setupIFrame(iframe);
|
||||||
}
|
}
|
||||||
if ((textarea = $.x('./descendant-or-self::textarea', node))) {
|
if ((textarea = $.x('./descendant-or-self::textarea', node))) {
|
||||||
|
|||||||
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.17.2",
|
"version": "1.14.17.3",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.14.17.2' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.17.3' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.17.2",
|
"version": "1.14.17.3",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.14.17.2' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.17.3' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.14.17.2",
|
"version": "1.14.17.3",
|
||||||
"date": "2020-04-16T10:28:31.442Z"
|
"date": "2020-04-19T20:32:21.455Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user