Release 4chan X v1.14.16.4.
This commit is contained in:
parent
4f20d47b97
commit
0857c8ca0d
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.14.16
|
||||
|
||||
**v1.14.16.4** *(2020-02-05)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.16.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.16.4/builds/4chan-X-noupdate.crx)]
|
||||
- Fix for unclosed link in https://sushigirl.us/ announcement.
|
||||
|
||||
**v1.14.16.3** *(2020-01-21)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.16.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.16.3/builds/4chan-X-noupdate.crx)]
|
||||
- Update Vocaroo embedding. #2528
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.14.16.3
|
||||
// @version 1.14.16.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.14.16.3
|
||||
// @version 1.14.16.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -214,7 +214,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.16.3',
|
||||
VERSION: '1.14.16.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -7951,6 +7951,12 @@ SW = {};
|
||||
isFileURL: function(url) {
|
||||
return /\/src\/[^\/]+/.test(url.pathname);
|
||||
},
|
||||
preParsingFixes: function(board) {
|
||||
var broken;
|
||||
if ((broken = $('a > input[name="board"]', board))) {
|
||||
return $.before(broken.parentNode, broken);
|
||||
}
|
||||
},
|
||||
parseNodes: function(post, nodes) {
|
||||
var m, nextSibling, uniqueID;
|
||||
if (nodes.uniqueID) {
|
||||
@ -27757,12 +27763,17 @@ Main = (function() {
|
||||
}
|
||||
},
|
||||
initThread: function() {
|
||||
var base, board, errors, posts, s, threads;
|
||||
var base, base1, board, errors, posts, s, threads;
|
||||
s = g.SITE.selectors;
|
||||
if ((board = $(s.board))) {
|
||||
threads = [];
|
||||
posts = [];
|
||||
errors = [];
|
||||
try {
|
||||
if (typeof (base = g.SITE).preParsingFixes === "function") {
|
||||
base.preParsingFixes(board);
|
||||
}
|
||||
} catch (error1) {}
|
||||
Main.addThreadsObserver = new MutationObserver(Main.addThreads);
|
||||
Main.addPostsObserver = new MutationObserver(Main.addPosts);
|
||||
Main.addThreadsObserver.observe(board, {
|
||||
@ -27777,8 +27788,8 @@ Main = (function() {
|
||||
threads[0].isArchived = true;
|
||||
threads[0].kill();
|
||||
}
|
||||
if (typeof (base = g.SITE).parseThreadMetadata === "function") {
|
||||
base.parseThreadMetadata(threads[0]);
|
||||
if (typeof (base1 = g.SITE).parseThreadMetadata === "function") {
|
||||
base1.parseThreadMetadata(threads[0]);
|
||||
}
|
||||
}
|
||||
Main.callbackNodes('Thread', threads);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.16.3
|
||||
// @version 1.14.16.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -214,7 +214,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.16.3',
|
||||
VERSION: '1.14.16.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -7951,6 +7951,12 @@ SW = {};
|
||||
isFileURL: function(url) {
|
||||
return /\/src\/[^\/]+/.test(url.pathname);
|
||||
},
|
||||
preParsingFixes: function(board) {
|
||||
var broken;
|
||||
if ((broken = $('a > input[name="board"]', board))) {
|
||||
return $.before(broken.parentNode, broken);
|
||||
}
|
||||
},
|
||||
parseNodes: function(post, nodes) {
|
||||
var m, nextSibling, uniqueID;
|
||||
if (nodes.uniqueID) {
|
||||
@ -27757,12 +27763,17 @@ Main = (function() {
|
||||
}
|
||||
},
|
||||
initThread: function() {
|
||||
var base, board, errors, posts, s, threads;
|
||||
var base, base1, board, errors, posts, s, threads;
|
||||
s = g.SITE.selectors;
|
||||
if ((board = $(s.board))) {
|
||||
threads = [];
|
||||
posts = [];
|
||||
errors = [];
|
||||
try {
|
||||
if (typeof (base = g.SITE).preParsingFixes === "function") {
|
||||
base.preParsingFixes(board);
|
||||
}
|
||||
} catch (error1) {}
|
||||
Main.addThreadsObserver = new MutationObserver(Main.addThreads);
|
||||
Main.addPostsObserver = new MutationObserver(Main.addPosts);
|
||||
Main.addThreadsObserver.observe(board, {
|
||||
@ -27777,8 +27788,8 @@ Main = (function() {
|
||||
threads[0].isArchived = true;
|
||||
threads[0].kill();
|
||||
}
|
||||
if (typeof (base = g.SITE).parseThreadMetadata === "function") {
|
||||
base.parseThreadMetadata(threads[0]);
|
||||
if (typeof (base1 = g.SITE).parseThreadMetadata === "function") {
|
||||
base1.parseThreadMetadata(threads[0]);
|
||||
}
|
||||
}
|
||||
Main.callbackNodes('Thread', threads);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.16.3
|
||||
// @version 1.14.16.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.16.3
|
||||
// @version 1.14.16.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -214,7 +214,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.16.3',
|
||||
VERSION: '1.14.16.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -7951,6 +7951,12 @@ SW = {};
|
||||
isFileURL: function(url) {
|
||||
return /\/src\/[^\/]+/.test(url.pathname);
|
||||
},
|
||||
preParsingFixes: function(board) {
|
||||
var broken;
|
||||
if ((broken = $('a > input[name="board"]', board))) {
|
||||
return $.before(broken.parentNode, broken);
|
||||
}
|
||||
},
|
||||
parseNodes: function(post, nodes) {
|
||||
var m, nextSibling, uniqueID;
|
||||
if (nodes.uniqueID) {
|
||||
@ -27757,12 +27763,17 @@ Main = (function() {
|
||||
}
|
||||
},
|
||||
initThread: function() {
|
||||
var base, board, errors, posts, s, threads;
|
||||
var base, base1, board, errors, posts, s, threads;
|
||||
s = g.SITE.selectors;
|
||||
if ((board = $(s.board))) {
|
||||
threads = [];
|
||||
posts = [];
|
||||
errors = [];
|
||||
try {
|
||||
if (typeof (base = g.SITE).preParsingFixes === "function") {
|
||||
base.preParsingFixes(board);
|
||||
}
|
||||
} catch (error1) {}
|
||||
Main.addThreadsObserver = new MutationObserver(Main.addThreads);
|
||||
Main.addPostsObserver = new MutationObserver(Main.addPosts);
|
||||
Main.addThreadsObserver.observe(board, {
|
||||
@ -27777,8 +27788,8 @@ Main = (function() {
|
||||
threads[0].isArchived = true;
|
||||
threads[0].kill();
|
||||
}
|
||||
if (typeof (base = g.SITE).parseThreadMetadata === "function") {
|
||||
base.parseThreadMetadata(threads[0]);
|
||||
if (typeof (base1 = g.SITE).parseThreadMetadata === "function") {
|
||||
base1.parseThreadMetadata(threads[0]);
|
||||
}
|
||||
}
|
||||
Main.callbackNodes('Thread', threads);
|
||||
|
||||
Binary file not shown.
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.14.16.3",
|
||||
"version": "1.14.16.4",
|
||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||
}
|
||||
]
|
||||
|
||||
@ -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.14.16.3' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.16.4' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.14.16.3",
|
||||
"version": "1.14.16.4",
|
||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||
}
|
||||
]
|
||||
|
||||
@ -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.14.16.3' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.16.4' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.14.16.3",
|
||||
"date": "2020-01-21T08:19:41.656Z"
|
||||
"version": "1.14.16.4",
|
||||
"date": "2020-02-05T06:41:46.412Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user