diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a3de6c4e..e9b514c44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index 8db8c3182..272f54d95 100644 Binary files a/builds/4chan-X-beta.crx and b/builds/4chan-X-beta.crx differ diff --git a/builds/4chan-X-beta.meta.js b/builds/4chan-X-beta.meta.js index ddf27530f..c82340a57 100644 --- a/builds/4chan-X-beta.meta.js +++ b/builds/4chan-X-beta.meta.js @@ -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 diff --git a/builds/4chan-X-beta.user.js b/builds/4chan-X-beta.user.js index 17df73301..830078b93 100644 --- a/builds/4chan-X-beta.user.js +++ b/builds/4chan-X-beta.user.js @@ -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); diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 4693c5b16..1ac3e4417 100644 Binary files a/builds/4chan-X-noupdate.crx and b/builds/4chan-X-noupdate.crx differ diff --git a/builds/4chan-X-noupdate.user.js b/builds/4chan-X-noupdate.user.js index 2f4b2d03d..4541cd3fa 100644 --- a/builds/4chan-X-noupdate.user.js +++ b/builds/4chan-X-noupdate.user.js @@ -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); diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index 716105ab0..862414aea 100644 Binary files a/builds/4chan-X.crx and b/builds/4chan-X.crx differ diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js index ed1184c7f..9be72edc0 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -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 diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index d99ad8282..01ed46234 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -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); diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 37d9d1cfc..898e0b6a9 100644 Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml index e27b229bc..c8fcc2138 100644 --- a/builds/updates-beta.xml +++ b/builds/updates-beta.xml @@ -1,7 +1,7 @@ - + diff --git a/builds/updates.xml b/builds/updates.xml index d95fada17..e8d31f783 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index 70ec97397..7ff1753d6 100644 --- a/version.json +++ b/version.json @@ -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" } \ No newline at end of file