Release 4chan X v1.10.12.8.
This commit is contained in:
parent
c44dced894
commit
1afec2e1cc
@ -4,6 +4,9 @@ The links to individual versions below are to copies of the script with the upda
|
||||
|
||||
### v1.10.12
|
||||
|
||||
**v1.10.12.8** *(2015-05-22)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.12.8/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.12.8/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Remove guard against dropping files into captcha due to continued reports of disabled captchas.
|
||||
|
||||
**v1.10.12.7** *(2015-05-15)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.12.7/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.12.7/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Fix bug where dragging and dropping disabled the captcha even after the drop was complete.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.10.12.7
|
||||
// @version 1.10.12.8
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.10.12.7
|
||||
// @version 1.10.12.8
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -396,7 +396,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.10.12.7',
|
||||
VERSION: '1.10.12.8',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6786,8 +6786,6 @@
|
||||
$.on(d, 'dragover', QR.dragOver);
|
||||
$.on(d, 'drop', QR.dropFile);
|
||||
$.on(d, 'dragstart dragend', QR.drag);
|
||||
$.on(d, 'dragenter', QR.dragEnter);
|
||||
$.on(d, 'dragleave drop', QR.dragLeave);
|
||||
$.on(d, 'IndexRefresh', QR.generatePostableThreadsList);
|
||||
$.on(d, 'ThreadUpdate', QR.statusCheck);
|
||||
if (!Conf['Persistent QR']) {
|
||||
@ -7104,16 +7102,6 @@
|
||||
QR.open();
|
||||
return QR.handleFiles(e.dataTransfer.files);
|
||||
},
|
||||
dragEnter: function(e) {
|
||||
QR.dragTarget = e.target;
|
||||
return $.addClass(doc, 'dragging');
|
||||
},
|
||||
dragLeave: function(e) {
|
||||
if (QR.dragTarget === e.target || e.type === 'drop') {
|
||||
delete QR.dragTarget;
|
||||
return $.rmClass(doc, 'dragging');
|
||||
}
|
||||
},
|
||||
paste: function(e) {
|
||||
var blob, files, item, k, len1, ref;
|
||||
if (!e.clipboardData.items) {
|
||||
@ -18514,10 +18502,6 @@
|
||||
".goog-bubble-content iframe {\n" +
|
||||
" position: static !important;\n" +
|
||||
"}\n" +
|
||||
"/* Prevent dragging files into captcha */\n" +
|
||||
":root.dragging iframe {\n" +
|
||||
" pointer-events: none;\n" +
|
||||
"}\n" +
|
||||
"/* File Input, Submit Button */\n" +
|
||||
"#file-n-submit {\n" +
|
||||
" display: -webkit-flex;\n" +
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.10.12.7
|
||||
// @version 1.10.12.8
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -395,7 +395,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.10.12.7',
|
||||
VERSION: '1.10.12.8',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6785,8 +6785,6 @@
|
||||
$.on(d, 'dragover', QR.dragOver);
|
||||
$.on(d, 'drop', QR.dropFile);
|
||||
$.on(d, 'dragstart dragend', QR.drag);
|
||||
$.on(d, 'dragenter', QR.dragEnter);
|
||||
$.on(d, 'dragleave drop', QR.dragLeave);
|
||||
$.on(d, 'IndexRefresh', QR.generatePostableThreadsList);
|
||||
$.on(d, 'ThreadUpdate', QR.statusCheck);
|
||||
if (!Conf['Persistent QR']) {
|
||||
@ -7103,16 +7101,6 @@
|
||||
QR.open();
|
||||
return QR.handleFiles(e.dataTransfer.files);
|
||||
},
|
||||
dragEnter: function(e) {
|
||||
QR.dragTarget = e.target;
|
||||
return $.addClass(doc, 'dragging');
|
||||
},
|
||||
dragLeave: function(e) {
|
||||
if (QR.dragTarget === e.target || e.type === 'drop') {
|
||||
delete QR.dragTarget;
|
||||
return $.rmClass(doc, 'dragging');
|
||||
}
|
||||
},
|
||||
paste: function(e) {
|
||||
var blob, files, item, k, len1, ref;
|
||||
if (!e.clipboardData.items) {
|
||||
@ -18513,10 +18501,6 @@
|
||||
".goog-bubble-content iframe {\n" +
|
||||
" position: static !important;\n" +
|
||||
"}\n" +
|
||||
"/* Prevent dragging files into captcha */\n" +
|
||||
":root.dragging iframe {\n" +
|
||||
" pointer-events: none;\n" +
|
||||
"}\n" +
|
||||
"/* File Input, Submit Button */\n" +
|
||||
"#file-n-submit {\n" +
|
||||
" display: -webkit-flex;\n" +
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.10.12.7
|
||||
// @version 1.10.12.8
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.10.12.7
|
||||
// @version 1.10.12.8
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -396,7 +396,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.10.12.7',
|
||||
VERSION: '1.10.12.8',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6786,8 +6786,6 @@
|
||||
$.on(d, 'dragover', QR.dragOver);
|
||||
$.on(d, 'drop', QR.dropFile);
|
||||
$.on(d, 'dragstart dragend', QR.drag);
|
||||
$.on(d, 'dragenter', QR.dragEnter);
|
||||
$.on(d, 'dragleave drop', QR.dragLeave);
|
||||
$.on(d, 'IndexRefresh', QR.generatePostableThreadsList);
|
||||
$.on(d, 'ThreadUpdate', QR.statusCheck);
|
||||
if (!Conf['Persistent QR']) {
|
||||
@ -7104,16 +7102,6 @@
|
||||
QR.open();
|
||||
return QR.handleFiles(e.dataTransfer.files);
|
||||
},
|
||||
dragEnter: function(e) {
|
||||
QR.dragTarget = e.target;
|
||||
return $.addClass(doc, 'dragging');
|
||||
},
|
||||
dragLeave: function(e) {
|
||||
if (QR.dragTarget === e.target || e.type === 'drop') {
|
||||
delete QR.dragTarget;
|
||||
return $.rmClass(doc, 'dragging');
|
||||
}
|
||||
},
|
||||
paste: function(e) {
|
||||
var blob, files, item, k, len1, ref;
|
||||
if (!e.clipboardData.items) {
|
||||
@ -18514,10 +18502,6 @@
|
||||
".goog-bubble-content iframe {\n" +
|
||||
" position: static !important;\n" +
|
||||
"}\n" +
|
||||
"/* Prevent dragging files into captcha */\n" +
|
||||
":root.dragging iframe {\n" +
|
||||
" pointer-events: none;\n" +
|
||||
"}\n" +
|
||||
"/* File Input, Submit Button */\n" +
|
||||
"#file-n-submit {\n" +
|
||||
" display: -webkit-flex;\n" +
|
||||
|
||||
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://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.12.7' />
|
||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.12.8' />
|
||||
</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://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.12.7' />
|
||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.12.8' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,8 +3,8 @@
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"meta": {
|
||||
"name": "4chan X",
|
||||
"version": "1.10.12.7",
|
||||
"date": "2015-05-16T04:00:09.864Z",
|
||||
"version": "1.10.12.8",
|
||||
"date": "2015-05-22T20:36:38.853Z",
|
||||
"repo": "https://github.com/ccd0/4chan-x/",
|
||||
"page": "https://github.com/ccd0/4chan-x",
|
||||
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user