Merge branch 'master' of https://github.com/seaweedchan/4chan-x into v3
Conflicts: CHANGELOG.md LICENSE builds/4chan-X.meta.js builds/4chan-X.user.js builds/crx/script.js src/General/lib/post.class
This commit is contained in:
commit
5d6b357135
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,8 +1,4 @@
|
|||||||
|
|
||||||
**MayhemYDG**:
|
**MayhemYDG**:
|
||||||
- Fix 4chan X breaking in threads following a 4chan markup change.
|
|
||||||
- Minor cooldown fix:
|
|
||||||
- You cannot post an image reply immediately after a non-image reply anymore.
|
|
||||||
- **New option**: `Auto-hide header on scroll`.
|
- **New option**: `Auto-hide header on scroll`.
|
||||||
- Added support for `4cdn.org`.
|
- Added support for `4cdn.org`.
|
||||||
- Index navigation improvements:
|
- Index navigation improvements:
|
||||||
@ -47,6 +43,16 @@
|
|||||||
**Zixaphir**:
|
**Zixaphir**:
|
||||||
- FappeTyme and WerkTyme now persist across sessions.
|
- FappeTyme and WerkTyme now persist across sessions.
|
||||||
|
|
||||||
|
### v1.2.44
|
||||||
|
*2013-12-06*
|
||||||
|
|
||||||
|
**MayhemYDG**:
|
||||||
|
- Cooldown fix (You can no longer post an image reply immediately after a text reply)
|
||||||
|
- Fix for 4chan markup change that caused a lot of errors
|
||||||
|
|
||||||
|
**seaweedchan**:
|
||||||
|
- Fix catalog links option
|
||||||
|
|
||||||
### v1.2.43
|
### v1.2.43
|
||||||
*2013-11-10*
|
*2013-11-10*
|
||||||
|
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* 4chan X - Version 1.2.43 - 2013-12-18
|
* 4chan X - Version 1.2.44 - 2013-12-18
|
||||||
*
|
*
|
||||||
* 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
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.2.43
|
// @version 1.2.44
|
||||||
// @minGMVer 1.12
|
// @minGMVer 1.12
|
||||||
// @minFFVer 22
|
// @minFFVer 22
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"version": "1.2.43",
|
"version": "1.2.44",
|
||||||
"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
@ -1 +1 @@
|
|||||||
postMessage({version:'1.2.43'},'*')
|
postMessage({version:'1.2.44'},'*')
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan-X",
|
"name": "4chan-X",
|
||||||
"version": "1.2.43",
|
"version": "1.2.44",
|
||||||
"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",
|
||||||
|
|||||||
@ -67,6 +67,9 @@ a {
|
|||||||
display: block !important;
|
display: block !important;
|
||||||
overflow: visible !important;
|
overflow: visible !important;
|
||||||
}
|
}
|
||||||
|
.reply > .file > .fileText {
|
||||||
|
margin: 0 20px;
|
||||||
|
}
|
||||||
[hidden] {
|
[hidden] {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,8 +28,8 @@ CatalogLinks =
|
|||||||
set: (useCatalog) ->
|
set: (useCatalog) ->
|
||||||
path = if useCatalog then 'catalog' else ''
|
path = if useCatalog then 'catalog' else ''
|
||||||
for a in $$ """
|
for a in $$ """
|
||||||
#board-list a[href*="boards.4chan.org"]:not(.catalog),
|
#board-list a:not(.catalog),
|
||||||
#boardNavDesktopFoot a[href*="boards.4chan.org"]
|
#boardNavDesktopFoot a
|
||||||
"""
|
"""
|
||||||
board = a.pathname.split('/')[1]
|
board = a.pathname.split('/')[1]
|
||||||
continue if ['f', 'status', '4chan'].contains(board) or !board
|
continue if ['f', 'status', '4chan'].contains(board) or !board
|
||||||
@ -37,7 +37,7 @@ CatalogLinks =
|
|||||||
a.href = if useCatalog
|
a.href = if useCatalog
|
||||||
CatalogLinks.external board
|
CatalogLinks.external board
|
||||||
else
|
else
|
||||||
"//boards.4chan.org/#{board}/"
|
"/#{board}/"
|
||||||
else
|
else
|
||||||
a.pathname = "/#{board}/#{path}"
|
a.pathname = "/#{board}/#{path}"
|
||||||
@title = "Turn catalog links #{if useCatalog then 'off' else 'on'}."
|
@title = "Turn catalog links #{if useCatalog then 'off' else 'on'}."
|
||||||
@ -49,5 +49,5 @@ CatalogLinks =
|
|||||||
else if ['d', 'e', 'gif', 'h', 'hr', 'hc', 'r9k', 's', 'pol', 'soc', 'u', 'i', 'ic', 'hm', 'r', 'w', 'wg', 'wsg', 't', 'y'].contains board
|
else if ['d', 'e', 'gif', 'h', 'hr', 'hc', 'r9k', 's', 'pol', 'soc', 'u', 'i', 'ic', 'hm', 'r', 'w', 'wg', 'wsg', 't', 'y'].contains board
|
||||||
"http://4index.gropes.us/#{board}"
|
"http://4index.gropes.us/#{board}"
|
||||||
else
|
else
|
||||||
"//boards.4chan.org/#{board}/catalog"
|
"/#{board}/catalog"
|
||||||
)
|
)
|
||||||
Loading…
x
Reference in New Issue
Block a user