Release 4chan X v1.11.30.3.
This commit is contained in:
parent
a475137cb6
commit
d97ae08c51
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
||||
|
||||
### v1.11.30
|
||||
|
||||
**v1.11.30.3** *(2016-04-09)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.30.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.30.3/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Remove CSS fixes specific to April 1 theme.
|
||||
|
||||
**v1.11.30.2** *(2016-04-04)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.30.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.30.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Fix Reply Pruning bug from v1.11.30.0 causing errors in older browsers.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.30.2
|
||||
// @version 1.11.30.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.30.2
|
||||
// @version 1.11.30.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -443,7 +443,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.30.2',
|
||||
VERSION: '1.11.30.3',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -11126,9 +11126,6 @@
|
||||
el.src = src || file.url;
|
||||
}
|
||||
el.className = 'full-image';
|
||||
if ($.hasClass(doc, 'md2016')) {
|
||||
$.addClass(el, 'expanded-thumb');
|
||||
}
|
||||
$.after(thumb, el);
|
||||
if (isVideo) {
|
||||
if (Conf['Show Controls'] && Conf['Click Passthrough'] && !file.videoControls) {
|
||||
@ -18358,13 +18355,7 @@
|
||||
return Main.setClass();
|
||||
},
|
||||
setClass: function() {
|
||||
var mainStyleSheet, md2016, setStyle, style, styleSheets;
|
||||
if ((md2016 = $('link[rel="stylesheet"][href^="//s.4cdn.org/css/md2016."]', d.head))) {
|
||||
md2016.removeAttribute('media');
|
||||
if (getComputedStyle(d.body).backgroundColor === 'rgb(245, 245, 245)') {
|
||||
$.addClass(doc, 'md2016');
|
||||
}
|
||||
}
|
||||
var mainStyleSheet, setStyle, style, styleSheets;
|
||||
if (g.VIEW === 'catalog') {
|
||||
$.addClass(doc, $.id('base-css').href.match(/catalog_(\w+)/)[1].replace('_new', '').replace(/_+/g, '-'));
|
||||
return;
|
||||
@ -21883,39 +21874,6 @@
|
||||
"{\n" +
|
||||
" background-image: url(\"data:image/svg+xml,<svg viewBox='0 0 26 26' preserveAspectRatio='true' xmlns='http://www.w3.org/2000/svg'><path fill='rgb(51,51,51)' d='M24.132,7.971c-2.203-2.205-5.916-2.098-8.25,0.235L15.5,8.588l-0.382-0.382c-2.334-2.333-6.047-2.44-8.25-0.235c-2.204,2.203-2.098,5.916,0.235,8.249l8.396,8.396l8.396-8.396C26.229,13.887,26.336,10.174,24.132,7.971z'/></svg>\");\n" +
|
||||
"}\n" +
|
||||
"/* Adapted from https://s.4cdn.org/css/md2016.651.css */\n" +
|
||||
":root.md2016 .page-num {\n" +
|
||||
" color: #999;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 .summary {\n" +
|
||||
" border-radius: 0 0 2px 2px;\n" +
|
||||
" background-color: #f5f5f5;\n" +
|
||||
" width: 80%;\n" +
|
||||
" display: block;\n" +
|
||||
" margin: -1px auto 0 auto;\n" +
|
||||
" box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);\n" +
|
||||
" border-top: 1px solid rgba(0,0,0,0.1);\n" +
|
||||
" text-indent:10px;\n" +
|
||||
" padding:10px 0;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #hoverUI div.postContainer,\n" +
|
||||
":root.md2016 .inline div.postContainer {\n" +
|
||||
" width: auto;\n" +
|
||||
" margin: 0;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #hoverUI div.post,\n" +
|
||||
":root.md2016 .inline div.post {\n" +
|
||||
" max-width: 100%;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #unread-line {\n" +
|
||||
" display: block;\n" +
|
||||
" position: relative;\n" +
|
||||
" top: 7.5px;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 .threadContainer {\n" +
|
||||
" margin-left: 26px;\n" +
|
||||
" border-left: none;\n" +
|
||||
"}\n" +
|
||||
"/* XXX Moved to end of stylesheet to avoid breaking whole stylesheet in Maxthon. */\n" +
|
||||
"@supports (text-decoration-style: dashed) or (-moz-text-decoration-style: dashed) {\n" +
|
||||
" .quotelink.forwardlink,\n" +
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.30.2
|
||||
// @version 1.11.30.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -443,7 +443,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.30.2',
|
||||
VERSION: '1.11.30.3',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -11126,9 +11126,6 @@
|
||||
el.src = src || file.url;
|
||||
}
|
||||
el.className = 'full-image';
|
||||
if ($.hasClass(doc, 'md2016')) {
|
||||
$.addClass(el, 'expanded-thumb');
|
||||
}
|
||||
$.after(thumb, el);
|
||||
if (isVideo) {
|
||||
if (Conf['Show Controls'] && Conf['Click Passthrough'] && !file.videoControls) {
|
||||
@ -18358,13 +18355,7 @@
|
||||
return Main.setClass();
|
||||
},
|
||||
setClass: function() {
|
||||
var mainStyleSheet, md2016, setStyle, style, styleSheets;
|
||||
if ((md2016 = $('link[rel="stylesheet"][href^="//s.4cdn.org/css/md2016."]', d.head))) {
|
||||
md2016.removeAttribute('media');
|
||||
if (getComputedStyle(d.body).backgroundColor === 'rgb(245, 245, 245)') {
|
||||
$.addClass(doc, 'md2016');
|
||||
}
|
||||
}
|
||||
var mainStyleSheet, setStyle, style, styleSheets;
|
||||
if (g.VIEW === 'catalog') {
|
||||
$.addClass(doc, $.id('base-css').href.match(/catalog_(\w+)/)[1].replace('_new', '').replace(/_+/g, '-'));
|
||||
return;
|
||||
@ -21883,39 +21874,6 @@
|
||||
"{\n" +
|
||||
" background-image: url(\"data:image/svg+xml,<svg viewBox='0 0 26 26' preserveAspectRatio='true' xmlns='http://www.w3.org/2000/svg'><path fill='rgb(51,51,51)' d='M24.132,7.971c-2.203-2.205-5.916-2.098-8.25,0.235L15.5,8.588l-0.382-0.382c-2.334-2.333-6.047-2.44-8.25-0.235c-2.204,2.203-2.098,5.916,0.235,8.249l8.396,8.396l8.396-8.396C26.229,13.887,26.336,10.174,24.132,7.971z'/></svg>\");\n" +
|
||||
"}\n" +
|
||||
"/* Adapted from https://s.4cdn.org/css/md2016.651.css */\n" +
|
||||
":root.md2016 .page-num {\n" +
|
||||
" color: #999;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 .summary {\n" +
|
||||
" border-radius: 0 0 2px 2px;\n" +
|
||||
" background-color: #f5f5f5;\n" +
|
||||
" width: 80%;\n" +
|
||||
" display: block;\n" +
|
||||
" margin: -1px auto 0 auto;\n" +
|
||||
" box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);\n" +
|
||||
" border-top: 1px solid rgba(0,0,0,0.1);\n" +
|
||||
" text-indent:10px;\n" +
|
||||
" padding:10px 0;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #hoverUI div.postContainer,\n" +
|
||||
":root.md2016 .inline div.postContainer {\n" +
|
||||
" width: auto;\n" +
|
||||
" margin: 0;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #hoverUI div.post,\n" +
|
||||
":root.md2016 .inline div.post {\n" +
|
||||
" max-width: 100%;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #unread-line {\n" +
|
||||
" display: block;\n" +
|
||||
" position: relative;\n" +
|
||||
" top: 7.5px;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 .threadContainer {\n" +
|
||||
" margin-left: 26px;\n" +
|
||||
" border-left: none;\n" +
|
||||
"}\n" +
|
||||
"/* XXX Moved to end of stylesheet to avoid breaking whole stylesheet in Maxthon. */\n" +
|
||||
"@supports (text-decoration-style: dashed) or (-moz-text-decoration-style: dashed) {\n" +
|
||||
" .quotelink.forwardlink,\n" +
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.30.2
|
||||
// @version 1.11.30.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.30.2
|
||||
// @version 1.11.30.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -443,7 +443,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.30.2',
|
||||
VERSION: '1.11.30.3',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -11126,9 +11126,6 @@
|
||||
el.src = src || file.url;
|
||||
}
|
||||
el.className = 'full-image';
|
||||
if ($.hasClass(doc, 'md2016')) {
|
||||
$.addClass(el, 'expanded-thumb');
|
||||
}
|
||||
$.after(thumb, el);
|
||||
if (isVideo) {
|
||||
if (Conf['Show Controls'] && Conf['Click Passthrough'] && !file.videoControls) {
|
||||
@ -18358,13 +18355,7 @@
|
||||
return Main.setClass();
|
||||
},
|
||||
setClass: function() {
|
||||
var mainStyleSheet, md2016, setStyle, style, styleSheets;
|
||||
if ((md2016 = $('link[rel="stylesheet"][href^="//s.4cdn.org/css/md2016."]', d.head))) {
|
||||
md2016.removeAttribute('media');
|
||||
if (getComputedStyle(d.body).backgroundColor === 'rgb(245, 245, 245)') {
|
||||
$.addClass(doc, 'md2016');
|
||||
}
|
||||
}
|
||||
var mainStyleSheet, setStyle, style, styleSheets;
|
||||
if (g.VIEW === 'catalog') {
|
||||
$.addClass(doc, $.id('base-css').href.match(/catalog_(\w+)/)[1].replace('_new', '').replace(/_+/g, '-'));
|
||||
return;
|
||||
@ -21883,39 +21874,6 @@
|
||||
"{\n" +
|
||||
" background-image: url(\"data:image/svg+xml,<svg viewBox='0 0 26 26' preserveAspectRatio='true' xmlns='http://www.w3.org/2000/svg'><path fill='rgb(51,51,51)' d='M24.132,7.971c-2.203-2.205-5.916-2.098-8.25,0.235L15.5,8.588l-0.382-0.382c-2.334-2.333-6.047-2.44-8.25-0.235c-2.204,2.203-2.098,5.916,0.235,8.249l8.396,8.396l8.396-8.396C26.229,13.887,26.336,10.174,24.132,7.971z'/></svg>\");\n" +
|
||||
"}\n" +
|
||||
"/* Adapted from https://s.4cdn.org/css/md2016.651.css */\n" +
|
||||
":root.md2016 .page-num {\n" +
|
||||
" color: #999;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 .summary {\n" +
|
||||
" border-radius: 0 0 2px 2px;\n" +
|
||||
" background-color: #f5f5f5;\n" +
|
||||
" width: 80%;\n" +
|
||||
" display: block;\n" +
|
||||
" margin: -1px auto 0 auto;\n" +
|
||||
" box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);\n" +
|
||||
" border-top: 1px solid rgba(0,0,0,0.1);\n" +
|
||||
" text-indent:10px;\n" +
|
||||
" padding:10px 0;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #hoverUI div.postContainer,\n" +
|
||||
":root.md2016 .inline div.postContainer {\n" +
|
||||
" width: auto;\n" +
|
||||
" margin: 0;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #hoverUI div.post,\n" +
|
||||
":root.md2016 .inline div.post {\n" +
|
||||
" max-width: 100%;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 #unread-line {\n" +
|
||||
" display: block;\n" +
|
||||
" position: relative;\n" +
|
||||
" top: 7.5px;\n" +
|
||||
"}\n" +
|
||||
":root.md2016 .threadContainer {\n" +
|
||||
" margin-left: 26px;\n" +
|
||||
" border-left: none;\n" +
|
||||
"}\n" +
|
||||
"/* XXX Moved to end of stylesheet to avoid breaking whole stylesheet in Maxthon. */\n" +
|
||||
"@supports (text-decoration-style: dashed) or (-moz-text-decoration-style: dashed) {\n" +
|
||||
" .quotelink.forwardlink,\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://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.30.2' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.30.3' />
|
||||
</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://www.4chan-x.net/builds/4chan-X.crx' version='1.11.30.2' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.30.3' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.30.2",
|
||||
"date": "2016-04-05T04:20:10.748Z"
|
||||
"version": "1.11.30.3",
|
||||
"date": "2016-04-09T12:47:17.251Z"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user