Release 4chan X v1.11.0.2.
This commit is contained in:
parent
551b11d447
commit
3a42369464
@ -4,6 +4,9 @@ The links to individual versions below are to copies of the script with the upda
|
|||||||
|
|
||||||
## v1.11.0
|
## v1.11.0
|
||||||
|
|
||||||
|
**v1.11.0.2** *(2015-06-19)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.0.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.0.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Remove code that focused on first image of the captcha as Google now focuses on the refresh button.
|
||||||
|
|
||||||
**v1.11.0.1** *(2015-06-16)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.0.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.0.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.0.1** *(2015-06-16)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.0.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.0.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Merge v1.10.14.3: Fix words being cut off in non-Javascript captcha.
|
- Merge v1.10.14.3: Fix words being cut off in non-Javascript captcha.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.0.1
|
// @version 1.11.0.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.0.1
|
// @version 1.11.0.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -399,7 +399,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.0.1',
|
VERSION: '1.11.0.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -7653,34 +7653,13 @@
|
|||||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||||
},
|
},
|
||||||
fixImages: function() {
|
fixImages: function() {
|
||||||
var focus, img, k, len1, ref;
|
var img, k, len1, ref;
|
||||||
if (!(this.images = $$('.rc-imageselect-target > div')).length) {
|
this.images = $$('.rc-imageselect-target > div');
|
||||||
return;
|
|
||||||
}
|
|
||||||
focus = this.images[0].tabIndex !== 0;
|
|
||||||
ref = this.images;
|
ref = this.images;
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
img = ref[k];
|
img = ref[k];
|
||||||
img.tabIndex = 0;
|
img.tabIndex = 0;
|
||||||
}
|
}
|
||||||
if (focus) {
|
|
||||||
return $.queueTask((function(_this) {
|
|
||||||
return function() {
|
|
||||||
return _this.focusImage();
|
|
||||||
};
|
|
||||||
})(this));
|
|
||||||
}
|
|
||||||
},
|
|
||||||
focusImage: function() {
|
|
||||||
var img;
|
|
||||||
img = this.images[0];
|
|
||||||
return $.asap(function() {
|
|
||||||
if (!doc.contains(img)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
img.focus();
|
|
||||||
return d.activeElement === img;
|
|
||||||
}, function() {});
|
|
||||||
},
|
},
|
||||||
keybinds: function(e) {
|
keybinds: function(e) {
|
||||||
var dx, reload, verify, x;
|
var dx, reload, verify, x;
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.0.1
|
// @version 1.11.0.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -398,7 +398,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.0.1',
|
VERSION: '1.11.0.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -7652,34 +7652,13 @@
|
|||||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||||
},
|
},
|
||||||
fixImages: function() {
|
fixImages: function() {
|
||||||
var focus, img, k, len1, ref;
|
var img, k, len1, ref;
|
||||||
if (!(this.images = $$('.rc-imageselect-target > div')).length) {
|
this.images = $$('.rc-imageselect-target > div');
|
||||||
return;
|
|
||||||
}
|
|
||||||
focus = this.images[0].tabIndex !== 0;
|
|
||||||
ref = this.images;
|
ref = this.images;
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
img = ref[k];
|
img = ref[k];
|
||||||
img.tabIndex = 0;
|
img.tabIndex = 0;
|
||||||
}
|
}
|
||||||
if (focus) {
|
|
||||||
return $.queueTask((function(_this) {
|
|
||||||
return function() {
|
|
||||||
return _this.focusImage();
|
|
||||||
};
|
|
||||||
})(this));
|
|
||||||
}
|
|
||||||
},
|
|
||||||
focusImage: function() {
|
|
||||||
var img;
|
|
||||||
img = this.images[0];
|
|
||||||
return $.asap(function() {
|
|
||||||
if (!doc.contains(img)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
img.focus();
|
|
||||||
return d.activeElement === img;
|
|
||||||
}, function() {});
|
|
||||||
},
|
},
|
||||||
keybinds: function(e) {
|
keybinds: function(e) {
|
||||||
var dx, reload, verify, x;
|
var dx, reload, verify, x;
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.0.1
|
// @version 1.11.0.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.0.1
|
// @version 1.11.0.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -399,7 +399,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.0.1',
|
VERSION: '1.11.0.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -7653,34 +7653,13 @@
|
|||||||
return $.on(d, 'keydown', this.keybinds.bind(this));
|
return $.on(d, 'keydown', this.keybinds.bind(this));
|
||||||
},
|
},
|
||||||
fixImages: function() {
|
fixImages: function() {
|
||||||
var focus, img, k, len1, ref;
|
var img, k, len1, ref;
|
||||||
if (!(this.images = $$('.rc-imageselect-target > div')).length) {
|
this.images = $$('.rc-imageselect-target > div');
|
||||||
return;
|
|
||||||
}
|
|
||||||
focus = this.images[0].tabIndex !== 0;
|
|
||||||
ref = this.images;
|
ref = this.images;
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
img = ref[k];
|
img = ref[k];
|
||||||
img.tabIndex = 0;
|
img.tabIndex = 0;
|
||||||
}
|
}
|
||||||
if (focus) {
|
|
||||||
return $.queueTask((function(_this) {
|
|
||||||
return function() {
|
|
||||||
return _this.focusImage();
|
|
||||||
};
|
|
||||||
})(this));
|
|
||||||
}
|
|
||||||
},
|
|
||||||
focusImage: function() {
|
|
||||||
var img;
|
|
||||||
img = this.images[0];
|
|
||||||
return $.asap(function() {
|
|
||||||
if (!doc.contains(img)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
img.focus();
|
|
||||||
return d.activeElement === img;
|
|
||||||
}, function() {});
|
|
||||||
},
|
},
|
||||||
keybinds: function(e) {
|
keybinds: function(e) {
|
||||||
var dx, reload, verify, x;
|
var dx, reload, verify, x;
|
||||||
|
|||||||
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://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.11.0.1' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.11.0.2' />
|
||||||
</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://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.11.0.1' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.11.0.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,8 +3,8 @@
|
|||||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||||
"meta": {
|
"meta": {
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"version": "1.11.0.1",
|
"version": "1.11.0.2",
|
||||||
"date": "2015-06-16T17:48:44.746Z",
|
"date": "2015-06-19T07:03:57.192Z",
|
||||||
"repo": "https://github.com/ccd0/4chan-x/",
|
"repo": "https://github.com/ccd0/4chan-x/",
|
||||||
"page": "https://github.com/ccd0/4chan-x",
|
"page": "https://github.com/ccd0/4chan-x",
|
||||||
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user