diff --git a/CHANGELOG.md b/CHANGELOG.md index c40fe09fe..f5b32de19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ### v1.13.8 +**v1.13.8.2** *(2017-02-11)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.2/builds/4chan-X-noupdate.crx)] +- Update for recent site changes. Fixes quote preview on archive page. + **v1.13.8.1** *(2017-02-10)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.1/builds/4chan-X-noupdate.crx)] - Fix bug from v1.13.8.0 causing v1 captcha sometimes not to reload when needed. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index f077ab262..da79eed33 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 b01d26baa..c65d28d5a 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.8.1 +// @version 1.13.8.2 // @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 4db45b8aa..46d2339cd 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.8.1 +// @version 1.13.8.2 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -151,7 +151,7 @@ docSet = function() { }; g = { - VERSION: '1.13.8.1', + VERSION: '1.13.8.2', NAMESPACE: '4chan X.', boards: {} }; @@ -8641,7 +8641,7 @@ Get = (function() { path = link.pathname.split(/\/+/); boardID = path[1]; threadID = path[3]; - postID = link.hash.slice(2); + postID = link.hash ? link.hash.slice(2) : path[3]; } else { ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID; threadID || (threadID = 0); @@ -13286,11 +13286,7 @@ ImageHost = (function() { }); }, host: function() { - if (this.useFaster) { - return 'i.4cdn.org'; - } else { - return 'is.4chan.org'; - } + return 'i.4cdn.org'; }, flashHost: function() { return 'i.4cdn.org'; diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 0d247213d..3b03fdb7b 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 f94b74df3..a692a7b36 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.8.1 +// @version 1.13.8.2 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -151,7 +151,7 @@ docSet = function() { }; g = { - VERSION: '1.13.8.1', + VERSION: '1.13.8.2', NAMESPACE: '4chan X.', boards: {} }; @@ -8641,7 +8641,7 @@ Get = (function() { path = link.pathname.split(/\/+/); boardID = path[1]; threadID = path[3]; - postID = link.hash.slice(2); + postID = link.hash ? link.hash.slice(2) : path[3]; } else { ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID; threadID || (threadID = 0); @@ -13286,11 +13286,7 @@ ImageHost = (function() { }); }, host: function() { - if (this.useFaster) { - return 'i.4cdn.org'; - } else { - return 'is.4chan.org'; - } + return 'i.4cdn.org'; }, flashHost: function() { return 'i.4cdn.org'; diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index e18092543..ab8b431ca 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 2d30a552d..fe3a8221b 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.8.1 +// @version 1.13.8.2 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 5030c23ad..8f1060135 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.8.1 +// @version 1.13.8.2 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -151,7 +151,7 @@ docSet = function() { }; g = { - VERSION: '1.13.8.1', + VERSION: '1.13.8.2', NAMESPACE: '4chan X.', boards: {} }; @@ -8641,7 +8641,7 @@ Get = (function() { path = link.pathname.split(/\/+/); boardID = path[1]; threadID = path[3]; - postID = link.hash.slice(2); + postID = link.hash ? link.hash.slice(2) : path[3]; } else { ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID; threadID || (threadID = 0); @@ -13286,11 +13286,7 @@ ImageHost = (function() { }); }, host: function() { - if (this.useFaster) { - return 'i.4cdn.org'; - } else { - return 'is.4chan.org'; - } + return 'i.4cdn.org'; }, flashHost: function() { return 'i.4cdn.org'; diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 274dce9a8..fa4868bc2 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 2e8856d48..0c91e1a84 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 19b91553e..179259dcb 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index 8832dad0e..df16176e4 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.13.8.1", - "date": "2017-02-10T19:44:51.235Z" + "version": "1.13.8.2", + "date": "2017-02-11T04:29:13.570Z" } \ No newline at end of file