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