Release 4chan X v1.12.3.10.

This commit is contained in:
ccd0 2016-10-27 10:34:24 -07:00
parent 25d4d764d8
commit 687decdcd1
13 changed files with 33 additions and 27 deletions

View File

@ -2,6 +2,9 @@
### v1.12.3 ### v1.12.3
**v1.12.3.10** *(2016-10-27)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.10/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.10/builds/4chan-X-noupdate.crx)]
- Update due to 4chan's ad changes.
**v1.12.3.9** *(2016-10-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.9/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.9/builds/4chan-X-noupdate.crx)] **v1.12.3.9** *(2016-10-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.9/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.9/builds/4chan-X-noupdate.crx)]
- Add basic support for is.4chan.org domain. - Add basic support for is.4chan.org domain.

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.12.3.9 // @version 1.12.3.10
// @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.12.3.9', VERSION: '1.12.3.10',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -1303,12 +1303,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\
@ -9959,8 +9960,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',
@ -22721,8 +22722,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.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.12.3.9 // @version 1.12.3.10
// @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.12.3.9', VERSION: '1.12.3.10',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -1303,12 +1303,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\
@ -9959,8 +9960,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',
@ -22721,8 +22722,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.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.12.3.9 // @version 1.12.3.10
// @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.12.3.9', VERSION: '1.12.3.10',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -1303,12 +1303,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\
@ -9959,8 +9960,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',
@ -22721,8 +22722,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.

View File

@ -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.12.3.9' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.12.3.10' />
</app> </app>
</gupdate> </gupdate>

View File

@ -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.12.3.9' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.12.3.10' />
</app> </app>
</gupdate> </gupdate>

View File

@ -1,4 +1,4 @@
{ {
"version": "1.12.3.9", "version": "1.12.3.10",
"date": "2016-10-18T19:37:23.603Z" "date": "2016-10-27T17:31:18.611Z"
} }