diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f83c038..040318ec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ### v1.13.2 +**v1.13.2.1** *(2016-11-27)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.2.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.2.1/builds/4chan-X-noupdate.crx)] +- Fix bug from v1.13.2.0 causing errors when non-embeddable link is in inlined/previewed quote. + **v1.13.2.0** *(2016-11-27)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.2.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.2.0/builds/4chan-X-noupdate.crx)] - Based on v1.13.1.12. - (ihavenoface) Add `Cover Preview` function: Show preview of supported links on hover. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index ab9216926..5de57d40a 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 5d55b3c77..8546f3aa6 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.2.0 +// @version 1.13.2.1 // @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 885ec5c39..d37e11995 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.2.0 +// @version 1.13.2.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -147,7 +147,7 @@ docSet = function() { }; g = { - VERSION: '1.13.2.0', + VERSION: '1.13.2.1', NAMESPACE: '4chan X.', boards: {} }; @@ -14026,8 +14026,9 @@ Embedding = (function() { i = 0; items = $$('.linkify', post.nodes.comment); while (el = items[i++]) { - data = Embedding.services(el); - Embedding.preview(data); + if ((data = Embedding.services(el))) { + Embedding.preview(data); + } } } }, diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 835ae3c31..1eeff2991 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 873788b3e..b48709b3b 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.2.0 +// @version 1.13.2.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -147,7 +147,7 @@ docSet = function() { }; g = { - VERSION: '1.13.2.0', + VERSION: '1.13.2.1', NAMESPACE: '4chan X.', boards: {} }; @@ -14026,8 +14026,9 @@ Embedding = (function() { i = 0; items = $$('.linkify', post.nodes.comment); while (el = items[i++]) { - data = Embedding.services(el); - Embedding.preview(data); + if ((data = Embedding.services(el))) { + Embedding.preview(data); + } } } }, diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index cfd748ff4..6372246fb 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 dfd646c42..f39c90958 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.2.0 +// @version 1.13.2.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index b84599e1e..c5a44203e 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.2.0 +// @version 1.13.2.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -147,7 +147,7 @@ docSet = function() { }; g = { - VERSION: '1.13.2.0', + VERSION: '1.13.2.1', NAMESPACE: '4chan X.', boards: {} }; @@ -14026,8 +14026,9 @@ Embedding = (function() { i = 0; items = $$('.linkify', post.nodes.comment); while (el = items[i++]) { - data = Embedding.services(el); - Embedding.preview(data); + if ((data = Embedding.services(el))) { + Embedding.preview(data); + } } } }, diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 326beaf77..7ff0391b8 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 c5e8f14ed..a9f445338 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 87c2921de..a55a6340c 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index e941689ed..c912acda5 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.13.2.0", - "date": "2016-11-27T04:21:28.658Z" + "version": "1.13.2.1", + "date": "2016-11-27T04:42:57.747Z" } \ No newline at end of file