Release 4chan X v1.13.9.6.
This commit is contained in:
parent
dbcd9e1da3
commit
5533633528
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.13.9
|
||||
|
||||
**v1.13.9.6** *(2017-06-28)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.6/builds/4chan-X-noupdate.crx)]
|
||||
- Include link to FAQ entry about [blob: blocking issue](https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions#error-reading-metadata) in warning message when can't read file metadata. #1417
|
||||
|
||||
**v1.13.9.5** *(2017-06-27)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.5/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.5/builds/4chan-X-noupdate.crx)]
|
||||
- Support /pol/ custom flags in archive-related features. #1403
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.9.5
|
||||
// @version 1.13.9.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.9.5
|
||||
// @version 1.13.9.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.9.5',
|
||||
VERSION: '1.13.9.6',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -22850,13 +22850,13 @@ QR = (function() {
|
||||
}
|
||||
};
|
||||
|
||||
_Class.prototype.error = function(className, message) {
|
||||
_Class.prototype.error = function(className, message, link) {
|
||||
var div, ref, rm, rmAll;
|
||||
div = $.el('div', {
|
||||
className: className
|
||||
});
|
||||
$.extend(div, {
|
||||
innerHTML: E(message) + "<br>[<a href=\"javascript:;\">delete post</a>] [<a href=\"javascript:;\">delete all</a>]"
|
||||
innerHTML: E(message) + ((link) ? " [<a href=\"" + E(link) + "\" target=\"_blank\">More info</a>]" : "") + "<br>[<a href=\"javascript:;\">delete post</a>] [<a href=\"javascript:;\">delete all</a>]"
|
||||
});
|
||||
(this.errors || (this.errors = [])).push(div);
|
||||
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
||||
@ -22879,8 +22879,8 @@ QR = (function() {
|
||||
return QR.error(div, true);
|
||||
};
|
||||
|
||||
_Class.prototype.fileError = function(message) {
|
||||
return this.error('file-error', this.filename + ": " + message);
|
||||
_Class.prototype.fileError = function(message, link) {
|
||||
return this.error('file-error', this.filename + ": " + message, link);
|
||||
};
|
||||
|
||||
_Class.prototype.dismissErrors = function(test) {
|
||||
@ -22963,7 +22963,7 @@ QR = (function() {
|
||||
return function() {
|
||||
$.off(el, event, onload);
|
||||
$.off(el, 'error', onerror);
|
||||
_this.fileError((isVideo ? 'Video' : 'Image') + " appears corrupt");
|
||||
_this.fileError("Corrupt " + (isVideo ? 'video' : 'image') + " or error reading metadata.", 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions#error-reading-metadata');
|
||||
return URL.revokeObjectURL(el.src);
|
||||
};
|
||||
})(this);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.9.5
|
||||
// @version 1.13.9.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.9.5',
|
||||
VERSION: '1.13.9.6',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -22850,13 +22850,13 @@ QR = (function() {
|
||||
}
|
||||
};
|
||||
|
||||
_Class.prototype.error = function(className, message) {
|
||||
_Class.prototype.error = function(className, message, link) {
|
||||
var div, ref, rm, rmAll;
|
||||
div = $.el('div', {
|
||||
className: className
|
||||
});
|
||||
$.extend(div, {
|
||||
innerHTML: E(message) + "<br>[<a href=\"javascript:;\">delete post</a>] [<a href=\"javascript:;\">delete all</a>]"
|
||||
innerHTML: E(message) + ((link) ? " [<a href=\"" + E(link) + "\" target=\"_blank\">More info</a>]" : "") + "<br>[<a href=\"javascript:;\">delete post</a>] [<a href=\"javascript:;\">delete all</a>]"
|
||||
});
|
||||
(this.errors || (this.errors = [])).push(div);
|
||||
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
||||
@ -22879,8 +22879,8 @@ QR = (function() {
|
||||
return QR.error(div, true);
|
||||
};
|
||||
|
||||
_Class.prototype.fileError = function(message) {
|
||||
return this.error('file-error', this.filename + ": " + message);
|
||||
_Class.prototype.fileError = function(message, link) {
|
||||
return this.error('file-error', this.filename + ": " + message, link);
|
||||
};
|
||||
|
||||
_Class.prototype.dismissErrors = function(test) {
|
||||
@ -22963,7 +22963,7 @@ QR = (function() {
|
||||
return function() {
|
||||
$.off(el, event, onload);
|
||||
$.off(el, 'error', onerror);
|
||||
_this.fileError((isVideo ? 'Video' : 'Image') + " appears corrupt");
|
||||
_this.fileError("Corrupt " + (isVideo ? 'video' : 'image') + " or error reading metadata.", 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions#error-reading-metadata');
|
||||
return URL.revokeObjectURL(el.src);
|
||||
};
|
||||
})(this);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.9.5
|
||||
// @version 1.13.9.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.9.5
|
||||
// @version 1.13.9.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.9.5',
|
||||
VERSION: '1.13.9.6',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -22850,13 +22850,13 @@ QR = (function() {
|
||||
}
|
||||
};
|
||||
|
||||
_Class.prototype.error = function(className, message) {
|
||||
_Class.prototype.error = function(className, message, link) {
|
||||
var div, ref, rm, rmAll;
|
||||
div = $.el('div', {
|
||||
className: className
|
||||
});
|
||||
$.extend(div, {
|
||||
innerHTML: E(message) + "<br>[<a href=\"javascript:;\">delete post</a>] [<a href=\"javascript:;\">delete all</a>]"
|
||||
innerHTML: E(message) + ((link) ? " [<a href=\"" + E(link) + "\" target=\"_blank\">More info</a>]" : "") + "<br>[<a href=\"javascript:;\">delete post</a>] [<a href=\"javascript:;\">delete all</a>]"
|
||||
});
|
||||
(this.errors || (this.errors = [])).push(div);
|
||||
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
||||
@ -22879,8 +22879,8 @@ QR = (function() {
|
||||
return QR.error(div, true);
|
||||
};
|
||||
|
||||
_Class.prototype.fileError = function(message) {
|
||||
return this.error('file-error', this.filename + ": " + message);
|
||||
_Class.prototype.fileError = function(message, link) {
|
||||
return this.error('file-error', this.filename + ": " + message, link);
|
||||
};
|
||||
|
||||
_Class.prototype.dismissErrors = function(test) {
|
||||
@ -22963,7 +22963,7 @@ QR = (function() {
|
||||
return function() {
|
||||
$.off(el, event, onload);
|
||||
$.off(el, 'error', onerror);
|
||||
_this.fileError((isVideo ? 'Video' : 'Image') + " appears corrupt");
|
||||
_this.fileError("Corrupt " + (isVideo ? 'video' : 'image') + " or error reading metadata.", 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions#error-reading-metadata');
|
||||
return URL.revokeObjectURL(el.src);
|
||||
};
|
||||
})(this);
|
||||
|
||||
Binary file not shown.
@ -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.13.9.5' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.9.6' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -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.13.9.5' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.9.6' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.9.5",
|
||||
"date": "2017-06-27T22:21:11.331Z"
|
||||
"version": "1.13.9.6",
|
||||
"date": "2017-06-28T05:16:11.160Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user