diff --git a/CHANGELOG.md b/CHANGELOG.md index 246523be1..7586200ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +### v2.9.32 +*2014-07-28* + +- Announcement hiding can now be completely disabled. +- Searching from URL can now include spaces and numbers (IE: http://boards.4chan.org/g/#s=desktop thread). + * This feature only works with JSON Navigation. If you are not using JSON Navigation, you can do the same with the vanilla catalog. + (http://boards.4chan.org/g/catalog#s=desktop thread) +- Appchan will now not run on dis.4chan.org or blog.4chan.org. +- Bugfixes. +- Aesthetic fixes. + ### v2.9.31 *2014-07-18* diff --git a/LICENSE b/LICENSE index fdee9500e..78e993a3b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* appchan x - Version 2.9.31 - 2014-07-28 +* appchan x - Version 2.9.32 - 2014-07-28 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE diff --git a/builds/appchan-x.meta.js b/builds/appchan-x.meta.js index 75bf5581c..c204b8595 100644 --- a/builds/appchan-x.meta.js +++ b/builds/appchan-x.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name appchan x -// @version 2.9.31 +// @version 2.9.32 // @minGMVer 1.14 // @minFFVer 26 // @namespace zixaphir diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index bced1b990..d56a46603 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name appchan x -// @version 2.9.31 +// @version 2.9.32 // @minGMVer 1.14 // @minFFVer 26 // @namespace zixaphir @@ -28,7 +28,7 @@ // ==/UserScript== /* -* appchan x - Version 2.9.31 - 2014-07-28 +* appchan x - Version 2.9.32 - 2014-07-28 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -488,7 +488,7 @@ doc = d.documentElement; g = { - VERSION: '2.9.31', + VERSION: '2.9.32', NAMESPACE: 'appchan_x.', boards: {} }; diff --git a/builds/appchan-x.zip b/builds/appchan-x.zip index 872695501..c769823d8 100644 Binary files a/builds/appchan-x.zip and b/builds/appchan-x.zip differ diff --git a/builds/crx/manifest.json b/builds/crx/manifest.json index 128ebf909..9c2b198f2 100644 --- a/builds/crx/manifest.json +++ b/builds/crx/manifest.json @@ -1,6 +1,6 @@ { "name": "appchan x", - "version": "2.9.31", + "version": "2.9.32", "manifest_version": 2, "description": "The most comprehensive 4chan userscript.", "icons": { diff --git a/builds/crx/script.js b/builds/crx/script.js index b1b111a63..2ff113bdd 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* appchan x - Version 2.9.31 - 2014-07-28 +* appchan x - Version 2.9.32 - 2014-07-28 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -459,7 +459,7 @@ doc = d.documentElement; g = { - VERSION: '2.9.31', + VERSION: '2.9.32', NAMESPACE: 'appchan_x.', boards: {} }; diff --git a/package.json b/package.json index e70718a00..f86053592 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "appchan-x", - "version": "2.9.31", + "version": "2.9.32", "description": "The most comprehensive 4chan userscript.", "meta": { "name": "appchan x", diff --git a/src/General/Main.coffee b/src/General/Main.coffee index f3d56c6c1..e1424e196 100644 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -57,7 +57,7 @@ Main = initFeatures: -> # Check if the current board we're on is SFW or not, so we can handle options that need to know that. - + Favicon.el.type = 'image/x-icon' {href} = Favicon.el Favicon.SFW = /ws\.ico$/.test href @@ -68,7 +68,7 @@ Main = $.extend Mascots, Conf["userMascots"] return if g.BOARD.ID in ['z', 'fk'] then Style.init() - + Main.setThemeString() Main.setMascotString() @@ -206,7 +206,7 @@ Main = # Parse HTML or skip it and start building from JSON. if !Conf['JSON Navigation'] or g.VIEW is 'thread' Main.initThread() - + # JSON Navigation may not load on a page that has flags, so force their CSS to always be available. $.add d.head, $.el 'link', href: "//s.4cdn.org/css/flags.556.css"