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