Release 4chan X v1.13.8.4.
This commit is contained in:
parent
6072139714
commit
d7287b5185
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.13.8
|
### v1.13.8
|
||||||
|
|
||||||
|
**v1.13.8.4** *(2017-02-21)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.4/builds/4chan-X-noupdate.crx)]
|
||||||
|
- As a workaround for 4chan's recent removal of the ability to start new threads using the v1 (text) Recaptcha, the `Use Recaptcha v1` option now only applies within threads. You can enable the new option `Use Recaptcha v1 on Index` to get Recaptcha v1 in the index and catalog, but unless 4chan's change is reverted, this will interfere with starting threads.
|
||||||
|
|
||||||
**v1.13.8.3** *(2017-02-11)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.3/builds/4chan-X-noupdate.crx)]
|
**v1.13.8.3** *(2017-02-11)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.3/builds/4chan-X-noupdate.crx)]
|
||||||
- Make posts from archives with files deleted (by archive) show as "File Deleted". #1287
|
- Make posts from archives with files deleted (by archive) show as "File Deleted". #1287
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.8.3
|
// @version 1.13.8.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.13.8.3
|
// @version 1.13.8.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -151,7 +151,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.8.3',
|
VERSION: '1.13.8.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -316,7 +316,8 @@ Config = (function() {
|
|||||||
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
||||||
'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1],
|
'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1],
|
||||||
'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'],
|
'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'],
|
||||||
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form.'],
|
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form in threads.'],
|
||||||
|
'Use Recaptcha v1 on Index': [false, 'Use the old text version of Recaptcha on the index and catalog. Warning: May interfere with starting threads.'],
|
||||||
'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'],
|
'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'],
|
||||||
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
|
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
|
||||||
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
|
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
|
||||||
@ -19994,7 +19995,7 @@ Captcha = {};
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (((Conf['Use Recaptcha v1'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) {
|
if (((Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) {
|
||||||
$.ready(Captcha.replace.v1);
|
$.ready(Captcha.replace.v1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -20764,7 +20765,7 @@ QR = (function() {
|
|||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
version = Conf['Use Recaptcha v1'] && Main.jsEnabled ? 'v1' : 'v2';
|
version = Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && Main.jsEnabled ? 'v1' : 'v2';
|
||||||
this.captcha = Captcha[version];
|
this.captcha = Captcha[version];
|
||||||
$.on(d, '4chanXInitFinished', function() {
|
$.on(d, '4chanXInitFinished', function() {
|
||||||
return BoardConfig.ready(QR.initReady);
|
return BoardConfig.ready(QR.initReady);
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.8.3
|
// @version 1.13.8.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -151,7 +151,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.8.3',
|
VERSION: '1.13.8.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -316,7 +316,8 @@ Config = (function() {
|
|||||||
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
||||||
'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1],
|
'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1],
|
||||||
'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'],
|
'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'],
|
||||||
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form.'],
|
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form in threads.'],
|
||||||
|
'Use Recaptcha v1 on Index': [false, 'Use the old text version of Recaptcha on the index and catalog. Warning: May interfere with starting threads.'],
|
||||||
'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'],
|
'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'],
|
||||||
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
|
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
|
||||||
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
|
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
|
||||||
@ -19994,7 +19995,7 @@ Captcha = {};
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (((Conf['Use Recaptcha v1'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) {
|
if (((Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) {
|
||||||
$.ready(Captcha.replace.v1);
|
$.ready(Captcha.replace.v1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -20764,7 +20765,7 @@ QR = (function() {
|
|||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
version = Conf['Use Recaptcha v1'] && Main.jsEnabled ? 'v1' : 'v2';
|
version = Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && Main.jsEnabled ? 'v1' : 'v2';
|
||||||
this.captcha = Captcha[version];
|
this.captcha = Captcha[version];
|
||||||
$.on(d, '4chanXInitFinished', function() {
|
$.on(d, '4chanXInitFinished', function() {
|
||||||
return BoardConfig.ready(QR.initReady);
|
return BoardConfig.ready(QR.initReady);
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.8.3
|
// @version 1.13.8.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.13.8.3
|
// @version 1.13.8.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -151,7 +151,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.8.3',
|
VERSION: '1.13.8.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -316,7 +316,8 @@ Config = (function() {
|
|||||||
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
||||||
'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1],
|
'Post on Captcha Completion': [false, 'Submit the post immediately when the captcha is completed.', 1],
|
||||||
'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'],
|
'Captcha Fixes': [true, 'Make captcha easier to use, especially with the keyboard.'],
|
||||||
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form.'],
|
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha in the post form in threads.'],
|
||||||
|
'Use Recaptcha v1 on Index': [false, 'Use the old text version of Recaptcha on the index and catalog. Warning: May interfere with starting threads.'],
|
||||||
'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'],
|
'Use Recaptcha v1 in Reports': [false, 'Use the text captcha in the report window.'],
|
||||||
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
|
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
|
||||||
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
|
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
|
||||||
@ -19994,7 +19995,7 @@ Captcha = {};
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (((Conf['Use Recaptcha v1'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) {
|
if (((Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && location.hostname === 'boards.4chan.org') || (Conf['Use Recaptcha v1 in Reports'] && location.hostname === 'sys.4chan.org')) && Main.jsEnabled) {
|
||||||
$.ready(Captcha.replace.v1);
|
$.ready(Captcha.replace.v1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -20764,7 +20765,7 @@ QR = (function() {
|
|||||||
if (g.VIEW === 'archive') {
|
if (g.VIEW === 'archive') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
version = Conf['Use Recaptcha v1'] && Main.jsEnabled ? 'v1' : 'v2';
|
version = Conf[g.VIEW === 'thread' ? 'Use Recaptcha v1' : 'Use Recaptcha v1 on Index'] && Main.jsEnabled ? 'v1' : 'v2';
|
||||||
this.captcha = Captcha[version];
|
this.captcha = Captcha[version];
|
||||||
$.on(d, '4chanXInitFinished', function() {
|
$.on(d, '4chanXInitFinished', function() {
|
||||||
return BoardConfig.ready(QR.initReady);
|
return BoardConfig.ready(QR.initReady);
|
||||||
|
|||||||
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.13.8.3' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.8.4' />
|
||||||
</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.13.8.3' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.8.4' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.8.3",
|
"version": "1.13.8.4",
|
||||||
"date": "2017-02-11T23:08:20.851Z"
|
"date": "2017-02-21T05:22:04.853Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user