Merge branch 'captcha'

This commit is contained in:
ccd0 2016-02-12 21:56:40 -08:00
commit c221305095
14 changed files with 46 additions and 31 deletions

View File

@ -4,6 +4,12 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.25 ### v1.11.25
**v1.11.25.3** *(2016-02-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.3/builds/4chan-X-noupdate.crx "Chromium version")]
- Fix serious bug in v1.11.25.2.
**v1.11.25.2** *(2016-02-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.2/builds/4chan-X-noupdate.crx "Chromium version")]
- Fix regression from v1.11.23.0 causing simultaneous requests for the same URL to be handled wrongly.
**v1.11.25.1** *(2016-02-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.1/builds/4chan-X-noupdate.crx "Chromium version")] **v1.11.25.1** *(2016-02-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.1/builds/4chan-X-noupdate.crx "Chromium version")]
- Bugfix for 2x4 image captcha. - Bugfix for 2x4 image captcha.

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript // Generated by CoffeeScript
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.11.25.1 // @version 1.11.25.3
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -436,7 +436,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.11.25.1', VERSION: '1.11.25.3',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -626,16 +626,19 @@
return; return;
} }
$.on(req, 'load', function(e) { $.on(req, 'load', function(e) {
var k, len1, ref; var fn1, k, len1, ref;
this.evt = e; this.evt = e;
ref = this.callbacks; ref = this.callbacks;
fn1 = (function(_this) {
return function(cb) {
return $.queueTask(function() {
return cb.call(_this, e, false);
});
};
})(this);
for (k = 0, len1 = ref.length; k < len1; k++) { for (k = 0, len1 = ref.length; k < len1; k++) {
cb = ref[k]; cb = ref[k];
$.queueTask((function(_this) { fn1(cb);
return function() {
return cb.call(_this, e, false);
};
})(this));
} }
return delete this.callbacks; return delete this.callbacks;
}); });

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript // Generated by CoffeeScript
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.11.25.1 // @version 1.11.25.3
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -436,7 +436,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.11.25.1', VERSION: '1.11.25.3',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -626,16 +626,19 @@
return; return;
} }
$.on(req, 'load', function(e) { $.on(req, 'load', function(e) {
var k, len1, ref; var fn1, k, len1, ref;
this.evt = e; this.evt = e;
ref = this.callbacks; ref = this.callbacks;
fn1 = (function(_this) {
return function(cb) {
return $.queueTask(function() {
return cb.call(_this, e, false);
});
};
})(this);
for (k = 0, len1 = ref.length; k < len1; k++) { for (k = 0, len1 = ref.length; k < len1; k++) {
cb = ref[k]; cb = ref[k];
$.queueTask((function(_this) { fn1(cb);
return function() {
return cb.call(_this, e, false);
};
})(this));
} }
return delete this.callbacks; return delete this.callbacks;
}); });

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript // Generated by CoffeeScript
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.11.25.1 // @version 1.11.25.3
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -436,7 +436,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.11.25.1', VERSION: '1.11.25.3',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -626,16 +626,19 @@
return; return;
} }
$.on(req, 'load', function(e) { $.on(req, 'load', function(e) {
var k, len1, ref; var fn1, k, len1, ref;
this.evt = e; this.evt = e;
ref = this.callbacks; ref = this.callbacks;
fn1 = (function(_this) {
return function(cb) {
return $.queueTask(function() {
return cb.call(_this, e, false);
});
};
})(this);
for (k = 0, len1 = ref.length; k < len1; k++) { for (k = 0, len1 = ref.length; k < len1; k++) {
cb = ref[k]; cb = ref[k];
$.queueTask((function(_this) { fn1(cb);
return function() {
return cb.call(_this, e, false);
};
})(this));
} }
return delete this.callbacks; return delete this.callbacks;
}); });

Binary file not shown.

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

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

View File

@ -103,7 +103,7 @@ do ->
$.on req, 'load', (e) -> $.on req, 'load', (e) ->
@evt = e @evt = e
for cb in @callbacks for cb in @callbacks
$.queueTask => cb.call @, e, false do (cb) => $.queueTask => cb.call @, e, false
delete @callbacks delete @callbacks
$.on req, 'abort error', rm $.on req, 'abort error', rm
req.callbacks = [cb] req.callbacks = [cb]

View File

@ -1,4 +1,4 @@
{ {
"version": "1.11.25.1", "version": "1.11.25.3",
"date": "2016-02-13T01:25:08.650Z" "date": "2016-02-13T05:54:04.849Z"
} }