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
|
||||||
|
|
||||||
|
**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)]
|
**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
|
- Support /pol/ custom flags in archive-related features. #1403
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.9.5
|
// @version 1.13.9.6
|
||||||
// @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.13.9.5
|
// @version 1.13.9.6
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -153,7 +153,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.9.5',
|
VERSION: '1.13.9.6',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
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;
|
var div, ref, rm, rmAll;
|
||||||
div = $.el('div', {
|
div = $.el('div', {
|
||||||
className: className
|
className: className
|
||||||
});
|
});
|
||||||
$.extend(div, {
|
$.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);
|
(this.errors || (this.errors = [])).push(div);
|
||||||
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
||||||
@ -22879,8 +22879,8 @@ QR = (function() {
|
|||||||
return QR.error(div, true);
|
return QR.error(div, true);
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.fileError = function(message) {
|
_Class.prototype.fileError = function(message, link) {
|
||||||
return this.error('file-error', this.filename + ": " + message);
|
return this.error('file-error', this.filename + ": " + message, link);
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.dismissErrors = function(test) {
|
_Class.prototype.dismissErrors = function(test) {
|
||||||
@ -22963,7 +22963,7 @@ QR = (function() {
|
|||||||
return function() {
|
return function() {
|
||||||
$.off(el, event, onload);
|
$.off(el, event, onload);
|
||||||
$.off(el, 'error', onerror);
|
$.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);
|
return URL.revokeObjectURL(el.src);
|
||||||
};
|
};
|
||||||
})(this);
|
})(this);
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.9.5
|
// @version 1.13.9.6
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -153,7 +153,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.9.5',
|
VERSION: '1.13.9.6',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
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;
|
var div, ref, rm, rmAll;
|
||||||
div = $.el('div', {
|
div = $.el('div', {
|
||||||
className: className
|
className: className
|
||||||
});
|
});
|
||||||
$.extend(div, {
|
$.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);
|
(this.errors || (this.errors = [])).push(div);
|
||||||
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
||||||
@ -22879,8 +22879,8 @@ QR = (function() {
|
|||||||
return QR.error(div, true);
|
return QR.error(div, true);
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.fileError = function(message) {
|
_Class.prototype.fileError = function(message, link) {
|
||||||
return this.error('file-error', this.filename + ": " + message);
|
return this.error('file-error', this.filename + ": " + message, link);
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.dismissErrors = function(test) {
|
_Class.prototype.dismissErrors = function(test) {
|
||||||
@ -22963,7 +22963,7 @@ QR = (function() {
|
|||||||
return function() {
|
return function() {
|
||||||
$.off(el, event, onload);
|
$.off(el, event, onload);
|
||||||
$.off(el, 'error', onerror);
|
$.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);
|
return URL.revokeObjectURL(el.src);
|
||||||
};
|
};
|
||||||
})(this);
|
})(this);
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.9.5
|
// @version 1.13.9.6
|
||||||
// @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.13.9.5
|
// @version 1.13.9.6
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -153,7 +153,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.9.5',
|
VERSION: '1.13.9.6',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
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;
|
var div, ref, rm, rmAll;
|
||||||
div = $.el('div', {
|
div = $.el('div', {
|
||||||
className: className
|
className: className
|
||||||
});
|
});
|
||||||
$.extend(div, {
|
$.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);
|
(this.errors || (this.errors = [])).push(div);
|
||||||
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
ref = $$('a', div), rm = ref[0], rmAll = ref[1];
|
||||||
@ -22879,8 +22879,8 @@ QR = (function() {
|
|||||||
return QR.error(div, true);
|
return QR.error(div, true);
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.fileError = function(message) {
|
_Class.prototype.fileError = function(message, link) {
|
||||||
return this.error('file-error', this.filename + ": " + message);
|
return this.error('file-error', this.filename + ": " + message, link);
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.dismissErrors = function(test) {
|
_Class.prototype.dismissErrors = function(test) {
|
||||||
@ -22963,7 +22963,7 @@ QR = (function() {
|
|||||||
return function() {
|
return function() {
|
||||||
$.off(el, event, onload);
|
$.off(el, event, onload);
|
||||||
$.off(el, 'error', onerror);
|
$.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);
|
return URL.revokeObjectURL(el.src);
|
||||||
};
|
};
|
||||||
})(this);
|
})(this);
|
||||||
|
|||||||
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.13.9.5' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.9.6' />
|
||||||
</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.13.9.5' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.9.6' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.9.5",
|
"version": "1.13.9.6",
|
||||||
"date": "2017-06-27T22:21:11.331Z"
|
"date": "2017-06-28T05:16:11.160Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user