Release 4chan X v1.10.12.7.
This commit is contained in:
parent
c412a25d5a
commit
6074e020e9
@ -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.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.
|
||||
|
||||
**v1.10.12.6** *(2015-05-15)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.12.6/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.12.6/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- (Hasumi) Update archive.moe: Add /an/.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.10.12.6
|
||||
// @version 1.10.12.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.10.12.6
|
||||
// @version 1.10.12.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -396,7 +396,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.10.12.6',
|
||||
VERSION: '1.10.12.7',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6787,7 +6787,7 @@
|
||||
$.on(d, 'drop', QR.dropFile);
|
||||
$.on(d, 'dragstart dragend', QR.drag);
|
||||
$.on(d, 'dragenter', QR.dragEnter);
|
||||
$.on(d, 'dragleave', QR.dragLeave);
|
||||
$.on(d, 'dragleave drop', QR.dragLeave);
|
||||
$.on(d, 'IndexRefresh', QR.generatePostableThreadsList);
|
||||
$.on(d, 'ThreadUpdate', QR.statusCheck);
|
||||
if (!Conf['Persistent QR']) {
|
||||
@ -7097,8 +7097,6 @@
|
||||
return e.dataTransfer.dropEffect = 'copy';
|
||||
},
|
||||
dropFile: function(e) {
|
||||
delete QR.dragTarget;
|
||||
$.rmClass(doc, 'dragging');
|
||||
if (!e.dataTransfer.files.length) {
|
||||
return;
|
||||
}
|
||||
@ -7111,7 +7109,7 @@
|
||||
return $.addClass(doc, 'dragging');
|
||||
},
|
||||
dragLeave: function(e) {
|
||||
if (QR.dragTarget === e.target) {
|
||||
if (QR.dragTarget === e.target || e.type === 'drop') {
|
||||
delete QR.dragTarget;
|
||||
return $.rmClass(doc, 'dragging');
|
||||
}
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.10.12.6
|
||||
// @version 1.10.12.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -395,7 +395,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.10.12.6',
|
||||
VERSION: '1.10.12.7',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6786,7 +6786,7 @@
|
||||
$.on(d, 'drop', QR.dropFile);
|
||||
$.on(d, 'dragstart dragend', QR.drag);
|
||||
$.on(d, 'dragenter', QR.dragEnter);
|
||||
$.on(d, 'dragleave', QR.dragLeave);
|
||||
$.on(d, 'dragleave drop', QR.dragLeave);
|
||||
$.on(d, 'IndexRefresh', QR.generatePostableThreadsList);
|
||||
$.on(d, 'ThreadUpdate', QR.statusCheck);
|
||||
if (!Conf['Persistent QR']) {
|
||||
@ -7096,8 +7096,6 @@
|
||||
return e.dataTransfer.dropEffect = 'copy';
|
||||
},
|
||||
dropFile: function(e) {
|
||||
delete QR.dragTarget;
|
||||
$.rmClass(doc, 'dragging');
|
||||
if (!e.dataTransfer.files.length) {
|
||||
return;
|
||||
}
|
||||
@ -7110,7 +7108,7 @@
|
||||
return $.addClass(doc, 'dragging');
|
||||
},
|
||||
dragLeave: function(e) {
|
||||
if (QR.dragTarget === e.target) {
|
||||
if (QR.dragTarget === e.target || e.type === 'drop') {
|
||||
delete QR.dragTarget;
|
||||
return $.rmClass(doc, 'dragging');
|
||||
}
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.10.12.6
|
||||
// @version 1.10.12.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.10.12.6
|
||||
// @version 1.10.12.7
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -396,7 +396,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.10.12.6',
|
||||
VERSION: '1.10.12.7',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -6787,7 +6787,7 @@
|
||||
$.on(d, 'drop', QR.dropFile);
|
||||
$.on(d, 'dragstart dragend', QR.drag);
|
||||
$.on(d, 'dragenter', QR.dragEnter);
|
||||
$.on(d, 'dragleave', QR.dragLeave);
|
||||
$.on(d, 'dragleave drop', QR.dragLeave);
|
||||
$.on(d, 'IndexRefresh', QR.generatePostableThreadsList);
|
||||
$.on(d, 'ThreadUpdate', QR.statusCheck);
|
||||
if (!Conf['Persistent QR']) {
|
||||
@ -7097,8 +7097,6 @@
|
||||
return e.dataTransfer.dropEffect = 'copy';
|
||||
},
|
||||
dropFile: function(e) {
|
||||
delete QR.dragTarget;
|
||||
$.rmClass(doc, 'dragging');
|
||||
if (!e.dataTransfer.files.length) {
|
||||
return;
|
||||
}
|
||||
@ -7111,7 +7109,7 @@
|
||||
return $.addClass(doc, 'dragging');
|
||||
},
|
||||
dragLeave: function(e) {
|
||||
if (QR.dragTarget === e.target) {
|
||||
if (QR.dragTarget === e.target || e.type === 'drop') {
|
||||
delete QR.dragTarget;
|
||||
return $.rmClass(doc, 'dragging');
|
||||
}
|
||||
|
||||
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.6' />
|
||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.12.7' />
|
||||
</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.6' />
|
||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.12.7' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,8 +3,8 @@
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"meta": {
|
||||
"name": "4chan X",
|
||||
"version": "1.10.12.6",
|
||||
"date": "2015-05-16T01:36:35.059Z",
|
||||
"version": "1.10.12.7",
|
||||
"date": "2015-05-16T04:00:09.864Z",
|
||||
"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