Release 4chan X v1.10.11.6.
This commit is contained in:
parent
7ec2ebdcc8
commit
7a76ed0ebe
@ -4,6 +4,9 @@ The links to individual versions below are to copies of the script with the upda
|
|||||||
|
|
||||||
### v1.10.11
|
### v1.10.11
|
||||||
|
|
||||||
|
**v1.10.11.6** *(2015-04-26)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.11.6/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.11.6/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Fix size of window for reporting to fgts archive.
|
||||||
|
|
||||||
**v1.10.11.5** *(2015-04-26)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.11.5/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.11.5/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.10.11.5** *(2015-04-26)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.11.5/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.11.5/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Reduce unwanted scrolling from captcha.
|
- Reduce unwanted scrolling from captcha.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.10.11.5
|
// @version 1.10.11.6
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.10.11.5
|
// @version 1.10.11.6
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -396,7 +396,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.11.5',
|
VERSION: '1.10.11.6',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -11824,19 +11824,27 @@
|
|||||||
el: a,
|
el: a,
|
||||||
order: 10,
|
order: 10,
|
||||||
open: function(post) {
|
open: function(post) {
|
||||||
ReportLink.url = !post.isDead ? "//sys.4chan.org/" + post.board + "/imgboard.php?mode=report&no=" + post : Conf['Archive Report'] ? Redirect.to('report', {
|
if (!(post.isDead || (post.thread.isDead && !post.thread.isArchived))) {
|
||||||
boardID: post.board.ID,
|
ReportLink.url = "//sys.4chan.org/" + post.board + "/imgboard.php?mode=report&no=" + post;
|
||||||
postID: post.ID
|
ReportLink.height = 200;
|
||||||
}) : void 0;
|
} else if (Conf['Archive Report']) {
|
||||||
|
ReportLink.url = Redirect.to('report', {
|
||||||
|
boardID: post.board.ID,
|
||||||
|
postID: post.ID
|
||||||
|
});
|
||||||
|
ReportLink.height = 350;
|
||||||
|
} else {
|
||||||
|
ReportLink.url = '';
|
||||||
|
}
|
||||||
return !!ReportLink.url;
|
return !!ReportLink.url;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
report: function() {
|
report: function() {
|
||||||
var id, set, url;
|
var height, id, set, url;
|
||||||
url = ReportLink.url;
|
url = ReportLink.url, height = ReportLink.height;
|
||||||
id = Date.now();
|
id = Date.now();
|
||||||
set = "toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=685,height=200";
|
set = "toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=700,height=" + height;
|
||||||
return window.open(url, id, set);
|
return window.open(url, id, set);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -15412,7 +15420,7 @@
|
|||||||
}
|
}
|
||||||
if ((message = $('h3')) && /Report submitted!/.test(message.textContent)) {
|
if ((message = $('h3')) && /Report submitted!/.test(message.textContent)) {
|
||||||
$.globalEval('self.close = function(){};');
|
$.globalEval('self.close = function(){};');
|
||||||
window.resizeTo(685, 320);
|
window.resizeBy(0, 350 - doc.clientHeight);
|
||||||
location.replace(url);
|
location.replace(url);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -15422,7 +15430,7 @@
|
|||||||
});
|
});
|
||||||
$.on(link, 'click', function(e) {
|
$.on(link, 'click', function(e) {
|
||||||
if (!(e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0)) {
|
if (!(e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0)) {
|
||||||
return window.resizeTo(685, 320);
|
return window.resizeBy(0, 350 - doc.clientHeight);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return $.add(d.body, [$.tn(' ['), link, $.tn(']')]);
|
return $.add(d.body, [$.tn(' ['), link, $.tn(']')]);
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.11.5
|
// @version 1.10.11.6
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -395,7 +395,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.11.5',
|
VERSION: '1.10.11.6',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -11823,19 +11823,27 @@
|
|||||||
el: a,
|
el: a,
|
||||||
order: 10,
|
order: 10,
|
||||||
open: function(post) {
|
open: function(post) {
|
||||||
ReportLink.url = !post.isDead ? "//sys.4chan.org/" + post.board + "/imgboard.php?mode=report&no=" + post : Conf['Archive Report'] ? Redirect.to('report', {
|
if (!(post.isDead || (post.thread.isDead && !post.thread.isArchived))) {
|
||||||
boardID: post.board.ID,
|
ReportLink.url = "//sys.4chan.org/" + post.board + "/imgboard.php?mode=report&no=" + post;
|
||||||
postID: post.ID
|
ReportLink.height = 200;
|
||||||
}) : void 0;
|
} else if (Conf['Archive Report']) {
|
||||||
|
ReportLink.url = Redirect.to('report', {
|
||||||
|
boardID: post.board.ID,
|
||||||
|
postID: post.ID
|
||||||
|
});
|
||||||
|
ReportLink.height = 350;
|
||||||
|
} else {
|
||||||
|
ReportLink.url = '';
|
||||||
|
}
|
||||||
return !!ReportLink.url;
|
return !!ReportLink.url;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
report: function() {
|
report: function() {
|
||||||
var id, set, url;
|
var height, id, set, url;
|
||||||
url = ReportLink.url;
|
url = ReportLink.url, height = ReportLink.height;
|
||||||
id = Date.now();
|
id = Date.now();
|
||||||
set = "toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=685,height=200";
|
set = "toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=700,height=" + height;
|
||||||
return window.open(url, id, set);
|
return window.open(url, id, set);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -15411,7 +15419,7 @@
|
|||||||
}
|
}
|
||||||
if ((message = $('h3')) && /Report submitted!/.test(message.textContent)) {
|
if ((message = $('h3')) && /Report submitted!/.test(message.textContent)) {
|
||||||
$.globalEval('self.close = function(){};');
|
$.globalEval('self.close = function(){};');
|
||||||
window.resizeTo(685, 320);
|
window.resizeBy(0, 350 - doc.clientHeight);
|
||||||
location.replace(url);
|
location.replace(url);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -15421,7 +15429,7 @@
|
|||||||
});
|
});
|
||||||
$.on(link, 'click', function(e) {
|
$.on(link, 'click', function(e) {
|
||||||
if (!(e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0)) {
|
if (!(e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0)) {
|
||||||
return window.resizeTo(685, 320);
|
return window.resizeBy(0, 350 - doc.clientHeight);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return $.add(d.body, [$.tn(' ['), link, $.tn(']')]);
|
return $.add(d.body, [$.tn(' ['), link, $.tn(']')]);
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.11.5
|
// @version 1.10.11.6
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.11.5
|
// @version 1.10.11.6
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -396,7 +396,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.11.5',
|
VERSION: '1.10.11.6',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -11824,19 +11824,27 @@
|
|||||||
el: a,
|
el: a,
|
||||||
order: 10,
|
order: 10,
|
||||||
open: function(post) {
|
open: function(post) {
|
||||||
ReportLink.url = !post.isDead ? "//sys.4chan.org/" + post.board + "/imgboard.php?mode=report&no=" + post : Conf['Archive Report'] ? Redirect.to('report', {
|
if (!(post.isDead || (post.thread.isDead && !post.thread.isArchived))) {
|
||||||
boardID: post.board.ID,
|
ReportLink.url = "//sys.4chan.org/" + post.board + "/imgboard.php?mode=report&no=" + post;
|
||||||
postID: post.ID
|
ReportLink.height = 200;
|
||||||
}) : void 0;
|
} else if (Conf['Archive Report']) {
|
||||||
|
ReportLink.url = Redirect.to('report', {
|
||||||
|
boardID: post.board.ID,
|
||||||
|
postID: post.ID
|
||||||
|
});
|
||||||
|
ReportLink.height = 350;
|
||||||
|
} else {
|
||||||
|
ReportLink.url = '';
|
||||||
|
}
|
||||||
return !!ReportLink.url;
|
return !!ReportLink.url;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
report: function() {
|
report: function() {
|
||||||
var id, set, url;
|
var height, id, set, url;
|
||||||
url = ReportLink.url;
|
url = ReportLink.url, height = ReportLink.height;
|
||||||
id = Date.now();
|
id = Date.now();
|
||||||
set = "toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=685,height=200";
|
set = "toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=700,height=" + height;
|
||||||
return window.open(url, id, set);
|
return window.open(url, id, set);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -15412,7 +15420,7 @@
|
|||||||
}
|
}
|
||||||
if ((message = $('h3')) && /Report submitted!/.test(message.textContent)) {
|
if ((message = $('h3')) && /Report submitted!/.test(message.textContent)) {
|
||||||
$.globalEval('self.close = function(){};');
|
$.globalEval('self.close = function(){};');
|
||||||
window.resizeTo(685, 320);
|
window.resizeBy(0, 350 - doc.clientHeight);
|
||||||
location.replace(url);
|
location.replace(url);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -15422,7 +15430,7 @@
|
|||||||
});
|
});
|
||||||
$.on(link, 'click', function(e) {
|
$.on(link, 'click', function(e) {
|
||||||
if (!(e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0)) {
|
if (!(e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0)) {
|
||||||
return window.resizeTo(685, 320);
|
return window.resizeBy(0, 350 - doc.clientHeight);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return $.add(d.body, [$.tn(' ['), link, $.tn(']')]);
|
return $.add(d.body, [$.tn(' ['), link, $.tn(']')]);
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.11.5' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.11.6' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.11.5' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.11.6' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,8 +3,8 @@
|
|||||||
"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",
|
||||||
"version": "1.10.11.5",
|
"version": "1.10.11.6",
|
||||||
"date": "2015-04-27T01:01:04.114Z",
|
"date": "2015-04-27T06:05:56.128Z",
|
||||||
"repo": "https://github.com/ccd0/4chan-x/",
|
"repo": "https://github.com/ccd0/4chan-x/",
|
||||||
"page": "https://github.com/ccd0/4chan-x",
|
"page": "https://github.com/ccd0/4chan-x",
|
||||||
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user