Release 4chan X v1.11.12.9.
This commit is contained in:
parent
5d6df63463
commit
6712aa7c58
@ -4,6 +4,10 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
||||
|
||||
### v1.11.12
|
||||
|
||||
**v1.11.12.9** *(2015-10-21)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.12.9/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.12.9/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Workarounds for Google's latest captcha bugs.
|
||||
- Ignore `Force Noscript Captcha` if Recaptcha v1 is selected.
|
||||
|
||||
**v1.11.12.8** *(2015-10-18)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.12.8/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.12.8/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Update to support MathJax on /sci/.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.12.8
|
||||
// @version 1.11.12.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.12.8
|
||||
// @version 1.11.12.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -414,7 +414,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.12.8',
|
||||
VERSION: '1.11.12.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6862,7 +6862,7 @@
|
||||
'webm': 'video/webm'
|
||||
},
|
||||
init: function() {
|
||||
var noscript, sc, version;
|
||||
var sc, version;
|
||||
if (!Conf['Quick Reply']) {
|
||||
return;
|
||||
}
|
||||
@ -6871,7 +6871,7 @@
|
||||
if (g.VIEW === 'archive') {
|
||||
return;
|
||||
}
|
||||
version = Conf['Use Recaptcha v1'] ? (noscript = Conf['Force Noscript Captcha'] || !$.hasClass(doc, 'js-enabled'), noscript ? 'noscript' : 'v1') : 'v2';
|
||||
version = Conf['Use Recaptcha v1'] ? 'v1' : 'v2';
|
||||
this.captcha = Captcha[version];
|
||||
$.on(d, '4chanXInitFinished', this.initReady);
|
||||
Post.callbacks.push({
|
||||
@ -7861,7 +7861,8 @@
|
||||
childList: true,
|
||||
subtree: true
|
||||
});
|
||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||
$.on(d, 'keydown', this.keybinds.bind(this));
|
||||
return window.focus();
|
||||
},
|
||||
initNoscript: function() {
|
||||
this.noscript = true;
|
||||
@ -18444,6 +18445,10 @@
|
||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||
" display: table-cell !important;\n" +
|
||||
"}\n" +
|
||||
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||
"body > div:last-of-type {\n" +
|
||||
" transition: none !important;\n" +
|
||||
"}\n" +
|
||||
"/* Anti-autoplay */\n" +
|
||||
"audio.controls-added {\n" +
|
||||
" display: block;\n" +
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.12.8
|
||||
// @version 1.11.12.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -414,7 +414,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.12.8',
|
||||
VERSION: '1.11.12.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6862,7 +6862,7 @@
|
||||
'webm': 'video/webm'
|
||||
},
|
||||
init: function() {
|
||||
var noscript, sc, version;
|
||||
var sc, version;
|
||||
if (!Conf['Quick Reply']) {
|
||||
return;
|
||||
}
|
||||
@ -6871,7 +6871,7 @@
|
||||
if (g.VIEW === 'archive') {
|
||||
return;
|
||||
}
|
||||
version = Conf['Use Recaptcha v1'] ? (noscript = Conf['Force Noscript Captcha'] || !$.hasClass(doc, 'js-enabled'), noscript ? 'noscript' : 'v1') : 'v2';
|
||||
version = Conf['Use Recaptcha v1'] ? 'v1' : 'v2';
|
||||
this.captcha = Captcha[version];
|
||||
$.on(d, '4chanXInitFinished', this.initReady);
|
||||
Post.callbacks.push({
|
||||
@ -7861,7 +7861,8 @@
|
||||
childList: true,
|
||||
subtree: true
|
||||
});
|
||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||
$.on(d, 'keydown', this.keybinds.bind(this));
|
||||
return window.focus();
|
||||
},
|
||||
initNoscript: function() {
|
||||
this.noscript = true;
|
||||
@ -18444,6 +18445,10 @@
|
||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||
" display: table-cell !important;\n" +
|
||||
"}\n" +
|
||||
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||
"body > div:last-of-type {\n" +
|
||||
" transition: none !important;\n" +
|
||||
"}\n" +
|
||||
"/* Anti-autoplay */\n" +
|
||||
"audio.controls-added {\n" +
|
||||
" display: block;\n" +
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.12.8
|
||||
// @version 1.11.12.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.12.8
|
||||
// @version 1.11.12.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -414,7 +414,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.12.8',
|
||||
VERSION: '1.11.12.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6862,7 +6862,7 @@
|
||||
'webm': 'video/webm'
|
||||
},
|
||||
init: function() {
|
||||
var noscript, sc, version;
|
||||
var sc, version;
|
||||
if (!Conf['Quick Reply']) {
|
||||
return;
|
||||
}
|
||||
@ -6871,7 +6871,7 @@
|
||||
if (g.VIEW === 'archive') {
|
||||
return;
|
||||
}
|
||||
version = Conf['Use Recaptcha v1'] ? (noscript = Conf['Force Noscript Captcha'] || !$.hasClass(doc, 'js-enabled'), noscript ? 'noscript' : 'v1') : 'v2';
|
||||
version = Conf['Use Recaptcha v1'] ? 'v1' : 'v2';
|
||||
this.captcha = Captcha[version];
|
||||
$.on(d, '4chanXInitFinished', this.initReady);
|
||||
Post.callbacks.push({
|
||||
@ -7861,7 +7861,8 @@
|
||||
childList: true,
|
||||
subtree: true
|
||||
});
|
||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||
$.on(d, 'keydown', this.keybinds.bind(this));
|
||||
return window.focus();
|
||||
},
|
||||
initNoscript: function() {
|
||||
this.noscript = true;
|
||||
@ -18444,6 +18445,10 @@
|
||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||
" display: table-cell !important;\n" +
|
||||
"}\n" +
|
||||
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||
"body > div:last-of-type {\n" +
|
||||
" transition: none !important;\n" +
|
||||
"}\n" +
|
||||
"/* Anti-autoplay */\n" +
|
||||
"audio.controls-added {\n" +
|
||||
" display: block;\n" +
|
||||
|
||||
Binary file not shown.
@ -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.11.12.8' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.12.9' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -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.11.12.8' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.12.9' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -4,8 +4,8 @@
|
||||
"meta": {
|
||||
"name": "4chan X",
|
||||
"fork": "ccd0",
|
||||
"version": "1.11.12.8",
|
||||
"date": "2015-10-18T07:39:28.149Z",
|
||||
"version": "1.11.12.9",
|
||||
"date": "2015-10-21T17:49:32.428Z",
|
||||
"page": "https://www.4chan-x.net/",
|
||||
"downloads": "https://www.4chan-x.net/builds/",
|
||||
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user