Release 4chan X v1.13.1.10.

This commit is contained in:
ccd0 2016-11-26 02:21:32 -08:00
parent 9745dcc707
commit 7e5d71f210
13 changed files with 62 additions and 18 deletions

View File

@ -4,6 +4,11 @@
### v1.13.1
**v1.13.1.10** *(2016-11-26)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.10/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.10/builds/4chan-X-noupdate.crx)]
- Fix bug from v1.13.0.0 causing `Auto-embed` to sometimes not work.
- Fix performance issue from v1.13.0.0 due to all link embeds in OPs being reloaded upon switching to catalog mode.
- Include Yandex in default sauce links.
**v1.13.1.9** *(2016-11-20)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.9/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.9/builds/4chan-X-noupdate.crx)]
- Change replies-quoting-you exclamation mark from red to green on dead-thread icon in 4chanJS set.

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.13.1.9
// @version 1.13.1.10
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.9',
VERSION: '1.13.1.10',
NAMESPACE: '4chan X.',
boards: {}
};
@ -375,7 +375,7 @@ Config = (function() {
filesize: '',
MD5: ''
},
sauces: "# Reverse image search:\nhttps://www.google.com/searchbyimage?image_url=%IMG&safe=off\n#https://www.yandex.com/images/search?rpt=imageview&img_url=%IMG\n#//tineye.com/search?url=%IMG\n#//www.bing.com/images/search?q=imgurl:%IMG&view=detailv2&iss=sbi#enterInsights\n\n# Specialized reverse image search:\n//iqdb.org/?url=%IMG\nhttps://whatanime.ga/?auto&url=%IMG;text:wait\n#//3d.iqdb.org/?url=%IMG\n#//saucenao.com/search.php?url=%IMG\n\n# \"View Same\" in archives:\nhttp://eye.swfchan.com/search/?q=%name;types:swf\n#https://desuarchive.org/_/search/image/%sMD5/\n#https://archive.4plebs.org/_/search/image/%sMD5/\n#https://boards.fireden.net/_/search/image/%sMD5/\n#https://foolz.fireden.net/_/search/image/%sMD5/\n\n# Other tools:\n#http://regex.info/exif.cgi?imgurl=%URL\n#//imgops.com/%URL;types:gif,jpg,png\n#//www.gif-explode.com/%URL;types:gif",
sauces: "# Reverse image search:\nhttps://www.google.com/searchbyimage?image_url=%IMG&safe=off\nhttps://www.yandex.com/images/search?rpt=imageview&img_url=%IMG\n#//tineye.com/search?url=%IMG\n#//www.bing.com/images/search?q=imgurl:%IMG&view=detailv2&iss=sbi#enterInsights\n\n# Specialized reverse image search:\n//iqdb.org/?url=%IMG\nhttps://whatanime.ga/?auto&url=%IMG;text:wait\n#//3d.iqdb.org/?url=%IMG\n#//saucenao.com/search.php?url=%IMG\n\n# \"View Same\" in archives:\nhttp://eye.swfchan.com/search/?q=%name;types:swf\n#https://desuarchive.org/_/search/image/%sMD5/\n#https://archive.4plebs.org/_/search/image/%sMD5/\n#https://boards.fireden.net/_/search/image/%sMD5/\n#https://foolz.fireden.net/_/search/image/%sMD5/\n\n# Other tools:\n#http://regex.info/exif.cgi?imgurl=%URL\n#//imgops.com/%URL;types:gif,jpg,png\n#//www.gif-explode.com/%URL;types:gif",
FappeT: {
werk: false
},
@ -9294,6 +9294,7 @@ Index = (function() {
if (!Conf['JSON Index']) {
return;
}
this.enabled = true;
Callbacks.Post.push({
name: 'Index Page Numbers',
cb: this.node
@ -14066,6 +14067,9 @@ Embedding = (function() {
embed.dataset[name] = value;
}
$.on(embed, 'click', Embedding.cb.click);
if (Index.enabled) {
$.on(d, 'IndexRefreshInternal', Embedding.cb.catalogRemove.bind(embed));
}
$.after(link, [$.tn(' '), embed]);
if (Conf['Auto-embed'] && !Conf['Floating Embeds'] && !post.isFetchedQuote) {
autoEmbed = function() {
@ -14074,7 +14078,8 @@ Embedding = (function() {
return Embedding.cb.toggle.call(embed);
}
};
return $.on(d, 'PostsInserted', autoEmbed);
$.on(d, 'PostsInserted', autoEmbed);
return autoEmbed();
}
},
ready: function() {
@ -14198,6 +14203,14 @@ Embedding = (function() {
el.style.cssText = type.style != null ? type.style : 'border: none; width: 640px; height: 360px;';
return container;
},
catalogRemove: function() {
var isCatalog;
isCatalog = $.hasClass(doc, 'catalog-mode');
if ((isCatalog && $.hasClass(this, 'embedded')) || (!isCatalog && $.hasClass(this, 'embed-removed'))) {
Embedding.cb.toggle.call(this);
return $.toggleClass(this, 'embed-removed');
}
},
title: function(req, data) {
var base1, j, k, key, len, len1, link, link2, options, post, post2, ref, ref1, service, status, text, uid;
key = data.key, uid = data.uid, options = data.options, link = data.link, post = data.post;

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.1.9
// @version 1.13.1.10
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.9',
VERSION: '1.13.1.10',
NAMESPACE: '4chan X.',
boards: {}
};
@ -375,7 +375,7 @@ Config = (function() {
filesize: '',
MD5: ''
},
sauces: "# Reverse image search:\nhttps://www.google.com/searchbyimage?image_url=%IMG&safe=off\n#https://www.yandex.com/images/search?rpt=imageview&img_url=%IMG\n#//tineye.com/search?url=%IMG\n#//www.bing.com/images/search?q=imgurl:%IMG&view=detailv2&iss=sbi#enterInsights\n\n# Specialized reverse image search:\n//iqdb.org/?url=%IMG\nhttps://whatanime.ga/?auto&url=%IMG;text:wait\n#//3d.iqdb.org/?url=%IMG\n#//saucenao.com/search.php?url=%IMG\n\n# \"View Same\" in archives:\nhttp://eye.swfchan.com/search/?q=%name;types:swf\n#https://desuarchive.org/_/search/image/%sMD5/\n#https://archive.4plebs.org/_/search/image/%sMD5/\n#https://boards.fireden.net/_/search/image/%sMD5/\n#https://foolz.fireden.net/_/search/image/%sMD5/\n\n# Other tools:\n#http://regex.info/exif.cgi?imgurl=%URL\n#//imgops.com/%URL;types:gif,jpg,png\n#//www.gif-explode.com/%URL;types:gif",
sauces: "# Reverse image search:\nhttps://www.google.com/searchbyimage?image_url=%IMG&safe=off\nhttps://www.yandex.com/images/search?rpt=imageview&img_url=%IMG\n#//tineye.com/search?url=%IMG\n#//www.bing.com/images/search?q=imgurl:%IMG&view=detailv2&iss=sbi#enterInsights\n\n# Specialized reverse image search:\n//iqdb.org/?url=%IMG\nhttps://whatanime.ga/?auto&url=%IMG;text:wait\n#//3d.iqdb.org/?url=%IMG\n#//saucenao.com/search.php?url=%IMG\n\n# \"View Same\" in archives:\nhttp://eye.swfchan.com/search/?q=%name;types:swf\n#https://desuarchive.org/_/search/image/%sMD5/\n#https://archive.4plebs.org/_/search/image/%sMD5/\n#https://boards.fireden.net/_/search/image/%sMD5/\n#https://foolz.fireden.net/_/search/image/%sMD5/\n\n# Other tools:\n#http://regex.info/exif.cgi?imgurl=%URL\n#//imgops.com/%URL;types:gif,jpg,png\n#//www.gif-explode.com/%URL;types:gif",
FappeT: {
werk: false
},
@ -9294,6 +9294,7 @@ Index = (function() {
if (!Conf['JSON Index']) {
return;
}
this.enabled = true;
Callbacks.Post.push({
name: 'Index Page Numbers',
cb: this.node
@ -14066,6 +14067,9 @@ Embedding = (function() {
embed.dataset[name] = value;
}
$.on(embed, 'click', Embedding.cb.click);
if (Index.enabled) {
$.on(d, 'IndexRefreshInternal', Embedding.cb.catalogRemove.bind(embed));
}
$.after(link, [$.tn(' '), embed]);
if (Conf['Auto-embed'] && !Conf['Floating Embeds'] && !post.isFetchedQuote) {
autoEmbed = function() {
@ -14074,7 +14078,8 @@ Embedding = (function() {
return Embedding.cb.toggle.call(embed);
}
};
return $.on(d, 'PostsInserted', autoEmbed);
$.on(d, 'PostsInserted', autoEmbed);
return autoEmbed();
}
},
ready: function() {
@ -14198,6 +14203,14 @@ Embedding = (function() {
el.style.cssText = type.style != null ? type.style : 'border: none; width: 640px; height: 360px;';
return container;
},
catalogRemove: function() {
var isCatalog;
isCatalog = $.hasClass(doc, 'catalog-mode');
if ((isCatalog && $.hasClass(this, 'embedded')) || (!isCatalog && $.hasClass(this, 'embed-removed'))) {
Embedding.cb.toggle.call(this);
return $.toggleClass(this, 'embed-removed');
}
},
title: function(req, data) {
var base1, j, k, key, len, len1, link, link2, options, post, post2, ref, ref1, service, status, text, uid;
key = data.key, uid = data.uid, options = data.options, link = data.link, post = data.post;

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.1.9
// @version 1.13.1.10
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.9',
VERSION: '1.13.1.10',
NAMESPACE: '4chan X.',
boards: {}
};
@ -375,7 +375,7 @@ Config = (function() {
filesize: '',
MD5: ''
},
sauces: "# Reverse image search:\nhttps://www.google.com/searchbyimage?image_url=%IMG&safe=off\n#https://www.yandex.com/images/search?rpt=imageview&img_url=%IMG\n#//tineye.com/search?url=%IMG\n#//www.bing.com/images/search?q=imgurl:%IMG&view=detailv2&iss=sbi#enterInsights\n\n# Specialized reverse image search:\n//iqdb.org/?url=%IMG\nhttps://whatanime.ga/?auto&url=%IMG;text:wait\n#//3d.iqdb.org/?url=%IMG\n#//saucenao.com/search.php?url=%IMG\n\n# \"View Same\" in archives:\nhttp://eye.swfchan.com/search/?q=%name;types:swf\n#https://desuarchive.org/_/search/image/%sMD5/\n#https://archive.4plebs.org/_/search/image/%sMD5/\n#https://boards.fireden.net/_/search/image/%sMD5/\n#https://foolz.fireden.net/_/search/image/%sMD5/\n\n# Other tools:\n#http://regex.info/exif.cgi?imgurl=%URL\n#//imgops.com/%URL;types:gif,jpg,png\n#//www.gif-explode.com/%URL;types:gif",
sauces: "# Reverse image search:\nhttps://www.google.com/searchbyimage?image_url=%IMG&safe=off\nhttps://www.yandex.com/images/search?rpt=imageview&img_url=%IMG\n#//tineye.com/search?url=%IMG\n#//www.bing.com/images/search?q=imgurl:%IMG&view=detailv2&iss=sbi#enterInsights\n\n# Specialized reverse image search:\n//iqdb.org/?url=%IMG\nhttps://whatanime.ga/?auto&url=%IMG;text:wait\n#//3d.iqdb.org/?url=%IMG\n#//saucenao.com/search.php?url=%IMG\n\n# \"View Same\" in archives:\nhttp://eye.swfchan.com/search/?q=%name;types:swf\n#https://desuarchive.org/_/search/image/%sMD5/\n#https://archive.4plebs.org/_/search/image/%sMD5/\n#https://boards.fireden.net/_/search/image/%sMD5/\n#https://foolz.fireden.net/_/search/image/%sMD5/\n\n# Other tools:\n#http://regex.info/exif.cgi?imgurl=%URL\n#//imgops.com/%URL;types:gif,jpg,png\n#//www.gif-explode.com/%URL;types:gif",
FappeT: {
werk: false
},
@ -9294,6 +9294,7 @@ Index = (function() {
if (!Conf['JSON Index']) {
return;
}
this.enabled = true;
Callbacks.Post.push({
name: 'Index Page Numbers',
cb: this.node
@ -14066,6 +14067,9 @@ Embedding = (function() {
embed.dataset[name] = value;
}
$.on(embed, 'click', Embedding.cb.click);
if (Index.enabled) {
$.on(d, 'IndexRefreshInternal', Embedding.cb.catalogRemove.bind(embed));
}
$.after(link, [$.tn(' '), embed]);
if (Conf['Auto-embed'] && !Conf['Floating Embeds'] && !post.isFetchedQuote) {
autoEmbed = function() {
@ -14074,7 +14078,8 @@ Embedding = (function() {
return Embedding.cb.toggle.call(embed);
}
};
return $.on(d, 'PostsInserted', autoEmbed);
$.on(d, 'PostsInserted', autoEmbed);
return autoEmbed();
}
},
ready: function() {
@ -14198,6 +14203,14 @@ Embedding = (function() {
el.style.cssText = type.style != null ? type.style : 'border: none; width: 640px; height: 360px;';
return container;
},
catalogRemove: function() {
var isCatalog;
isCatalog = $.hasClass(doc, 'catalog-mode');
if ((isCatalog && $.hasClass(this, 'embedded')) || (!isCatalog && $.hasClass(this, 'embed-removed'))) {
Embedding.cb.toggle.call(this);
return $.toggleClass(this, 'embed-removed');
}
},
title: function(req, data) {
var base1, j, k, key, len, len1, link, link2, options, post, post2, ref, ref1, service, status, text, uid;
key = data.key, uid = data.uid, options = data.options, link = data.link, post = data.post;

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

View File

@ -1,4 +1,4 @@
{
"version": "1.13.1.9",
"date": "2016-11-20T01:13:25.543Z"
"version": "1.13.1.10",
"date": "2016-11-26T10:08:53.260Z"
}