Release 4chan X v1.14.16.0.

This commit is contained in:
ccd0 2019-12-20 13:23:30 -08:00
parent 318cbf1495
commit de3ea5b42f
15 changed files with 26 additions and 20 deletions

View File

@ -2,6 +2,12 @@
-Sometimes the changelog has notes (not comprehensive) acknowledging people's work. This does not mean the changes are their fault, only that their code was used. All changes to the script are chosen by and the fault of the maintainer (ccd0).
### v1.14.16
**v1.14.16.0** *(2019-12-20)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.16.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.16.0/builds/4chan-X-noupdate.crx)]
- Based on v1.14.15.2.
- Fix parsing of spoilered images on kissu.moe.
### v1.14.15
**v1.14.15.2** *(2019-12-20)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.2/builds/4chan-X-noupdate.crx)]

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.14.15.2
// @version 1.14.16.0
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.14.15.2
// @version 1.14.16.0
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -214,7 +214,7 @@ docSet = function() {
};
g = {
VERSION: '1.14.15.2',
VERSION: '1.14.16.0',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@ -7988,7 +7988,7 @@ SW = {};
if (!(infoNode = indexOf.call((ref = link.nextSibling) != null ? ref.textContent : void 0, '(') >= 0 ? link.nextSibling : link.nextElementSibling)) {
return false;
}
if (!(info = infoNode.textContent.match(/\((Spoiler Image, )?([\d.]+ [KMG]?B).*\)/))) {
if (!(info = infoNode.textContent.match(/\((.*,\s*)?([\d.]+ [KMG]?B).*\)/))) {
return false;
}
nameNode = $('.postfilename', text);
@ -8000,7 +8000,7 @@ SW = {};
if (thumb) {
$.extend(file, {
thumbURL: /\/static\//.test(thumb.src) && /\.(?:gif|jpe?g|png)$/.test(link.href) ? link.href : thumb.src,
isSpoiler: !!info[1] || link.textContent === 'Spoiler Image'
isSpoiler: /^Spoiler/i.test(info[1] || '') || link.textContent === 'Spoiler Image'
});
}
return true;

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.14.15.2
// @version 1.14.16.0
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -214,7 +214,7 @@ docSet = function() {
};
g = {
VERSION: '1.14.15.2',
VERSION: '1.14.16.0',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@ -7988,7 +7988,7 @@ SW = {};
if (!(infoNode = indexOf.call((ref = link.nextSibling) != null ? ref.textContent : void 0, '(') >= 0 ? link.nextSibling : link.nextElementSibling)) {
return false;
}
if (!(info = infoNode.textContent.match(/\((Spoiler Image, )?([\d.]+ [KMG]?B).*\)/))) {
if (!(info = infoNode.textContent.match(/\((.*,\s*)?([\d.]+ [KMG]?B).*\)/))) {
return false;
}
nameNode = $('.postfilename', text);
@ -8000,7 +8000,7 @@ SW = {};
if (thumb) {
$.extend(file, {
thumbURL: /\/static\//.test(thumb.src) && /\.(?:gif|jpe?g|png)$/.test(link.href) ? link.href : thumb.src,
isSpoiler: !!info[1] || link.textContent === 'Spoiler Image'
isSpoiler: /^Spoiler/i.test(info[1] || '') || link.textContent === 'Spoiler Image'
});
}
return true;

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.14.15.2
// @version 1.14.16.0
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.14.15.2
// @version 1.14.16.0
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -214,7 +214,7 @@ docSet = function() {
};
g = {
VERSION: '1.14.15.2',
VERSION: '1.14.16.0',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@ -7988,7 +7988,7 @@ SW = {};
if (!(infoNode = indexOf.call((ref = link.nextSibling) != null ? ref.textContent : void 0, '(') >= 0 ? link.nextSibling : link.nextElementSibling)) {
return false;
}
if (!(info = infoNode.textContent.match(/\((Spoiler Image, )?([\d.]+ [KMG]?B).*\)/))) {
if (!(info = infoNode.textContent.match(/\((.*,\s*)?([\d.]+ [KMG]?B).*\)/))) {
return false;
}
nameNode = $('.postfilename', text);
@ -8000,7 +8000,7 @@ SW = {};
if (thumb) {
$.extend(file, {
thumbURL: /\/static\//.test(thumb.src) && /\.(?:gif|jpe?g|png)$/.test(link.href) ? link.href : thumb.src,
isSpoiler: !!info[1] || link.textContent === 'Spoiler Image'
isSpoiler: /^Spoiler/i.test(info[1] || '') || link.textContent === 'Spoiler Image'
});
}
return true;

Binary file not shown.

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": {
"updates": [
{
"version": "1.14.15.2",
"version": "1.14.16.0",
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
}
]

View File

@ -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.15.2' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.16.0' />
</app>
</gupdate>

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": {
"updates": [
{
"version": "1.14.15.2",
"version": "1.14.16.0",
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
}
]

View File

@ -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.15.2' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.16.0' />
</app>
</gupdate>

View File

@ -1,4 +1,4 @@
{
"version": "1.14.15.2",
"date": "2019-12-20T10:16:14.905Z"
"version": "1.14.16.0",
"date": "2019-12-20T21:19:44.648Z"
}