Release 4chan X v1.13.8.1.
This commit is contained in:
parent
b9f0081ac4
commit
6281564344
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.13.8
|
||||
|
||||
**v1.13.8.1** *(2017-02-10)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.1/builds/4chan-X-noupdate.crx)]
|
||||
- Fix bug from v1.13.8.0 causing v1 captcha sometimes not to reload when needed.
|
||||
|
||||
**v1.13.8.0** *(2017-02-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.0/builds/4chan-X-noupdate.crx)]
|
||||
- Based on v1.13.7.2.
|
||||
- Retry posting on connection errors using the same captcha.
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.8.0
|
||||
// @version 1.13.8.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.8.0
|
||||
// @version 1.13.8.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -151,7 +151,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.8.0',
|
||||
VERSION: '1.13.8.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -21463,7 +21463,7 @@ QR = (function() {
|
||||
return $.event('QRDialogCreation', null, dialog);
|
||||
},
|
||||
submit: function(e) {
|
||||
var captcha, err, extra, filetag, formData, options, post, ref, thread, threadID, wasAuto;
|
||||
var captcha, err, extra, filetag, formData, options, post, ref, thread, threadID;
|
||||
if (e != null) {
|
||||
e.preventDefault();
|
||||
}
|
||||
@ -21474,9 +21474,6 @@ QR = (function() {
|
||||
$.forceSync('cooldowns');
|
||||
if (QR.cooldown.seconds) {
|
||||
QR.cooldown.auto = !QR.cooldown.auto;
|
||||
if (QR.cooldown.auto) {
|
||||
QR.captcha.setup(true);
|
||||
}
|
||||
QR.status();
|
||||
return;
|
||||
}
|
||||
@ -21518,7 +21515,6 @@ QR = (function() {
|
||||
QR.error(err);
|
||||
return;
|
||||
}
|
||||
wasAuto = QR.cooldown.auto;
|
||||
QR.cooldown.auto = QR.posts.length > 1;
|
||||
post.lock();
|
||||
formData = {
|
||||
@ -21577,10 +21573,7 @@ QR = (function() {
|
||||
}
|
||||
QR.req = $.ajax("https://sys.4chan.org/" + g.BOARD + "/post", options, extra);
|
||||
QR.req.progress = '...';
|
||||
QR.status();
|
||||
if (!wasAuto) {
|
||||
return QR.captcha.setup(true);
|
||||
}
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, connErr, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
@ -21656,6 +21649,7 @@ QR = (function() {
|
||||
})());
|
||||
if (postsCount) {
|
||||
post.rm();
|
||||
QR.captcha.setup(d.activeElement === QR.nodes.status);
|
||||
} else if (Conf['Persistent QR']) {
|
||||
post.rm();
|
||||
if (Conf['Auto Hide QR']) {
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.8.0
|
||||
// @version 1.13.8.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -151,7 +151,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.8.0',
|
||||
VERSION: '1.13.8.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -21463,7 +21463,7 @@ QR = (function() {
|
||||
return $.event('QRDialogCreation', null, dialog);
|
||||
},
|
||||
submit: function(e) {
|
||||
var captcha, err, extra, filetag, formData, options, post, ref, thread, threadID, wasAuto;
|
||||
var captcha, err, extra, filetag, formData, options, post, ref, thread, threadID;
|
||||
if (e != null) {
|
||||
e.preventDefault();
|
||||
}
|
||||
@ -21474,9 +21474,6 @@ QR = (function() {
|
||||
$.forceSync('cooldowns');
|
||||
if (QR.cooldown.seconds) {
|
||||
QR.cooldown.auto = !QR.cooldown.auto;
|
||||
if (QR.cooldown.auto) {
|
||||
QR.captcha.setup(true);
|
||||
}
|
||||
QR.status();
|
||||
return;
|
||||
}
|
||||
@ -21518,7 +21515,6 @@ QR = (function() {
|
||||
QR.error(err);
|
||||
return;
|
||||
}
|
||||
wasAuto = QR.cooldown.auto;
|
||||
QR.cooldown.auto = QR.posts.length > 1;
|
||||
post.lock();
|
||||
formData = {
|
||||
@ -21577,10 +21573,7 @@ QR = (function() {
|
||||
}
|
||||
QR.req = $.ajax("https://sys.4chan.org/" + g.BOARD + "/post", options, extra);
|
||||
QR.req.progress = '...';
|
||||
QR.status();
|
||||
if (!wasAuto) {
|
||||
return QR.captcha.setup(true);
|
||||
}
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, connErr, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
@ -21656,6 +21649,7 @@ QR = (function() {
|
||||
})());
|
||||
if (postsCount) {
|
||||
post.rm();
|
||||
QR.captcha.setup(d.activeElement === QR.nodes.status);
|
||||
} else if (Conf['Persistent QR']) {
|
||||
post.rm();
|
||||
if (Conf['Auto Hide QR']) {
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.8.0
|
||||
// @version 1.13.8.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.8.0
|
||||
// @version 1.13.8.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -151,7 +151,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.8.0',
|
||||
VERSION: '1.13.8.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -21463,7 +21463,7 @@ QR = (function() {
|
||||
return $.event('QRDialogCreation', null, dialog);
|
||||
},
|
||||
submit: function(e) {
|
||||
var captcha, err, extra, filetag, formData, options, post, ref, thread, threadID, wasAuto;
|
||||
var captcha, err, extra, filetag, formData, options, post, ref, thread, threadID;
|
||||
if (e != null) {
|
||||
e.preventDefault();
|
||||
}
|
||||
@ -21474,9 +21474,6 @@ QR = (function() {
|
||||
$.forceSync('cooldowns');
|
||||
if (QR.cooldown.seconds) {
|
||||
QR.cooldown.auto = !QR.cooldown.auto;
|
||||
if (QR.cooldown.auto) {
|
||||
QR.captcha.setup(true);
|
||||
}
|
||||
QR.status();
|
||||
return;
|
||||
}
|
||||
@ -21518,7 +21515,6 @@ QR = (function() {
|
||||
QR.error(err);
|
||||
return;
|
||||
}
|
||||
wasAuto = QR.cooldown.auto;
|
||||
QR.cooldown.auto = QR.posts.length > 1;
|
||||
post.lock();
|
||||
formData = {
|
||||
@ -21577,10 +21573,7 @@ QR = (function() {
|
||||
}
|
||||
QR.req = $.ajax("https://sys.4chan.org/" + g.BOARD + "/post", options, extra);
|
||||
QR.req.progress = '...';
|
||||
QR.status();
|
||||
if (!wasAuto) {
|
||||
return QR.captcha.setup(true);
|
||||
}
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, connErr, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
@ -21656,6 +21649,7 @@ QR = (function() {
|
||||
})());
|
||||
if (postsCount) {
|
||||
post.rm();
|
||||
QR.captcha.setup(d.activeElement === QR.nodes.status);
|
||||
} else if (Conf['Persistent QR']) {
|
||||
post.rm();
|
||||
if (Conf['Auto Hide QR']) {
|
||||
|
||||
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.13.8.0' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.8.1' />
|
||||
</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.13.8.0' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.8.1' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.8.0",
|
||||
"date": "2017-02-07T20:07:59.893Z"
|
||||
"version": "1.13.8.1",
|
||||
"date": "2017-02-10T19:44:51.235Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user