diff --git a/CHANGELOG.md b/CHANGELOG.md index 3621a457d..e2cc8f46c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ## v1.13.0 +**v1.13.0.23** *(2016-11-08)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.23/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.23/builds/4chan-X-noupdate.crx)] +- Fix bug from v1.13.0.0 affecting the catalog sorting order of recently hidden/shown threads. +- Cosmetic fixes for bottom ad changes. + **v1.13.0.22** *(2016-11-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.22/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.22/builds/4chan-X-noupdate.crx)] - Turn `Catalog Hover Expand` off by default for now. - Adjust catalog CSS; opt for more entries displayed as it was previously. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index 7f80e668c..58cd72650 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 5da04124c..36485314a 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.13.0.22 +// @version 1.13.0.23 // @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 e1ee436ea..14f3c6f9d 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.13.0.22 +// @version 1.13.0.23 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -147,7 +147,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.22', + VERSION: '1.13.0.23', NAMESPACE: '4chan X.', boards: {} }; @@ -1319,11 +1319,13 @@ body > div[style*=\" top: -10000px;\"] {\n\ }\n\ :root:not(.ads-loaded) .ad-plea,\n\ :root:not(.ads-loaded) hr.abovePostForm,\n\ -:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\ +:root:not(.ads-loaded) .ad-plea-bottom + hr,\n\ +:root:not(.ads-loaded) #adg-ol + hr {\n\ display: none;\n\ }\n\ :root:not(.ads-loaded) .adg-rects {\n\ margin: 0;\n\ + font-size: 0;\n\ }\n\ div.center[style] {\n\ display: none !important;\n\ @@ -9503,6 +9505,7 @@ Index = (function() { }, toggleHiddenThreads: function() { $('#hidden-toggle a', Index.navLinks).textContent = (Index.showHiddenThreads = !Index.showHiddenThreads) ? 'Hide' : 'Show'; + Index.sort(); return Index.buildIndex(); }, mode: function() { diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index 613970bc1..cc58df852 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 f955a75d4..11975774f 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.13.0.22 +// @version 1.13.0.23 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -147,7 +147,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.22', + VERSION: '1.13.0.23', NAMESPACE: '4chan X.', boards: {} }; @@ -1319,11 +1319,13 @@ body > div[style*=\" top: -10000px;\"] {\n\ }\n\ :root:not(.ads-loaded) .ad-plea,\n\ :root:not(.ads-loaded) hr.abovePostForm,\n\ -:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\ +:root:not(.ads-loaded) .ad-plea-bottom + hr,\n\ +:root:not(.ads-loaded) #adg-ol + hr {\n\ display: none;\n\ }\n\ :root:not(.ads-loaded) .adg-rects {\n\ margin: 0;\n\ + font-size: 0;\n\ }\n\ div.center[style] {\n\ display: none !important;\n\ @@ -9503,6 +9505,7 @@ Index = (function() { }, toggleHiddenThreads: function() { $('#hidden-toggle a', Index.navLinks).textContent = (Index.showHiddenThreads = !Index.showHiddenThreads) ? 'Hide' : 'Show'; + Index.sort(); return Index.buildIndex(); }, mode: function() { diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index 6278f3ced..f88200958 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 64b102bcb..139ee5ea1 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.0.22 +// @version 1.13.0.23 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index e798c5a71..fcf408307 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.13.0.22 +// @version 1.13.0.23 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -147,7 +147,7 @@ docSet = function() { }; g = { - VERSION: '1.13.0.22', + VERSION: '1.13.0.23', NAMESPACE: '4chan X.', boards: {} }; @@ -1319,11 +1319,13 @@ body > div[style*=\" top: -10000px;\"] {\n\ }\n\ :root:not(.ads-loaded) .ad-plea,\n\ :root:not(.ads-loaded) hr.abovePostForm,\n\ -:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\ +:root:not(.ads-loaded) .ad-plea-bottom + hr,\n\ +:root:not(.ads-loaded) #adg-ol + hr {\n\ display: none;\n\ }\n\ :root:not(.ads-loaded) .adg-rects {\n\ margin: 0;\n\ + font-size: 0;\n\ }\n\ div.center[style] {\n\ display: none !important;\n\ @@ -9503,6 +9505,7 @@ Index = (function() { }, toggleHiddenThreads: function() { $('#hidden-toggle a', Index.navLinks).textContent = (Index.showHiddenThreads = !Index.showHiddenThreads) ? 'Hide' : 'Show'; + Index.sort(); return Index.buildIndex(); }, mode: function() { diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 28233f527..3e263b1b1 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 3c9b7a89f..e29f7712f 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 681fa839c..68fbac6cd 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index 4284f0594..ac3e462a7 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.13.0.22", - "date": "2016-11-07T05:05:35.275Z" + "version": "1.13.0.23", + "date": "2016-11-08T09:33:25.918Z" } \ No newline at end of file