Release 4chan X v1.12.1.4.

This commit is contained in:
ccd0 2016-07-09 09:35:37 -07:00
parent 1ab4856474
commit a709c6755c
13 changed files with 51 additions and 18 deletions

View File

@ -2,6 +2,9 @@
### v1.12.1
**v1.12.1.4** *(2016-07-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.4/builds/4chan-X-noupdate.crx)]
- Re-fix scrolling on space in captcha in Chromium-based browsers.
**v1.12.1.3** *(2016-07-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.3/builds/4chan-X-noupdate.crx)]
- Fix error message in MathJax popups in Firefox.

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.12.1.3
// @version 1.12.1.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.12.1.3
// @version 1.12.1.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -136,7 +136,7 @@ docSet = function() {
};
g = {
VERSION: '1.12.1.3',
VERSION: '1.12.1.4',
NAMESPACE: '4chan X.',
boards: {}
};
@ -2543,7 +2543,7 @@ input.field.tripped:not(:hover):not(:focus) {\n\
margin: auto;\n\
width: 304px;\n\
}\n\
/* scrollable with scroll bar hidden; prevents scroll on space press */\n\
/* XXX scrollable with scroll bar hidden; prevents scroll on space press */\n\
:root.ua-blink #qr .captcha-container > div {\n\
overflow: hidden;\n\
}\n\
@ -2551,6 +2551,8 @@ input.field.tripped:not(:hover):not(:focus) {\n\
overflow-y: scroll;\n\
overflow-x: hidden;\n\
padding-right: 15px;\n\
height: 99%;\n\
width: 100%;\n\
}\n\
#qr .captcha-counter {\n\
display: block;\n\
@ -18957,6 +18959,8 @@ Captcha = {};
}).call(this);
(function() {
var indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
Captcha.v2 = {
lifetime: 2 * $.MINUTE,
init: function() {
@ -19145,6 +19149,7 @@ Captcha = {};
}
},
setupIFrame: function(iframe) {
var ref;
if (!doc.contains(iframe)) {
return;
}
@ -19155,11 +19160,16 @@ Captcha = {};
if (d.activeElement === this.nodes.counter) {
iframe.focus();
}
return $.global(function() {
$.global(function() {
var f;
f = document.querySelector('#qr iframe');
return f.focus = f.blur = function() {};
});
if ($.engine === 'blink' && (ref = iframe.parentNode, indexOf.call($$('#qr .captcha-container > div > div:first-of-type'), ref) >= 0)) {
return $.on(iframe.parentNode, 'scroll', function() {
return this.scrollTop = 0;
});
}
},
fixQRPosition: function() {
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.12.1.3
// @version 1.12.1.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -136,7 +136,7 @@ docSet = function() {
};
g = {
VERSION: '1.12.1.3',
VERSION: '1.12.1.4',
NAMESPACE: '4chan X.',
boards: {}
};
@ -2543,7 +2543,7 @@ input.field.tripped:not(:hover):not(:focus) {\n\
margin: auto;\n\
width: 304px;\n\
}\n\
/* scrollable with scroll bar hidden; prevents scroll on space press */\n\
/* XXX scrollable with scroll bar hidden; prevents scroll on space press */\n\
:root.ua-blink #qr .captcha-container > div {\n\
overflow: hidden;\n\
}\n\
@ -2551,6 +2551,8 @@ input.field.tripped:not(:hover):not(:focus) {\n\
overflow-y: scroll;\n\
overflow-x: hidden;\n\
padding-right: 15px;\n\
height: 99%;\n\
width: 100%;\n\
}\n\
#qr .captcha-counter {\n\
display: block;\n\
@ -18957,6 +18959,8 @@ Captcha = {};
}).call(this);
(function() {
var indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
Captcha.v2 = {
lifetime: 2 * $.MINUTE,
init: function() {
@ -19145,6 +19149,7 @@ Captcha = {};
}
},
setupIFrame: function(iframe) {
var ref;
if (!doc.contains(iframe)) {
return;
}
@ -19155,11 +19160,16 @@ Captcha = {};
if (d.activeElement === this.nodes.counter) {
iframe.focus();
}
return $.global(function() {
$.global(function() {
var f;
f = document.querySelector('#qr iframe');
return f.focus = f.blur = function() {};
});
if ($.engine === 'blink' && (ref = iframe.parentNode, indexOf.call($$('#qr .captcha-container > div > div:first-of-type'), ref) >= 0)) {
return $.on(iframe.parentNode, 'scroll', function() {
return this.scrollTop = 0;
});
}
},
fixQRPosition: function() {
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.12.1.3
// @version 1.12.1.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.12.1.3
// @version 1.12.1.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -136,7 +136,7 @@ docSet = function() {
};
g = {
VERSION: '1.12.1.3',
VERSION: '1.12.1.4',
NAMESPACE: '4chan X.',
boards: {}
};
@ -2543,7 +2543,7 @@ input.field.tripped:not(:hover):not(:focus) {\n\
margin: auto;\n\
width: 304px;\n\
}\n\
/* scrollable with scroll bar hidden; prevents scroll on space press */\n\
/* XXX scrollable with scroll bar hidden; prevents scroll on space press */\n\
:root.ua-blink #qr .captcha-container > div {\n\
overflow: hidden;\n\
}\n\
@ -2551,6 +2551,8 @@ input.field.tripped:not(:hover):not(:focus) {\n\
overflow-y: scroll;\n\
overflow-x: hidden;\n\
padding-right: 15px;\n\
height: 99%;\n\
width: 100%;\n\
}\n\
#qr .captcha-counter {\n\
display: block;\n\
@ -18957,6 +18959,8 @@ Captcha = {};
}).call(this);
(function() {
var indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
Captcha.v2 = {
lifetime: 2 * $.MINUTE,
init: function() {
@ -19145,6 +19149,7 @@ Captcha = {};
}
},
setupIFrame: function(iframe) {
var ref;
if (!doc.contains(iframe)) {
return;
}
@ -19155,11 +19160,16 @@ Captcha = {};
if (d.activeElement === this.nodes.counter) {
iframe.focus();
}
return $.global(function() {
$.global(function() {
var f;
f = document.querySelector('#qr iframe');
return f.focus = f.blur = function() {};
});
if ($.engine === 'blink' && (ref = iframe.parentNode, indexOf.call($$('#qr .captcha-container > div > div:first-of-type'), ref) >= 0)) {
return $.on(iframe.parentNode, 'scroll', function() {
return this.scrollTop = 0;
});
}
},
fixQRPosition: function() {
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {

Binary file not shown.

View File

@ -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.12.1.3' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.12.1.4' />
</app>
</gupdate>

View File

@ -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.12.1.3' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.12.1.4' />
</app>
</gupdate>

View File

@ -1,4 +1,4 @@
{
"version": "1.12.1.3",
"date": "2016-07-07T23:01:41.318Z"
"version": "1.12.1.4",
"date": "2016-07-09T16:29:32.443Z"
}