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
*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.
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE

View File

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

View File

@ -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: {}
};

Binary file not shown.

View File

@ -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": {

View File

@ -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: {}
};

View File

@ -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",

View File

@ -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"