Release 4chan X v1.13.15.5.
This commit is contained in:
parent
6a5d6fd632
commit
719097340b
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.13.15
|
### v1.13.15
|
||||||
|
|
||||||
|
**v1.13.15.5** *(2018-01-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.5/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.5/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Add link in settings to captcha FAQ.
|
||||||
|
|
||||||
**v1.13.15.4** *(2018-01-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.4/builds/4chan-X-noupdate.crx)]
|
**v1.13.15.4** *(2018-01-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.15.4/builds/4chan-X-noupdate.crx)]
|
||||||
- Remove Recaptcha v1 options.
|
- Remove Recaptcha v1 options.
|
||||||
- Don't require captcha if cookie is set indicating captcha not needed yet. #1767
|
- Don't require captcha if cookie is set indicating captcha not needed yet. #1767
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.15.4
|
// @version 1.13.15.5
|
||||||
// @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.15.4
|
// @version 1.13.15.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -159,7 +159,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.15.4',
|
VERSION: '1.13.15.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -322,7 +322,7 @@ 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.'],
|
||||||
'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.'],
|
||||||
'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.']
|
||||||
},
|
},
|
||||||
'Quote Links': {
|
'Quote Links': {
|
||||||
@ -1809,6 +1809,9 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
|||||||
border-left: 1px solid;\n\
|
border-left: 1px solid;\n\
|
||||||
border-bottom: 1px solid;\n\
|
border-bottom: 1px solid;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
#fourchanx-settings .section-main p {\n\
|
||||||
|
margin: .5em 0 0;\n\
|
||||||
|
}\n\
|
||||||
.section-filter ul {\n\
|
.section-filter ul {\n\
|
||||||
padding: 0;\n\
|
padding: 0;\n\
|
||||||
}\n\
|
}\n\
|
||||||
@ -11085,7 +11088,7 @@ Settings = (function() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
main: function(section) {
|
main: function(section) {
|
||||||
var addCheckboxes, addWarning, button, div, fs, inputs, items, key, obj, ref, ref1, warning, warnings;
|
var addCheckboxes, addWarning, button, div, fs, inputs, items, key, keyFS, obj, ref, ref1, warning, warnings;
|
||||||
warnings = $.el('fieldset', {
|
warnings = $.el('fieldset', {
|
||||||
hidden: true
|
hidden: true
|
||||||
}, {
|
}, {
|
||||||
@ -11139,12 +11142,17 @@ Settings = (function() {
|
|||||||
return results;
|
return results;
|
||||||
};
|
};
|
||||||
ref1 = Config.main;
|
ref1 = Config.main;
|
||||||
for (key in ref1) {
|
for (keyFS in ref1) {
|
||||||
obj = ref1[key];
|
obj = ref1[keyFS];
|
||||||
fs = $.el('fieldset', {
|
fs = $.el('fieldset', {
|
||||||
innerHTML: "<legend>" + E(key) + "</legend>"
|
innerHTML: "<legend>" + E(keyFS) + "</legend>"
|
||||||
});
|
});
|
||||||
addCheckboxes(fs, obj);
|
addCheckboxes(fs, obj);
|
||||||
|
if (keyFS === 'Posting and Captchas') {
|
||||||
|
$.add(fs, $.el('p', {
|
||||||
|
innerHTML: "For more info on captcha options and issues, see the <a href=\"https://github.com/ccd0/4chan-x/wiki/Captcha-FAQ\" target=\"_blank\">captcha FAQ</a>."
|
||||||
|
}));
|
||||||
|
}
|
||||||
$.add(section, fs);
|
$.add(section, fs);
|
||||||
}
|
}
|
||||||
addCheckboxes($('div[data-name="JSON Index"] > .suboption-list', section), Config.Index);
|
addCheckboxes($('div[data-name="JSON Index"] > .suboption-list', section), Config.Index);
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.15.4
|
// @version 1.13.15.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -159,7 +159,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.15.4',
|
VERSION: '1.13.15.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -322,7 +322,7 @@ 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.'],
|
||||||
'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.'],
|
||||||
'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.']
|
||||||
},
|
},
|
||||||
'Quote Links': {
|
'Quote Links': {
|
||||||
@ -1809,6 +1809,9 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
|||||||
border-left: 1px solid;\n\
|
border-left: 1px solid;\n\
|
||||||
border-bottom: 1px solid;\n\
|
border-bottom: 1px solid;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
#fourchanx-settings .section-main p {\n\
|
||||||
|
margin: .5em 0 0;\n\
|
||||||
|
}\n\
|
||||||
.section-filter ul {\n\
|
.section-filter ul {\n\
|
||||||
padding: 0;\n\
|
padding: 0;\n\
|
||||||
}\n\
|
}\n\
|
||||||
@ -11085,7 +11088,7 @@ Settings = (function() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
main: function(section) {
|
main: function(section) {
|
||||||
var addCheckboxes, addWarning, button, div, fs, inputs, items, key, obj, ref, ref1, warning, warnings;
|
var addCheckboxes, addWarning, button, div, fs, inputs, items, key, keyFS, obj, ref, ref1, warning, warnings;
|
||||||
warnings = $.el('fieldset', {
|
warnings = $.el('fieldset', {
|
||||||
hidden: true
|
hidden: true
|
||||||
}, {
|
}, {
|
||||||
@ -11139,12 +11142,17 @@ Settings = (function() {
|
|||||||
return results;
|
return results;
|
||||||
};
|
};
|
||||||
ref1 = Config.main;
|
ref1 = Config.main;
|
||||||
for (key in ref1) {
|
for (keyFS in ref1) {
|
||||||
obj = ref1[key];
|
obj = ref1[keyFS];
|
||||||
fs = $.el('fieldset', {
|
fs = $.el('fieldset', {
|
||||||
innerHTML: "<legend>" + E(key) + "</legend>"
|
innerHTML: "<legend>" + E(keyFS) + "</legend>"
|
||||||
});
|
});
|
||||||
addCheckboxes(fs, obj);
|
addCheckboxes(fs, obj);
|
||||||
|
if (keyFS === 'Posting and Captchas') {
|
||||||
|
$.add(fs, $.el('p', {
|
||||||
|
innerHTML: "For more info on captcha options and issues, see the <a href=\"https://github.com/ccd0/4chan-x/wiki/Captcha-FAQ\" target=\"_blank\">captcha FAQ</a>."
|
||||||
|
}));
|
||||||
|
}
|
||||||
$.add(section, fs);
|
$.add(section, fs);
|
||||||
}
|
}
|
||||||
addCheckboxes($('div[data-name="JSON Index"] > .suboption-list', section), Config.Index);
|
addCheckboxes($('div[data-name="JSON Index"] > .suboption-list', section), Config.Index);
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.15.4
|
// @version 1.13.15.5
|
||||||
// @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.15.4
|
// @version 1.13.15.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -159,7 +159,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.15.4',
|
VERSION: '1.13.15.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -322,7 +322,7 @@ 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.'],
|
||||||
'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.'],
|
||||||
'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.']
|
||||||
},
|
},
|
||||||
'Quote Links': {
|
'Quote Links': {
|
||||||
@ -1809,6 +1809,9 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
|||||||
border-left: 1px solid;\n\
|
border-left: 1px solid;\n\
|
||||||
border-bottom: 1px solid;\n\
|
border-bottom: 1px solid;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
#fourchanx-settings .section-main p {\n\
|
||||||
|
margin: .5em 0 0;\n\
|
||||||
|
}\n\
|
||||||
.section-filter ul {\n\
|
.section-filter ul {\n\
|
||||||
padding: 0;\n\
|
padding: 0;\n\
|
||||||
}\n\
|
}\n\
|
||||||
@ -11085,7 +11088,7 @@ Settings = (function() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
main: function(section) {
|
main: function(section) {
|
||||||
var addCheckboxes, addWarning, button, div, fs, inputs, items, key, obj, ref, ref1, warning, warnings;
|
var addCheckboxes, addWarning, button, div, fs, inputs, items, key, keyFS, obj, ref, ref1, warning, warnings;
|
||||||
warnings = $.el('fieldset', {
|
warnings = $.el('fieldset', {
|
||||||
hidden: true
|
hidden: true
|
||||||
}, {
|
}, {
|
||||||
@ -11139,12 +11142,17 @@ Settings = (function() {
|
|||||||
return results;
|
return results;
|
||||||
};
|
};
|
||||||
ref1 = Config.main;
|
ref1 = Config.main;
|
||||||
for (key in ref1) {
|
for (keyFS in ref1) {
|
||||||
obj = ref1[key];
|
obj = ref1[keyFS];
|
||||||
fs = $.el('fieldset', {
|
fs = $.el('fieldset', {
|
||||||
innerHTML: "<legend>" + E(key) + "</legend>"
|
innerHTML: "<legend>" + E(keyFS) + "</legend>"
|
||||||
});
|
});
|
||||||
addCheckboxes(fs, obj);
|
addCheckboxes(fs, obj);
|
||||||
|
if (keyFS === 'Posting and Captchas') {
|
||||||
|
$.add(fs, $.el('p', {
|
||||||
|
innerHTML: "For more info on captcha options and issues, see the <a href=\"https://github.com/ccd0/4chan-x/wiki/Captcha-FAQ\" target=\"_blank\">captcha FAQ</a>."
|
||||||
|
}));
|
||||||
|
}
|
||||||
$.add(section, fs);
|
$.add(section, fs);
|
||||||
}
|
}
|
||||||
addCheckboxes($('div[data-name="JSON Index"] > .suboption-list', section), Config.Index);
|
addCheckboxes($('div[data-name="JSON Index"] > .suboption-list', section), Config.Index);
|
||||||
|
|||||||
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.13.15.4",
|
"version": "1.13.15.5",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.15.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.15.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.13.15.4",
|
"version": "1.13.15.5",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.15.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.15.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.15.4",
|
"version": "1.13.15.5",
|
||||||
"date": "2018-01-23T19:04:36.978Z"
|
"date": "2018-01-23T21:09:54.187Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user