diff --git a/CHANGELOG.md b/CHANGELOG.md index 101b9eabf..d7449062a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ## v1.13.0 +**v1.13.0.7** *(2016-10-05)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.7/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.7/builds/4chan-X-noupdate.crx)] +- Fix filenames not being properly unescaped in catalog replies. + **v1.13.0.6** *(2016-10-05)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.6/builds/4chan-X-noupdate.crx)] - Fix bug from v1.13.0.3 causing threads to be incorrectly pruned / marked dead in Thread Watcher. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index ec4343176..b160a6626 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 677d0982c..82f02d6c4 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.6 +// @version 1.13.0.7 // @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 babed79ec..6da9f9ab6 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.6 +// @version 1.13.0.7 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.6', + VERSION: '1.13.0.7', NAMESPACE: '4chan X.', boards: {} }; @@ -8208,7 +8208,7 @@ Build = (function() { excerpt = Build.parseCommentDisplay(data.com).replace(/>>\d+/g, '').trim().replace(/\n+/g, ' // '); } if (data.ext) { - excerpt || (excerpt = "" + data.filename + data.ext); + excerpt || (excerpt = "" + (Build.unescape(data.filename)) + data.ext); } if (data.com) { excerpt || (excerpt = Build.unescape(data.com.replace(//gi, ' // '))); diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 4e45e3dee..0a12c905f 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 e9dd8cb4d..08fe85706 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.6 +// @version 1.13.0.7 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.6', + VERSION: '1.13.0.7', NAMESPACE: '4chan X.', boards: {} }; @@ -8208,7 +8208,7 @@ Build = (function() { excerpt = Build.parseCommentDisplay(data.com).replace(/>>\d+/g, '').trim().replace(/\n+/g, ' // '); } if (data.ext) { - excerpt || (excerpt = "" + data.filename + data.ext); + excerpt || (excerpt = "" + (Build.unescape(data.filename)) + data.ext); } if (data.com) { excerpt || (excerpt = Build.unescape(data.com.replace(//gi, ' // '))); diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index efefeeb31..13eb9c1d2 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 69abda0a3..b4fafff1a 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.6 +// @version 1.13.0.7 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index c989e2a0d..a2c264291 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.6 +// @version 1.13.0.7 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.6', + VERSION: '1.13.0.7', NAMESPACE: '4chan X.', boards: {} }; @@ -8208,7 +8208,7 @@ Build = (function() { excerpt = Build.parseCommentDisplay(data.com).replace(/>>\d+/g, '').trim().replace(/\n+/g, ' // '); } if (data.ext) { - excerpt || (excerpt = "" + data.filename + data.ext); + excerpt || (excerpt = "" + (Build.unescape(data.filename)) + data.ext); } if (data.com) { excerpt || (excerpt = Build.unescape(data.com.replace(//gi, ' // '))); diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 619498b9e..939c54262 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 9e12ac536..bf788f26e 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 a1e5fd5fb..da318ed01 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index 319ade725..2867cc165 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.13.0.6", - "date": "2016-10-05T02:43:38.947Z" + "version": "1.13.0.7", + "date": "2016-10-05T15:46:09.394Z" } \ No newline at end of file