Release 4chan X v1.12.1.4.
This commit is contained in:
parent
1ab4856474
commit
a709c6755c
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
### v1.12.1
|
### 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)]
|
**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.
|
- Fix error message in MathJax popups in Firefox.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.12.1.3
|
// @version 1.12.1.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.12.1.3
|
// @version 1.12.1.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.12.1.3',
|
VERSION: '1.12.1.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -2543,7 +2543,7 @@ input.field.tripped:not(:hover):not(:focus) {\n\
|
|||||||
margin: auto;\n\
|
margin: auto;\n\
|
||||||
width: 304px;\n\
|
width: 304px;\n\
|
||||||
}\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\
|
:root.ua-blink #qr .captcha-container > div {\n\
|
||||||
overflow: hidden;\n\
|
overflow: hidden;\n\
|
||||||
}\n\
|
}\n\
|
||||||
@ -2551,6 +2551,8 @@ input.field.tripped:not(:hover):not(:focus) {\n\
|
|||||||
overflow-y: scroll;\n\
|
overflow-y: scroll;\n\
|
||||||
overflow-x: hidden;\n\
|
overflow-x: hidden;\n\
|
||||||
padding-right: 15px;\n\
|
padding-right: 15px;\n\
|
||||||
|
height: 99%;\n\
|
||||||
|
width: 100%;\n\
|
||||||
}\n\
|
}\n\
|
||||||
#qr .captcha-counter {\n\
|
#qr .captcha-counter {\n\
|
||||||
display: block;\n\
|
display: block;\n\
|
||||||
@ -18957,6 +18959,8 @@ Captcha = {};
|
|||||||
}).call(this);
|
}).call(this);
|
||||||
|
|
||||||
(function() {
|
(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 = {
|
Captcha.v2 = {
|
||||||
lifetime: 2 * $.MINUTE,
|
lifetime: 2 * $.MINUTE,
|
||||||
init: function() {
|
init: function() {
|
||||||
@ -19145,6 +19149,7 @@ Captcha = {};
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
setupIFrame: function(iframe) {
|
setupIFrame: function(iframe) {
|
||||||
|
var ref;
|
||||||
if (!doc.contains(iframe)) {
|
if (!doc.contains(iframe)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -19155,11 +19160,16 @@ Captcha = {};
|
|||||||
if (d.activeElement === this.nodes.counter) {
|
if (d.activeElement === this.nodes.counter) {
|
||||||
iframe.focus();
|
iframe.focus();
|
||||||
}
|
}
|
||||||
return $.global(function() {
|
$.global(function() {
|
||||||
var f;
|
var f;
|
||||||
f = document.querySelector('#qr iframe');
|
f = document.querySelector('#qr iframe');
|
||||||
return f.focus = f.blur = function() {};
|
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() {
|
fixQRPosition: function() {
|
||||||
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {
|
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.12.1.3
|
// @version 1.12.1.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.12.1.3',
|
VERSION: '1.12.1.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -2543,7 +2543,7 @@ input.field.tripped:not(:hover):not(:focus) {\n\
|
|||||||
margin: auto;\n\
|
margin: auto;\n\
|
||||||
width: 304px;\n\
|
width: 304px;\n\
|
||||||
}\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\
|
:root.ua-blink #qr .captcha-container > div {\n\
|
||||||
overflow: hidden;\n\
|
overflow: hidden;\n\
|
||||||
}\n\
|
}\n\
|
||||||
@ -2551,6 +2551,8 @@ input.field.tripped:not(:hover):not(:focus) {\n\
|
|||||||
overflow-y: scroll;\n\
|
overflow-y: scroll;\n\
|
||||||
overflow-x: hidden;\n\
|
overflow-x: hidden;\n\
|
||||||
padding-right: 15px;\n\
|
padding-right: 15px;\n\
|
||||||
|
height: 99%;\n\
|
||||||
|
width: 100%;\n\
|
||||||
}\n\
|
}\n\
|
||||||
#qr .captcha-counter {\n\
|
#qr .captcha-counter {\n\
|
||||||
display: block;\n\
|
display: block;\n\
|
||||||
@ -18957,6 +18959,8 @@ Captcha = {};
|
|||||||
}).call(this);
|
}).call(this);
|
||||||
|
|
||||||
(function() {
|
(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 = {
|
Captcha.v2 = {
|
||||||
lifetime: 2 * $.MINUTE,
|
lifetime: 2 * $.MINUTE,
|
||||||
init: function() {
|
init: function() {
|
||||||
@ -19145,6 +19149,7 @@ Captcha = {};
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
setupIFrame: function(iframe) {
|
setupIFrame: function(iframe) {
|
||||||
|
var ref;
|
||||||
if (!doc.contains(iframe)) {
|
if (!doc.contains(iframe)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -19155,11 +19160,16 @@ Captcha = {};
|
|||||||
if (d.activeElement === this.nodes.counter) {
|
if (d.activeElement === this.nodes.counter) {
|
||||||
iframe.focus();
|
iframe.focus();
|
||||||
}
|
}
|
||||||
return $.global(function() {
|
$.global(function() {
|
||||||
var f;
|
var f;
|
||||||
f = document.querySelector('#qr iframe');
|
f = document.querySelector('#qr iframe');
|
||||||
return f.focus = f.blur = function() {};
|
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() {
|
fixQRPosition: function() {
|
||||||
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {
|
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.12.1.3
|
// @version 1.12.1.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.12.1.3
|
// @version 1.12.1.4
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.12.1.3',
|
VERSION: '1.12.1.4',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -2543,7 +2543,7 @@ input.field.tripped:not(:hover):not(:focus) {\n\
|
|||||||
margin: auto;\n\
|
margin: auto;\n\
|
||||||
width: 304px;\n\
|
width: 304px;\n\
|
||||||
}\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\
|
:root.ua-blink #qr .captcha-container > div {\n\
|
||||||
overflow: hidden;\n\
|
overflow: hidden;\n\
|
||||||
}\n\
|
}\n\
|
||||||
@ -2551,6 +2551,8 @@ input.field.tripped:not(:hover):not(:focus) {\n\
|
|||||||
overflow-y: scroll;\n\
|
overflow-y: scroll;\n\
|
||||||
overflow-x: hidden;\n\
|
overflow-x: hidden;\n\
|
||||||
padding-right: 15px;\n\
|
padding-right: 15px;\n\
|
||||||
|
height: 99%;\n\
|
||||||
|
width: 100%;\n\
|
||||||
}\n\
|
}\n\
|
||||||
#qr .captcha-counter {\n\
|
#qr .captcha-counter {\n\
|
||||||
display: block;\n\
|
display: block;\n\
|
||||||
@ -18957,6 +18959,8 @@ Captcha = {};
|
|||||||
}).call(this);
|
}).call(this);
|
||||||
|
|
||||||
(function() {
|
(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 = {
|
Captcha.v2 = {
|
||||||
lifetime: 2 * $.MINUTE,
|
lifetime: 2 * $.MINUTE,
|
||||||
init: function() {
|
init: function() {
|
||||||
@ -19145,6 +19149,7 @@ Captcha = {};
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
setupIFrame: function(iframe) {
|
setupIFrame: function(iframe) {
|
||||||
|
var ref;
|
||||||
if (!doc.contains(iframe)) {
|
if (!doc.contains(iframe)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -19155,11 +19160,16 @@ Captcha = {};
|
|||||||
if (d.activeElement === this.nodes.counter) {
|
if (d.activeElement === this.nodes.counter) {
|
||||||
iframe.focus();
|
iframe.focus();
|
||||||
}
|
}
|
||||||
return $.global(function() {
|
$.global(function() {
|
||||||
var f;
|
var f;
|
||||||
f = document.querySelector('#qr iframe');
|
f = document.querySelector('#qr iframe');
|
||||||
return f.focus = f.blur = function() {};
|
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() {
|
fixQRPosition: function() {
|
||||||
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {
|
if (QR.nodes.el.getBoundingClientRect().bottom > doc.clientHeight) {
|
||||||
|
|||||||
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.12.1.3' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.12.1.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.12.1.3' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.12.1.4' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.12.1.3",
|
"version": "1.12.1.4",
|
||||||
"date": "2016-07-07T23:01:41.318Z"
|
"date": "2016-07-09T16:29:32.443Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user