Release 4chan X v1.11.33.1.

This commit is contained in:
ccd0 2016-05-10 16:04:06 -07:00
parent 000323dd00
commit 82ff7e2ede
13 changed files with 36 additions and 18 deletions

View File

@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.33 ### v1.11.33
**v1.11.33.1** *(2016-05-10)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.33.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.33.1/builds/4chan-X-noupdate.crx "Chromium version")]
- Minor bugfixes.
**v1.11.33.0** *(2016-05-08)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.33.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.33.0/builds/4chan-X-noupdate.crx "Chromium version")] **v1.11.33.0** *(2016-05-08)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.33.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.33.0/builds/4chan-X-noupdate.crx "Chromium version")]
- Based on v1.11.32.5. - Based on v1.11.32.5.
- Add new option `%d` to `File Info Formatting` to add a one-click download button. - Add new option `%d` to `File Info Formatting` to add a one-click download button.

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.11.33.0 // @version 1.11.33.1
// @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.11.33.0 // @version 1.11.33.1
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -134,7 +134,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.11.33.0', VERSION: '1.11.33.1',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -9738,8 +9738,13 @@ Settings = (function() {
ads: function(cb) { ads: function(cb) {
return $.onExists(doc, '.ad-cnt', function(ad) { return $.onExists(doc, '.ad-cnt', function(ad) {
return $.onExists(ad, 'img', function() { return $.onExists(ad, 'img', function() {
var url;
url = Redirect.to('thread', {
boardID: 'qa',
threadID: 362590
});
return cb($.el('li', { return cb($.el('li', {
innerHTML: "To protect yourself from <a href=\"https://archive.rebeccablacktech.com/qa/thread/362590\" target=\"_blank\">malicious ads</a>, you should <a href=\"https://github.com/gorhill/uBlock#ublock-origin\" target=\"_blank\">block ads</a> on 4chan." innerHTML: "To protect yourself from <a href=\"" + E(url) + "\" target=\"_blank\">malicious ads</a>, you should <a href=\"https://github.com/gorhill/uBlock#ublock-origin\" target=\"_blank\">block ads</a> on 4chan."
})); }));
}); });
}); });
@ -22716,7 +22721,7 @@ Main = (function() {
addDetails(data.error.stack.replace(data.error.toString(), '').trim()); addDetails(data.error.stack.replace(data.error.toString(), '').trim());
} }
if (data.html) { if (data.html) {
addDetails('\n' + data.html); addDetails('\n`' + data.html + '`');
} }
details = details.replace(/file:\/{3}.+\//g, ''); details = details.replace(/file:\/{3}.+\//g, '');
url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details)); url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.11.33.0 // @version 1.11.33.1
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -134,7 +134,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.11.33.0', VERSION: '1.11.33.1',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -9738,8 +9738,13 @@ Settings = (function() {
ads: function(cb) { ads: function(cb) {
return $.onExists(doc, '.ad-cnt', function(ad) { return $.onExists(doc, '.ad-cnt', function(ad) {
return $.onExists(ad, 'img', function() { return $.onExists(ad, 'img', function() {
var url;
url = Redirect.to('thread', {
boardID: 'qa',
threadID: 362590
});
return cb($.el('li', { return cb($.el('li', {
innerHTML: "To protect yourself from <a href=\"https://archive.rebeccablacktech.com/qa/thread/362590\" target=\"_blank\">malicious ads</a>, you should <a href=\"https://github.com/gorhill/uBlock#ublock-origin\" target=\"_blank\">block ads</a> on 4chan." innerHTML: "To protect yourself from <a href=\"" + E(url) + "\" target=\"_blank\">malicious ads</a>, you should <a href=\"https://github.com/gorhill/uBlock#ublock-origin\" target=\"_blank\">block ads</a> on 4chan."
})); }));
}); });
}); });
@ -22716,7 +22721,7 @@ Main = (function() {
addDetails(data.error.stack.replace(data.error.toString(), '').trim()); addDetails(data.error.stack.replace(data.error.toString(), '').trim());
} }
if (data.html) { if (data.html) {
addDetails('\n' + data.html); addDetails('\n`' + data.html + '`');
} }
details = details.replace(/file:\/{3}.+\//g, ''); details = details.replace(/file:\/{3}.+\//g, '');
url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details)); url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.11.33.0 // @version 1.11.33.1
// @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.11.33.0 // @version 1.11.33.1
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -134,7 +134,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.11.33.0', VERSION: '1.11.33.1',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -9738,8 +9738,13 @@ Settings = (function() {
ads: function(cb) { ads: function(cb) {
return $.onExists(doc, '.ad-cnt', function(ad) { return $.onExists(doc, '.ad-cnt', function(ad) {
return $.onExists(ad, 'img', function() { return $.onExists(ad, 'img', function() {
var url;
url = Redirect.to('thread', {
boardID: 'qa',
threadID: 362590
});
return cb($.el('li', { return cb($.el('li', {
innerHTML: "To protect yourself from <a href=\"https://archive.rebeccablacktech.com/qa/thread/362590\" target=\"_blank\">malicious ads</a>, you should <a href=\"https://github.com/gorhill/uBlock#ublock-origin\" target=\"_blank\">block ads</a> on 4chan." innerHTML: "To protect yourself from <a href=\"" + E(url) + "\" target=\"_blank\">malicious ads</a>, you should <a href=\"https://github.com/gorhill/uBlock#ublock-origin\" target=\"_blank\">block ads</a> on 4chan."
})); }));
}); });
}); });
@ -22716,7 +22721,7 @@ Main = (function() {
addDetails(data.error.stack.replace(data.error.toString(), '').trim()); addDetails(data.error.stack.replace(data.error.toString(), '').trim());
} }
if (data.html) { if (data.html) {
addDetails('\n' + data.html); addDetails('\n`' + data.html + '`');
} }
details = details.replace(/file:\/{3}.+\//g, ''); details = details.replace(/file:\/{3}.+\//g, '');
url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details)); url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));

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

View File

@ -1,4 +1,4 @@
{ {
"version": "1.11.33.0", "version": "1.11.33.1",
"date": "2016-05-08T03:53:06.405Z" "date": "2016-05-10T23:02:53.026Z"
} }