Release 4chan X v1.7.27.
This commit is contained in:
parent
4ca58ff430
commit
f6a5fce277
@ -1,3 +1,6 @@
|
||||
### v1.7.27
|
||||
*2014-05-02*
|
||||
|
||||
**ccd0**
|
||||
- Update due to more Recaptcha changes.
|
||||
|
||||
|
||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* 4chan X - Version 1.7.26 - 2014-05-02
|
||||
* 4chan X - Version 1.7.27 - 2014-05-02
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.7.26
|
||||
// @version 1.7.27
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.7.26
|
||||
// @version 1.7.27
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -24,7 +24,7 @@
|
||||
// ==/UserScript==
|
||||
|
||||
/*
|
||||
* 4chan X - Version 1.7.26 - 2014-05-02
|
||||
* 4chan X - Version 1.7.27 - 2014-05-02
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
@ -372,7 +372,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.7.26',
|
||||
VERSION: '1.7.27',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6658,6 +6658,9 @@
|
||||
return QR.captcha.clear();
|
||||
});
|
||||
$.sync('captchas', this.sync);
|
||||
new MutationObserver(this.afterSetup).observe($.id('captchaContainer'), {
|
||||
childList: true
|
||||
});
|
||||
this.beforeSetup();
|
||||
return this.afterSetup();
|
||||
},
|
||||
@ -6668,11 +6671,7 @@
|
||||
input.value = '';
|
||||
input.placeholder = 'Focus to load reCAPTCHA';
|
||||
this.count();
|
||||
$.on(input, 'focus', this.setup);
|
||||
this.setupObserver = new MutationObserver(this.afterSetup);
|
||||
return this.setupObserver.observe($.id('captchaContainer'), {
|
||||
childList: true
|
||||
});
|
||||
return $.on(input, 'focus', this.setup);
|
||||
},
|
||||
setup: function() {
|
||||
return $.globalEval('loadRecaptcha()');
|
||||
@ -6682,8 +6681,9 @@
|
||||
if (!(challenge = $.id('recaptcha_challenge_field_holder'))) {
|
||||
return;
|
||||
}
|
||||
QR.captcha.setupObserver.disconnect();
|
||||
delete QR.captcha.setupObserver;
|
||||
if (challenge === QR.captcha.nodes.challenge) {
|
||||
return;
|
||||
}
|
||||
setLifetime = function(e) {
|
||||
return QR.captcha.lifetime = e.detail;
|
||||
};
|
||||
|
||||
BIN
builds/crx.crx
BIN
builds/crx.crx
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "4chan X",
|
||||
"version": "1.7.26",
|
||||
"version": "1.7.27",
|
||||
"manifest_version": 2,
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"icons": {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// Generated by CoffeeScript
|
||||
/*
|
||||
* 4chan X - Version 1.7.26 - 2014-05-02
|
||||
* 4chan X - Version 1.7.27 - 2014-05-02
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
@ -348,7 +348,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.7.26',
|
||||
VERSION: '1.7.27',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6683,6 +6683,9 @@
|
||||
return QR.captcha.clear();
|
||||
});
|
||||
$.sync('captchas', this.sync);
|
||||
new MutationObserver(this.afterSetup).observe($.id('captchaContainer'), {
|
||||
childList: true
|
||||
});
|
||||
this.beforeSetup();
|
||||
return this.afterSetup();
|
||||
},
|
||||
@ -6693,11 +6696,7 @@
|
||||
input.value = '';
|
||||
input.placeholder = 'Focus to load reCAPTCHA';
|
||||
this.count();
|
||||
$.on(input, 'focus', this.setup);
|
||||
this.setupObserver = new MutationObserver(this.afterSetup);
|
||||
return this.setupObserver.observe($.id('captchaContainer'), {
|
||||
childList: true
|
||||
});
|
||||
return $.on(input, 'focus', this.setup);
|
||||
},
|
||||
setup: function() {
|
||||
return $.globalEval('loadRecaptcha()');
|
||||
@ -6707,8 +6706,9 @@
|
||||
if (!(challenge = $.id('recaptcha_challenge_field_holder'))) {
|
||||
return;
|
||||
}
|
||||
QR.captcha.setupObserver.disconnect();
|
||||
delete QR.captcha.setupObserver;
|
||||
if (challenge === QR.captcha.nodes.challenge) {
|
||||
return;
|
||||
}
|
||||
setLifetime = function(e) {
|
||||
return QR.captcha.lifetime = e.detail;
|
||||
};
|
||||
|
||||
@ -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://ccd0.github.io/4chan-x/builds/crx.crx' version='1.7.26' />
|
||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/crx.crx' version='1.7.27' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "4chan-X",
|
||||
"version": "1.7.26",
|
||||
"version": "1.7.27",
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"meta": {
|
||||
"name": "4chan X",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user