Release appchan x v2.9.32.

This commit is contained in:
Zixaphir 2014-07-28 15:07:26 -07:00
parent 4ff134e060
commit 51d6907c68
9 changed files with 23 additions and 12 deletions

View File

@ -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 ### v2.9.31
*2014-07-18* *2014-07-18*

View File

@ -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. * Licensed under the MIT license.
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE * https://github.com/zixaphir/appchan-x/blob/master/LICENSE

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name appchan x // @name appchan x
// @version 2.9.31 // @version 2.9.32
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace zixaphir // @namespace zixaphir

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript // Generated by CoffeeScript
// ==UserScript== // ==UserScript==
// @name appchan x // @name appchan x
// @version 2.9.31 // @version 2.9.32
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace zixaphir // @namespace zixaphir
@ -28,7 +28,7 @@
// ==/UserScript== // ==/UserScript==
/* /*
* appchan x - Version 2.9.31 - 2014-07-28 * appchan x - Version 2.9.32 - 2014-07-28
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE * https://github.com/zixaphir/appchan-x/blob/master/LICENSE
@ -488,7 +488,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '2.9.31', VERSION: '2.9.32',
NAMESPACE: 'appchan_x.', NAMESPACE: 'appchan_x.',
boards: {} boards: {}
}; };

Binary file not shown.

View File

@ -1,6 +1,6 @@
{ {
"name": "appchan x", "name": "appchan x",
"version": "2.9.31", "version": "2.9.32",
"manifest_version": 2, "manifest_version": 2,
"description": "The most comprehensive 4chan userscript.", "description": "The most comprehensive 4chan userscript.",
"icons": { "icons": {

View File

@ -1,6 +1,6 @@
// Generated by CoffeeScript // 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. * Licensed under the MIT license.
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE * https://github.com/zixaphir/appchan-x/blob/master/LICENSE
@ -459,7 +459,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '2.9.31', VERSION: '2.9.32',
NAMESPACE: 'appchan_x.', NAMESPACE: 'appchan_x.',
boards: {} boards: {}
}; };

View File

@ -1,6 +1,6 @@
{ {
"name": "appchan-x", "name": "appchan-x",
"version": "2.9.31", "version": "2.9.32",
"description": "The most comprehensive 4chan userscript.", "description": "The most comprehensive 4chan userscript.",
"meta": { "meta": {
"name": "appchan x", "name": "appchan x",

View File

@ -57,7 +57,7 @@ Main =
initFeatures: -> initFeatures: ->
# Check if the current board we're on is SFW or not, so we can handle options that need to know that. # 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' Favicon.el.type = 'image/x-icon'
{href} = Favicon.el {href} = Favicon.el
Favicon.SFW = /ws\.ico$/.test href Favicon.SFW = /ws\.ico$/.test href
@ -68,7 +68,7 @@ Main =
$.extend Mascots, Conf["userMascots"] $.extend Mascots, Conf["userMascots"]
return if g.BOARD.ID in ['z', 'fk'] then Style.init() return if g.BOARD.ID in ['z', 'fk'] then Style.init()
Main.setThemeString() Main.setThemeString()
Main.setMascotString() Main.setMascotString()
@ -206,7 +206,7 @@ Main =
# Parse HTML or skip it and start building from JSON. # Parse HTML or skip it and start building from JSON.
if !Conf['JSON Navigation'] or g.VIEW is 'thread' if !Conf['JSON Navigation'] or g.VIEW is 'thread'
Main.initThread() Main.initThread()
# JSON Navigation may not load on a page that has flags, so force their CSS to always be available. # JSON Navigation may not load on a page that has flags, so force their CSS to always be available.
$.add d.head, $.el 'link', $.add d.head, $.el 'link',
href: "//s.4cdn.org/css/flags.556.css" href: "//s.4cdn.org/css/flags.556.css"