diff --git a/CHANGELOG.md b/CHANGELOG.md index e434bd5c6..99e2c85ce 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### v1.7.35 +*2014-05-12* + **ccd0** - Bugfixes. diff --git a/LICENSE b/LICENSE index 11b60474e..df7642710 100755 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* 4chan X - Version 1.7.34 - 2014-05-11 +* 4chan X - Version 1.7.35 - 2014-05-12 * * Licensed under the MIT license. * https://github.com/ccd0/4chan-x/blob/master/LICENSE diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js index 886ccb23c..86d7367db 100755 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.7.34 +// @version 1.7.35 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 9813286d3..43aa1cc63 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name 4chan X -// @version 1.7.34 +// @version 1.7.35 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -24,7 +24,7 @@ // ==/UserScript== /* -* 4chan X - Version 1.7.34 - 2014-05-11 +* 4chan X - Version 1.7.35 - 2014-05-12 * * Licensed under the MIT license. * https://github.com/ccd0/4chan-x/blob/master/LICENSE @@ -372,7 +372,7 @@ doc = d.documentElement; g = { - VERSION: '1.7.34', + VERSION: '1.7.35', NAMESPACE: '4chan X.', boards: {} }; @@ -8560,7 +8560,7 @@ i = links.length; while (i--) { link = links[i]; - Linkify.embedProcess(Linkify.makeLink(link, this), this); + Linkify.embedProcess(Linkify.makeLink(link), this); } }, embedProcess: function(link, post) { @@ -12540,7 +12540,9 @@ } origFormThread.value = g.THREADID; } else { - $.rm(origFormThread); + if (origFormThread) { + $.rm(origFormThread); + } } if (Conf['Quick Reply']) { QR.link.textContent = g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread'; diff --git a/builds/crx.crx b/builds/crx.crx index 37cd99be0..07a13fc0d 100644 Binary files a/builds/crx.crx and b/builds/crx.crx differ diff --git a/builds/crx/manifest.json b/builds/crx/manifest.json index 0660e955d..27686cfda 100755 --- a/builds/crx/manifest.json +++ b/builds/crx/manifest.json @@ -1,6 +1,6 @@ { "name": "4chan X", - "version": "1.7.34", + "version": "1.7.35", "manifest_version": 2, "description": "Cross-browser userscript for maximum lurking on 4chan.", "icons": { diff --git a/builds/crx/script.js b/builds/crx/script.js index bf110b6be..15b34859f 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* 4chan X - Version 1.7.34 - 2014-05-11 +* 4chan X - Version 1.7.35 - 2014-05-12 * * Licensed under the MIT license. * https://github.com/ccd0/4chan-x/blob/master/LICENSE @@ -348,7 +348,7 @@ doc = d.documentElement; g = { - VERSION: '1.7.34', + VERSION: '1.7.35', NAMESPACE: '4chan X.', boards: {} }; @@ -8557,7 +8557,7 @@ i = links.length; while (i--) { link = links[i]; - Linkify.embedProcess(Linkify.makeLink(link, this), this); + Linkify.embedProcess(Linkify.makeLink(link), this); } }, embedProcess: function(link, post) { @@ -12548,7 +12548,9 @@ } origFormThread.value = g.THREADID; } else { - $.rm(origFormThread); + if (origFormThread) { + $.rm(origFormThread); + } } if (Conf['Quick Reply']) { QR.link.textContent = g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread'; diff --git a/builds/updates.xml b/builds/updates.xml index 1af1e33e8..46cb7dd97 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/package.json b/package.json index 3bfbcc631..2dae4ebbc 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "4chan-X", - "version": "1.7.34", + "version": "1.7.35", "description": "Cross-browser userscript for maximum lurking on 4chan.", "meta": { "name": "4chan X",