Release 4chan X v1.13.14.10.
This commit is contained in:
parent
fd191f95c5
commit
1a9d64fabc
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.13.14
|
||||
|
||||
**v1.13.14.10** *(2017-11-20)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.10/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.10/builds/4chan-X-noupdate.crx)]
|
||||
- Attempt to fix navigation keybind issue in Violentmonkey. #1656
|
||||
|
||||
**v1.13.14.9** *(2017-11-17)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.9/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.9/builds/4chan-X-noupdate.crx)]
|
||||
- Hard disable 'Force Noscript Captcha for v1' in GM4 for now.
|
||||
- Work around double loading issue in Greasemonkey 4. #1629
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.14.9
|
||||
// @version 1.13.14.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.14.9
|
||||
// @version 1.13.14.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.14.9',
|
||||
VERSION: '1.13.14.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -17132,7 +17132,7 @@ Keybinds = (function() {
|
||||
if (Conf['JSON Index'] && g.VIEW === 'index' && g.BOARD.ID !== 'f') {
|
||||
Index.userPageNav(1);
|
||||
} else {
|
||||
window.location = "/" + g.BOARD + "/";
|
||||
location.href = "/" + g.BOARD + "/";
|
||||
}
|
||||
break;
|
||||
case Conf['Open front page']:
|
||||
@ -17149,7 +17149,7 @@ Keybinds = (function() {
|
||||
$('.next button', Index.pagelist).click();
|
||||
} else {
|
||||
if (form = $('.next form')) {
|
||||
window.location = form.action;
|
||||
location.href = form.action;
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -17164,7 +17164,7 @@ Keybinds = (function() {
|
||||
$('.prev button', Index.pagelist).click();
|
||||
} else {
|
||||
if (form = $('.prev form')) {
|
||||
window.location = form.action;
|
||||
location.href = form.action;
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -17180,25 +17180,25 @@ Keybinds = (function() {
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#paged' : "/" + g.BOARD + "/#paged";
|
||||
location.href = g.VIEW === 'index' ? '#paged' : "/" + g.BOARD + "/#paged";
|
||||
break;
|
||||
case Conf['Infinite scrolling mode']:
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#infinite' : "/" + g.BOARD + "/#infinite";
|
||||
location.href = g.VIEW === 'index' ? '#infinite' : "/" + g.BOARD + "/#infinite";
|
||||
break;
|
||||
case Conf['All pages mode']:
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#all-pages' : "/" + g.BOARD + "/#all-pages";
|
||||
location.href = g.VIEW === 'index' ? '#all-pages' : "/" + g.BOARD + "/#all-pages";
|
||||
break;
|
||||
case Conf['Open catalog']:
|
||||
if (g.BOARD.ID === 'f') {
|
||||
return;
|
||||
}
|
||||
window.location = CatalogLinks.catalog();
|
||||
location.href = CatalogLinks.catalog();
|
||||
break;
|
||||
case Conf['Cycle sort type']:
|
||||
if (!(Conf['JSON Index'] && g.VIEW === 'index' && g.BOARD.ID !== 'f')) {
|
||||
@ -22429,7 +22429,7 @@ QR = (function() {
|
||||
open = Conf['Open Post in New Tab'] || postsCount ? function() {
|
||||
return $.open(URL);
|
||||
} : function() {
|
||||
return window.location = URL;
|
||||
return location.href = URL;
|
||||
};
|
||||
if (threadID === postID) {
|
||||
QR.waitForThread(URL, open);
|
||||
@ -24431,7 +24431,7 @@ QuoteYou = (function() {
|
||||
return false;
|
||||
} else {
|
||||
QuoteYou.lastRead = root;
|
||||
window.location = "#" + post.id;
|
||||
location.href = "#" + post.id;
|
||||
Header.scrollTo(post);
|
||||
$.addClass(post, 'highlight');
|
||||
return true;
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.14.9
|
||||
// @version 1.13.14.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.14.9',
|
||||
VERSION: '1.13.14.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -17132,7 +17132,7 @@ Keybinds = (function() {
|
||||
if (Conf['JSON Index'] && g.VIEW === 'index' && g.BOARD.ID !== 'f') {
|
||||
Index.userPageNav(1);
|
||||
} else {
|
||||
window.location = "/" + g.BOARD + "/";
|
||||
location.href = "/" + g.BOARD + "/";
|
||||
}
|
||||
break;
|
||||
case Conf['Open front page']:
|
||||
@ -17149,7 +17149,7 @@ Keybinds = (function() {
|
||||
$('.next button', Index.pagelist).click();
|
||||
} else {
|
||||
if (form = $('.next form')) {
|
||||
window.location = form.action;
|
||||
location.href = form.action;
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -17164,7 +17164,7 @@ Keybinds = (function() {
|
||||
$('.prev button', Index.pagelist).click();
|
||||
} else {
|
||||
if (form = $('.prev form')) {
|
||||
window.location = form.action;
|
||||
location.href = form.action;
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -17180,25 +17180,25 @@ Keybinds = (function() {
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#paged' : "/" + g.BOARD + "/#paged";
|
||||
location.href = g.VIEW === 'index' ? '#paged' : "/" + g.BOARD + "/#paged";
|
||||
break;
|
||||
case Conf['Infinite scrolling mode']:
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#infinite' : "/" + g.BOARD + "/#infinite";
|
||||
location.href = g.VIEW === 'index' ? '#infinite' : "/" + g.BOARD + "/#infinite";
|
||||
break;
|
||||
case Conf['All pages mode']:
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#all-pages' : "/" + g.BOARD + "/#all-pages";
|
||||
location.href = g.VIEW === 'index' ? '#all-pages' : "/" + g.BOARD + "/#all-pages";
|
||||
break;
|
||||
case Conf['Open catalog']:
|
||||
if (g.BOARD.ID === 'f') {
|
||||
return;
|
||||
}
|
||||
window.location = CatalogLinks.catalog();
|
||||
location.href = CatalogLinks.catalog();
|
||||
break;
|
||||
case Conf['Cycle sort type']:
|
||||
if (!(Conf['JSON Index'] && g.VIEW === 'index' && g.BOARD.ID !== 'f')) {
|
||||
@ -22429,7 +22429,7 @@ QR = (function() {
|
||||
open = Conf['Open Post in New Tab'] || postsCount ? function() {
|
||||
return $.open(URL);
|
||||
} : function() {
|
||||
return window.location = URL;
|
||||
return location.href = URL;
|
||||
};
|
||||
if (threadID === postID) {
|
||||
QR.waitForThread(URL, open);
|
||||
@ -24431,7 +24431,7 @@ QuoteYou = (function() {
|
||||
return false;
|
||||
} else {
|
||||
QuoteYou.lastRead = root;
|
||||
window.location = "#" + post.id;
|
||||
location.href = "#" + post.id;
|
||||
Header.scrollTo(post);
|
||||
$.addClass(post, 'highlight');
|
||||
return true;
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.14.9
|
||||
// @version 1.13.14.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.14.9
|
||||
// @version 1.13.14.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.14.9',
|
||||
VERSION: '1.13.14.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -17132,7 +17132,7 @@ Keybinds = (function() {
|
||||
if (Conf['JSON Index'] && g.VIEW === 'index' && g.BOARD.ID !== 'f') {
|
||||
Index.userPageNav(1);
|
||||
} else {
|
||||
window.location = "/" + g.BOARD + "/";
|
||||
location.href = "/" + g.BOARD + "/";
|
||||
}
|
||||
break;
|
||||
case Conf['Open front page']:
|
||||
@ -17149,7 +17149,7 @@ Keybinds = (function() {
|
||||
$('.next button', Index.pagelist).click();
|
||||
} else {
|
||||
if (form = $('.next form')) {
|
||||
window.location = form.action;
|
||||
location.href = form.action;
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -17164,7 +17164,7 @@ Keybinds = (function() {
|
||||
$('.prev button', Index.pagelist).click();
|
||||
} else {
|
||||
if (form = $('.prev form')) {
|
||||
window.location = form.action;
|
||||
location.href = form.action;
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -17180,25 +17180,25 @@ Keybinds = (function() {
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#paged' : "/" + g.BOARD + "/#paged";
|
||||
location.href = g.VIEW === 'index' ? '#paged' : "/" + g.BOARD + "/#paged";
|
||||
break;
|
||||
case Conf['Infinite scrolling mode']:
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#infinite' : "/" + g.BOARD + "/#infinite";
|
||||
location.href = g.VIEW === 'index' ? '#infinite' : "/" + g.BOARD + "/#infinite";
|
||||
break;
|
||||
case Conf['All pages mode']:
|
||||
if (!(Conf['JSON Index'] && g.BOARD.ID !== 'f')) {
|
||||
return;
|
||||
}
|
||||
window.location = g.VIEW === 'index' ? '#all-pages' : "/" + g.BOARD + "/#all-pages";
|
||||
location.href = g.VIEW === 'index' ? '#all-pages' : "/" + g.BOARD + "/#all-pages";
|
||||
break;
|
||||
case Conf['Open catalog']:
|
||||
if (g.BOARD.ID === 'f') {
|
||||
return;
|
||||
}
|
||||
window.location = CatalogLinks.catalog();
|
||||
location.href = CatalogLinks.catalog();
|
||||
break;
|
||||
case Conf['Cycle sort type']:
|
||||
if (!(Conf['JSON Index'] && g.VIEW === 'index' && g.BOARD.ID !== 'f')) {
|
||||
@ -22429,7 +22429,7 @@ QR = (function() {
|
||||
open = Conf['Open Post in New Tab'] || postsCount ? function() {
|
||||
return $.open(URL);
|
||||
} : function() {
|
||||
return window.location = URL;
|
||||
return location.href = URL;
|
||||
};
|
||||
if (threadID === postID) {
|
||||
QR.waitForThread(URL, open);
|
||||
@ -24431,7 +24431,7 @@ QuoteYou = (function() {
|
||||
return false;
|
||||
} else {
|
||||
QuoteYou.lastRead = root;
|
||||
window.location = "#" + post.id;
|
||||
location.href = "#" + post.id;
|
||||
Header.scrollTo(post);
|
||||
$.addClass(post, 'highlight');
|
||||
return true;
|
||||
|
||||
Binary file not shown.
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.13.14.9",
|
||||
"version": "1.13.14.10",
|
||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||
}
|
||||
]
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.14.9' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.14.10' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.13.14.9",
|
||||
"version": "1.13.14.10",
|
||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||
}
|
||||
]
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.14.9' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.14.10' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.14.9",
|
||||
"date": "2017-11-17T23:03:05.833Z"
|
||||
"version": "1.13.14.10",
|
||||
"date": "2017-11-20T02:49:03.329Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user