Release 4chan X v1.13.0.10.
This commit is contained in:
parent
7f27e78b58
commit
9519ac8624
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
## v1.13.0
|
## v1.13.0
|
||||||
|
|
||||||
|
**v1.13.0.10** *(2016-10-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.10/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.10/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Merge v1.12.3.7: Workaround for problem on 4chan's end with images not loading.
|
||||||
|
|
||||||
**v1.13.0.9** *(2016-10-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.9/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.9/builds/4chan-X-noupdate.crx)]
|
**v1.13.0.9** *(2016-10-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.9/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.9/builds/4chan-X-noupdate.crx)]
|
||||||
- Fix bug from v1.13.0.0 that broke Quote Inlining / Previewing of OPs on /f/.
|
- Fix bug from v1.13.0.0 that broke Quote Inlining / Previewing of OPs on /f/.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.0.9
|
// @version 1.13.0.10
|
||||||
// @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.0.9
|
// @version 1.13.0.10
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.0.9',
|
VERSION: '1.13.0.10',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5975,6 +5975,9 @@ Post = (function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
fileText = fileRoot.firstElementChild;
|
fileText = fileRoot.firstElementChild;
|
||||||
|
if (link.hostname === 'is.4chan.org') {
|
||||||
|
link.hostname = 'i.4cdn.org';
|
||||||
|
}
|
||||||
this.file = {
|
this.file = {
|
||||||
text: fileText,
|
text: fileText,
|
||||||
link: link,
|
link: link,
|
||||||
@ -5993,6 +5996,9 @@ Post = (function() {
|
|||||||
}
|
}
|
||||||
this.file.sizeInBytes = size;
|
this.file.sizeInBytes = size;
|
||||||
if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) {
|
if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) {
|
||||||
|
if (thumb.parentNode.hostname === 'is.4chan.org') {
|
||||||
|
thumb.parentNode.hostname = 'i.4cdn.org';
|
||||||
|
}
|
||||||
return $.extend(this.file, {
|
return $.extend(this.file, {
|
||||||
thumb: thumb,
|
thumb: thumb,
|
||||||
thumbLink: thumb.parentNode,
|
thumbLink: thumb.parentNode,
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.0.9
|
// @version 1.13.0.10
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.0.9',
|
VERSION: '1.13.0.10',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5975,6 +5975,9 @@ Post = (function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
fileText = fileRoot.firstElementChild;
|
fileText = fileRoot.firstElementChild;
|
||||||
|
if (link.hostname === 'is.4chan.org') {
|
||||||
|
link.hostname = 'i.4cdn.org';
|
||||||
|
}
|
||||||
this.file = {
|
this.file = {
|
||||||
text: fileText,
|
text: fileText,
|
||||||
link: link,
|
link: link,
|
||||||
@ -5993,6 +5996,9 @@ Post = (function() {
|
|||||||
}
|
}
|
||||||
this.file.sizeInBytes = size;
|
this.file.sizeInBytes = size;
|
||||||
if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) {
|
if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) {
|
||||||
|
if (thumb.parentNode.hostname === 'is.4chan.org') {
|
||||||
|
thumb.parentNode.hostname = 'i.4cdn.org';
|
||||||
|
}
|
||||||
return $.extend(this.file, {
|
return $.extend(this.file, {
|
||||||
thumb: thumb,
|
thumb: thumb,
|
||||||
thumbLink: thumb.parentNode,
|
thumbLink: thumb.parentNode,
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.0.9
|
// @version 1.13.0.10
|
||||||
// @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.0.9
|
// @version 1.13.0.10
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.0.9',
|
VERSION: '1.13.0.10',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5975,6 +5975,9 @@ Post = (function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
fileText = fileRoot.firstElementChild;
|
fileText = fileRoot.firstElementChild;
|
||||||
|
if (link.hostname === 'is.4chan.org') {
|
||||||
|
link.hostname = 'i.4cdn.org';
|
||||||
|
}
|
||||||
this.file = {
|
this.file = {
|
||||||
text: fileText,
|
text: fileText,
|
||||||
link: link,
|
link: link,
|
||||||
@ -5993,6 +5996,9 @@ Post = (function() {
|
|||||||
}
|
}
|
||||||
this.file.sizeInBytes = size;
|
this.file.sizeInBytes = size;
|
||||||
if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) {
|
if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) {
|
||||||
|
if (thumb.parentNode.hostname === 'is.4chan.org') {
|
||||||
|
thumb.parentNode.hostname = 'i.4cdn.org';
|
||||||
|
}
|
||||||
return $.extend(this.file, {
|
return $.extend(this.file, {
|
||||||
thumb: thumb,
|
thumb: thumb,
|
||||||
thumbLink: thumb.parentNode,
|
thumbLink: thumb.parentNode,
|
||||||
|
|||||||
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.0.9' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.0.10' />
|
||||||
</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.0.9' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.0.10' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.0.9",
|
"version": "1.13.0.10",
|
||||||
"date": "2016-10-09T10:48:46.406Z"
|
"date": "2016-10-09T19:18:36.105Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user