Release 4chan X v1.10.3.2.

This commit is contained in:
ccd0 2015-03-01 18:02:06 -08:00
parent a453a463cb
commit d3555a8e06
13 changed files with 74 additions and 32 deletions

View File

@ -4,6 +4,9 @@ The links to individual versions below are to copies of the script with the upda
### v1.10.3
**v1.10.3.2** *(2015-03-01)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.2/builds/4chan-X-noupdate.crx "Chromium version")]
- Fix highlighting of filename field when selected.
**v1.10.3.1** *(2015-03-01)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.1/builds/4chan-X-noupdate.crx "Chromium version")]
- Fix outline around images in gallery.

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X beta
// @version 1.10.3.1
// @version 1.10.3.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -393,7 +393,7 @@
doc = d.documentElement;
g = {
VERSION: '1.10.3.1',
VERSION: '1.10.3.2',
NAMESPACE: '4chan X.',
NAME: '4chan X',
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
@ -7329,6 +7329,12 @@
}
$.on(nodes.fileButton, 'click', QR.openFileInput);
$.on(nodes.noFile, 'click', QR.openFileInput);
$.on(nodes.filename, 'focus', function() {
return $.addClass(this.parentNode, 'focus');
});
$.on(nodes.filename, 'blur', function() {
return $.rmClass(this.parentNode, 'focus');
});
$.on(nodes.autohide, 'change', QR.toggleHide);
$.on(nodes.close, 'click', QR.close);
$.on(nodes.dumpButton, 'click', function() {
@ -17003,7 +17009,7 @@
".field:hover {\n" +
" border-color: #999;\n" +
"}\n" +
".field:hover, .field:focus {\n" +
".field:hover, .field:focus, .field.focus {\n" +
" color: #000;\n" +
"}\n" +
".field[disabled] {\n" +
@ -18235,6 +18241,7 @@
"input#qr-filename {\n" +
" border: none !important;\n" +
" background: none !important;\n" +
" outline: none;\n" +
"}\n" +
"#qr-filename,\n" +
".has-file #qr-no-file {\n" +
@ -18812,7 +18819,8 @@
" background-color: #F0E0D6;\n" +
" border-color: #D9BFB7;\n" +
"}\n" +
":root.yotsuba .field:focus {\n" +
":root.yotsuba .field:focus,\n" +
":root.yotsuba .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +
@ -18890,7 +18898,8 @@
" background-color: #D6DAF0;\n" +
" border-color: #B7C5D9;\n" +
"}\n" +
":root.yotsuba-b .field:focus {\n" +
":root.yotsuba-b .field:focus,\n" +
":root.yotsuba-b .field.focus {\n" +
" border-color: #98E;\n" +
"}\n" +
"/* Header */\n" +
@ -18968,7 +18977,8 @@
" background-color: #F0E0D6;\n" +
" border-color: #D9BFB7;\n" +
"}\n" +
":root.futaba .field:focus {\n" +
":root.futaba .field:focus,\n" +
":root.futaba .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +
@ -19041,7 +19051,8 @@
" background-color: #D6DAF0;\n" +
" border-color: #B7C5D9;\n" +
"}\n" +
":root.burichan .field:focus {\n" +
":root.burichan .field:focus,\n" +
":root.burichan .field.focus {\n" +
" border-color: #98E;\n" +
"}\n" +
"/* Header */\n" +
@ -19197,7 +19208,8 @@
" color: rgb(197,200,198);\n" +
" border-color: rgb(40, 41, 42);\n" +
"}\n" +
":root.tomorrow #qr .field:focus {\n" +
":root.tomorrow #qr .field:focus,\n" +
":root.tomorrow #qr .field.focus {\n" +
" border-color: rgb(129, 162, 190) !important;\n" +
" background-color: rgb(30,32,36);\n" +
"}\n" +
@ -19244,7 +19256,8 @@
" background-color: #DDD;\n" +
" border-color: #CCC;\n" +
"}\n" +
":root.photon .field:focus {\n" +
":root.photon .field:focus,\n" +
":root.photon .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.10.3.1
// @version 1.10.3.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -392,7 +392,7 @@
doc = d.documentElement;
g = {
VERSION: '1.10.3.1',
VERSION: '1.10.3.2',
NAMESPACE: '4chan X.',
NAME: '4chan X',
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
@ -7328,6 +7328,12 @@
}
$.on(nodes.fileButton, 'click', QR.openFileInput);
$.on(nodes.noFile, 'click', QR.openFileInput);
$.on(nodes.filename, 'focus', function() {
return $.addClass(this.parentNode, 'focus');
});
$.on(nodes.filename, 'blur', function() {
return $.rmClass(this.parentNode, 'focus');
});
$.on(nodes.autohide, 'change', QR.toggleHide);
$.on(nodes.close, 'click', QR.close);
$.on(nodes.dumpButton, 'click', function() {
@ -17002,7 +17008,7 @@
".field:hover {\n" +
" border-color: #999;\n" +
"}\n" +
".field:hover, .field:focus {\n" +
".field:hover, .field:focus, .field.focus {\n" +
" color: #000;\n" +
"}\n" +
".field[disabled] {\n" +
@ -18234,6 +18240,7 @@
"input#qr-filename {\n" +
" border: none !important;\n" +
" background: none !important;\n" +
" outline: none;\n" +
"}\n" +
"#qr-filename,\n" +
".has-file #qr-no-file {\n" +
@ -18811,7 +18818,8 @@
" background-color: #F0E0D6;\n" +
" border-color: #D9BFB7;\n" +
"}\n" +
":root.yotsuba .field:focus {\n" +
":root.yotsuba .field:focus,\n" +
":root.yotsuba .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +
@ -18889,7 +18897,8 @@
" background-color: #D6DAF0;\n" +
" border-color: #B7C5D9;\n" +
"}\n" +
":root.yotsuba-b .field:focus {\n" +
":root.yotsuba-b .field:focus,\n" +
":root.yotsuba-b .field.focus {\n" +
" border-color: #98E;\n" +
"}\n" +
"/* Header */\n" +
@ -18967,7 +18976,8 @@
" background-color: #F0E0D6;\n" +
" border-color: #D9BFB7;\n" +
"}\n" +
":root.futaba .field:focus {\n" +
":root.futaba .field:focus,\n" +
":root.futaba .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +
@ -19040,7 +19050,8 @@
" background-color: #D6DAF0;\n" +
" border-color: #B7C5D9;\n" +
"}\n" +
":root.burichan .field:focus {\n" +
":root.burichan .field:focus,\n" +
":root.burichan .field.focus {\n" +
" border-color: #98E;\n" +
"}\n" +
"/* Header */\n" +
@ -19196,7 +19207,8 @@
" color: rgb(197,200,198);\n" +
" border-color: rgb(40, 41, 42);\n" +
"}\n" +
":root.tomorrow #qr .field:focus {\n" +
":root.tomorrow #qr .field:focus,\n" +
":root.tomorrow #qr .field.focus {\n" +
" border-color: rgb(129, 162, 190) !important;\n" +
" background-color: rgb(30,32,36);\n" +
"}\n" +
@ -19243,7 +19255,8 @@
" background-color: #DDD;\n" +
" border-color: #CCC;\n" +
"}\n" +
":root.photon .field:focus {\n" +
":root.photon .field:focus,\n" +
":root.photon .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.10.3.1
// @version 1.10.3.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -393,7 +393,7 @@
doc = d.documentElement;
g = {
VERSION: '1.10.3.1',
VERSION: '1.10.3.2',
NAMESPACE: '4chan X.',
NAME: '4chan X',
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
@ -7329,6 +7329,12 @@
}
$.on(nodes.fileButton, 'click', QR.openFileInput);
$.on(nodes.noFile, 'click', QR.openFileInput);
$.on(nodes.filename, 'focus', function() {
return $.addClass(this.parentNode, 'focus');
});
$.on(nodes.filename, 'blur', function() {
return $.rmClass(this.parentNode, 'focus');
});
$.on(nodes.autohide, 'change', QR.toggleHide);
$.on(nodes.close, 'click', QR.close);
$.on(nodes.dumpButton, 'click', function() {
@ -17003,7 +17009,7 @@
".field:hover {\n" +
" border-color: #999;\n" +
"}\n" +
".field:hover, .field:focus {\n" +
".field:hover, .field:focus, .field.focus {\n" +
" color: #000;\n" +
"}\n" +
".field[disabled] {\n" +
@ -18235,6 +18241,7 @@
"input#qr-filename {\n" +
" border: none !important;\n" +
" background: none !important;\n" +
" outline: none;\n" +
"}\n" +
"#qr-filename,\n" +
".has-file #qr-no-file {\n" +
@ -18812,7 +18819,8 @@
" background-color: #F0E0D6;\n" +
" border-color: #D9BFB7;\n" +
"}\n" +
":root.yotsuba .field:focus {\n" +
":root.yotsuba .field:focus,\n" +
":root.yotsuba .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +
@ -18890,7 +18898,8 @@
" background-color: #D6DAF0;\n" +
" border-color: #B7C5D9;\n" +
"}\n" +
":root.yotsuba-b .field:focus {\n" +
":root.yotsuba-b .field:focus,\n" +
":root.yotsuba-b .field.focus {\n" +
" border-color: #98E;\n" +
"}\n" +
"/* Header */\n" +
@ -18968,7 +18977,8 @@
" background-color: #F0E0D6;\n" +
" border-color: #D9BFB7;\n" +
"}\n" +
":root.futaba .field:focus {\n" +
":root.futaba .field:focus,\n" +
":root.futaba .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +
@ -19041,7 +19051,8 @@
" background-color: #D6DAF0;\n" +
" border-color: #B7C5D9;\n" +
"}\n" +
":root.burichan .field:focus {\n" +
":root.burichan .field:focus,\n" +
":root.burichan .field.focus {\n" +
" border-color: #98E;\n" +
"}\n" +
"/* Header */\n" +
@ -19197,7 +19208,8 @@
" color: rgb(197,200,198);\n" +
" border-color: rgb(40, 41, 42);\n" +
"}\n" +
":root.tomorrow #qr .field:focus {\n" +
":root.tomorrow #qr .field:focus,\n" +
":root.tomorrow #qr .field.focus {\n" +
" border-color: rgb(129, 162, 190) !important;\n" +
" background-color: rgb(30,32,36);\n" +
"}\n" +
@ -19244,7 +19256,8 @@
" background-color: #DDD;\n" +
" border-color: #CCC;\n" +
"}\n" +
":root.photon .field:focus {\n" +
":root.photon .field:focus,\n" +
":root.photon .field.focus {\n" +
" border-color: #EA8;\n" +
"}\n" +
"/* Header */\n" +

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://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.3.1' />
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.3.2' />
</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://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.3.1' />
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.3.2' />
</app>
</gupdate>

View File

@ -3,7 +3,7 @@
"description": "Cross-browser userscript for maximum lurking on 4chan.",
"meta": {
"name": "4chan X",
"version": "1.10.3.1",
"version": "1.10.3.2",
"repo": "https://github.com/ccd0/4chan-x/",
"page": "https://github.com/ccd0/4chan-x",
"downloads": "https://ccd0.github.io/4chan-x/builds/",