Merge branch 'v3' into json

Conflicts:
	builds/4chan-X.user.js
	builds/crx/script.js
This commit is contained in:
Zixaphir 2014-01-07 20:29:32 -07:00
commit 497c231003
12 changed files with 38 additions and 28 deletions

View File

@ -1,3 +1,4 @@
<<<<<<< HEAD
**MayhemYDG**: **MayhemYDG**:
- **New option**: `Auto-hide header on scroll`. - **New option**: `Auto-hide header on scroll`.
- Added support for `4cdn.org`. - Added support for `4cdn.org`.
@ -42,6 +43,18 @@
**Zixaphir**: **Zixaphir**:
- FappeTyme and WerkTyme now persist across sessions. - FappeTyme and WerkTyme now persist across sessions.
=======
### v1.2.45
*2014-01-07*
**seaweedchan**:
- Remove moot's plea to remove ad-blocker
- Hopefully fix NSFW themes and 404 image redirecting
- Update archive list
**Zixaphir**:
- Fix optional increase for thread updater
>>>>>>> 08ae1daee8d4a2dfa272b00a62f78aa56092dfd4
### v1.2.44 ### v1.2.44
*2013-12-06* *2013-12-06*

View File

@ -1,5 +1,5 @@
/* /*
* 4chan X - Version 1.2.44 - 2014-01-07 * 4chan X - Version 1.2.45 - 2014-01-07
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.2.44 // @version 1.2.45
// @minGMVer 1.13 // @minGMVer 1.13
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{ {
"name": "4chan X", "name": "4chan X",
"version": "1.2.44", "version": "1.2.45",
"manifest_version": 2, "manifest_version": 2,
"description": "Cross-browser userscript for maximum lurking on 4chan.", "description": "Cross-browser userscript for maximum lurking on 4chan.",
"icons": { "icons": {

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
postMessage({version:'1.2.44'},'*') postMessage({version:'1.2.45'},'*')

View File

@ -1,6 +1,6 @@
{ {
"name": "4chan-X", "name": "4chan-X",
"version": "1.2.44", "version": "1.2.45",
"description": "Cross-browser userscript for maximum lurking on 4chan.", "description": "Cross-browser userscript for maximum lurking on 4chan.",
"meta": { "meta": {
"name": "4chan X", "name": "4chan X",
@ -13,6 +13,7 @@
"*://sys.4chan.org/*", "*://sys.4chan.org/*",
"*://a.4cdn.org/*", "*://a.4cdn.org/*",
"*://i.4cdn.org/*" "*://i.4cdn.org/*"
], ],
"files": { "files": {
"metajs": "4chan-X.meta.js", "metajs": "4chan-X.meta.js",

View File

@ -35,8 +35,6 @@ Main =
Main.initFeatures() Main.initFeatures()
$.on d, '4chanMainInit', Main.initStyle $.on d, '4chanMainInit', Main.initStyle
$.asap (-> d.head and $('link[rel="shortcut icon"]', d.head) or d.readyState isnt 'loading'),
Main.initStyle
initFeatures: -> initFeatures: ->
switch location.hostname switch location.hostname

File diff suppressed because one or more lines are too long

View File

@ -73,6 +73,9 @@ a {
[hidden] { [hidden] {
display: none !important; display: none !important;
} }
div.center:not(.ad-cnt) {
display: none !important;
}
/* fixed, z-index */ /* fixed, z-index */
#overlay, #overlay,

View File

@ -28,7 +28,7 @@ ThreadUpdater =
$.on @timer, 'click', @update $.on @timer, 'click', @update
$.on @status, 'click', @update $.on @status, 'click', @update
@subEntries = [] subEntries = []
for name, conf of Config.updater.checkbox for name, conf of Config.updater.checkbox
checked = if Conf[name] then 'checked' else '' checked = if Conf[name] then 'checked' else ''
el = $.el 'label', el = $.el 'label',