Release 4chan X v1.11.32.3.
This commit is contained in:
parent
1eea12ff27
commit
48cf168b49
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.32
|
### 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")]
|
**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.
|
- Support /s4s/ fortune text and new /qst/ BBCode tags in posts fetched from archive.
|
||||||
- Improve crash reports.
|
- Improve crash reports.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.32.2
|
// @version 1.11.32.3
|
||||||
// @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.11.32.2
|
// @version 1.11.32.3
|
||||||
// @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.32.2',
|
VERSION: '1.11.32.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -22688,20 +22688,28 @@ Main = (function() {
|
|||||||
return [message, error, context];
|
return [message, error, context];
|
||||||
},
|
},
|
||||||
reportLink: function(errors) {
|
reportLink: function(errors) {
|
||||||
var data, details, ref, title, url;
|
var addDetails, data, details, title, url;
|
||||||
data = errors[0];
|
data = errors[0];
|
||||||
title = data.message;
|
title = data.message;
|
||||||
if (errors.length > 1) {
|
if (errors.length > 1) {
|
||||||
title += " (+" + (errors.length - 1) + " other errors)";
|
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) {
|
if (data.html) {
|
||||||
details += "\n\n" + data.html;
|
addDetails('\n' + data.html);
|
||||||
}
|
}
|
||||||
details = details.replace(/file:\/{3}.+\//g, '');
|
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 = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));
|
||||||
url = url.slice(0, 8200);
|
|
||||||
return {
|
return {
|
||||||
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
|
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
|
||||||
};
|
};
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.32.2
|
// @version 1.11.32.3
|
||||||
// @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.32.2',
|
VERSION: '1.11.32.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -22688,20 +22688,28 @@ Main = (function() {
|
|||||||
return [message, error, context];
|
return [message, error, context];
|
||||||
},
|
},
|
||||||
reportLink: function(errors) {
|
reportLink: function(errors) {
|
||||||
var data, details, ref, title, url;
|
var addDetails, data, details, title, url;
|
||||||
data = errors[0];
|
data = errors[0];
|
||||||
title = data.message;
|
title = data.message;
|
||||||
if (errors.length > 1) {
|
if (errors.length > 1) {
|
||||||
title += " (+" + (errors.length - 1) + " other errors)";
|
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) {
|
if (data.html) {
|
||||||
details += "\n\n" + data.html;
|
addDetails('\n' + data.html);
|
||||||
}
|
}
|
||||||
details = details.replace(/file:\/{3}.+\//g, '');
|
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 = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));
|
||||||
url = url.slice(0, 8200);
|
|
||||||
return {
|
return {
|
||||||
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
|
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
|
||||||
};
|
};
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.32.2
|
// @version 1.11.32.3
|
||||||
// @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.11.32.2
|
// @version 1.11.32.3
|
||||||
// @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.32.2',
|
VERSION: '1.11.32.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -22688,20 +22688,28 @@ Main = (function() {
|
|||||||
return [message, error, context];
|
return [message, error, context];
|
||||||
},
|
},
|
||||||
reportLink: function(errors) {
|
reportLink: function(errors) {
|
||||||
var data, details, ref, title, url;
|
var addDetails, data, details, title, url;
|
||||||
data = errors[0];
|
data = errors[0];
|
||||||
title = data.message;
|
title = data.message;
|
||||||
if (errors.length > 1) {
|
if (errors.length > 1) {
|
||||||
title += " (+" + (errors.length - 1) + " other errors)";
|
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) {
|
if (data.html) {
|
||||||
details += "\n\n" + data.html;
|
addDetails('\n' + data.html);
|
||||||
}
|
}
|
||||||
details = details.replace(/file:\/{3}.+\//g, '');
|
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 = "https://gitreports.com/issue/ccd0/4chan-x?issue_title=" + (encodeURIComponent(title)) + "&details=" + (encodeURIComponent(details));
|
||||||
url = url.slice(0, 8200);
|
|
||||||
return {
|
return {
|
||||||
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
|
innerHTML: "<span class=\"report-error\"> [<a href=\"" + E(url) + "\" target=\"_blank\">report</a>]</span>"
|
||||||
};
|
};
|
||||||
|
|||||||
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.11.32.2' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.32.3' />
|
||||||
</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.11.32.2' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.32.3' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.32.2",
|
"version": "1.11.32.3",
|
||||||
"date": "2016-05-04T21:26:47.510Z"
|
"date": "2016-05-05T00:15:14.998Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user