Release 4chan X v1.11.17.9.
This commit is contained in:
parent
221ca3d5b3
commit
d0dadd2110
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
||||
|
||||
### v1.11.17
|
||||
|
||||
**v1.11.17.9** *(2015-11-24)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.9/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.9/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Support solving 4x4 image captchas with keys in 7-0-/-M square.
|
||||
|
||||
**v1.11.17.8** *(2015-11-20)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.8/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.17.8/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- A few more captcha focusing tweaks.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.17.8
|
||||
// @version 1.11.17.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.17.8
|
||||
// @version 1.11.17.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.8',
|
||||
VERSION: '1.11.17.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7955,6 +7955,7 @@
|
||||
|
||||
Captcha.fixes = {
|
||||
imageKeys: '789456123uiojklm'.split('').concat(['Comma', 'Period']),
|
||||
imageKeys16: '7890uiopjkl'.split('').concat(['Semicolon', 'm', 'Comma', 'Period', 'Slash']),
|
||||
css: '.rc-imageselect-target > div:focus {\n outline: 2px solid #4a90e2;\n}\n.rc-imageselect-target td:focus {\n box-shadow: inset 0 0 0 2px #4a90e2;\n outline: none;\n}\n.rc-button-default:focus {\n box-shadow: inset 0 0 0 2px #0063d6;\n}',
|
||||
cssNoscript: '.fbc-payload-imageselect {\n position: relative;\n}\n.fbc-payload-imageselect > label {\n position: absolute;\n display: block;\n height: 93.3px;\n width: 93.3px;\n}\nlabel[data-row="0"] {top: 0px;}\nlabel[data-row="1"] {top: 93.3px;}\nlabel[data-row="2"] {top: 186.6px;}\nlabel[data-col="0"] {left: 0px;}\nlabel[data-col="1"] {left: 93.3px;}\nlabel[data-col="2"] {left: 186.6px;}',
|
||||
init: function() {
|
||||
@ -8016,6 +8017,9 @@
|
||||
if (this.images.length === 9) {
|
||||
this.addTooltips(this.images);
|
||||
}
|
||||
if (this.images.length === 16) {
|
||||
this.addTooltips16(this.images);
|
||||
}
|
||||
return this.complaintLinks();
|
||||
},
|
||||
complaintLinks: function() {
|
||||
@ -8062,6 +8066,13 @@
|
||||
node.title = this.imageKeys[i] + " or " + (this.imageKeys[i + 9][0].toUpperCase()) + this.imageKeys[i + 9].slice(1);
|
||||
}
|
||||
},
|
||||
addTooltips16: function(nodes) {
|
||||
var i, k, len1, node;
|
||||
for (i = k = 0, len1 = nodes.length; k < len1; i = ++k) {
|
||||
node = nodes[i];
|
||||
node.title = "" + (this.imageKeys16[i][0].toUpperCase()) + this.imageKeys16[i].slice(1);
|
||||
}
|
||||
},
|
||||
checkForm: function(e) {
|
||||
var checkbox, k, len1, n, ref;
|
||||
n = 0;
|
||||
@ -8096,6 +8107,9 @@
|
||||
} else if (n === 9 && (i = this.imageKeys.indexOf(key)) >= 0) {
|
||||
this.images[i % 9].click();
|
||||
verify.focus();
|
||||
} else if (n === 16 && (i = this.imageKeys16.indexOf(key)) >= 0) {
|
||||
this.images[i].click();
|
||||
verify.focus();
|
||||
} else if (dx = {
|
||||
'Up': n,
|
||||
'Down': w,
|
||||
@ -16052,6 +16066,11 @@
|
||||
return 'Comma';
|
||||
case 190:
|
||||
return 'Period';
|
||||
case 191:
|
||||
return 'Slash';
|
||||
case 59:
|
||||
case 186:
|
||||
return 'Semicolon';
|
||||
default:
|
||||
if ((48 <= kc && kc <= 57) || (65 <= kc && kc <= 90)) {
|
||||
return String.fromCharCode(kc).toLowerCase();
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.8
|
||||
// @version 1.11.17.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.8',
|
||||
VERSION: '1.11.17.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7955,6 +7955,7 @@
|
||||
|
||||
Captcha.fixes = {
|
||||
imageKeys: '789456123uiojklm'.split('').concat(['Comma', 'Period']),
|
||||
imageKeys16: '7890uiopjkl'.split('').concat(['Semicolon', 'm', 'Comma', 'Period', 'Slash']),
|
||||
css: '.rc-imageselect-target > div:focus {\n outline: 2px solid #4a90e2;\n}\n.rc-imageselect-target td:focus {\n box-shadow: inset 0 0 0 2px #4a90e2;\n outline: none;\n}\n.rc-button-default:focus {\n box-shadow: inset 0 0 0 2px #0063d6;\n}',
|
||||
cssNoscript: '.fbc-payload-imageselect {\n position: relative;\n}\n.fbc-payload-imageselect > label {\n position: absolute;\n display: block;\n height: 93.3px;\n width: 93.3px;\n}\nlabel[data-row="0"] {top: 0px;}\nlabel[data-row="1"] {top: 93.3px;}\nlabel[data-row="2"] {top: 186.6px;}\nlabel[data-col="0"] {left: 0px;}\nlabel[data-col="1"] {left: 93.3px;}\nlabel[data-col="2"] {left: 186.6px;}',
|
||||
init: function() {
|
||||
@ -8016,6 +8017,9 @@
|
||||
if (this.images.length === 9) {
|
||||
this.addTooltips(this.images);
|
||||
}
|
||||
if (this.images.length === 16) {
|
||||
this.addTooltips16(this.images);
|
||||
}
|
||||
return this.complaintLinks();
|
||||
},
|
||||
complaintLinks: function() {
|
||||
@ -8062,6 +8066,13 @@
|
||||
node.title = this.imageKeys[i] + " or " + (this.imageKeys[i + 9][0].toUpperCase()) + this.imageKeys[i + 9].slice(1);
|
||||
}
|
||||
},
|
||||
addTooltips16: function(nodes) {
|
||||
var i, k, len1, node;
|
||||
for (i = k = 0, len1 = nodes.length; k < len1; i = ++k) {
|
||||
node = nodes[i];
|
||||
node.title = "" + (this.imageKeys16[i][0].toUpperCase()) + this.imageKeys16[i].slice(1);
|
||||
}
|
||||
},
|
||||
checkForm: function(e) {
|
||||
var checkbox, k, len1, n, ref;
|
||||
n = 0;
|
||||
@ -8096,6 +8107,9 @@
|
||||
} else if (n === 9 && (i = this.imageKeys.indexOf(key)) >= 0) {
|
||||
this.images[i % 9].click();
|
||||
verify.focus();
|
||||
} else if (n === 16 && (i = this.imageKeys16.indexOf(key)) >= 0) {
|
||||
this.images[i].click();
|
||||
verify.focus();
|
||||
} else if (dx = {
|
||||
'Up': n,
|
||||
'Down': w,
|
||||
@ -16052,6 +16066,11 @@
|
||||
return 'Comma';
|
||||
case 190:
|
||||
return 'Period';
|
||||
case 191:
|
||||
return 'Slash';
|
||||
case 59:
|
||||
case 186:
|
||||
return 'Semicolon';
|
||||
default:
|
||||
if ((48 <= kc && kc <= 57) || (65 <= kc && kc <= 90)) {
|
||||
return String.fromCharCode(kc).toLowerCase();
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.8
|
||||
// @version 1.11.17.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.17.8
|
||||
// @version 1.11.17.9
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.17.8',
|
||||
VERSION: '1.11.17.9',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7955,6 +7955,7 @@
|
||||
|
||||
Captcha.fixes = {
|
||||
imageKeys: '789456123uiojklm'.split('').concat(['Comma', 'Period']),
|
||||
imageKeys16: '7890uiopjkl'.split('').concat(['Semicolon', 'm', 'Comma', 'Period', 'Slash']),
|
||||
css: '.rc-imageselect-target > div:focus {\n outline: 2px solid #4a90e2;\n}\n.rc-imageselect-target td:focus {\n box-shadow: inset 0 0 0 2px #4a90e2;\n outline: none;\n}\n.rc-button-default:focus {\n box-shadow: inset 0 0 0 2px #0063d6;\n}',
|
||||
cssNoscript: '.fbc-payload-imageselect {\n position: relative;\n}\n.fbc-payload-imageselect > label {\n position: absolute;\n display: block;\n height: 93.3px;\n width: 93.3px;\n}\nlabel[data-row="0"] {top: 0px;}\nlabel[data-row="1"] {top: 93.3px;}\nlabel[data-row="2"] {top: 186.6px;}\nlabel[data-col="0"] {left: 0px;}\nlabel[data-col="1"] {left: 93.3px;}\nlabel[data-col="2"] {left: 186.6px;}',
|
||||
init: function() {
|
||||
@ -8016,6 +8017,9 @@
|
||||
if (this.images.length === 9) {
|
||||
this.addTooltips(this.images);
|
||||
}
|
||||
if (this.images.length === 16) {
|
||||
this.addTooltips16(this.images);
|
||||
}
|
||||
return this.complaintLinks();
|
||||
},
|
||||
complaintLinks: function() {
|
||||
@ -8062,6 +8066,13 @@
|
||||
node.title = this.imageKeys[i] + " or " + (this.imageKeys[i + 9][0].toUpperCase()) + this.imageKeys[i + 9].slice(1);
|
||||
}
|
||||
},
|
||||
addTooltips16: function(nodes) {
|
||||
var i, k, len1, node;
|
||||
for (i = k = 0, len1 = nodes.length; k < len1; i = ++k) {
|
||||
node = nodes[i];
|
||||
node.title = "" + (this.imageKeys16[i][0].toUpperCase()) + this.imageKeys16[i].slice(1);
|
||||
}
|
||||
},
|
||||
checkForm: function(e) {
|
||||
var checkbox, k, len1, n, ref;
|
||||
n = 0;
|
||||
@ -8096,6 +8107,9 @@
|
||||
} else if (n === 9 && (i = this.imageKeys.indexOf(key)) >= 0) {
|
||||
this.images[i % 9].click();
|
||||
verify.focus();
|
||||
} else if (n === 16 && (i = this.imageKeys16.indexOf(key)) >= 0) {
|
||||
this.images[i].click();
|
||||
verify.focus();
|
||||
} else if (dx = {
|
||||
'Up': n,
|
||||
'Down': w,
|
||||
@ -16052,6 +16066,11 @@
|
||||
return 'Comma';
|
||||
case 190:
|
||||
return 'Period';
|
||||
case 191:
|
||||
return 'Slash';
|
||||
case 59:
|
||||
case 186:
|
||||
return 'Semicolon';
|
||||
default:
|
||||
if ((48 <= kc && kc <= 57) || (65 <= kc && kc <= 90)) {
|
||||
return String.fromCharCode(kc).toLowerCase();
|
||||
|
||||
Binary file not shown.
@ -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.11.17.8' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.17.9' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -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.11.17.8' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.17.9' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.17.8",
|
||||
"date": "2015-11-21T02:46:47.553Z"
|
||||
"version": "1.11.17.9",
|
||||
"date": "2015-11-25T05:45:29.594Z"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user