diff --git a/CHANGELOG.md b/CHANGELOG.md index 3936ee47e..7597338d1 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ The links to individual versions below are to copies of the script with the upda ### v1.10.8 +**v1.10.8.5** *(2015-04-07)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.8.5/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.8.5/builds/4chan-X-noupdate.crx "Chromium version")] +- Impose max height on thread watcher when not fixed rather than when not toggleable. + **v1.10.8.4** *(2015-04-07)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.8.4/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.8.4/builds/4chan-X-noupdate.crx "Chromium version")] - Revert the thread watcher remembering whether it was closed or open. - Break up `Toggleable Thread Watcher` option into `Fixed Thread Watcher` and `Toggleable Thread Watcher`. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index fca13d50d..8571b7131 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 88a91dea9..9345aae4b 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.10.8.4 +// @version 1.10.8.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 e38d2d65b..b74934953 100644 --- a/builds/4chan-X-beta.user.js +++ b/builds/4chan-X-beta.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name 4chan X beta -// @version 1.10.8.4 +// @version 1.10.8.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -396,7 +396,7 @@ doc = d.documentElement; g = { - VERSION: '1.10.8.4', + VERSION: '1.10.8.5', NAMESPACE: '4chan X.', boards: {} }; @@ -17780,7 +17780,7 @@ ":root.fixed-watcher #thread-watcher {\n" + " position: fixed;\n" + "}\n" + -":root:not(.toggleable-watcher) #thread-watcher:not(:hover) {\n" + +":root:not(.fixed-watcher) #thread-watcher:not(:hover) {\n" + " max-height: 210px;\n" + " overflow-y: hidden;\n" + "}\n" + diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 7697cd9b9..b07da24fa 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 9b67c070b..51dd961f4 100644 --- a/builds/4chan-X-noupdate.user.js +++ b/builds/4chan-X-noupdate.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name 4chan X -// @version 1.10.8.4 +// @version 1.10.8.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -395,7 +395,7 @@ doc = d.documentElement; g = { - VERSION: '1.10.8.4', + VERSION: '1.10.8.5', NAMESPACE: '4chan X.', boards: {} }; @@ -17779,7 +17779,7 @@ ":root.fixed-watcher #thread-watcher {\n" + " position: fixed;\n" + "}\n" + -":root:not(.toggleable-watcher) #thread-watcher:not(:hover) {\n" + +":root:not(.fixed-watcher) #thread-watcher:not(:hover) {\n" + " max-height: 210px;\n" + " overflow-y: hidden;\n" + "}\n" + diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index ec3cd6621..008d81582 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 ef9e992d2..3cc116e75 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.10.8.4 +// @version 1.10.8.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 7164006a1..906de5913 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name 4chan X -// @version 1.10.8.4 +// @version 1.10.8.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -396,7 +396,7 @@ doc = d.documentElement; g = { - VERSION: '1.10.8.4', + VERSION: '1.10.8.5', NAMESPACE: '4chan X.', boards: {} }; @@ -17780,7 +17780,7 @@ ":root.fixed-watcher #thread-watcher {\n" + " position: fixed;\n" + "}\n" + -":root:not(.toggleable-watcher) #thread-watcher:not(:hover) {\n" + +":root:not(.fixed-watcher) #thread-watcher:not(:hover) {\n" + " max-height: 210px;\n" + " overflow-y: hidden;\n" + "}\n" + diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 386cffe08..1ee6b9c29 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 4c0e2396c..17c97e15a 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 226d893e3..5f9f70cbe 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/package.json b/package.json index 776a185c6..a6995488a 100755 --- a/package.json +++ b/package.json @@ -3,8 +3,8 @@ "description": "Cross-browser userscript for maximum lurking on 4chan.", "meta": { "name": "4chan X", - "version": "1.10.8.4", - "date": "2015-04-07T17:12:55.046Z", + "version": "1.10.8.5", + "date": "2015-04-08T05:54:16.978Z", "repo": "https://github.com/ccd0/4chan-x/", "page": "https://github.com/ccd0/4chan-x", "downloads": "https://ccd0.github.io/4chan-x/builds/",