Release 4chan X v1.14.15.2.

This commit is contained in:
ccd0 2019-12-20 02:31:33 -08:00
parent 89404f5c9d
commit 1f8bdd9454
15 changed files with 47 additions and 17 deletions

View File

@ -4,6 +4,9 @@
### v1.14.15 ### 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)] **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. - Enable 4chan X by default on more sites.
- Fix spurious linkification bug on infinity-based sites. #2356 - Fix spurious linkification bug on infinity-based sites. #2356

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.14.15.1 // @version 1.14.15.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.14.15.1 // @version 1.14.15.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -214,7 +214,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.14.15.1', VERSION: '1.14.15.2',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
sites: Object.create(null), sites: Object.create(null),
boards: Object.create(null) boards: Object.create(null)
@ -23313,13 +23313,15 @@ Captcha = {};
return $.on(d, 'keydown', this.keybinds.bind(this)); return $.on(d, 'keydown', this.keybinds.bind(this));
}, },
initNoscript: function() { initNoscript: function() {
var data, form, ref, token; var data, form, ns, ref, token;
this.noscript = true; this.noscript = true;
form = $('.fbc-imageselect-challenge > form'); form = $('.fbc-imageselect-challenge > form');
data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? { data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? {
token: token token: token
} : $('.fbc-imageselect-challenge > form') ? { } : $('.fbc-imageselect-challenge > form') ? {
working: true working: true
} : (ns = $('noscript')) && /please enable javascript/i.test(ns.textContent) ? {
disabled: true
} : null; } : null;
if (data) { if (data) {
new Connection(window.parent, '*').send(data); new Connection(window.parent, '*').send(data);
@ -23525,6 +23527,13 @@ Captcha = {};
} }
textarea.value = token; textarea.value = token;
return $.event('input', null, textarea); 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 &quot;Force Noscript Captcha&quot; 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.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.14.15.1 // @version 1.14.15.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -214,7 +214,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.14.15.1', VERSION: '1.14.15.2',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
sites: Object.create(null), sites: Object.create(null),
boards: Object.create(null) boards: Object.create(null)
@ -23313,13 +23313,15 @@ Captcha = {};
return $.on(d, 'keydown', this.keybinds.bind(this)); return $.on(d, 'keydown', this.keybinds.bind(this));
}, },
initNoscript: function() { initNoscript: function() {
var data, form, ref, token; var data, form, ns, ref, token;
this.noscript = true; this.noscript = true;
form = $('.fbc-imageselect-challenge > form'); form = $('.fbc-imageselect-challenge > form');
data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? { data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? {
token: token token: token
} : $('.fbc-imageselect-challenge > form') ? { } : $('.fbc-imageselect-challenge > form') ? {
working: true working: true
} : (ns = $('noscript')) && /please enable javascript/i.test(ns.textContent) ? {
disabled: true
} : null; } : null;
if (data) { if (data) {
new Connection(window.parent, '*').send(data); new Connection(window.parent, '*').send(data);
@ -23525,6 +23527,13 @@ Captcha = {};
} }
textarea.value = token; textarea.value = token;
return $.event('input', null, textarea); 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 &quot;Force Noscript Captcha&quot; 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.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.14.15.1 // @version 1.14.15.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.14.15.1 // @version 1.14.15.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -214,7 +214,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.14.15.1', VERSION: '1.14.15.2',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
sites: Object.create(null), sites: Object.create(null),
boards: Object.create(null) boards: Object.create(null)
@ -23313,13 +23313,15 @@ Captcha = {};
return $.on(d, 'keydown', this.keybinds.bind(this)); return $.on(d, 'keydown', this.keybinds.bind(this));
}, },
initNoscript: function() { initNoscript: function() {
var data, form, ref, token; var data, form, ns, ref, token;
this.noscript = true; this.noscript = true;
form = $('.fbc-imageselect-challenge > form'); form = $('.fbc-imageselect-challenge > form');
data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? { data = (token = (ref = $('.fbc-verification-token > textarea')) != null ? ref.value : void 0) ? {
token: token token: token
} : $('.fbc-imageselect-challenge > form') ? { } : $('.fbc-imageselect-challenge > form') ? {
working: true working: true
} : (ns = $('noscript')) && /please enable javascript/i.test(ns.textContent) ? {
disabled: true
} : null; } : null;
if (data) { if (data) {
new Connection(window.parent, '*').send(data); new Connection(window.parent, '*').send(data);
@ -23525,6 +23527,13 @@ Captcha = {};
} }
textarea.value = token; textarea.value = token;
return $.event('input', null, textarea); 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 &quot;Force Noscript Captcha&quot; 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.

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": { "4chan-x@4chan-x.net": {
"updates": [ "updates": [
{ {
"version": "1.14.15.1", "version": "1.14.15.2",
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx" "update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
} }
] ]

View File

@ -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.15.1' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.15.2' />
</app> </app>
</gupdate> </gupdate>

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": { "4chan-x@4chan-x.net": {
"updates": [ "updates": [
{ {
"version": "1.14.15.1", "version": "1.14.15.2",
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx" "update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
} }
] ]

View File

@ -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.15.1' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.15.2' />
</app> </app>
</gupdate> </gupdate>

View File

@ -1,4 +1,4 @@
{ {
"version": "1.14.15.1", "version": "1.14.15.2",
"date": "2019-12-17T19:48:51.458Z" "date": "2019-12-20T10:16:14.905Z"
} }