Release 4chan X v1.11.17.10.
This commit is contained in:
parent
ba1f466e8f
commit
c314a0e7cf
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
||||
|
||||
### v1.11.17
|
||||
|
||||
**v1.11.17.10** *(2015-11-25)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.10/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.10/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Fix captcha focusing bug.
|
||||
|
||||
**v1.11.17.9** *(2015-11-24)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.9/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.9/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Support solving 4x4 image captchas with keys in 7-0-/-M square.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.17.9
|
||||
// @version 1.11.17.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.17.9
|
||||
// @version 1.11.17.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.9',
|
||||
VERSION: '1.11.17.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7808,7 +7808,7 @@
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, ref3, req, resDoc, seconds, threadID;
|
||||
req = QR.req;
|
||||
delete QR.req;
|
||||
post = QR.posts[0];
|
||||
@ -7851,7 +7851,7 @@
|
||||
} else {
|
||||
QR.cooldown.auto = false;
|
||||
}
|
||||
QR.captcha.setup(QR.cooldown.auto && d.activeElement === QR.nodes.status);
|
||||
QR.captcha.setup(QR.cooldown.auto && ((ref1 = d.activeElement) === QR.nodes.status || ref1 === d.body));
|
||||
if (QR.captcha.isEnabled && !QR.captcha.captchas.length) {
|
||||
QR.cooldown.auto = false;
|
||||
}
|
||||
@ -7864,12 +7864,12 @@
|
||||
if (Conf['Posting Success Notifications']) {
|
||||
QR.notifications.push(new Notice('success', h1.textContent, 5));
|
||||
}
|
||||
ref1 = h1.nextSibling.textContent.match(/thread:(\d+),no:(\d+)/), _ = ref1[0], threadID = ref1[1], postID = ref1[2];
|
||||
ref2 = h1.nextSibling.textContent.match(/thread:(\d+),no:(\d+)/), _ = ref2[0], threadID = ref2[1], postID = ref2[2];
|
||||
postID = +postID;
|
||||
threadID = +threadID || postID;
|
||||
isReply = threadID !== postID;
|
||||
if ((ref2 = QR.db) != null) {
|
||||
ref2.set({
|
||||
if ((ref3 = QR.db) != null) {
|
||||
ref3.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
@ -7889,10 +7889,10 @@
|
||||
postsCount = QR.posts.length - 1;
|
||||
QR.cooldown.auto = postsCount && isReply;
|
||||
lastPostToThread = !((function() {
|
||||
var k, len1, p, ref3;
|
||||
ref3 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||
p = ref3[k];
|
||||
var k, len1, p, ref4;
|
||||
ref4 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref4.length; k < len1; k++) {
|
||||
p = ref4[k];
|
||||
if (p.thread === post.thread) {
|
||||
return true;
|
||||
}
|
||||
@ -8317,6 +8317,7 @@
|
||||
}
|
||||
this.create();
|
||||
if (focus) {
|
||||
$.addClass(QR.nodes.el, 'focus');
|
||||
return this.nodes.input.focus();
|
||||
}
|
||||
},
|
||||
@ -8610,6 +8611,7 @@
|
||||
return;
|
||||
}
|
||||
if (focus) {
|
||||
$.addClass(QR.nodes.el, 'focus');
|
||||
this.nodes.counter.focus();
|
||||
}
|
||||
if (this.timeouts.destroy) {
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.9
|
||||
// @version 1.11.17.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.9',
|
||||
VERSION: '1.11.17.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7808,7 +7808,7 @@
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, ref3, req, resDoc, seconds, threadID;
|
||||
req = QR.req;
|
||||
delete QR.req;
|
||||
post = QR.posts[0];
|
||||
@ -7851,7 +7851,7 @@
|
||||
} else {
|
||||
QR.cooldown.auto = false;
|
||||
}
|
||||
QR.captcha.setup(QR.cooldown.auto && d.activeElement === QR.nodes.status);
|
||||
QR.captcha.setup(QR.cooldown.auto && ((ref1 = d.activeElement) === QR.nodes.status || ref1 === d.body));
|
||||
if (QR.captcha.isEnabled && !QR.captcha.captchas.length) {
|
||||
QR.cooldown.auto = false;
|
||||
}
|
||||
@ -7864,12 +7864,12 @@
|
||||
if (Conf['Posting Success Notifications']) {
|
||||
QR.notifications.push(new Notice('success', h1.textContent, 5));
|
||||
}
|
||||
ref1 = h1.nextSibling.textContent.match(/thread:(\d+),no:(\d+)/), _ = ref1[0], threadID = ref1[1], postID = ref1[2];
|
||||
ref2 = h1.nextSibling.textContent.match(/thread:(\d+),no:(\d+)/), _ = ref2[0], threadID = ref2[1], postID = ref2[2];
|
||||
postID = +postID;
|
||||
threadID = +threadID || postID;
|
||||
isReply = threadID !== postID;
|
||||
if ((ref2 = QR.db) != null) {
|
||||
ref2.set({
|
||||
if ((ref3 = QR.db) != null) {
|
||||
ref3.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
@ -7889,10 +7889,10 @@
|
||||
postsCount = QR.posts.length - 1;
|
||||
QR.cooldown.auto = postsCount && isReply;
|
||||
lastPostToThread = !((function() {
|
||||
var k, len1, p, ref3;
|
||||
ref3 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||
p = ref3[k];
|
||||
var k, len1, p, ref4;
|
||||
ref4 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref4.length; k < len1; k++) {
|
||||
p = ref4[k];
|
||||
if (p.thread === post.thread) {
|
||||
return true;
|
||||
}
|
||||
@ -8317,6 +8317,7 @@
|
||||
}
|
||||
this.create();
|
||||
if (focus) {
|
||||
$.addClass(QR.nodes.el, 'focus');
|
||||
return this.nodes.input.focus();
|
||||
}
|
||||
},
|
||||
@ -8610,6 +8611,7 @@
|
||||
return;
|
||||
}
|
||||
if (focus) {
|
||||
$.addClass(QR.nodes.el, 'focus');
|
||||
this.nodes.counter.focus();
|
||||
}
|
||||
if (this.timeouts.destroy) {
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.9
|
||||
// @version 1.11.17.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.9
|
||||
// @version 1.11.17.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.9',
|
||||
VERSION: '1.11.17.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7808,7 +7808,7 @@
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, ref3, req, resDoc, seconds, threadID;
|
||||
req = QR.req;
|
||||
delete QR.req;
|
||||
post = QR.posts[0];
|
||||
@ -7851,7 +7851,7 @@
|
||||
} else {
|
||||
QR.cooldown.auto = false;
|
||||
}
|
||||
QR.captcha.setup(QR.cooldown.auto && d.activeElement === QR.nodes.status);
|
||||
QR.captcha.setup(QR.cooldown.auto && ((ref1 = d.activeElement) === QR.nodes.status || ref1 === d.body));
|
||||
if (QR.captcha.isEnabled && !QR.captcha.captchas.length) {
|
||||
QR.cooldown.auto = false;
|
||||
}
|
||||
@ -7864,12 +7864,12 @@
|
||||
if (Conf['Posting Success Notifications']) {
|
||||
QR.notifications.push(new Notice('success', h1.textContent, 5));
|
||||
}
|
||||
ref1 = h1.nextSibling.textContent.match(/thread:(\d+),no:(\d+)/), _ = ref1[0], threadID = ref1[1], postID = ref1[2];
|
||||
ref2 = h1.nextSibling.textContent.match(/thread:(\d+),no:(\d+)/), _ = ref2[0], threadID = ref2[1], postID = ref2[2];
|
||||
postID = +postID;
|
||||
threadID = +threadID || postID;
|
||||
isReply = threadID !== postID;
|
||||
if ((ref2 = QR.db) != null) {
|
||||
ref2.set({
|
||||
if ((ref3 = QR.db) != null) {
|
||||
ref3.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
@ -7889,10 +7889,10 @@
|
||||
postsCount = QR.posts.length - 1;
|
||||
QR.cooldown.auto = postsCount && isReply;
|
||||
lastPostToThread = !((function() {
|
||||
var k, len1, p, ref3;
|
||||
ref3 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||
p = ref3[k];
|
||||
var k, len1, p, ref4;
|
||||
ref4 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref4.length; k < len1; k++) {
|
||||
p = ref4[k];
|
||||
if (p.thread === post.thread) {
|
||||
return true;
|
||||
}
|
||||
@ -8317,6 +8317,7 @@
|
||||
}
|
||||
this.create();
|
||||
if (focus) {
|
||||
$.addClass(QR.nodes.el, 'focus');
|
||||
return this.nodes.input.focus();
|
||||
}
|
||||
},
|
||||
@ -8610,6 +8611,7 @@
|
||||
return;
|
||||
}
|
||||
if (focus) {
|
||||
$.addClass(QR.nodes.el, 'focus');
|
||||
this.nodes.counter.focus();
|
||||
}
|
||||
if (this.timeouts.destroy) {
|
||||
|
||||
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.17.9' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.17.10' />
|
||||
</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.17.9' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.17.10' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.17.9",
|
||||
"date": "2015-11-25T05:45:29.594Z"
|
||||
"version": "1.11.17.10",
|
||||
"date": "2015-11-26T03:13:39.039Z"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user