diff --git a/CHANGELOG.md b/CHANGELOG.md index dec2728ed..68d1a6cef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ### 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)] - Re-fix scrolling on space in captcha in Chromium-based browsers. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index cb6aa3f16..63a967cd8 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 e9fe7ce45..11ab9f468 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.1.4 +// @version 1.12.1.5 // @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 650d89143..68737aed1 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.1.4 +// @version 1.12.1.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.12.1.4', + VERSION: '1.12.1.5', NAMESPACE: '4chan X.', boards: {} }; @@ -271,6 +271,7 @@ Config = (function() { '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.'], '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.'], '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], @@ -14327,6 +14328,9 @@ Banner = (function() { var banner, children; banner = $(".boardBanner"); children = banner.children; + if (g.VIEW === 'thread' && Conf['Remove Thread Excerpt']) { + Banner.setTitle(children[1].textContent); + } children[0].title = "Click to change"; $.on(children[0], 'click', Banner.cb.toggle); if (Conf['Custom Board Titles']) { diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 46e684db1..c6a6d0cf8 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 644a39d75..49d440f36 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.1.4 +// @version 1.12.1.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.12.1.4', + VERSION: '1.12.1.5', NAMESPACE: '4chan X.', boards: {} }; @@ -271,6 +271,7 @@ Config = (function() { '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.'], '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.'], '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], @@ -14327,6 +14328,9 @@ Banner = (function() { var banner, children; banner = $(".boardBanner"); children = banner.children; + if (g.VIEW === 'thread' && Conf['Remove Thread Excerpt']) { + Banner.setTitle(children[1].textContent); + } children[0].title = "Click to change"; $.on(children[0], 'click', Banner.cb.toggle); if (Conf['Custom Board Titles']) { diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index a513e2445..058d187f4 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 3a2c50c26..4f5b01b1e 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.12.1.4 +// @version 1.12.1.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 0bba45a03..7c97c4ef9 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.12.1.4 +// @version 1.12.1.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.12.1.4', + VERSION: '1.12.1.5', NAMESPACE: '4chan X.', boards: {} }; @@ -271,6 +271,7 @@ Config = (function() { '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.'], '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.'], '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], @@ -14327,6 +14328,9 @@ Banner = (function() { var banner, children; banner = $(".boardBanner"); children = banner.children; + if (g.VIEW === 'thread' && Conf['Remove Thread Excerpt']) { + Banner.setTitle(children[1].textContent); + } children[0].title = "Click to change"; $.on(children[0], 'click', Banner.cb.toggle); if (Conf['Custom Board Titles']) { diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 0886ebbb5..4968bc897 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 ab88272a8..93cb00040 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 8161442b7..37f946614 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index f8f188869..434004df4 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.12.1.4", - "date": "2016-07-09T16:29:32.443Z" + "version": "1.12.1.5", + "date": "2016-07-10T20:36:24.056Z" } \ No newline at end of file