Release 4chan X v1.11.14.6.

This commit is contained in:
ccd0 2015-10-29 21:13:04 -07:00
parent 8ad001f0e5
commit 3dcd27aefd
13 changed files with 30 additions and 18 deletions

View File

@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.14
**v1.11.14.6** *(2015-10-29)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.14.6/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.14.6/builds/4chan-X-noupdate.crx "Chromium version")]
- Check for empty or quotelink-only comments before submitting posts on /r9k/.
**v1.11.14.5** *(2015-10-27)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.14.5/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.14.5/builds/4chan-X-noupdate.crx "Chromium version")]
- Minor bugfixes.

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X beta
// @version 1.11.14.5
// @version 1.11.14.6
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -414,7 +414,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.14.5',
VERSION: '1.11.14.6',
NAMESPACE: '4chan X.',
boards: {}
};
@ -7605,7 +7605,7 @@
return $.event('QRDialogCreation', null, dialog);
},
submit: function(e) {
var captcha, cb, err, extra, filetag, formData, options, post, textOnly, thread, threadID;
var captcha, cb, err, extra, filetag, formData, options, post, ref, textOnly, thread, threadID;
if (e != null) {
e.preventDefault();
}
@ -7635,10 +7635,13 @@
} else if (g.BOARD.threads[threadID].isClosed) {
err = 'You can\'t reply to this thread anymore.';
} else if (!(post.com || post.file)) {
err = 'No file selected.';
err = 'No comment or file.';
} else if (post.file && thread.fileLimit) {
err = 'Max limit of image replies has been reached.';
}
if (g.BOARD.ID === 'r9k' && !((ref = post.com) != null ? ref.match(/[a-z-]/i) : void 0)) {
err || (err = 'Original comment required.');
}
if (QR.captcha.isEnabled && !err) {
captcha = QR.captcha.getOne();
if (!captcha) {

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.11.14.5
// @version 1.11.14.6
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -414,7 +414,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.14.5',
VERSION: '1.11.14.6',
NAMESPACE: '4chan X.',
boards: {}
};
@ -7605,7 +7605,7 @@
return $.event('QRDialogCreation', null, dialog);
},
submit: function(e) {
var captcha, cb, err, extra, filetag, formData, options, post, textOnly, thread, threadID;
var captcha, cb, err, extra, filetag, formData, options, post, ref, textOnly, thread, threadID;
if (e != null) {
e.preventDefault();
}
@ -7635,10 +7635,13 @@
} else if (g.BOARD.threads[threadID].isClosed) {
err = 'You can\'t reply to this thread anymore.';
} else if (!(post.com || post.file)) {
err = 'No file selected.';
err = 'No comment or file.';
} else if (post.file && thread.fileLimit) {
err = 'Max limit of image replies has been reached.';
}
if (g.BOARD.ID === 'r9k' && !((ref = post.com) != null ? ref.match(/[a-z-]/i) : void 0)) {
err || (err = 'Original comment required.');
}
if (QR.captcha.isEnabled && !err) {
captcha = QR.captcha.getOne();
if (!captcha) {

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.11.14.5
// @version 1.11.14.6
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -414,7 +414,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.14.5',
VERSION: '1.11.14.6',
NAMESPACE: '4chan X.',
boards: {}
};
@ -7605,7 +7605,7 @@
return $.event('QRDialogCreation', null, dialog);
},
submit: function(e) {
var captcha, cb, err, extra, filetag, formData, options, post, textOnly, thread, threadID;
var captcha, cb, err, extra, filetag, formData, options, post, ref, textOnly, thread, threadID;
if (e != null) {
e.preventDefault();
}
@ -7635,10 +7635,13 @@
} else if (g.BOARD.threads[threadID].isClosed) {
err = 'You can\'t reply to this thread anymore.';
} else if (!(post.com || post.file)) {
err = 'No file selected.';
err = 'No comment or file.';
} else if (post.file && thread.fileLimit) {
err = 'Max limit of image replies has been reached.';
}
if (g.BOARD.ID === 'r9k' && !((ref = post.com) != null ? ref.match(/[a-z-]/i) : void 0)) {
err || (err = 'Original comment required.');
}
if (QR.captcha.isEnabled && !err) {
captcha = QR.captcha.getOne();
if (!captcha) {

Binary file not shown.

View File

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

View File

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

View File

@ -4,8 +4,8 @@
"meta": {
"name": "4chan X",
"fork": "ccd0",
"version": "1.11.14.5",
"date": "2015-10-28T02:18:17.245Z",
"version": "1.11.14.6",
"date": "2015-10-30T04:11:49.050Z",
"page": "https://www.4chan-x.net/",
"downloads": "https://www.4chan-x.net/builds/",
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",