Release 4chan X v1.11.32.3.

This commit is contained in:
ccd0 2016-05-04 17:16:02 -07:00
parent 1eea12ff27
commit 48cf168b49
13 changed files with 54 additions and 27 deletions

View File

@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.32
**v1.11.32.3** *(2016-05-05)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.3/builds/4chan-X-noupdate.crx "Chromium version")]
- Fix bug in crash reporting from v1.11.32.2.
**v1.11.32.2** *(2016-05-04)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.2/builds/4chan-X-noupdate.crx "Chromium version")]
- Support /s4s/ fortune text and new /qst/ BBCode tags in posts fetched from archive.
- Improve crash reports.

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.11.32.2
// @version 1.11.32.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -134,7 +134,7 @@ docSet = function() {
};
g = {
VERSION: '1.11.32.2',
VERSION: '1.11.32.3',
NAMESPACE: '4chan X.',
boards: {}
};
@ -22688,20 +22688,28 @@ Main = (function() {
return [message, error, context];
},
reportLink: function(errors) {
var data, details, ref, title, url;
var addDetails, data, details, title, url;
data = errors[0];
title = data.message;
if (errors.length > 1) {
title += " (+" + (errors.length - 1) + " other errors)";
}
details = "[Please describe the steps needed to reproduce this error.]\n\nScript: 4chan X ccd0 v" + g.VERSION + " " + $.platform + "\nUser agent: " + navigator.userAgent + "\nURL: " + location.href + "\n\n" + data.error + "\n" + (((ref = data.error.stack) != null ? ref.replace(data.error.toString(), '').trim() : void 0) || '');
details = '';
addDetails = function(text) {
if (!(encodeURIComponent(title + details + text + '\n').length > 8110)) {
return details += text + '\n';
}
};
addDetails("[Please describe the steps needed to reproduce this error.]\n\nScript: 4chan X ccd0 v" + g.VERSION + " " + $.platform + "\nUser agent: " + navigator.userAgent + "\nURL: " + location.href);
addDetails('\n' + data.error);
if (data.error.stack) {
addDetails(data.error.stack.replace(data.error.toString(), '').trim());
}
if (data.html) {
details += "\n\n" + data.html;
addDetails('\n' + data.html);
}
details = details.replace(/file:\/{3}.+\//g, '');
details = details.trim();
url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));
url = url.slice(0, 8200);
return {
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
};

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.11.32.2
// @version 1.11.32.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -134,7 +134,7 @@ docSet = function() {
};
g = {
VERSION: '1.11.32.2',
VERSION: '1.11.32.3',
NAMESPACE: '4chan X.',
boards: {}
};
@ -22688,20 +22688,28 @@ Main = (function() {
return [message, error, context];
},
reportLink: function(errors) {
var data, details, ref, title, url;
var addDetails, data, details, title, url;
data = errors[0];
title = data.message;
if (errors.length > 1) {
title += " (+" + (errors.length - 1) + " other errors)";
}
details = "[Please describe the steps needed to reproduce this error.]\n\nScript: 4chan X ccd0 v" + g.VERSION + " " + $.platform + "\nUser agent: " + navigator.userAgent + "\nURL: " + location.href + "\n\n" + data.error + "\n" + (((ref = data.error.stack) != null ? ref.replace(data.error.toString(), '').trim() : void 0) || '');
details = '';
addDetails = function(text) {
if (!(encodeURIComponent(title + details + text + '\n').length > 8110)) {
return details += text + '\n';
}
};
addDetails("[Please describe the steps needed to reproduce this error.]\n\nScript: 4chan X ccd0 v" + g.VERSION + " " + $.platform + "\nUser agent: " + navigator.userAgent + "\nURL: " + location.href);
addDetails('\n' + data.error);
if (data.error.stack) {
addDetails(data.error.stack.replace(data.error.toString(), '').trim());
}
if (data.html) {
details += "\n\n" + data.html;
addDetails('\n' + data.html);
}
details = details.replace(/file:\/{3}.+\//g, '');
details = details.trim();
url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));
url = url.slice(0, 8200);
return {
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
};

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.11.32.2
// @version 1.11.32.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -134,7 +134,7 @@ docSet = function() {
};
g = {
VERSION: '1.11.32.2',
VERSION: '1.11.32.3',
NAMESPACE: '4chan X.',
boards: {}
};
@ -22688,20 +22688,28 @@ Main = (function() {
return [message, error, context];
},
reportLink: function(errors) {
var data, details, ref, title, url;
var addDetails, data, details, title, url;
data = errors[0];
title = data.message;
if (errors.length > 1) {
title += " (+" + (errors.length - 1) + " other errors)";
}
details = "[Please describe the steps needed to reproduce this error.]\n\nScript: 4chan X ccd0 v" + g.VERSION + " " + $.platform + "\nUser agent: " + navigator.userAgent + "\nURL: " + location.href + "\n\n" + data.error + "\n" + (((ref = data.error.stack) != null ? ref.replace(data.error.toString(), '').trim() : void 0) || '');
details = '';
addDetails = function(text) {
if (!(encodeURIComponent(title + details + text + '\n').length > 8110)) {
return details += text + '\n';
}
};
addDetails("[Please describe the steps needed to reproduce this error.]\n\nScript: 4chan X ccd0 v" + g.VERSION + " " + $.platform + "\nUser agent: " + navigator.userAgent + "\nURL: " + location.href);
addDetails('\n' + data.error);
if (data.error.stack) {
addDetails(data.error.stack.replace(data.error.toString(), '').trim());
}
if (data.html) {
details += "\n\n" + data.html;
addDetails('\n' + data.html);
}
details = details.replace(/file:\/{3}.+\//g, '');
details = details.trim();
url = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));
url = url.slice(0, 8200);
return {
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
};

Binary file not shown.

View File

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

View File

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

View File

@ -1,4 +1,4 @@
{
"version": "1.11.32.2",
"date": "2016-05-04T21:26:47.510Z"
"version": "1.11.32.3",
"date": "2016-05-05T00:15:14.998Z"
}