Release 4chan X v1.11.35.2.
This commit is contained in:
parent
4e897e5e3c
commit
3646280629
@ -4,6 +4,10 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.35
|
### v1.11.35
|
||||||
|
|
||||||
|
**v1.11.35.2** *(2016-06-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Add @connect to userscript metadata to reduce annoying permission requests in Tampermonkey.
|
||||||
|
- Switch [complain] links back to https://www.4chan.org/feedback.
|
||||||
|
|
||||||
**v1.11.35.1** *(2016-06-07)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.35.1** *(2016-06-07)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Merge v1.11.34.10: Fix blocking of CloudFlare scripts.
|
- Merge v1.11.34.10: Fix blocking of CloudFlare scripts.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.35.1
|
// @version 1.11.35.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -22,6 +22,8 @@
|
|||||||
// @exclude https://www.4chan.org/pass
|
// @exclude https://www.4chan.org/pass
|
||||||
// @exclude http://www.4chan.org/pass?*
|
// @exclude http://www.4chan.org/pass?*
|
||||||
// @exclude https://www.4chan.org/pass?*
|
// @exclude https://www.4chan.org/pass?*
|
||||||
|
// @connect i.4cdn.org
|
||||||
|
// @connect *
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_deleteValue
|
// @grant GM_deleteValue
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.35.1
|
// @version 1.11.35.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -22,6 +22,8 @@
|
|||||||
// @exclude https://www.4chan.org/pass
|
// @exclude https://www.4chan.org/pass
|
||||||
// @exclude http://www.4chan.org/pass?*
|
// @exclude http://www.4chan.org/pass?*
|
||||||
// @exclude https://www.4chan.org/pass?*
|
// @exclude https://www.4chan.org/pass?*
|
||||||
|
// @connect i.4cdn.org
|
||||||
|
// @connect *
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_deleteValue
|
// @grant GM_deleteValue
|
||||||
@ -134,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.35.1',
|
VERSION: '1.11.35.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -16252,7 +16254,7 @@ Report = (function() {
|
|||||||
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
||||||
$.extend(passAd, {
|
$.extend(passAd, {
|
||||||
textContent: 'Complain',
|
textContent: 'Complain',
|
||||||
href: 'https://www.4chan-x.net/captchas.html',
|
href: 'https://www.4chan.org/feedback',
|
||||||
tabIndex: -1
|
tabIndex: -1
|
||||||
});
|
});
|
||||||
passAd.parentNode.normalize();
|
passAd.parentNode.normalize();
|
||||||
@ -18514,7 +18516,7 @@ Captcha = {};
|
|||||||
errmsg = ref[j];
|
errmsg = ref[j];
|
||||||
if (!$('a', errmsg)) {
|
if (!$('a', errmsg)) {
|
||||||
link = $.el('a', {
|
link = $.el('a', {
|
||||||
href: 'https://www.4chan-x.net/captchas.html',
|
href: 'https://www.4chan.org/feedback',
|
||||||
target: '_blank',
|
target: '_blank',
|
||||||
textContent: '[complain]'
|
textContent: '[complain]'
|
||||||
});
|
});
|
||||||
@ -20365,7 +20367,7 @@ QR = (function() {
|
|||||||
if (/captcha|verification/i.test(err.textContent) || err === 'Connection error with sys.4chan.org.') {
|
if (/captcha|verification/i.test(err.textContent) || err === 'Connection error with sys.4chan.org.') {
|
||||||
if (/mistyped/i.test(err.textContent)) {
|
if (/mistyped/i.test(err.textContent)) {
|
||||||
err = $.el('span', {
|
err = $.el('span', {
|
||||||
innerHTML: "You mistyped the CAPTCHA, or the CAPTCHA malfunctioned [<a href=\"https://www.4chan-x.net/captchas.html\" target=\"_blank\">complain here</a>]."
|
innerHTML: "You mistyped the CAPTCHA, or the CAPTCHA malfunctioned [<a href=\"https://www.4chan.org/feedback\" target=\"_blank\">complain here</a>]."
|
||||||
});
|
});
|
||||||
} else if (/expired/i.test(err.textContent)) {
|
} else if (/expired/i.test(err.textContent)) {
|
||||||
err = 'This CAPTCHA is no longer valid because it has expired.';
|
err = 'This CAPTCHA is no longer valid because it has expired.';
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.35.1
|
// @version 1.11.35.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -22,6 +22,8 @@
|
|||||||
// @exclude https://www.4chan.org/pass
|
// @exclude https://www.4chan.org/pass
|
||||||
// @exclude http://www.4chan.org/pass?*
|
// @exclude http://www.4chan.org/pass?*
|
||||||
// @exclude https://www.4chan.org/pass?*
|
// @exclude https://www.4chan.org/pass?*
|
||||||
|
// @connect i.4cdn.org
|
||||||
|
// @connect *
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_deleteValue
|
// @grant GM_deleteValue
|
||||||
@ -134,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.35.1',
|
VERSION: '1.11.35.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -16252,7 +16254,7 @@ Report = (function() {
|
|||||||
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
||||||
$.extend(passAd, {
|
$.extend(passAd, {
|
||||||
textContent: 'Complain',
|
textContent: 'Complain',
|
||||||
href: 'https://www.4chan-x.net/captchas.html',
|
href: 'https://www.4chan.org/feedback',
|
||||||
tabIndex: -1
|
tabIndex: -1
|
||||||
});
|
});
|
||||||
passAd.parentNode.normalize();
|
passAd.parentNode.normalize();
|
||||||
@ -18514,7 +18516,7 @@ Captcha = {};
|
|||||||
errmsg = ref[j];
|
errmsg = ref[j];
|
||||||
if (!$('a', errmsg)) {
|
if (!$('a', errmsg)) {
|
||||||
link = $.el('a', {
|
link = $.el('a', {
|
||||||
href: 'https://www.4chan-x.net/captchas.html',
|
href: 'https://www.4chan.org/feedback',
|
||||||
target: '_blank',
|
target: '_blank',
|
||||||
textContent: '[complain]'
|
textContent: '[complain]'
|
||||||
});
|
});
|
||||||
@ -20365,7 +20367,7 @@ QR = (function() {
|
|||||||
if (/captcha|verification/i.test(err.textContent) || err === 'Connection error with sys.4chan.org.') {
|
if (/captcha|verification/i.test(err.textContent) || err === 'Connection error with sys.4chan.org.') {
|
||||||
if (/mistyped/i.test(err.textContent)) {
|
if (/mistyped/i.test(err.textContent)) {
|
||||||
err = $.el('span', {
|
err = $.el('span', {
|
||||||
innerHTML: "You mistyped the CAPTCHA, or the CAPTCHA malfunctioned [<a href=\"https://www.4chan-x.net/captchas.html\" target=\"_blank\">complain here</a>]."
|
innerHTML: "You mistyped the CAPTCHA, or the CAPTCHA malfunctioned [<a href=\"https://www.4chan.org/feedback\" target=\"_blank\">complain here</a>]."
|
||||||
});
|
});
|
||||||
} else if (/expired/i.test(err.textContent)) {
|
} else if (/expired/i.test(err.textContent)) {
|
||||||
err = 'This CAPTCHA is no longer valid because it has expired.';
|
err = 'This CAPTCHA is no longer valid because it has expired.';
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.35.1
|
// @version 1.11.35.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -22,6 +22,8 @@
|
|||||||
// @exclude https://www.4chan.org/pass
|
// @exclude https://www.4chan.org/pass
|
||||||
// @exclude http://www.4chan.org/pass?*
|
// @exclude http://www.4chan.org/pass?*
|
||||||
// @exclude https://www.4chan.org/pass?*
|
// @exclude https://www.4chan.org/pass?*
|
||||||
|
// @connect i.4cdn.org
|
||||||
|
// @connect *
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_deleteValue
|
// @grant GM_deleteValue
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.35.1
|
// @version 1.11.35.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -22,6 +22,8 @@
|
|||||||
// @exclude https://www.4chan.org/pass
|
// @exclude https://www.4chan.org/pass
|
||||||
// @exclude http://www.4chan.org/pass?*
|
// @exclude http://www.4chan.org/pass?*
|
||||||
// @exclude https://www.4chan.org/pass?*
|
// @exclude https://www.4chan.org/pass?*
|
||||||
|
// @connect i.4cdn.org
|
||||||
|
// @connect *
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_deleteValue
|
// @grant GM_deleteValue
|
||||||
@ -134,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.35.1',
|
VERSION: '1.11.35.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -16252,7 +16254,7 @@ Report = (function() {
|
|||||||
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
if ((passAd = $('a[href="https://www.4chan.org/pass"]'))) {
|
||||||
$.extend(passAd, {
|
$.extend(passAd, {
|
||||||
textContent: 'Complain',
|
textContent: 'Complain',
|
||||||
href: 'https://www.4chan-x.net/captchas.html',
|
href: 'https://www.4chan.org/feedback',
|
||||||
tabIndex: -1
|
tabIndex: -1
|
||||||
});
|
});
|
||||||
passAd.parentNode.normalize();
|
passAd.parentNode.normalize();
|
||||||
@ -18514,7 +18516,7 @@ Captcha = {};
|
|||||||
errmsg = ref[j];
|
errmsg = ref[j];
|
||||||
if (!$('a', errmsg)) {
|
if (!$('a', errmsg)) {
|
||||||
link = $.el('a', {
|
link = $.el('a', {
|
||||||
href: 'https://www.4chan-x.net/captchas.html',
|
href: 'https://www.4chan.org/feedback',
|
||||||
target: '_blank',
|
target: '_blank',
|
||||||
textContent: '[complain]'
|
textContent: '[complain]'
|
||||||
});
|
});
|
||||||
@ -20365,7 +20367,7 @@ QR = (function() {
|
|||||||
if (/captcha|verification/i.test(err.textContent) || err === 'Connection error with sys.4chan.org.') {
|
if (/captcha|verification/i.test(err.textContent) || err === 'Connection error with sys.4chan.org.') {
|
||||||
if (/mistyped/i.test(err.textContent)) {
|
if (/mistyped/i.test(err.textContent)) {
|
||||||
err = $.el('span', {
|
err = $.el('span', {
|
||||||
innerHTML: "You mistyped the CAPTCHA, or the CAPTCHA malfunctioned [<a href=\"https://www.4chan-x.net/captchas.html\" target=\"_blank\">complain here</a>]."
|
innerHTML: "You mistyped the CAPTCHA, or the CAPTCHA malfunctioned [<a href=\"https://www.4chan.org/feedback\" target=\"_blank\">complain here</a>]."
|
||||||
});
|
});
|
||||||
} else if (/expired/i.test(err.textContent)) {
|
} else if (/expired/i.test(err.textContent)) {
|
||||||
err = 'This CAPTCHA is no longer valid because it has expired.';
|
err = 'This CAPTCHA is no longer valid because it has expired.';
|
||||||
|
|||||||
Binary file not shown.
@ -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.11.35.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.35.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -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.11.35.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.35.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.35.1",
|
"version": "1.11.35.2",
|
||||||
"date": "2016-06-07T17:54:32.135Z"
|
"date": "2016-06-12T04:25:29.728Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user