Release 4chan X v1.13.1.7.

This commit is contained in:
ccd0 2016-11-17 19:48:44 -08:00
parent 7a88b9f25d
commit c0a2824f4c
13 changed files with 57 additions and 33 deletions

View File

@ -4,6 +4,9 @@
### v1.13.1
**v1.13.1.7** *(2016-11-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.7/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.7/builds/4chan-X-noupdate.crx)]
- Fix in-comment links to is.4chan.org.
**v1.13.1.6** *(2016-11-14)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.6/builds/4chan-X-noupdate.crx)]
- (desaku) Update 4chanJS favicons to reflect the native extension. #1038
- Fix reply-to-you favicons in `xat-` set looking blurry.

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.13.1.6
// @version 1.13.1.7
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.6',
VERSION: '1.13.1.7',
NAMESPACE: '4chan X.',
boards: {}
};
@ -13208,15 +13208,22 @@ ImageHost = (function() {
});
},
node: function() {
var m;
if (!(this.file && !this.isClone && (m = this.file.url.match(/^https?:\/\/is\.4chan\.org\/(.*)$/)))) {
var i, len, link, m, ref;
if (this.isClone) {
return;
}
if (this.file && (m = this.file.url.match(/^https?:\/\/is\.4chan\.org\/(.*)$/))) {
this.file.link.hostname = 'i.4cdn.org';
if (this.file.thumbLink) {
this.file.thumbLink.hostname = 'i.4cdn.org';
}
return this.file.url = this.file.link.href;
this.file.url = this.file.link.href;
}
ref = $$('a[href^="http://is.4chan.org/"], a[href^="https://is.4chan.org/"]', this.nodes.comment);
for (i = 0, len = ref.length; i < len; i++) {
link = ref[i];
link.hostname = 'i.4cdn.org';
}
}
};
@ -14260,7 +14267,7 @@ Embedding = (function() {
controls: true,
preload: 'auto',
src: a.dataset.href,
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
loop: /^https?:\/\/(i\.4cdn|is\.4chan)\.org\//.test(a.dataset.href)
});
$.on(el, 'loadedmetadata', function() {
if (el.videoHeight === 0 && el.parentNode) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.1.6
// @version 1.13.1.7
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.6',
VERSION: '1.13.1.7',
NAMESPACE: '4chan X.',
boards: {}
};
@ -13208,15 +13208,22 @@ ImageHost = (function() {
});
},
node: function() {
var m;
if (!(this.file && !this.isClone && (m = this.file.url.match(/^https?:\/\/is\.4chan\.org\/(.*)$/)))) {
var i, len, link, m, ref;
if (this.isClone) {
return;
}
if (this.file && (m = this.file.url.match(/^https?:\/\/is\.4chan\.org\/(.*)$/))) {
this.file.link.hostname = 'i.4cdn.org';
if (this.file.thumbLink) {
this.file.thumbLink.hostname = 'i.4cdn.org';
}
return this.file.url = this.file.link.href;
this.file.url = this.file.link.href;
}
ref = $$('a[href^="http://is.4chan.org/"], a[href^="https://is.4chan.org/"]', this.nodes.comment);
for (i = 0, len = ref.length; i < len; i++) {
link = ref[i];
link.hostname = 'i.4cdn.org';
}
}
};
@ -14260,7 +14267,7 @@ Embedding = (function() {
controls: true,
preload: 'auto',
src: a.dataset.href,
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
loop: /^https?:\/\/(i\.4cdn|is\.4chan)\.org\//.test(a.dataset.href)
});
$.on(el, 'loadedmetadata', function() {
if (el.videoHeight === 0 && el.parentNode) {

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.1.6
// @version 1.13.1.7
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.6',
VERSION: '1.13.1.7',
NAMESPACE: '4chan X.',
boards: {}
};
@ -13208,15 +13208,22 @@ ImageHost = (function() {
});
},
node: function() {
var m;
if (!(this.file && !this.isClone && (m = this.file.url.match(/^https?:\/\/is\.4chan\.org\/(.*)$/)))) {
var i, len, link, m, ref;
if (this.isClone) {
return;
}
if (this.file && (m = this.file.url.match(/^https?:\/\/is\.4chan\.org\/(.*)$/))) {
this.file.link.hostname = 'i.4cdn.org';
if (this.file.thumbLink) {
this.file.thumbLink.hostname = 'i.4cdn.org';
}
return this.file.url = this.file.link.href;
this.file.url = this.file.link.href;
}
ref = $$('a[href^="http://is.4chan.org/"], a[href^="https://is.4chan.org/"]', this.nodes.comment);
for (i = 0, len = ref.length; i < len; i++) {
link = ref[i];
link.hostname = 'i.4cdn.org';
}
}
};
@ -14260,7 +14267,7 @@ Embedding = (function() {
controls: true,
preload: 'auto',
src: a.dataset.href,
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
loop: /^https?:\/\/(i\.4cdn|is\.4chan)\.org\//.test(a.dataset.href)
});
$.on(el, 'loadedmetadata', function() {
if (el.videoHeight === 0 && el.parentNode) {

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

View File

@ -1,4 +1,4 @@
{
"version": "1.13.1.6",
"date": "2016-11-14T02:04:14.115Z"
"version": "1.13.1.7",
"date": "2016-11-18T03:44:47.789Z"
}