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
|
||||||
|
|
||||||
|
**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")]
|
**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.
|
- Minor captcha fixes.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.17.3
|
// @version 1.11.17.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.17.3
|
// @version 1.11.17.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.17.3',
|
VERSION: '1.11.17.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -6958,7 +6958,9 @@
|
|||||||
if (!Conf['Quick Reply']) {
|
if (!Conf['Quick Reply']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.db = new DataBoard('yourPosts');
|
if (Conf['Mark Quotes of You']) {
|
||||||
|
this.db = new DataBoard('yourPosts');
|
||||||
|
}
|
||||||
this.posts = [];
|
this.posts = [];
|
||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
return;
|
||||||
@ -7806,7 +7808,7 @@
|
|||||||
return QR.status();
|
return QR.status();
|
||||||
},
|
},
|
||||||
response: function() {
|
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;
|
req = QR.req;
|
||||||
delete QR.req;
|
delete QR.req;
|
||||||
post = QR.posts[0];
|
post = QR.posts[0];
|
||||||
@ -7863,12 +7865,14 @@
|
|||||||
postID = +postID;
|
postID = +postID;
|
||||||
threadID = +threadID || postID;
|
threadID = +threadID || postID;
|
||||||
isReply = threadID !== postID;
|
isReply = threadID !== postID;
|
||||||
QR.db.set({
|
if ((ref2 = QR.db) != null) {
|
||||||
boardID: g.BOARD.ID,
|
ref2.set({
|
||||||
threadID: threadID,
|
boardID: g.BOARD.ID,
|
||||||
postID: postID,
|
threadID: threadID,
|
||||||
val: true
|
postID: postID,
|
||||||
});
|
val: true
|
||||||
|
});
|
||||||
|
}
|
||||||
$.event('QRPostSuccessful', {
|
$.event('QRPostSuccessful', {
|
||||||
boardID: g.BOARD.ID,
|
boardID: g.BOARD.ID,
|
||||||
threadID: threadID,
|
threadID: threadID,
|
||||||
@ -7882,10 +7886,10 @@
|
|||||||
postsCount = QR.posts.length - 1;
|
postsCount = QR.posts.length - 1;
|
||||||
QR.cooldown.auto = postsCount && isReply;
|
QR.cooldown.auto = postsCount && isReply;
|
||||||
lastPostToThread = !((function() {
|
lastPostToThread = !((function() {
|
||||||
var k, len1, p, ref2;
|
var k, len1, p, ref3;
|
||||||
ref2 = QR.posts.slice(1);
|
ref3 = QR.posts.slice(1);
|
||||||
for (k = 0, len1 = ref2.length; k < len1; k++) {
|
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||||
p = ref2[k];
|
p = ref3[k];
|
||||||
if (p.thread === post.thread) {
|
if (p.thread === post.thread) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -8852,6 +8856,9 @@
|
|||||||
|
|
||||||
PostSuccessful = {
|
PostSuccessful = {
|
||||||
init: function() {
|
init: function() {
|
||||||
|
if (!Conf['Mark Quotes of You']) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
return $.ready(this.ready);
|
return $.ready(this.ready);
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.17.3
|
// @version 1.11.17.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.17.3',
|
VERSION: '1.11.17.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -6958,7 +6958,9 @@
|
|||||||
if (!Conf['Quick Reply']) {
|
if (!Conf['Quick Reply']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.db = new DataBoard('yourPosts');
|
if (Conf['Mark Quotes of You']) {
|
||||||
|
this.db = new DataBoard('yourPosts');
|
||||||
|
}
|
||||||
this.posts = [];
|
this.posts = [];
|
||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
return;
|
||||||
@ -7806,7 +7808,7 @@
|
|||||||
return QR.status();
|
return QR.status();
|
||||||
},
|
},
|
||||||
response: function() {
|
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;
|
req = QR.req;
|
||||||
delete QR.req;
|
delete QR.req;
|
||||||
post = QR.posts[0];
|
post = QR.posts[0];
|
||||||
@ -7863,12 +7865,14 @@
|
|||||||
postID = +postID;
|
postID = +postID;
|
||||||
threadID = +threadID || postID;
|
threadID = +threadID || postID;
|
||||||
isReply = threadID !== postID;
|
isReply = threadID !== postID;
|
||||||
QR.db.set({
|
if ((ref2 = QR.db) != null) {
|
||||||
boardID: g.BOARD.ID,
|
ref2.set({
|
||||||
threadID: threadID,
|
boardID: g.BOARD.ID,
|
||||||
postID: postID,
|
threadID: threadID,
|
||||||
val: true
|
postID: postID,
|
||||||
});
|
val: true
|
||||||
|
});
|
||||||
|
}
|
||||||
$.event('QRPostSuccessful', {
|
$.event('QRPostSuccessful', {
|
||||||
boardID: g.BOARD.ID,
|
boardID: g.BOARD.ID,
|
||||||
threadID: threadID,
|
threadID: threadID,
|
||||||
@ -7882,10 +7886,10 @@
|
|||||||
postsCount = QR.posts.length - 1;
|
postsCount = QR.posts.length - 1;
|
||||||
QR.cooldown.auto = postsCount && isReply;
|
QR.cooldown.auto = postsCount && isReply;
|
||||||
lastPostToThread = !((function() {
|
lastPostToThread = !((function() {
|
||||||
var k, len1, p, ref2;
|
var k, len1, p, ref3;
|
||||||
ref2 = QR.posts.slice(1);
|
ref3 = QR.posts.slice(1);
|
||||||
for (k = 0, len1 = ref2.length; k < len1; k++) {
|
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||||
p = ref2[k];
|
p = ref3[k];
|
||||||
if (p.thread === post.thread) {
|
if (p.thread === post.thread) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -8852,6 +8856,9 @@
|
|||||||
|
|
||||||
PostSuccessful = {
|
PostSuccessful = {
|
||||||
init: function() {
|
init: function() {
|
||||||
|
if (!Conf['Mark Quotes of You']) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
return $.ready(this.ready);
|
return $.ready(this.ready);
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.17.3
|
// @version 1.11.17.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.17.3
|
// @version 1.11.17.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.17.3',
|
VERSION: '1.11.17.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -6958,7 +6958,9 @@
|
|||||||
if (!Conf['Quick Reply']) {
|
if (!Conf['Quick Reply']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.db = new DataBoard('yourPosts');
|
if (Conf['Mark Quotes of You']) {
|
||||||
|
this.db = new DataBoard('yourPosts');
|
||||||
|
}
|
||||||
this.posts = [];
|
this.posts = [];
|
||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
return;
|
||||||
@ -7806,7 +7808,7 @@
|
|||||||
return QR.status();
|
return QR.status();
|
||||||
},
|
},
|
||||||
response: function() {
|
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;
|
req = QR.req;
|
||||||
delete QR.req;
|
delete QR.req;
|
||||||
post = QR.posts[0];
|
post = QR.posts[0];
|
||||||
@ -7863,12 +7865,14 @@
|
|||||||
postID = +postID;
|
postID = +postID;
|
||||||
threadID = +threadID || postID;
|
threadID = +threadID || postID;
|
||||||
isReply = threadID !== postID;
|
isReply = threadID !== postID;
|
||||||
QR.db.set({
|
if ((ref2 = QR.db) != null) {
|
||||||
boardID: g.BOARD.ID,
|
ref2.set({
|
||||||
threadID: threadID,
|
boardID: g.BOARD.ID,
|
||||||
postID: postID,
|
threadID: threadID,
|
||||||
val: true
|
postID: postID,
|
||||||
});
|
val: true
|
||||||
|
});
|
||||||
|
}
|
||||||
$.event('QRPostSuccessful', {
|
$.event('QRPostSuccessful', {
|
||||||
boardID: g.BOARD.ID,
|
boardID: g.BOARD.ID,
|
||||||
threadID: threadID,
|
threadID: threadID,
|
||||||
@ -7882,10 +7886,10 @@
|
|||||||
postsCount = QR.posts.length - 1;
|
postsCount = QR.posts.length - 1;
|
||||||
QR.cooldown.auto = postsCount && isReply;
|
QR.cooldown.auto = postsCount && isReply;
|
||||||
lastPostToThread = !((function() {
|
lastPostToThread = !((function() {
|
||||||
var k, len1, p, ref2;
|
var k, len1, p, ref3;
|
||||||
ref2 = QR.posts.slice(1);
|
ref3 = QR.posts.slice(1);
|
||||||
for (k = 0, len1 = ref2.length; k < len1; k++) {
|
for (k = 0, len1 = ref3.length; k < len1; k++) {
|
||||||
p = ref2[k];
|
p = ref3[k];
|
||||||
if (p.thread === post.thread) {
|
if (p.thread === post.thread) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -8852,6 +8856,9 @@
|
|||||||
|
|
||||||
PostSuccessful = {
|
PostSuccessful = {
|
||||||
init: function() {
|
init: function() {
|
||||||
|
if (!Conf['Mark Quotes of You']) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
return $.ready(this.ready);
|
return $.ready(this.ready);
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
|
|||||||
Binary file not shown.
@ -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.17.3' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.17.4' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -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.17.3' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.17.4' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.17.3",
|
"version": "1.11.17.4",
|
||||||
"date": "2015-11-18T06:28:00.317Z"
|
"date": "2015-11-19T01:33:27.887Z"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user