Release 4chan X v1.12.1.5.
This commit is contained in:
parent
a3d782500a
commit
be31e9d515
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
### v1.12.1
|
### v1.12.1
|
||||||
|
|
||||||
|
**v1.12.1.5** *(2016-07-10)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.5/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.5/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Restore `Remove Thread Excerpt` option.
|
||||||
|
|
||||||
**v1.12.1.4** *(2016-07-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.4/builds/4chan-X-noupdate.crx)]
|
**v1.12.1.4** *(2016-07-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.1.4/builds/4chan-X-noupdate.crx)]
|
||||||
- Re-fix scrolling on space in captcha in Chromium-based browsers.
|
- Re-fix scrolling on space in captcha in Chromium-based browsers.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.12.1.4
|
// @version 1.12.1.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.12.1.4
|
// @version 1.12.1.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.12.1.4',
|
VERSION: '1.12.1.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -271,6 +271,7 @@ Config = (function() {
|
|||||||
'Unread Line': [true, 'Show a line to distinguish read posts from unread ones.'],
|
'Unread Line': [true, 'Show a line to distinguish read posts from unread ones.'],
|
||||||
'Remember Last Read Post': [true, 'Remember how far you\'ve read after you close the thread.'],
|
'Remember Last Read Post': [true, 'Remember how far you\'ve read after you close the thread.'],
|
||||||
'Scroll to Last Read Post': [true, 'Scroll back to the last read post when reopening a thread.', 1],
|
'Scroll to Last Read Post': [true, 'Scroll back to the last read post when reopening a thread.', 1],
|
||||||
|
'Remove Thread Excerpt': [false, 'Replace the excerpt of the thread in the tab title with the board title.'],
|
||||||
'Thread Stats': [true, 'Display reply and image count.'],
|
'Thread Stats': [true, 'Display reply and image count.'],
|
||||||
'IP Count in Stats': [true, 'Display the unique IP count in the thread stats.', 1],
|
'IP Count in Stats': [true, 'Display the unique IP count in the thread stats.', 1],
|
||||||
'Page Count in Stats': [true, 'Display the page count in the thread stats.', 1],
|
'Page Count in Stats': [true, 'Display the page count in the thread stats.', 1],
|
||||||
@ -14327,6 +14328,9 @@ Banner = (function() {
|
|||||||
var banner, children;
|
var banner, children;
|
||||||
banner = $(".boardBanner");
|
banner = $(".boardBanner");
|
||||||
children = banner.children;
|
children = banner.children;
|
||||||
|
if (g.VIEW === 'thread' && Conf['Remove Thread Excerpt']) {
|
||||||
|
Banner.setTitle(children[1].textContent);
|
||||||
|
}
|
||||||
children[0].title = "Click to change";
|
children[0].title = "Click to change";
|
||||||
$.on(children[0], 'click', Banner.cb.toggle);
|
$.on(children[0], 'click', Banner.cb.toggle);
|
||||||
if (Conf['Custom Board Titles']) {
|
if (Conf['Custom Board Titles']) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.12.1.4
|
// @version 1.12.1.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.12.1.4',
|
VERSION: '1.12.1.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -271,6 +271,7 @@ Config = (function() {
|
|||||||
'Unread Line': [true, 'Show a line to distinguish read posts from unread ones.'],
|
'Unread Line': [true, 'Show a line to distinguish read posts from unread ones.'],
|
||||||
'Remember Last Read Post': [true, 'Remember how far you\'ve read after you close the thread.'],
|
'Remember Last Read Post': [true, 'Remember how far you\'ve read after you close the thread.'],
|
||||||
'Scroll to Last Read Post': [true, 'Scroll back to the last read post when reopening a thread.', 1],
|
'Scroll to Last Read Post': [true, 'Scroll back to the last read post when reopening a thread.', 1],
|
||||||
|
'Remove Thread Excerpt': [false, 'Replace the excerpt of the thread in the tab title with the board title.'],
|
||||||
'Thread Stats': [true, 'Display reply and image count.'],
|
'Thread Stats': [true, 'Display reply and image count.'],
|
||||||
'IP Count in Stats': [true, 'Display the unique IP count in the thread stats.', 1],
|
'IP Count in Stats': [true, 'Display the unique IP count in the thread stats.', 1],
|
||||||
'Page Count in Stats': [true, 'Display the page count in the thread stats.', 1],
|
'Page Count in Stats': [true, 'Display the page count in the thread stats.', 1],
|
||||||
@ -14327,6 +14328,9 @@ Banner = (function() {
|
|||||||
var banner, children;
|
var banner, children;
|
||||||
banner = $(".boardBanner");
|
banner = $(".boardBanner");
|
||||||
children = banner.children;
|
children = banner.children;
|
||||||
|
if (g.VIEW === 'thread' && Conf['Remove Thread Excerpt']) {
|
||||||
|
Banner.setTitle(children[1].textContent);
|
||||||
|
}
|
||||||
children[0].title = "Click to change";
|
children[0].title = "Click to change";
|
||||||
$.on(children[0], 'click', Banner.cb.toggle);
|
$.on(children[0], 'click', Banner.cb.toggle);
|
||||||
if (Conf['Custom Board Titles']) {
|
if (Conf['Custom Board Titles']) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.12.1.4
|
// @version 1.12.1.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.12.1.4
|
// @version 1.12.1.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.12.1.4',
|
VERSION: '1.12.1.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -271,6 +271,7 @@ Config = (function() {
|
|||||||
'Unread Line': [true, 'Show a line to distinguish read posts from unread ones.'],
|
'Unread Line': [true, 'Show a line to distinguish read posts from unread ones.'],
|
||||||
'Remember Last Read Post': [true, 'Remember how far you\'ve read after you close the thread.'],
|
'Remember Last Read Post': [true, 'Remember how far you\'ve read after you close the thread.'],
|
||||||
'Scroll to Last Read Post': [true, 'Scroll back to the last read post when reopening a thread.', 1],
|
'Scroll to Last Read Post': [true, 'Scroll back to the last read post when reopening a thread.', 1],
|
||||||
|
'Remove Thread Excerpt': [false, 'Replace the excerpt of the thread in the tab title with the board title.'],
|
||||||
'Thread Stats': [true, 'Display reply and image count.'],
|
'Thread Stats': [true, 'Display reply and image count.'],
|
||||||
'IP Count in Stats': [true, 'Display the unique IP count in the thread stats.', 1],
|
'IP Count in Stats': [true, 'Display the unique IP count in the thread stats.', 1],
|
||||||
'Page Count in Stats': [true, 'Display the page count in the thread stats.', 1],
|
'Page Count in Stats': [true, 'Display the page count in the thread stats.', 1],
|
||||||
@ -14327,6 +14328,9 @@ Banner = (function() {
|
|||||||
var banner, children;
|
var banner, children;
|
||||||
banner = $(".boardBanner");
|
banner = $(".boardBanner");
|
||||||
children = banner.children;
|
children = banner.children;
|
||||||
|
if (g.VIEW === 'thread' && Conf['Remove Thread Excerpt']) {
|
||||||
|
Banner.setTitle(children[1].textContent);
|
||||||
|
}
|
||||||
children[0].title = "Click to change";
|
children[0].title = "Click to change";
|
||||||
$.on(children[0], 'click', Banner.cb.toggle);
|
$.on(children[0], 'click', Banner.cb.toggle);
|
||||||
if (Conf['Custom Board Titles']) {
|
if (Conf['Custom Board Titles']) {
|
||||||
|
|||||||
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://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.12.1.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.12.1.5' />
|
||||||
</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://www.4chan-x.net/builds/4chan-X.crx' version='1.12.1.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.12.1.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.12.1.4",
|
"version": "1.12.1.5",
|
||||||
"date": "2016-07-09T16:29:32.443Z"
|
"date": "2016-07-10T20:36:24.056Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user