Release 4chan X v1.10.3.9.
This commit is contained in:
parent
e8496a222c
commit
3090deac20
@ -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
|
||||||
|
|
||||||
|
**v1.10.3.9** *(2015-03-07)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.9/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.9/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Fix focus outlines being activated by keybinds.
|
||||||
|
|
||||||
**v1.10.3.8** *(2015-03-05)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.8/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.8/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.10.3.8** *(2015-03-05)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.8/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.3.8/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Make the Quick Reply look more consistent across browsers/platforms.
|
- Make the Quick Reply look more consistent across browsers/platforms.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.10.3.8
|
// @version 1.10.3.9
|
||||||
// @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.10.3.8
|
// @version 1.10.3.9
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -394,7 +394,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.3.8',
|
VERSION: '1.10.3.9',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
NAME: '4chan X',
|
NAME: '4chan X',
|
||||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||||
@ -16165,7 +16165,7 @@
|
|||||||
return $.ready(Main.initReady);
|
return $.ready(Main.initReady);
|
||||||
},
|
},
|
||||||
initStyle: function() {
|
initStyle: function() {
|
||||||
var mouse, ref;
|
var keyboard, ref;
|
||||||
if (!Main.isThisPageLegit() || $.hasClass(doc, 'fourchan-x')) {
|
if (!Main.isThisPageLegit() || $.hasClass(doc, 'fourchan-x')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -16176,15 +16176,17 @@
|
|||||||
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
||||||
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
||||||
$.addStyle(Main.css, 'fourchanx-css');
|
$.addStyle(Main.css, 'fourchanx-css');
|
||||||
mouse = false;
|
keyboard = false;
|
||||||
$.on(d, 'mousedown', function() {
|
$.on(d, 'mousedown', function() {
|
||||||
return mouse = true;
|
return keyboard = false;
|
||||||
});
|
});
|
||||||
$.on(d, 'keydown', function() {
|
$.on(d, 'keydown', function(e) {
|
||||||
return mouse = false;
|
if (e.keyCode === 9) {
|
||||||
|
return keyboard = true;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
window.addEventListener('focus', (function() {
|
window.addEventListener('focus', (function() {
|
||||||
return doc.classList.toggle('mouse-focus', mouse);
|
return doc.classList.toggle('keyboard-focus', keyboard);
|
||||||
}), true);
|
}), true);
|
||||||
return Main.setClass();
|
return Main.setClass();
|
||||||
},
|
},
|
||||||
@ -17068,7 +17070,7 @@
|
|||||||
"body.hasDropDownNav{\n" +
|
"body.hasDropDownNav{\n" +
|
||||||
" margin-top: 5px;\n" +
|
" margin-top: 5px;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
":root.mouse-focus a {\n" +
|
":root:not(.keyboard-focus) a {\n" +
|
||||||
" outline: none;\n" +
|
" outline: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
".painted {\n" +
|
".painted {\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.3.8
|
// @version 1.10.3.9
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -393,7 +393,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.3.8',
|
VERSION: '1.10.3.9',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
NAME: '4chan X',
|
NAME: '4chan X',
|
||||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||||
@ -16164,7 +16164,7 @@
|
|||||||
return $.ready(Main.initReady);
|
return $.ready(Main.initReady);
|
||||||
},
|
},
|
||||||
initStyle: function() {
|
initStyle: function() {
|
||||||
var mouse, ref;
|
var keyboard, ref;
|
||||||
if (!Main.isThisPageLegit() || $.hasClass(doc, 'fourchan-x')) {
|
if (!Main.isThisPageLegit() || $.hasClass(doc, 'fourchan-x')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -16175,15 +16175,17 @@
|
|||||||
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
||||||
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
||||||
$.addStyle(Main.css, 'fourchanx-css');
|
$.addStyle(Main.css, 'fourchanx-css');
|
||||||
mouse = false;
|
keyboard = false;
|
||||||
$.on(d, 'mousedown', function() {
|
$.on(d, 'mousedown', function() {
|
||||||
return mouse = true;
|
return keyboard = false;
|
||||||
});
|
});
|
||||||
$.on(d, 'keydown', function() {
|
$.on(d, 'keydown', function(e) {
|
||||||
return mouse = false;
|
if (e.keyCode === 9) {
|
||||||
|
return keyboard = true;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
window.addEventListener('focus', (function() {
|
window.addEventListener('focus', (function() {
|
||||||
return doc.classList.toggle('mouse-focus', mouse);
|
return doc.classList.toggle('keyboard-focus', keyboard);
|
||||||
}), true);
|
}), true);
|
||||||
return Main.setClass();
|
return Main.setClass();
|
||||||
},
|
},
|
||||||
@ -17067,7 +17069,7 @@
|
|||||||
"body.hasDropDownNav{\n" +
|
"body.hasDropDownNav{\n" +
|
||||||
" margin-top: 5px;\n" +
|
" margin-top: 5px;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
":root.mouse-focus a {\n" +
|
":root:not(.keyboard-focus) a {\n" +
|
||||||
" outline: none;\n" +
|
" outline: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
".painted {\n" +
|
".painted {\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.3.8
|
// @version 1.10.3.9
|
||||||
// @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.10.3.8
|
// @version 1.10.3.9
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -394,7 +394,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.3.8',
|
VERSION: '1.10.3.9',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
NAME: '4chan X',
|
NAME: '4chan X',
|
||||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||||
@ -16165,7 +16165,7 @@
|
|||||||
return $.ready(Main.initReady);
|
return $.ready(Main.initReady);
|
||||||
},
|
},
|
||||||
initStyle: function() {
|
initStyle: function() {
|
||||||
var mouse, ref;
|
var keyboard, ref;
|
||||||
if (!Main.isThisPageLegit() || $.hasClass(doc, 'fourchan-x')) {
|
if (!Main.isThisPageLegit() || $.hasClass(doc, 'fourchan-x')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -16176,15 +16176,17 @@
|
|||||||
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
||||||
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
||||||
$.addStyle(Main.css, 'fourchanx-css');
|
$.addStyle(Main.css, 'fourchanx-css');
|
||||||
mouse = false;
|
keyboard = false;
|
||||||
$.on(d, 'mousedown', function() {
|
$.on(d, 'mousedown', function() {
|
||||||
return mouse = true;
|
return keyboard = false;
|
||||||
});
|
});
|
||||||
$.on(d, 'keydown', function() {
|
$.on(d, 'keydown', function(e) {
|
||||||
return mouse = false;
|
if (e.keyCode === 9) {
|
||||||
|
return keyboard = true;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
window.addEventListener('focus', (function() {
|
window.addEventListener('focus', (function() {
|
||||||
return doc.classList.toggle('mouse-focus', mouse);
|
return doc.classList.toggle('keyboard-focus', keyboard);
|
||||||
}), true);
|
}), true);
|
||||||
return Main.setClass();
|
return Main.setClass();
|
||||||
},
|
},
|
||||||
@ -17068,7 +17070,7 @@
|
|||||||
"body.hasDropDownNav{\n" +
|
"body.hasDropDownNav{\n" +
|
||||||
" margin-top: 5px;\n" +
|
" margin-top: 5px;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
":root.mouse-focus a {\n" +
|
":root:not(.keyboard-focus) a {\n" +
|
||||||
" outline: none;\n" +
|
" outline: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
".painted {\n" +
|
".painted {\n" +
|
||||||
|
|||||||
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.10.3.8' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.3.9' />
|
||||||
</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.10.3.8' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.3.9' />
|
||||||
</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.10.3.8",
|
"version": "1.10.3.9",
|
||||||
"date": "2015-03-05T20:16:53.148Z",
|
"date": "2015-03-07T13:50:13.050Z",
|
||||||
"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