Release 4chan X v1.14.5.11.
This commit is contained in:
parent
f3c80c7a48
commit
744f12dfda
@ -4,6 +4,10 @@
|
|||||||
|
|
||||||
### v1.14.5
|
### v1.14.5
|
||||||
|
|
||||||
|
**v1.14.5.11** *(2019-01-26)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.5.11/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.5.11/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Fix regression that broke favicon turning red on thread archival/404. #2190
|
||||||
|
- Fix 'Auto Watch Reply' in corner cases when not all thread info is available.
|
||||||
|
|
||||||
**v1.14.5.10** *(2019-01-25)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.5.10/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.5.10/builds/4chan-X-noupdate.crx)]
|
**v1.14.5.10** *(2019-01-25)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.5.10/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.5.10/builds/4chan-X-noupdate.crx)]
|
||||||
- Fix performance issues with video hover preview in long threads. #2214
|
- Fix performance issues with video hover preview in long threads. #2214
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.5.10
|
// @version 1.14.5.11
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.5.10
|
// @version 1.14.5.11
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -198,7 +198,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.5.10',
|
VERSION: '1.14.5.11',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -20076,7 +20076,7 @@ ThreadWatcher = (function() {
|
|||||||
return ThreadWatcher.addRaw(boardID, threadID, {});
|
return ThreadWatcher.addRaw(boardID, threadID, {});
|
||||||
}
|
}
|
||||||
} else if (Conf['Auto Watch Reply']) {
|
} else if (Conf['Auto Watch Reply']) {
|
||||||
return ThreadWatcher.add(g.threads[boardID + '.' + threadID]);
|
return ThreadWatcher.add(g.threads[boardID + '.' + threadID] || new Thread(threadID, g.boards[boardID] || new Board(boardID)));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onIndexUpdate: function(e) {
|
onIndexUpdate: function(e) {
|
||||||
@ -20486,7 +20486,7 @@ ThreadWatcher = (function() {
|
|||||||
ThreadWatcher.setPrefixes(threads);
|
ThreadWatcher.setPrefixes(threads);
|
||||||
for (i = 0, len1 = threads.length; i < len1; i++) {
|
for (i = 0, len1 = threads.length; i < len1; i++) {
|
||||||
ref = threads[i], siteID = ref.siteID, boardID = ref.boardID, threadID = ref.threadID, data = ref.data;
|
ref = threads[i], siteID = ref.siteID, boardID = ref.boardID, threadID = ref.threadID, data = ref.data;
|
||||||
if ((data.excerpt == null) && siteID === Site.hostname && (thread = g.threads[boardID + "." + threadID])) {
|
if ((data.excerpt == null) && siteID === Site.hostname && (thread = g.threads[boardID + "." + threadID]) && thread.OP) {
|
||||||
ThreadWatcher.db.extend({
|
ThreadWatcher.db.extend({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
threadID: threadID,
|
threadID: threadID,
|
||||||
@ -20642,7 +20642,9 @@ ThreadWatcher = (function() {
|
|||||||
}
|
}
|
||||||
data.isDead = true;
|
data.isDead = true;
|
||||||
}
|
}
|
||||||
data.excerpt = Get.threadExcerpt(thread);
|
if (thread.OP) {
|
||||||
|
data.excerpt = Get.threadExcerpt(thread);
|
||||||
|
}
|
||||||
return ThreadWatcher.addRaw(boardID, threadID, data);
|
return ThreadWatcher.addRaw(boardID, threadID, data);
|
||||||
},
|
},
|
||||||
addRaw: function(boardID, threadID, data) {
|
addRaw: function(boardID, threadID, data) {
|
||||||
@ -20835,7 +20837,12 @@ Unread = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$.one(d, '4chanXInitFinished', Unread.ready);
|
$.one(d, '4chanXInitFinished', Unread.ready);
|
||||||
return $.on(d, 'PostsInserted', Unread.onUpdate);
|
$.on(d, 'PostsInserted', Unread.onUpdate);
|
||||||
|
return $.on(d, 'ThreadUpdate', function(e) {
|
||||||
|
if (e.detail[404]) {
|
||||||
|
return Unread.update();
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
if (Conf['Remember Last Read Post'] && Conf['Scroll to Last Read Post']) {
|
if (Conf['Remember Last Read Post'] && Conf['Scroll to Last Read Post']) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.5.10
|
// @version 1.14.5.11
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -198,7 +198,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.5.10',
|
VERSION: '1.14.5.11',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -20076,7 +20076,7 @@ ThreadWatcher = (function() {
|
|||||||
return ThreadWatcher.addRaw(boardID, threadID, {});
|
return ThreadWatcher.addRaw(boardID, threadID, {});
|
||||||
}
|
}
|
||||||
} else if (Conf['Auto Watch Reply']) {
|
} else if (Conf['Auto Watch Reply']) {
|
||||||
return ThreadWatcher.add(g.threads[boardID + '.' + threadID]);
|
return ThreadWatcher.add(g.threads[boardID + '.' + threadID] || new Thread(threadID, g.boards[boardID] || new Board(boardID)));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onIndexUpdate: function(e) {
|
onIndexUpdate: function(e) {
|
||||||
@ -20486,7 +20486,7 @@ ThreadWatcher = (function() {
|
|||||||
ThreadWatcher.setPrefixes(threads);
|
ThreadWatcher.setPrefixes(threads);
|
||||||
for (i = 0, len1 = threads.length; i < len1; i++) {
|
for (i = 0, len1 = threads.length; i < len1; i++) {
|
||||||
ref = threads[i], siteID = ref.siteID, boardID = ref.boardID, threadID = ref.threadID, data = ref.data;
|
ref = threads[i], siteID = ref.siteID, boardID = ref.boardID, threadID = ref.threadID, data = ref.data;
|
||||||
if ((data.excerpt == null) && siteID === Site.hostname && (thread = g.threads[boardID + "." + threadID])) {
|
if ((data.excerpt == null) && siteID === Site.hostname && (thread = g.threads[boardID + "." + threadID]) && thread.OP) {
|
||||||
ThreadWatcher.db.extend({
|
ThreadWatcher.db.extend({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
threadID: threadID,
|
threadID: threadID,
|
||||||
@ -20642,7 +20642,9 @@ ThreadWatcher = (function() {
|
|||||||
}
|
}
|
||||||
data.isDead = true;
|
data.isDead = true;
|
||||||
}
|
}
|
||||||
data.excerpt = Get.threadExcerpt(thread);
|
if (thread.OP) {
|
||||||
|
data.excerpt = Get.threadExcerpt(thread);
|
||||||
|
}
|
||||||
return ThreadWatcher.addRaw(boardID, threadID, data);
|
return ThreadWatcher.addRaw(boardID, threadID, data);
|
||||||
},
|
},
|
||||||
addRaw: function(boardID, threadID, data) {
|
addRaw: function(boardID, threadID, data) {
|
||||||
@ -20835,7 +20837,12 @@ Unread = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$.one(d, '4chanXInitFinished', Unread.ready);
|
$.one(d, '4chanXInitFinished', Unread.ready);
|
||||||
return $.on(d, 'PostsInserted', Unread.onUpdate);
|
$.on(d, 'PostsInserted', Unread.onUpdate);
|
||||||
|
return $.on(d, 'ThreadUpdate', function(e) {
|
||||||
|
if (e.detail[404]) {
|
||||||
|
return Unread.update();
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
if (Conf['Remember Last Read Post'] && Conf['Scroll to Last Read Post']) {
|
if (Conf['Remember Last Read Post'] && Conf['Scroll to Last Read Post']) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.5.10
|
// @version 1.14.5.11
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.5.10
|
// @version 1.14.5.11
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -198,7 +198,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.5.10',
|
VERSION: '1.14.5.11',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -20076,7 +20076,7 @@ ThreadWatcher = (function() {
|
|||||||
return ThreadWatcher.addRaw(boardID, threadID, {});
|
return ThreadWatcher.addRaw(boardID, threadID, {});
|
||||||
}
|
}
|
||||||
} else if (Conf['Auto Watch Reply']) {
|
} else if (Conf['Auto Watch Reply']) {
|
||||||
return ThreadWatcher.add(g.threads[boardID + '.' + threadID]);
|
return ThreadWatcher.add(g.threads[boardID + '.' + threadID] || new Thread(threadID, g.boards[boardID] || new Board(boardID)));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onIndexUpdate: function(e) {
|
onIndexUpdate: function(e) {
|
||||||
@ -20486,7 +20486,7 @@ ThreadWatcher = (function() {
|
|||||||
ThreadWatcher.setPrefixes(threads);
|
ThreadWatcher.setPrefixes(threads);
|
||||||
for (i = 0, len1 = threads.length; i < len1; i++) {
|
for (i = 0, len1 = threads.length; i < len1; i++) {
|
||||||
ref = threads[i], siteID = ref.siteID, boardID = ref.boardID, threadID = ref.threadID, data = ref.data;
|
ref = threads[i], siteID = ref.siteID, boardID = ref.boardID, threadID = ref.threadID, data = ref.data;
|
||||||
if ((data.excerpt == null) && siteID === Site.hostname && (thread = g.threads[boardID + "." + threadID])) {
|
if ((data.excerpt == null) && siteID === Site.hostname && (thread = g.threads[boardID + "." + threadID]) && thread.OP) {
|
||||||
ThreadWatcher.db.extend({
|
ThreadWatcher.db.extend({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
threadID: threadID,
|
threadID: threadID,
|
||||||
@ -20642,7 +20642,9 @@ ThreadWatcher = (function() {
|
|||||||
}
|
}
|
||||||
data.isDead = true;
|
data.isDead = true;
|
||||||
}
|
}
|
||||||
data.excerpt = Get.threadExcerpt(thread);
|
if (thread.OP) {
|
||||||
|
data.excerpt = Get.threadExcerpt(thread);
|
||||||
|
}
|
||||||
return ThreadWatcher.addRaw(boardID, threadID, data);
|
return ThreadWatcher.addRaw(boardID, threadID, data);
|
||||||
},
|
},
|
||||||
addRaw: function(boardID, threadID, data) {
|
addRaw: function(boardID, threadID, data) {
|
||||||
@ -20835,7 +20837,12 @@ Unread = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$.one(d, '4chanXInitFinished', Unread.ready);
|
$.one(d, '4chanXInitFinished', Unread.ready);
|
||||||
return $.on(d, 'PostsInserted', Unread.onUpdate);
|
$.on(d, 'PostsInserted', Unread.onUpdate);
|
||||||
|
return $.on(d, 'ThreadUpdate', function(e) {
|
||||||
|
if (e.detail[404]) {
|
||||||
|
return Unread.update();
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
ready: function() {
|
ready: function() {
|
||||||
if (Conf['Remember Last Read Post'] && Conf['Scroll to Last Read Post']) {
|
if (Conf['Remember Last Read Post'] && Conf['Scroll to Last Read Post']) {
|
||||||
|
|||||||
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.5.10",
|
"version": "1.14.5.11",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.14.5.10' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.5.11' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.5.10",
|
"version": "1.14.5.11",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.14.5.10' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.5.11' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.14.5.10",
|
"version": "1.14.5.11",
|
||||||
"date": "2019-01-25T01:36:36.330Z"
|
"date": "2019-01-26T07:46:43.086Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user