diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a44b9f7b..b7f8861a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ## 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)] - Fix bug from v1.13.0.0 that broke Quote Inlining / Previewing of OPs on /f/. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index 08a92bc91..8fcb62fc5 100644 Binary files a/builds/4chan-X-beta.crx and b/builds/4chan-X-beta.crx differ diff --git a/builds/4chan-X-beta.meta.js b/builds/4chan-X-beta.meta.js index 937f7a75e..cf1ede113 100644 --- a/builds/4chan-X-beta.meta.js +++ b/builds/4chan-X-beta.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X beta -// @version 1.13.0.9 +// @version 1.13.0.10 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X-beta.user.js b/builds/4chan-X-beta.user.js index dee3f3aec..d3f22feb9 100644 --- a/builds/4chan-X-beta.user.js +++ b/builds/4chan-X-beta.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X beta -// @version 1.13.0.9 +// @version 1.13.0.10 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.9', + VERSION: '1.13.0.10', NAMESPACE: '4chan X.', boards: {} }; @@ -5975,6 +5975,9 @@ Post = (function() { return; } fileText = fileRoot.firstElementChild; + if (link.hostname === 'is.4chan.org') { + link.hostname = 'i.4cdn.org'; + } this.file = { text: fileText, link: link, @@ -5993,6 +5996,9 @@ Post = (function() { } this.file.sizeInBytes = size; if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) { + if (thumb.parentNode.hostname === 'is.4chan.org') { + thumb.parentNode.hostname = 'i.4cdn.org'; + } return $.extend(this.file, { thumb: thumb, thumbLink: thumb.parentNode, diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index a39e425f3..8949f05a4 100644 Binary files a/builds/4chan-X-noupdate.crx and b/builds/4chan-X-noupdate.crx differ diff --git a/builds/4chan-X-noupdate.user.js b/builds/4chan-X-noupdate.user.js index f9415d42f..e6bbdbb20 100644 --- a/builds/4chan-X-noupdate.user.js +++ b/builds/4chan-X-noupdate.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.0.9 +// @version 1.13.0.10 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.9', + VERSION: '1.13.0.10', NAMESPACE: '4chan X.', boards: {} }; @@ -5975,6 +5975,9 @@ Post = (function() { return; } fileText = fileRoot.firstElementChild; + if (link.hostname === 'is.4chan.org') { + link.hostname = 'i.4cdn.org'; + } this.file = { text: fileText, link: link, @@ -5993,6 +5996,9 @@ Post = (function() { } this.file.sizeInBytes = size; if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) { + if (thumb.parentNode.hostname === 'is.4chan.org') { + thumb.parentNode.hostname = 'i.4cdn.org'; + } return $.extend(this.file, { thumb: thumb, thumbLink: thumb.parentNode, diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index 1aeef2bd6..3892a3307 100644 Binary files a/builds/4chan-X.crx and b/builds/4chan-X.crx differ diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js index 84ce3806a..a95baf3cf 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.0.9 +// @version 1.13.0.10 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 21ef907b8..b8517fdd1 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.0.9 +// @version 1.13.0.10 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.9', + VERSION: '1.13.0.10', NAMESPACE: '4chan X.', boards: {} }; @@ -5975,6 +5975,9 @@ Post = (function() { return; } fileText = fileRoot.firstElementChild; + if (link.hostname === 'is.4chan.org') { + link.hostname = 'i.4cdn.org'; + } this.file = { text: fileText, link: link, @@ -5993,6 +5996,9 @@ Post = (function() { } this.file.sizeInBytes = size; if ((thumb = $('a.fileThumb > [data-md5]', fileRoot))) { + if (thumb.parentNode.hostname === 'is.4chan.org') { + thumb.parentNode.hostname = 'i.4cdn.org'; + } return $.extend(this.file, { thumb: thumb, thumbLink: thumb.parentNode, diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 353e5f857..70c80dd8b 100644 Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml index cc18cb073..6a5c89162 100644 --- a/builds/updates-beta.xml +++ b/builds/updates-beta.xml @@ -1,7 +1,7 @@ - + diff --git a/builds/updates.xml b/builds/updates.xml index 9e07d01d8..1aa79a1c7 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index c503c4162..d368dd9a9 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.13.0.9", - "date": "2016-10-09T10:48:46.406Z" + "version": "1.13.0.10", + "date": "2016-10-09T19:18:36.105Z" } \ No newline at end of file