Release 4chan X v1.13.15.9.
This commit is contained in:
parent
0265f3605b
commit
2463c1e980
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.13.15
|
||||
|
||||
**v1.13.15.9** *(2018-02-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.9/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.9/builds/4chan-X-noupdate.crx)]
|
||||
- Fix 404 redirection on error pages without doctype. #1811
|
||||
|
||||
**v1.13.15.8** *(2018-02-01)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.8/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.8/builds/4chan-X-noupdate.crx)]
|
||||
- Captcha bypass cookie does not work for starting threads. Updating to treat this case correctly.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.15.8
|
||||
// @version 1.13.15.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.15.8
|
||||
// @version 1.13.15.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.15.8',
|
||||
VERSION: '1.13.15.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -24627,9 +24627,6 @@ Main = (function() {
|
||||
return;
|
||||
}
|
||||
} catch (_error) {}
|
||||
if (location.hostname === 'boards.4chan.org' && d.documentElement && !d.doctype) {
|
||||
return;
|
||||
}
|
||||
if (doc && $.hasClass(doc, 'fourchan-x')) {
|
||||
return;
|
||||
}
|
||||
@ -24944,7 +24941,7 @@ Main = (function() {
|
||||
});
|
||||
return;
|
||||
}
|
||||
if ((ref1 = d.title) === '4chan - Temporarily Offline' || ref1 === '4chan - 404 Not Found') {
|
||||
if ((ref1 = d.title) === '4chan - Temporarily Offline' || ref1 === '4chan - 404 Not Found' || ref1 === 'MathJax Equation Source') {
|
||||
return;
|
||||
}
|
||||
if (((ref2 = g.VIEW) === 'index' || ref2 === 'thread') && !$('.board + *')) {
|
||||
@ -25137,7 +25134,7 @@ Main = (function() {
|
||||
isThisPageLegit: function() {
|
||||
var ref;
|
||||
if (!('thisPageIsLegit' in Main)) {
|
||||
Main.thisPageIsLegit = location.hostname === 'boards.4chan.org' && !$('link[href*="favicon-status.ico"]', d.head) && ((ref = d.title) !== '4chan - Temporarily Offline' && ref !== '4chan - Error' && ref !== '504 Gateway Time-out');
|
||||
Main.thisPageIsLegit = location.hostname === 'boards.4chan.org' && !$('link[href*="favicon-status.ico"]', d.head) && ((ref = d.title) !== '4chan - Temporarily Offline' && ref !== '4chan - Error' && ref !== '504 Gateway Time-out' && ref !== 'MathJax Equation Source');
|
||||
}
|
||||
return Main.thisPageIsLegit;
|
||||
},
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.15.8
|
||||
// @version 1.13.15.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.15.8',
|
||||
VERSION: '1.13.15.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -24627,9 +24627,6 @@ Main = (function() {
|
||||
return;
|
||||
}
|
||||
} catch (_error) {}
|
||||
if (location.hostname === 'boards.4chan.org' && d.documentElement && !d.doctype) {
|
||||
return;
|
||||
}
|
||||
if (doc && $.hasClass(doc, 'fourchan-x')) {
|
||||
return;
|
||||
}
|
||||
@ -24944,7 +24941,7 @@ Main = (function() {
|
||||
});
|
||||
return;
|
||||
}
|
||||
if ((ref1 = d.title) === '4chan - Temporarily Offline' || ref1 === '4chan - 404 Not Found') {
|
||||
if ((ref1 = d.title) === '4chan - Temporarily Offline' || ref1 === '4chan - 404 Not Found' || ref1 === 'MathJax Equation Source') {
|
||||
return;
|
||||
}
|
||||
if (((ref2 = g.VIEW) === 'index' || ref2 === 'thread') && !$('.board + *')) {
|
||||
@ -25137,7 +25134,7 @@ Main = (function() {
|
||||
isThisPageLegit: function() {
|
||||
var ref;
|
||||
if (!('thisPageIsLegit' in Main)) {
|
||||
Main.thisPageIsLegit = location.hostname === 'boards.4chan.org' && !$('link[href*="favicon-status.ico"]', d.head) && ((ref = d.title) !== '4chan - Temporarily Offline' && ref !== '4chan - Error' && ref !== '504 Gateway Time-out');
|
||||
Main.thisPageIsLegit = location.hostname === 'boards.4chan.org' && !$('link[href*="favicon-status.ico"]', d.head) && ((ref = d.title) !== '4chan - Temporarily Offline' && ref !== '4chan - Error' && ref !== '504 Gateway Time-out' && ref !== 'MathJax Equation Source');
|
||||
}
|
||||
return Main.thisPageIsLegit;
|
||||
},
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.15.8
|
||||
// @version 1.13.15.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.15.8
|
||||
// @version 1.13.15.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.15.8',
|
||||
VERSION: '1.13.15.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -24627,9 +24627,6 @@ Main = (function() {
|
||||
return;
|
||||
}
|
||||
} catch (_error) {}
|
||||
if (location.hostname === 'boards.4chan.org' && d.documentElement && !d.doctype) {
|
||||
return;
|
||||
}
|
||||
if (doc && $.hasClass(doc, 'fourchan-x')) {
|
||||
return;
|
||||
}
|
||||
@ -24944,7 +24941,7 @@ Main = (function() {
|
||||
});
|
||||
return;
|
||||
}
|
||||
if ((ref1 = d.title) === '4chan - Temporarily Offline' || ref1 === '4chan - 404 Not Found') {
|
||||
if ((ref1 = d.title) === '4chan - Temporarily Offline' || ref1 === '4chan - 404 Not Found' || ref1 === 'MathJax Equation Source') {
|
||||
return;
|
||||
}
|
||||
if (((ref2 = g.VIEW) === 'index' || ref2 === 'thread') && !$('.board + *')) {
|
||||
@ -25137,7 +25134,7 @@ Main = (function() {
|
||||
isThisPageLegit: function() {
|
||||
var ref;
|
||||
if (!('thisPageIsLegit' in Main)) {
|
||||
Main.thisPageIsLegit = location.hostname === 'boards.4chan.org' && !$('link[href*="favicon-status.ico"]', d.head) && ((ref = d.title) !== '4chan - Temporarily Offline' && ref !== '4chan - Error' && ref !== '504 Gateway Time-out');
|
||||
Main.thisPageIsLegit = location.hostname === 'boards.4chan.org' && !$('link[href*="favicon-status.ico"]', d.head) && ((ref = d.title) !== '4chan - Temporarily Offline' && ref !== '4chan - Error' && ref !== '504 Gateway Time-out' && ref !== 'MathJax Equation Source');
|
||||
}
|
||||
return Main.thisPageIsLegit;
|
||||
},
|
||||
|
||||
Binary file not shown.
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.13.15.8",
|
||||
"version": "1.13.15.9",
|
||||
"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.13.15.8' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.15.9' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.13.15.8",
|
||||
"version": "1.13.15.9",
|
||||
"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.13.15.8' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.15.9' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.15.8",
|
||||
"date": "2018-02-01T04:29:02.005Z"
|
||||
"version": "1.13.15.9",
|
||||
"date": "2018-02-09T18:06:15.009Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user