diff --git a/CHANGELOG.md b/CHANGELOG.md index 690359d11..6da0c1cca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ### v1.14.6 +**v1.14.6.1** *(2019-03-30)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.6.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.6.1/builds/4chan-X-noupdate.crx)] +- Fix errors in certain userscript managers introduced in v1.14.6.0. #2256 + **v1.14.6.0** *(2019-03-25)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.6.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.6.0/builds/4chan-X-noupdate.crx)] - Based on v1.14.5.14. - (ebinBuddha) Added desktop notification for filters (`notify` option). diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index a6a3eee18..ba35107fd 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 9c79379f8..007d7e459 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.14.6.0 +// @version 1.14.6.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 13b2a8bc8..73703a470 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.14.6.0 +// @version 1.14.6.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -198,7 +198,7 @@ docSet = function() { }; g = { - VERSION: '1.14.6.0', + VERSION: '1.14.6.1', NAMESPACE: '4chan X.', boards: {} }; @@ -5575,7 +5575,7 @@ CrossOrigin = (function() { return req.onloadend(); } }); - if (typeof gmReq.abort === 'function') { + if (gmReq && typeof gmReq.abort === 'function') { req.abort = function() { try { return gmReq.abort(); diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index fde638f8d..15b53e91e 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 3d63ff109..fdb87f338 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.14.6.0 +// @version 1.14.6.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -198,7 +198,7 @@ docSet = function() { }; g = { - VERSION: '1.14.6.0', + VERSION: '1.14.6.1', NAMESPACE: '4chan X.', boards: {} }; @@ -5575,7 +5575,7 @@ CrossOrigin = (function() { return req.onloadend(); } }); - if (typeof gmReq.abort === 'function') { + if (gmReq && typeof gmReq.abort === 'function') { req.abort = function() { try { return gmReq.abort(); diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index f5a9e2625..97603c2a5 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 a601da04e..1205e1d78 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.14.6.0 +// @version 1.14.6.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 4979a14d6..45a33b681 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.14.6.0 +// @version 1.14.6.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -198,7 +198,7 @@ docSet = function() { }; g = { - VERSION: '1.14.6.0', + VERSION: '1.14.6.1', NAMESPACE: '4chan X.', boards: {} }; @@ -5575,7 +5575,7 @@ CrossOrigin = (function() { return req.onloadend(); } }); - if (typeof gmReq.abort === 'function') { + if (gmReq && typeof gmReq.abort === 'function') { req.abort = function() { try { return gmReq.abort(); diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index e72ed6cf1..be4147313 100644 Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ diff --git a/builds/updates-beta.json b/builds/updates-beta.json index 7fc266478..b3b9aabea 100644 --- a/builds/updates-beta.json +++ b/builds/updates-beta.json @@ -3,7 +3,7 @@ "4chan-x@4chan-x.net": { "updates": [ { - "version": "1.14.6.0", + "version": "1.14.6.1", "update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx" } ] diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml index ffff4e9a9..956e6d915 100644 --- a/builds/updates-beta.xml +++ b/builds/updates-beta.xml @@ -1,7 +1,7 @@ - + diff --git a/builds/updates.json b/builds/updates.json index cb815a87a..59d4cd42e 100644 --- a/builds/updates.json +++ b/builds/updates.json @@ -3,7 +3,7 @@ "4chan-x@4chan-x.net": { "updates": [ { - "version": "1.14.6.0", + "version": "1.14.6.1", "update_link": "https://www.4chan-x.net/builds/4chan-X.crx" } ] diff --git a/builds/updates.xml b/builds/updates.xml index dc138395e..76352b539 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index ffc5b9ba4..69bc31783 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.14.6.0", - "date": "2019-03-25T08:01:52.363Z" + "version": "1.14.6.1", + "date": "2019-03-30T19:33:42.126Z" } \ No newline at end of file