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
|
||||||
|
|
||||||
|
**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")]
|
**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/.
|
- Update to support MathJax on /sci/.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.12.8
|
// @version 1.11.12.9
|
||||||
// @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.12.8
|
// @version 1.11.12.9
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -414,7 +414,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.12.8',
|
VERSION: '1.11.12.9',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -6862,7 +6862,7 @@
|
|||||||
'webm': 'video/webm'
|
'webm': 'video/webm'
|
||||||
},
|
},
|
||||||
init: function() {
|
init: function() {
|
||||||
var noscript, sc, version;
|
var sc, version;
|
||||||
if (!Conf['Quick Reply']) {
|
if (!Conf['Quick Reply']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -6871,7 +6871,7 @@
|
|||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
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];
|
this.captcha = Captcha[version];
|
||||||
$.on(d, '4chanXInitFinished', this.initReady);
|
$.on(d, '4chanXInitFinished', this.initReady);
|
||||||
Post.callbacks.push({
|
Post.callbacks.push({
|
||||||
@ -7861,7 +7861,8 @@
|
|||||||
childList: true,
|
childList: true,
|
||||||
subtree: true
|
subtree: true
|
||||||
});
|
});
|
||||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
$.on(d, 'keydown', this.keybinds.bind(this));
|
||||||
|
return window.focus();
|
||||||
},
|
},
|
||||||
initNoscript: function() {
|
initNoscript: function() {
|
||||||
this.noscript = true;
|
this.noscript = true;
|
||||||
@ -18444,6 +18445,10 @@
|
|||||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||||
" display: table-cell !important;\n" +
|
" display: table-cell !important;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||||
|
"body > div:last-of-type {\n" +
|
||||||
|
" transition: none !important;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Anti-autoplay */\n" +
|
"/* Anti-autoplay */\n" +
|
||||||
"audio.controls-added {\n" +
|
"audio.controls-added {\n" +
|
||||||
" display: block;\n" +
|
" display: block;\n" +
|
||||||
|
|||||||
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.12.8
|
// @version 1.11.12.9
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -414,7 +414,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.12.8',
|
VERSION: '1.11.12.9',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -6862,7 +6862,7 @@
|
|||||||
'webm': 'video/webm'
|
'webm': 'video/webm'
|
||||||
},
|
},
|
||||||
init: function() {
|
init: function() {
|
||||||
var noscript, sc, version;
|
var sc, version;
|
||||||
if (!Conf['Quick Reply']) {
|
if (!Conf['Quick Reply']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -6871,7 +6871,7 @@
|
|||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
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];
|
this.captcha = Captcha[version];
|
||||||
$.on(d, '4chanXInitFinished', this.initReady);
|
$.on(d, '4chanXInitFinished', this.initReady);
|
||||||
Post.callbacks.push({
|
Post.callbacks.push({
|
||||||
@ -7861,7 +7861,8 @@
|
|||||||
childList: true,
|
childList: true,
|
||||||
subtree: true
|
subtree: true
|
||||||
});
|
});
|
||||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
$.on(d, 'keydown', this.keybinds.bind(this));
|
||||||
|
return window.focus();
|
||||||
},
|
},
|
||||||
initNoscript: function() {
|
initNoscript: function() {
|
||||||
this.noscript = true;
|
this.noscript = true;
|
||||||
@ -18444,6 +18445,10 @@
|
|||||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||||
" display: table-cell !important;\n" +
|
" display: table-cell !important;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||||
|
"body > div:last-of-type {\n" +
|
||||||
|
" transition: none !important;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Anti-autoplay */\n" +
|
"/* Anti-autoplay */\n" +
|
||||||
"audio.controls-added {\n" +
|
"audio.controls-added {\n" +
|
||||||
" display: block;\n" +
|
" display: block;\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.12.8
|
// @version 1.11.12.9
|
||||||
// @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.12.8
|
// @version 1.11.12.9
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -414,7 +414,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.12.8',
|
VERSION: '1.11.12.9',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -6862,7 +6862,7 @@
|
|||||||
'webm': 'video/webm'
|
'webm': 'video/webm'
|
||||||
},
|
},
|
||||||
init: function() {
|
init: function() {
|
||||||
var noscript, sc, version;
|
var sc, version;
|
||||||
if (!Conf['Quick Reply']) {
|
if (!Conf['Quick Reply']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -6871,7 +6871,7 @@
|
|||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
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];
|
this.captcha = Captcha[version];
|
||||||
$.on(d, '4chanXInitFinished', this.initReady);
|
$.on(d, '4chanXInitFinished', this.initReady);
|
||||||
Post.callbacks.push({
|
Post.callbacks.push({
|
||||||
@ -7861,7 +7861,8 @@
|
|||||||
childList: true,
|
childList: true,
|
||||||
subtree: true
|
subtree: true
|
||||||
});
|
});
|
||||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
$.on(d, 'keydown', this.keybinds.bind(this));
|
||||||
|
return window.focus();
|
||||||
},
|
},
|
||||||
initNoscript: function() {
|
initNoscript: function() {
|
||||||
this.noscript = true;
|
this.noscript = true;
|
||||||
@ -18444,6 +18445,10 @@
|
|||||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||||
" display: table-cell !important;\n" +
|
" display: table-cell !important;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||||
|
"body > div:last-of-type {\n" +
|
||||||
|
" transition: none !important;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Anti-autoplay */\n" +
|
"/* Anti-autoplay */\n" +
|
||||||
"audio.controls-added {\n" +
|
"audio.controls-added {\n" +
|
||||||
" display: block;\n" +
|
" display: block;\n" +
|
||||||
|
|||||||
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.12.8' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.12.9' />
|
||||||
</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.12.8' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.12.9' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -4,8 +4,8 @@
|
|||||||
"meta": {
|
"meta": {
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"fork": "ccd0",
|
"fork": "ccd0",
|
||||||
"version": "1.11.12.8",
|
"version": "1.11.12.9",
|
||||||
"date": "2015-10-18T07:39:28.149Z",
|
"date": "2015-10-21T17:49:32.428Z",
|
||||||
"page": "https://www.4chan-x.net/",
|
"page": "https://www.4chan-x.net/",
|
||||||
"downloads": "https://www.4chan-x.net/builds/",
|
"downloads": "https://www.4chan-x.net/builds/",
|
||||||
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",
|
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user