Release 4chan X v1.13.10.7.
This commit is contained in:
parent
8a14c2b90d
commit
e48c5be9ca
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.13.10
|
||||
|
||||
**v1.13.10.7** *(2017-08-24)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.7/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.7/builds/4chan-X-noupdate.crx)]
|
||||
- Fix quote preview bug when reply is in index data but no thread object exists. #1478
|
||||
|
||||
**v1.13.10.6** *(2017-08-10)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.6/builds/4chan-X-noupdate.crx)]
|
||||
- Disable 'Redirect to HTTPS' on platforms where we use localStorage for saving settings.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.10.6
|
||||
// @version 1.13.10.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.10.6
|
||||
// @version 1.13.10.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.10.6',
|
||||
VERSION: '1.13.10.7',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -5738,9 +5738,8 @@ Fetcher = (function() {
|
||||
this.insert(post);
|
||||
return;
|
||||
}
|
||||
if ((post = (ref = Index.replyData) != null ? ref[this.boardID + "." + this.postID] : void 0)) {
|
||||
if ((post = (ref = Index.replyData) != null ? ref[this.boardID + "." + this.postID] : void 0) && (thread = g.threads[this.boardID + "." + this.threadID])) {
|
||||
board = g.boards[this.boardID];
|
||||
thread = g.threads[this.boardID + "." + this.threadID];
|
||||
post = new Post(Build.postFromObject(post, this.boardID), thread, board);
|
||||
post.isFetchedQuote = true;
|
||||
Main.callbackNodes('Post', [post]);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.10.6
|
||||
// @version 1.13.10.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.10.6',
|
||||
VERSION: '1.13.10.7',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -5738,9 +5738,8 @@ Fetcher = (function() {
|
||||
this.insert(post);
|
||||
return;
|
||||
}
|
||||
if ((post = (ref = Index.replyData) != null ? ref[this.boardID + "." + this.postID] : void 0)) {
|
||||
if ((post = (ref = Index.replyData) != null ? ref[this.boardID + "." + this.postID] : void 0) && (thread = g.threads[this.boardID + "." + this.threadID])) {
|
||||
board = g.boards[this.boardID];
|
||||
thread = g.threads[this.boardID + "." + this.threadID];
|
||||
post = new Post(Build.postFromObject(post, this.boardID), thread, board);
|
||||
post.isFetchedQuote = true;
|
||||
Main.callbackNodes('Post', [post]);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.10.6
|
||||
// @version 1.13.10.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.10.6
|
||||
// @version 1.13.10.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.10.6',
|
||||
VERSION: '1.13.10.7',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -5738,9 +5738,8 @@ Fetcher = (function() {
|
||||
this.insert(post);
|
||||
return;
|
||||
}
|
||||
if ((post = (ref = Index.replyData) != null ? ref[this.boardID + "." + this.postID] : void 0)) {
|
||||
if ((post = (ref = Index.replyData) != null ? ref[this.boardID + "." + this.postID] : void 0) && (thread = g.threads[this.boardID + "." + this.threadID])) {
|
||||
board = g.boards[this.boardID];
|
||||
thread = g.threads[this.boardID + "." + this.threadID];
|
||||
post = new Post(Build.postFromObject(post, this.boardID), thread, board);
|
||||
post.isFetchedQuote = true;
|
||||
Main.callbackNodes('Post', [post]);
|
||||
|
||||
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.10.6' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.10.7' />
|
||||
</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.10.6' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.10.7' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.10.6",
|
||||
"date": "2017-08-10T13:38:49.065Z"
|
||||
"version": "1.13.10.7",
|
||||
"date": "2017-08-24T23:34:21.046Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user