Release 4chan X v1.14.15.2.
This commit is contained in:
parent
89404f5c9d
commit
1f8bdd9454
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.14.15
|
||||
|
||||
**v1.14.15.2** *(2019-12-20)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.2/builds/4chan-X-noupdate.crx)]
|
||||
- Display message when noscript captcha is disabled, and link to open list of alternate imageboards. #1539 #2500
|
||||
|
||||
**v1.14.15.1** *(2019-12-17)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.1/builds/4chan-X-noupdate.crx)]
|
||||
- Enable 4chan X by default on more sites.
|
||||
- Fix spurious linkification bug on infinity-based sites. #2356
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.14.15.1
|
||||
// @version 1.14.15.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.14.15.1
|
||||
// @version 1.14.15.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -214,7 +214,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.15.1',
|
||||
VERSION: '1.14.15.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -23313,13 +23313,15 @@ Captcha = {};
|
||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||
},
|
||||
initNoscript: function() {
|
||||
var data, form, ref, token;
|
||||
var data, form, ns, ref, token;
|
||||
this.noscript = true;
|
||||
form = $('.fbc-imageselect-challenge > form');
|
||||
data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? {
|
||||
token: token
|
||||
} : $('.fbc-imageselect-challenge > form') ? {
|
||||
working: true
|
||||
} : (ns = $('noscript')) && /please enable javascript/i.test(ns.textContent) ? {
|
||||
disabled: true
|
||||
} : null;
|
||||
if (data) {
|
||||
new Connection(window.parent, '*').send(data);
|
||||
@ -23525,6 +23527,13 @@ Captcha = {};
|
||||
}
|
||||
textarea.value = token;
|
||||
return $.event('input', null, textarea);
|
||||
},
|
||||
disabled: function() {
|
||||
var msg;
|
||||
msg = $.el('div', {
|
||||
innerHTML: "Noscript captcha seems to be disabled on 4chan.<br>You may be able to post if you uncheck "Force Noscript Captcha" in your settings.<br>If you hate the Javascript version of Recaptcha, consider visiting <a href=\"https://www.4chan-x.net/4chan_alternatives.html#" + E(g.BOARD.ID) + "\" target=\"_blank\" rel=\"noopener\">other imageboards</a>."
|
||||
});
|
||||
return new Notice('warning', msg);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.15.1
|
||||
// @version 1.14.15.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -214,7 +214,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.15.1',
|
||||
VERSION: '1.14.15.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -23313,13 +23313,15 @@ Captcha = {};
|
||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||
},
|
||||
initNoscript: function() {
|
||||
var data, form, ref, token;
|
||||
var data, form, ns, ref, token;
|
||||
this.noscript = true;
|
||||
form = $('.fbc-imageselect-challenge > form');
|
||||
data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? {
|
||||
token: token
|
||||
} : $('.fbc-imageselect-challenge > form') ? {
|
||||
working: true
|
||||
} : (ns = $('noscript')) && /please enable javascript/i.test(ns.textContent) ? {
|
||||
disabled: true
|
||||
} : null;
|
||||
if (data) {
|
||||
new Connection(window.parent, '*').send(data);
|
||||
@ -23525,6 +23527,13 @@ Captcha = {};
|
||||
}
|
||||
textarea.value = token;
|
||||
return $.event('input', null, textarea);
|
||||
},
|
||||
disabled: function() {
|
||||
var msg;
|
||||
msg = $.el('div', {
|
||||
innerHTML: "Noscript captcha seems to be disabled on 4chan.<br>You may be able to post if you uncheck "Force Noscript Captcha" in your settings.<br>If you hate the Javascript version of Recaptcha, consider visiting <a href=\"https://www.4chan-x.net/4chan_alternatives.html#" + E(g.BOARD.ID) + "\" target=\"_blank\" rel=\"noopener\">other imageboards</a>."
|
||||
});
|
||||
return new Notice('warning', msg);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.15.1
|
||||
// @version 1.14.15.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.15.1
|
||||
// @version 1.14.15.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -214,7 +214,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.15.1',
|
||||
VERSION: '1.14.15.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -23313,13 +23313,15 @@ Captcha = {};
|
||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||
},
|
||||
initNoscript: function() {
|
||||
var data, form, ref, token;
|
||||
var data, form, ns, ref, token;
|
||||
this.noscript = true;
|
||||
form = $('.fbc-imageselect-challenge > form');
|
||||
data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? {
|
||||
token: token
|
||||
} : $('.fbc-imageselect-challenge > form') ? {
|
||||
working: true
|
||||
} : (ns = $('noscript')) && /please enable javascript/i.test(ns.textContent) ? {
|
||||
disabled: true
|
||||
} : null;
|
||||
if (data) {
|
||||
new Connection(window.parent, '*').send(data);
|
||||
@ -23525,6 +23527,13 @@ Captcha = {};
|
||||
}
|
||||
textarea.value = token;
|
||||
return $.event('input', null, textarea);
|
||||
},
|
||||
disabled: function() {
|
||||
var msg;
|
||||
msg = $.el('div', {
|
||||
innerHTML: "Noscript captcha seems to be disabled on 4chan.<br>You may be able to post if you uncheck "Force Noscript Captcha" in your settings.<br>If you hate the Javascript version of Recaptcha, consider visiting <a href=\"https://www.4chan-x.net/4chan_alternatives.html#" + E(g.BOARD.ID) + "\" target=\"_blank\" rel=\"noopener\">other imageboards</a>."
|
||||
});
|
||||
return new Notice('warning', msg);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Binary file not shown.
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.14.15.1",
|
||||
"version": "1.14.15.2",
|
||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||
}
|
||||
]
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.15.1' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.15.2' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.14.15.1",
|
||||
"version": "1.14.15.2",
|
||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||
}
|
||||
]
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.15.1' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.15.2' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.14.15.1",
|
||||
"date": "2019-12-17T19:48:51.458Z"
|
||||
"version": "1.14.15.2",
|
||||
"date": "2019-12-20T10:16:14.905Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user