Release 4chan X v1.13.0.15.
This commit is contained in:
parent
4118dd51df
commit
9e0482acd9
@ -4,6 +4,11 @@
|
|||||||
|
|
||||||
## v1.13.0
|
## v1.13.0
|
||||||
|
|
||||||
|
**v1.13.0.15** *(2016-10-27)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.15/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.15/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Merge branch 'bstable'
|
||||||
|
- Release 4chan X v1.12.3.10.
|
||||||
|
- Update due to 4chan's ad changes.
|
||||||
|
|
||||||
**v1.13.0.14** *(2016-10-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.14/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.14/builds/4chan-X-noupdate.crx)]
|
**v1.13.0.14** *(2016-10-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.14/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.14/builds/4chan-X-noupdate.crx)]
|
||||||
- Fix bug from v1.13.0.3 causing index/catalog search to not search comment.
|
- Fix bug from v1.13.0.3 causing index/catalog search to not search comment.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.0.14
|
// @version 1.13.0.15
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.0.14
|
// @version 1.13.0.15
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -147,7 +147,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.0.14',
|
VERSION: '1.13.0.15',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -1317,12 +1317,13 @@ body > div[style*=\" top: -10000px;\"] {\n\
|
|||||||
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
||||||
height: auto;\n\
|
height: auto;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
:root:not(.ads-loaded) .adg-rects,\n\
|
||||||
:root:not(.ads-loaded) .ad-plea,\n\
|
:root:not(.ads-loaded) .ad-plea,\n\
|
||||||
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
||||||
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
||||||
display: none;\n\
|
display: none;\n\
|
||||||
}\n\
|
}\n\
|
||||||
hr + div.center:not(.ad-cnt):not(.topad):not(.middlead):not(.bottomad) {\n\
|
div.center[style] {\n\
|
||||||
display: none !important;\n\
|
display: none !important;\n\
|
||||||
}\n\
|
}\n\
|
||||||
/* Anti-autoplay */\n\
|
/* Anti-autoplay */\n\
|
||||||
@ -10429,8 +10430,8 @@ Settings = (function() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
ads: function(cb) {
|
ads: function(cb) {
|
||||||
return $.onExists(doc, '.ad-cnt', function(ad) {
|
return $.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||||
return $.onExists(ad, 'img', function() {
|
return $.onExists(ad, 'img, iframe', function() {
|
||||||
var url;
|
var url;
|
||||||
url = Redirect.to('thread', {
|
url = Redirect.to('thread', {
|
||||||
boardID: 'qa',
|
boardID: 'qa',
|
||||||
@ -23270,8 +23271,8 @@ Main = (function() {
|
|||||||
if ($.engine) {
|
if ($.engine) {
|
||||||
$.addClass(doc, "ua-" + $.engine);
|
$.addClass(doc, "ua-" + $.engine);
|
||||||
}
|
}
|
||||||
$.onExists(doc, '.ad-cnt', function(ad) {
|
$.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||||
return $.onExists(ad, 'img', function() {
|
return $.onExists(ad, 'img, iframe', function() {
|
||||||
return $.addClass(doc, 'ads-loaded');
|
return $.addClass(doc, 'ads-loaded');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.0.14
|
// @version 1.13.0.15
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -147,7 +147,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.0.14',
|
VERSION: '1.13.0.15',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -1317,12 +1317,13 @@ body > div[style*=\" top: -10000px;\"] {\n\
|
|||||||
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
||||||
height: auto;\n\
|
height: auto;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
:root:not(.ads-loaded) .adg-rects,\n\
|
||||||
:root:not(.ads-loaded) .ad-plea,\n\
|
:root:not(.ads-loaded) .ad-plea,\n\
|
||||||
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
||||||
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
||||||
display: none;\n\
|
display: none;\n\
|
||||||
}\n\
|
}\n\
|
||||||
hr + div.center:not(.ad-cnt):not(.topad):not(.middlead):not(.bottomad) {\n\
|
div.center[style] {\n\
|
||||||
display: none !important;\n\
|
display: none !important;\n\
|
||||||
}\n\
|
}\n\
|
||||||
/* Anti-autoplay */\n\
|
/* Anti-autoplay */\n\
|
||||||
@ -10429,8 +10430,8 @@ Settings = (function() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
ads: function(cb) {
|
ads: function(cb) {
|
||||||
return $.onExists(doc, '.ad-cnt', function(ad) {
|
return $.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||||
return $.onExists(ad, 'img', function() {
|
return $.onExists(ad, 'img, iframe', function() {
|
||||||
var url;
|
var url;
|
||||||
url = Redirect.to('thread', {
|
url = Redirect.to('thread', {
|
||||||
boardID: 'qa',
|
boardID: 'qa',
|
||||||
@ -23270,8 +23271,8 @@ Main = (function() {
|
|||||||
if ($.engine) {
|
if ($.engine) {
|
||||||
$.addClass(doc, "ua-" + $.engine);
|
$.addClass(doc, "ua-" + $.engine);
|
||||||
}
|
}
|
||||||
$.onExists(doc, '.ad-cnt', function(ad) {
|
$.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||||
return $.onExists(ad, 'img', function() {
|
return $.onExists(ad, 'img, iframe', function() {
|
||||||
return $.addClass(doc, 'ads-loaded');
|
return $.addClass(doc, 'ads-loaded');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.0.14
|
// @version 1.13.0.15
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.0.14
|
// @version 1.13.0.15
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -147,7 +147,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.0.14',
|
VERSION: '1.13.0.15',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -1317,12 +1317,13 @@ body > div[style*=\" top: -10000px;\"] {\n\
|
|||||||
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
||||||
height: auto;\n\
|
height: auto;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
:root:not(.ads-loaded) .adg-rects,\n\
|
||||||
:root:not(.ads-loaded) .ad-plea,\n\
|
:root:not(.ads-loaded) .ad-plea,\n\
|
||||||
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
||||||
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
||||||
display: none;\n\
|
display: none;\n\
|
||||||
}\n\
|
}\n\
|
||||||
hr + div.center:not(.ad-cnt):not(.topad):not(.middlead):not(.bottomad) {\n\
|
div.center[style] {\n\
|
||||||
display: none !important;\n\
|
display: none !important;\n\
|
||||||
}\n\
|
}\n\
|
||||||
/* Anti-autoplay */\n\
|
/* Anti-autoplay */\n\
|
||||||
@ -10429,8 +10430,8 @@ Settings = (function() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
ads: function(cb) {
|
ads: function(cb) {
|
||||||
return $.onExists(doc, '.ad-cnt', function(ad) {
|
return $.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||||
return $.onExists(ad, 'img', function() {
|
return $.onExists(ad, 'img, iframe', function() {
|
||||||
var url;
|
var url;
|
||||||
url = Redirect.to('thread', {
|
url = Redirect.to('thread', {
|
||||||
boardID: 'qa',
|
boardID: 'qa',
|
||||||
@ -23270,8 +23271,8 @@ Main = (function() {
|
|||||||
if ($.engine) {
|
if ($.engine) {
|
||||||
$.addClass(doc, "ua-" + $.engine);
|
$.addClass(doc, "ua-" + $.engine);
|
||||||
}
|
}
|
||||||
$.onExists(doc, '.ad-cnt', function(ad) {
|
$.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||||
return $.onExists(ad, 'img', function() {
|
return $.onExists(ad, 'img, iframe', function() {
|
||||||
return $.addClass(doc, 'ads-loaded');
|
return $.addClass(doc, 'ads-loaded');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
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://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.0.14' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.0.15' />
|
||||||
</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://www.4chan-x.net/builds/4chan-X.crx' version='1.13.0.14' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.0.15' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.0.14",
|
"version": "1.13.0.15",
|
||||||
"date": "2016-10-23T04:09:53.323Z"
|
"date": "2016-10-27T17:36:24.555Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user