Release 4chan X v1.11.17.4.
This commit is contained in:
parent
d2a9e49959
commit
6dc10d2c1f
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
||||
|
||||
### v1.11.17
|
||||
|
||||
**v1.11.17.4** *(2015-11-18)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.4/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.4/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Don't record posts as yours when `Mark Quotes of You` is disabled.
|
||||
|
||||
**v1.11.17.3** *(2015-11-17)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.3/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Minor captcha fixes.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.17.3
|
||||
// @version 1.11.17.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.17.3
|
||||
// @version 1.11.17.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.3',
|
||||
VERSION: '1.11.17.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6958,7 +6958,9 @@
|
||||
if (!Conf['Quick Reply']) {
|
||||
return;
|
||||
}
|
||||
this.db = new DataBoard('yourPosts');
|
||||
if (Conf['Mark Quotes of You']) {
|
||||
this.db = new DataBoard('yourPosts');
|
||||
}
|
||||
this.posts = [];
|
||||
if (g.VIEW === 'archive') {
|
||||
return;
|
||||
@ -7806,7 +7808,7 @@
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, req, resDoc, seconds, threadID;
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
req = QR.req;
|
||||
delete QR.req;
|
||||
post = QR.posts[0];
|
||||
@ -7863,12 +7865,14 @@
|
||||
postID = +postID;
|
||||
threadID = +threadID || postID;
|
||||
isReply = threadID !== postID;
|
||||
QR.db.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
val: true
|
||||
});
|
||||
if ((ref2 = QR.db) != null) {
|
||||
ref2.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
val: true
|
||||
});
|
||||
}
|
||||
$.event('QRPostSuccessful', {
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
@ -7882,10 +7886,10 @@
|
||||
postsCount = QR.posts.length - 1;
|
||||
QR.cooldown.auto = postsCount && isReply;
|
||||
lastPostToThread = !((function() {
|
||||
var k, len1, p, ref2;
|
||||
ref2 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref2.length; k < len1; k++) {
|
||||
p = ref2[k];
|
||||
var k, len1, p, ref3;
|
||||
ref3 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||
p = ref3[k];
|
||||
if (p.thread === post.thread) {
|
||||
return true;
|
||||
}
|
||||
@ -8852,6 +8856,9 @@
|
||||
|
||||
PostSuccessful = {
|
||||
init: function() {
|
||||
if (!Conf['Mark Quotes of You']) {
|
||||
return;
|
||||
}
|
||||
return $.ready(this.ready);
|
||||
},
|
||||
ready: function() {
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.3
|
||||
// @version 1.11.17.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.3',
|
||||
VERSION: '1.11.17.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6958,7 +6958,9 @@
|
||||
if (!Conf['Quick Reply']) {
|
||||
return;
|
||||
}
|
||||
this.db = new DataBoard('yourPosts');
|
||||
if (Conf['Mark Quotes of You']) {
|
||||
this.db = new DataBoard('yourPosts');
|
||||
}
|
||||
this.posts = [];
|
||||
if (g.VIEW === 'archive') {
|
||||
return;
|
||||
@ -7806,7 +7808,7 @@
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, req, resDoc, seconds, threadID;
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
req = QR.req;
|
||||
delete QR.req;
|
||||
post = QR.posts[0];
|
||||
@ -7863,12 +7865,14 @@
|
||||
postID = +postID;
|
||||
threadID = +threadID || postID;
|
||||
isReply = threadID !== postID;
|
||||
QR.db.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
val: true
|
||||
});
|
||||
if ((ref2 = QR.db) != null) {
|
||||
ref2.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
val: true
|
||||
});
|
||||
}
|
||||
$.event('QRPostSuccessful', {
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
@ -7882,10 +7886,10 @@
|
||||
postsCount = QR.posts.length - 1;
|
||||
QR.cooldown.auto = postsCount && isReply;
|
||||
lastPostToThread = !((function() {
|
||||
var k, len1, p, ref2;
|
||||
ref2 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref2.length; k < len1; k++) {
|
||||
p = ref2[k];
|
||||
var k, len1, p, ref3;
|
||||
ref3 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||
p = ref3[k];
|
||||
if (p.thread === post.thread) {
|
||||
return true;
|
||||
}
|
||||
@ -8852,6 +8856,9 @@
|
||||
|
||||
PostSuccessful = {
|
||||
init: function() {
|
||||
if (!Conf['Mark Quotes of You']) {
|
||||
return;
|
||||
}
|
||||
return $.ready(this.ready);
|
||||
},
|
||||
ready: function() {
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.3
|
||||
// @version 1.11.17.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.3
|
||||
// @version 1.11.17.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.3',
|
||||
VERSION: '1.11.17.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6958,7 +6958,9 @@
|
||||
if (!Conf['Quick Reply']) {
|
||||
return;
|
||||
}
|
||||
this.db = new DataBoard('yourPosts');
|
||||
if (Conf['Mark Quotes of You']) {
|
||||
this.db = new DataBoard('yourPosts');
|
||||
}
|
||||
this.posts = [];
|
||||
if (g.VIEW === 'archive') {
|
||||
return;
|
||||
@ -7806,7 +7808,7 @@
|
||||
return QR.status();
|
||||
},
|
||||
response: function() {
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, req, resDoc, seconds, threadID;
|
||||
var URL, _, ban, err, h1, isReply, lastPostToThread, m, open, post, postID, postsCount, ref, ref1, ref2, req, resDoc, seconds, threadID;
|
||||
req = QR.req;
|
||||
delete QR.req;
|
||||
post = QR.posts[0];
|
||||
@ -7863,12 +7865,14 @@
|
||||
postID = +postID;
|
||||
threadID = +threadID || postID;
|
||||
isReply = threadID !== postID;
|
||||
QR.db.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
val: true
|
||||
});
|
||||
if ((ref2 = QR.db) != null) {
|
||||
ref2.set({
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
postID: postID,
|
||||
val: true
|
||||
});
|
||||
}
|
||||
$.event('QRPostSuccessful', {
|
||||
boardID: g.BOARD.ID,
|
||||
threadID: threadID,
|
||||
@ -7882,10 +7886,10 @@
|
||||
postsCount = QR.posts.length - 1;
|
||||
QR.cooldown.auto = postsCount && isReply;
|
||||
lastPostToThread = !((function() {
|
||||
var k, len1, p, ref2;
|
||||
ref2 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref2.length; k < len1; k++) {
|
||||
p = ref2[k];
|
||||
var k, len1, p, ref3;
|
||||
ref3 = QR.posts.slice(1);
|
||||
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||
p = ref3[k];
|
||||
if (p.thread === post.thread) {
|
||||
return true;
|
||||
}
|
||||
@ -8852,6 +8856,9 @@
|
||||
|
||||
PostSuccessful = {
|
||||
init: function() {
|
||||
if (!Conf['Mark Quotes of You']) {
|
||||
return;
|
||||
}
|
||||
return $.ready(this.ready);
|
||||
},
|
||||
ready: function() {
|
||||
|
||||
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.3' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.17.4' />
|
||||
</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.3' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.17.4' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.17.3",
|
||||
"date": "2015-11-18T06:28:00.317Z"
|
||||
"version": "1.11.17.4",
|
||||
"date": "2015-11-19T01:33:27.887Z"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user