Release 4chan X v1.12.3.2.
This commit is contained in:
parent
c01c078fd2
commit
7b7df0de98
@ -2,6 +2,10 @@
|
||||
|
||||
### v1.12.3
|
||||
|
||||
**v1.12.3.2** *(2016-09-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.2/builds/4chan-X-noupdate.crx)]
|
||||
- Fix Thread Watcher icon not lighting up when `Persistent Thread Watcher` is enabled.
|
||||
- Fix TeX sometimes not working in /sci/ catalog.
|
||||
|
||||
**v1.12.3.1** *(2016-09-16)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.1/builds/4chan-X-noupdate.crx)]
|
||||
- Fix scrollbar in captcha bug.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.12.3.1
|
||||
// @version 1.12.3.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.12.3.1
|
||||
// @version 1.12.3.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -136,7 +136,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.12.3.1',
|
||||
VERSION: '1.12.3.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -9640,7 +9640,10 @@ Index = (function() {
|
||||
$.rmAll(Index.root);
|
||||
$.rmAll(Header.hover);
|
||||
if (Conf['Index Mode'] === 'catalog') {
|
||||
return $.add(Index.root, nodes);
|
||||
$.add(Index.root, nodes);
|
||||
if (doc.contains(Index.root)) {
|
||||
return $.event('PostsInserted');
|
||||
}
|
||||
} else {
|
||||
if (Conf['Show Replies']) {
|
||||
Index.buildReplies(nodes);
|
||||
@ -17358,7 +17361,7 @@ ThreadWatcher = (function() {
|
||||
textContent: 'Watcher',
|
||||
title: 'Thread Watcher',
|
||||
href: 'javascript:;',
|
||||
className: 'disabled fa fa-eye'
|
||||
className: 'fa fa-eye'
|
||||
});
|
||||
this.db = new DataBoard('watchedThreads', this.refresh, true);
|
||||
this.dialog = UI.dialog('thread-watcher', 'top: 50px; left: 0px;', {
|
||||
@ -17386,6 +17389,7 @@ ThreadWatcher = (function() {
|
||||
$.addClass(doc, 'fixed-watcher');
|
||||
}
|
||||
if (!Conf['Persistent Thread Watcher']) {
|
||||
$.addClass(ThreadWatcher.shortcut, 'disabled');
|
||||
this.dialog.hidden = true;
|
||||
}
|
||||
Header.addShortcut('watcher', sc, 510);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.12.3.1
|
||||
// @version 1.12.3.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -136,7 +136,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.12.3.1',
|
||||
VERSION: '1.12.3.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -9640,7 +9640,10 @@ Index = (function() {
|
||||
$.rmAll(Index.root);
|
||||
$.rmAll(Header.hover);
|
||||
if (Conf['Index Mode'] === 'catalog') {
|
||||
return $.add(Index.root, nodes);
|
||||
$.add(Index.root, nodes);
|
||||
if (doc.contains(Index.root)) {
|
||||
return $.event('PostsInserted');
|
||||
}
|
||||
} else {
|
||||
if (Conf['Show Replies']) {
|
||||
Index.buildReplies(nodes);
|
||||
@ -17358,7 +17361,7 @@ ThreadWatcher = (function() {
|
||||
textContent: 'Watcher',
|
||||
title: 'Thread Watcher',
|
||||
href: 'javascript:;',
|
||||
className: 'disabled fa fa-eye'
|
||||
className: 'fa fa-eye'
|
||||
});
|
||||
this.db = new DataBoard('watchedThreads', this.refresh, true);
|
||||
this.dialog = UI.dialog('thread-watcher', 'top: 50px; left: 0px;', {
|
||||
@ -17386,6 +17389,7 @@ ThreadWatcher = (function() {
|
||||
$.addClass(doc, 'fixed-watcher');
|
||||
}
|
||||
if (!Conf['Persistent Thread Watcher']) {
|
||||
$.addClass(ThreadWatcher.shortcut, 'disabled');
|
||||
this.dialog.hidden = true;
|
||||
}
|
||||
Header.addShortcut('watcher', sc, 510);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.12.3.1
|
||||
// @version 1.12.3.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.12.3.1
|
||||
// @version 1.12.3.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -136,7 +136,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.12.3.1',
|
||||
VERSION: '1.12.3.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -9640,7 +9640,10 @@ Index = (function() {
|
||||
$.rmAll(Index.root);
|
||||
$.rmAll(Header.hover);
|
||||
if (Conf['Index Mode'] === 'catalog') {
|
||||
return $.add(Index.root, nodes);
|
||||
$.add(Index.root, nodes);
|
||||
if (doc.contains(Index.root)) {
|
||||
return $.event('PostsInserted');
|
||||
}
|
||||
} else {
|
||||
if (Conf['Show Replies']) {
|
||||
Index.buildReplies(nodes);
|
||||
@ -17358,7 +17361,7 @@ ThreadWatcher = (function() {
|
||||
textContent: 'Watcher',
|
||||
title: 'Thread Watcher',
|
||||
href: 'javascript:;',
|
||||
className: 'disabled fa fa-eye'
|
||||
className: 'fa fa-eye'
|
||||
});
|
||||
this.db = new DataBoard('watchedThreads', this.refresh, true);
|
||||
this.dialog = UI.dialog('thread-watcher', 'top: 50px; left: 0px;', {
|
||||
@ -17386,6 +17389,7 @@ ThreadWatcher = (function() {
|
||||
$.addClass(doc, 'fixed-watcher');
|
||||
}
|
||||
if (!Conf['Persistent Thread Watcher']) {
|
||||
$.addClass(ThreadWatcher.shortcut, 'disabled');
|
||||
this.dialog.hidden = true;
|
||||
}
|
||||
Header.addShortcut('watcher', sc, 510);
|
||||
|
||||
Binary file not shown.
@ -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.12.3.1' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.12.3.2' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -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.12.3.1' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.12.3.2' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.12.3.1",
|
||||
"date": "2016-09-16T23:53:19.321Z"
|
||||
"version": "1.12.3.2",
|
||||
"date": "2016-09-18T11:05:16.498Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user