diff --git a/CHANGELOG.md b/CHANGELOG.md index bda8864d3..a5b06aee4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ### v1.14.12 +**v1.14.12.6** *(2019-08-16)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.6/builds/4chan-X-noupdate.crx)] +- Fix bug in Replace [filetype] features from v1.14.12.4. +- Enable by default on kissu.moe. + **v1.14.12.5** *(2019-08-12)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.5/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.5/builds/4chan-X-noupdate.crx)] - Make date parsing work on onesixtwo.club and avoid errors when we fail to parse the date. - Minor bugfixes. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index f1e949721..3753ddf65 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 065e4c0c7..e57acef1d 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.12.5 +// @version 1.14.12.6 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -28,6 +28,8 @@ // @include https://is.4channel.org/* // @include http://is2.4channel.org/* // @include https://is2.4channel.org/* +// @include https://kissu.moe/* +// @include https://www.kissu.moe/* // @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=887877714&* diff --git a/builds/4chan-X-beta.user.js b/builds/4chan-X-beta.user.js index 8e99e6eb9..64bc7078e 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.12.5 +// @version 1.14.12.6 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -28,6 +28,8 @@ // @include https://is.4channel.org/* // @include http://is2.4channel.org/* // @include https://is2.4channel.org/* +// @include https://kissu.moe/* +// @include https://www.kissu.moe/* // @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=887877714&* @@ -199,7 +201,7 @@ docSet = function() { }; g = { - VERSION: '1.14.12.5', + VERSION: '1.14.12.6', NAMESPACE: '4chan X.', sites: Object.create(null), boards: Object.create(null) @@ -15630,7 +15632,8 @@ ImageLoader = (function() { if ((ref = g.VIEW) !== 'index' && ref !== 'thread' && ref !== 'archive') { return; } - if (!(Conf['Image Prefetching'] || (replace = Conf['Replace JPG'] || Conf['Replace PNG'] || Conf['Replace GIF'] || Conf['Replace WEBM']))) { + replace = Conf['Replace JPG'] || Conf['Replace PNG'] || Conf['Replace GIF'] || Conf['Replace WEBM']; + if (!(Conf['Image Prefetching'] || replace)) { return; } Callbacks.Post.push({ diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 276541bd0..95f39e888 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 526b9b72e..712d50fc1 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.12.5 +// @version 1.14.12.6 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -28,6 +28,8 @@ // @include https://is.4channel.org/* // @include http://is2.4channel.org/* // @include https://is2.4channel.org/* +// @include https://kissu.moe/* +// @include https://www.kissu.moe/* // @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=887877714&* @@ -199,7 +201,7 @@ docSet = function() { }; g = { - VERSION: '1.14.12.5', + VERSION: '1.14.12.6', NAMESPACE: '4chan X.', sites: Object.create(null), boards: Object.create(null) @@ -15630,7 +15632,8 @@ ImageLoader = (function() { if ((ref = g.VIEW) !== 'index' && ref !== 'thread' && ref !== 'archive') { return; } - if (!(Conf['Image Prefetching'] || (replace = Conf['Replace JPG'] || Conf['Replace PNG'] || Conf['Replace GIF'] || Conf['Replace WEBM']))) { + replace = Conf['Replace JPG'] || Conf['Replace PNG'] || Conf['Replace GIF'] || Conf['Replace WEBM']; + if (!(Conf['Image Prefetching'] || replace)) { return; } Callbacks.Post.push({ diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index c43fe7f69..627b69ac9 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 722d5c9b9..16908992d 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.14.12.5 +// @version 1.14.12.6 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -28,6 +28,8 @@ // @include https://is.4channel.org/* // @include http://is2.4channel.org/* // @include https://is2.4channel.org/* +// @include https://kissu.moe/* +// @include https://www.kissu.moe/* // @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=887877714&* diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 93f883d42..99b4f493c 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.14.12.5 +// @version 1.14.12.6 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -28,6 +28,8 @@ // @include https://is.4channel.org/* // @include http://is2.4channel.org/* // @include https://is2.4channel.org/* +// @include https://kissu.moe/* +// @include https://www.kissu.moe/* // @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc* // @include https://www.google.com/recaptcha/api2/frame?*&k=887877714&* @@ -199,7 +201,7 @@ docSet = function() { }; g = { - VERSION: '1.14.12.5', + VERSION: '1.14.12.6', NAMESPACE: '4chan X.', sites: Object.create(null), boards: Object.create(null) @@ -15630,7 +15632,8 @@ ImageLoader = (function() { if ((ref = g.VIEW) !== 'index' && ref !== 'thread' && ref !== 'archive') { return; } - if (!(Conf['Image Prefetching'] || (replace = Conf['Replace JPG'] || Conf['Replace PNG'] || Conf['Replace GIF'] || Conf['Replace WEBM']))) { + replace = Conf['Replace JPG'] || Conf['Replace PNG'] || Conf['Replace GIF'] || Conf['Replace WEBM']; + if (!(Conf['Image Prefetching'] || replace)) { return; } Callbacks.Post.push({ diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index a5ae18c34..d7f382f2e 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 3c2aa9eaa..cb1ba56f6 100644 --- a/builds/updates-beta.json +++ b/builds/updates-beta.json @@ -3,7 +3,7 @@ "4chan-x@4chan-x.net": { "updates": [ { - "version": "1.14.12.5", + "version": "1.14.12.6", "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 f8d6f1375..2f446f543 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 97ef48fa2..e588944d1 100644 --- a/builds/updates.json +++ b/builds/updates.json @@ -3,7 +3,7 @@ "4chan-x@4chan-x.net": { "updates": [ { - "version": "1.14.12.5", + "version": "1.14.12.6", "update_link": "https://www.4chan-x.net/builds/4chan-X.crx" } ] diff --git a/builds/updates.xml b/builds/updates.xml index 4e29fe9d0..fbd41439f 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index 3dee1d5e5..fb488ba73 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.14.12.5", - "date": "2019-08-12T23:29:16.277Z" + "version": "1.14.12.6", + "date": "2019-08-16T05:13:22.729Z" } \ No newline at end of file