Release 4chan X v1.14.14.4.
This commit is contained in:
parent
a64bb57ffd
commit
91777a1a59
@ -4,6 +4,10 @@
|
||||
|
||||
### v1.14.14
|
||||
|
||||
**v1.14.14.4** *(2019-09-16)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.14.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.14.4/builds/4chan-X-noupdate.crx)]
|
||||
- Merge v1.14.13.4: Update for quotelink changes on kissu.moe.
|
||||
- Don't try to insert header etc. on .rss URLs.
|
||||
|
||||
**v1.14.14.3** *(2019-09-14)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.14.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.14.3/builds/4chan-X-noupdate.crx)]
|
||||
- Fix bug in handling captcha errors when using captcha prerequest.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.14.14.3
|
||||
// @version 1.14.14.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.14.14.3
|
||||
// @version 1.14.14.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -211,7 +211,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.14.3',
|
||||
VERSION: '1.14.14.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -7848,7 +7848,7 @@ SW = {};
|
||||
},
|
||||
comment: '.body',
|
||||
spoiler: '.spoiler',
|
||||
quotelink: 'a[onclick^="highlightReply("]',
|
||||
quotelink: 'a[onclick*="highlightReply("]',
|
||||
catalog: {
|
||||
board: '#Grid',
|
||||
thread: '.mix',
|
||||
@ -7872,8 +7872,8 @@ SW = {};
|
||||
replyContainer: 'div[starts-with(@id,"reply_")]'
|
||||
},
|
||||
regexp: {
|
||||
quotelink: /\/([^\/]+)\/res\/(\d+)\.\w+#(\d+)$/,
|
||||
quotelinkHTML: /<a [^>]*\bhref="[^"]*\/([^\/]+)\/res\/(\d+)\.\w+#(\d+)"/g
|
||||
quotelink: /\/([^\/]+)\/res\/(\d+)(?:\.\w+)?#(\d+)$/,
|
||||
quotelinkHTML: /<a [^>]*\bhref="[^"]*\/([^\/]+)\/res\/(\d+)(?:\.\w+)?#(\d+)"/g
|
||||
},
|
||||
Build: {
|
||||
parseJSON: function(data, board) {
|
||||
@ -28030,7 +28030,7 @@ Main = (function() {
|
||||
},
|
||||
isThisPageLegit: function() {
|
||||
if (!('thisPageIsLegit' in Main)) {
|
||||
Main.thisPageIsLegit = g.SITE.isThisPageLegit ? g.SITE.isThisPageLegit() : !/^[45]\d\d\b/.test(document.title) && !/\.json$/.test(location.pathname);
|
||||
Main.thisPageIsLegit = g.SITE.isThisPageLegit ? g.SITE.isThisPageLegit() : !/^[45]\d\d\b/.test(document.title) && !/\.(?:json|rss)$/.test(location.pathname);
|
||||
}
|
||||
return Main.thisPageIsLegit;
|
||||
},
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.14.3
|
||||
// @version 1.14.14.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -211,7 +211,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.14.3',
|
||||
VERSION: '1.14.14.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -7848,7 +7848,7 @@ SW = {};
|
||||
},
|
||||
comment: '.body',
|
||||
spoiler: '.spoiler',
|
||||
quotelink: 'a[onclick^="highlightReply("]',
|
||||
quotelink: 'a[onclick*="highlightReply("]',
|
||||
catalog: {
|
||||
board: '#Grid',
|
||||
thread: '.mix',
|
||||
@ -7872,8 +7872,8 @@ SW = {};
|
||||
replyContainer: 'div[starts-with(@id,"reply_")]'
|
||||
},
|
||||
regexp: {
|
||||
quotelink: /\/([^\/]+)\/res\/(\d+)\.\w+#(\d+)$/,
|
||||
quotelinkHTML: /<a [^>]*\bhref="[^"]*\/([^\/]+)\/res\/(\d+)\.\w+#(\d+)"/g
|
||||
quotelink: /\/([^\/]+)\/res\/(\d+)(?:\.\w+)?#(\d+)$/,
|
||||
quotelinkHTML: /<a [^>]*\bhref="[^"]*\/([^\/]+)\/res\/(\d+)(?:\.\w+)?#(\d+)"/g
|
||||
},
|
||||
Build: {
|
||||
parseJSON: function(data, board) {
|
||||
@ -28030,7 +28030,7 @@ Main = (function() {
|
||||
},
|
||||
isThisPageLegit: function() {
|
||||
if (!('thisPageIsLegit' in Main)) {
|
||||
Main.thisPageIsLegit = g.SITE.isThisPageLegit ? g.SITE.isThisPageLegit() : !/^[45]\d\d\b/.test(document.title) && !/\.json$/.test(location.pathname);
|
||||
Main.thisPageIsLegit = g.SITE.isThisPageLegit ? g.SITE.isThisPageLegit() : !/^[45]\d\d\b/.test(document.title) && !/\.(?:json|rss)$/.test(location.pathname);
|
||||
}
|
||||
return Main.thisPageIsLegit;
|
||||
},
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.14.3
|
||||
// @version 1.14.14.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.14.3
|
||||
// @version 1.14.14.4
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -211,7 +211,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.14.3',
|
||||
VERSION: '1.14.14.4',
|
||||
NAMESPACE: '4chan X.',
|
||||
sites: Object.create(null),
|
||||
boards: Object.create(null)
|
||||
@ -7848,7 +7848,7 @@ SW = {};
|
||||
},
|
||||
comment: '.body',
|
||||
spoiler: '.spoiler',
|
||||
quotelink: 'a[onclick^="highlightReply("]',
|
||||
quotelink: 'a[onclick*="highlightReply("]',
|
||||
catalog: {
|
||||
board: '#Grid',
|
||||
thread: '.mix',
|
||||
@ -7872,8 +7872,8 @@ SW = {};
|
||||
replyContainer: 'div[starts-with(@id,"reply_")]'
|
||||
},
|
||||
regexp: {
|
||||
quotelink: /\/([^\/]+)\/res\/(\d+)\.\w+#(\d+)$/,
|
||||
quotelinkHTML: /<a [^>]*\bhref="[^"]*\/([^\/]+)\/res\/(\d+)\.\w+#(\d+)"/g
|
||||
quotelink: /\/([^\/]+)\/res\/(\d+)(?:\.\w+)?#(\d+)$/,
|
||||
quotelinkHTML: /<a [^>]*\bhref="[^"]*\/([^\/]+)\/res\/(\d+)(?:\.\w+)?#(\d+)"/g
|
||||
},
|
||||
Build: {
|
||||
parseJSON: function(data, board) {
|
||||
@ -28030,7 +28030,7 @@ Main = (function() {
|
||||
},
|
||||
isThisPageLegit: function() {
|
||||
if (!('thisPageIsLegit' in Main)) {
|
||||
Main.thisPageIsLegit = g.SITE.isThisPageLegit ? g.SITE.isThisPageLegit() : !/^[45]\d\d\b/.test(document.title) && !/\.json$/.test(location.pathname);
|
||||
Main.thisPageIsLegit = g.SITE.isThisPageLegit ? g.SITE.isThisPageLegit() : !/^[45]\d\d\b/.test(document.title) && !/\.(?:json|rss)$/.test(location.pathname);
|
||||
}
|
||||
return Main.thisPageIsLegit;
|
||||
},
|
||||
|
||||
Binary file not shown.
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.14.14.3",
|
||||
"version": "1.14.14.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.14.3' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.14.4' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.14.14.3",
|
||||
"version": "1.14.14.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.14.3' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.14.4' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.14.14.3",
|
||||
"date": "2019-09-14T17:22:37.118Z"
|
||||
"version": "1.14.14.4",
|
||||
"date": "2019-09-16T04:34:13.281Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user