Release 4chan X v1.13.0.22.
This commit is contained in:
parent
475c7faffc
commit
8a5a772ff1
@ -4,6 +4,10 @@
|
||||
|
||||
## v1.13.0
|
||||
|
||||
**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.
|
||||
|
||||
**v1.13.0.21** *(2016-11-06)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.21/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.0.21/builds/4chan-X-noupdate.crx)]
|
||||
- Prevent hovered catalog threads from going offscreen if the extra padding on `.board` is removed.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.0.21
|
||||
// @version 1.13.0.22
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.0.21
|
||||
// @version 1.13.0.22
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -147,7 +147,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.0.21',
|
||||
VERSION: '1.13.0.22',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -383,7 +383,7 @@ Config = (function() {
|
||||
'Previous Index Mode': 'paged',
|
||||
'Index Size': 'small',
|
||||
'Show Replies': [true, 'Show replies in the index, and also in the catalog if "Catalog hover expand" is checked.'],
|
||||
'Catalog Hover Expand': [true, 'Expand the comment and show more details when you hover over a thread in the catalog.'],
|
||||
'Catalog Hover Expand': [false, 'Expand the comment and show more details when you hover over a thread in the catalog.'],
|
||||
'Pin Watched Threads': [false, 'Move watched threads to the start of the index.'],
|
||||
'Anchor Hidden Threads': [true, 'Move hidden threads to the end of the index.'],
|
||||
'Refreshed Navigation': [false, 'Refresh index when navigating through pages.']
|
||||
@ -1898,7 +1898,6 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
||||
/* Catalog */\n\
|
||||
:root.catalog-mode .board {\n\
|
||||
text-align: center;\n\
|
||||
padding: 0 51px;\n\
|
||||
}\n\
|
||||
.catalog-thread {\n\
|
||||
display: inline-block;\n\
|
||||
@ -1911,15 +1910,15 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
||||
}\n\
|
||||
/* overrides 4chan CSS on div.thread */\n\
|
||||
.catalog-thread.catalog-thread {\n\
|
||||
margin: 4px;\n\
|
||||
margin: 2px;\n\
|
||||
}\n\
|
||||
.catalog-small > .catalog-thread {\n\
|
||||
width: 167px;\n\
|
||||
height: 322px;\n\
|
||||
width: 165px;\n\
|
||||
height: 320px;\n\
|
||||
}\n\
|
||||
.catalog-large > .catalog-thread {\n\
|
||||
width: 272px;\n\
|
||||
height: 412px;\n\
|
||||
width: 270px;\n\
|
||||
height: 410px;\n\
|
||||
}\n\
|
||||
:root.catalog-hover-expand .catalog-thread:hover {\n\
|
||||
z-index: 1;\n\
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.0.21
|
||||
// @version 1.13.0.22
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -147,7 +147,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.0.21',
|
||||
VERSION: '1.13.0.22',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -383,7 +383,7 @@ Config = (function() {
|
||||
'Previous Index Mode': 'paged',
|
||||
'Index Size': 'small',
|
||||
'Show Replies': [true, 'Show replies in the index, and also in the catalog if "Catalog hover expand" is checked.'],
|
||||
'Catalog Hover Expand': [true, 'Expand the comment and show more details when you hover over a thread in the catalog.'],
|
||||
'Catalog Hover Expand': [false, 'Expand the comment and show more details when you hover over a thread in the catalog.'],
|
||||
'Pin Watched Threads': [false, 'Move watched threads to the start of the index.'],
|
||||
'Anchor Hidden Threads': [true, 'Move hidden threads to the end of the index.'],
|
||||
'Refreshed Navigation': [false, 'Refresh index when navigating through pages.']
|
||||
@ -1898,7 +1898,6 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
||||
/* Catalog */\n\
|
||||
:root.catalog-mode .board {\n\
|
||||
text-align: center;\n\
|
||||
padding: 0 51px;\n\
|
||||
}\n\
|
||||
.catalog-thread {\n\
|
||||
display: inline-block;\n\
|
||||
@ -1911,15 +1910,15 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
||||
}\n\
|
||||
/* overrides 4chan CSS on div.thread */\n\
|
||||
.catalog-thread.catalog-thread {\n\
|
||||
margin: 4px;\n\
|
||||
margin: 2px;\n\
|
||||
}\n\
|
||||
.catalog-small > .catalog-thread {\n\
|
||||
width: 167px;\n\
|
||||
height: 322px;\n\
|
||||
width: 165px;\n\
|
||||
height: 320px;\n\
|
||||
}\n\
|
||||
.catalog-large > .catalog-thread {\n\
|
||||
width: 272px;\n\
|
||||
height: 412px;\n\
|
||||
width: 270px;\n\
|
||||
height: 410px;\n\
|
||||
}\n\
|
||||
:root.catalog-hover-expand .catalog-thread:hover {\n\
|
||||
z-index: 1;\n\
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.0.21
|
||||
// @version 1.13.0.22
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.0.21
|
||||
// @version 1.13.0.22
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -147,7 +147,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.0.21',
|
||||
VERSION: '1.13.0.22',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -383,7 +383,7 @@ Config = (function() {
|
||||
'Previous Index Mode': 'paged',
|
||||
'Index Size': 'small',
|
||||
'Show Replies': [true, 'Show replies in the index, and also in the catalog if "Catalog hover expand" is checked.'],
|
||||
'Catalog Hover Expand': [true, 'Expand the comment and show more details when you hover over a thread in the catalog.'],
|
||||
'Catalog Hover Expand': [false, 'Expand the comment and show more details when you hover over a thread in the catalog.'],
|
||||
'Pin Watched Threads': [false, 'Move watched threads to the start of the index.'],
|
||||
'Anchor Hidden Threads': [true, 'Move hidden threads to the end of the index.'],
|
||||
'Refreshed Navigation': [false, 'Refresh index when navigating through pages.']
|
||||
@ -1898,7 +1898,6 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
||||
/* Catalog */\n\
|
||||
:root.catalog-mode .board {\n\
|
||||
text-align: center;\n\
|
||||
padding: 0 51px;\n\
|
||||
}\n\
|
||||
.catalog-thread {\n\
|
||||
display: inline-block;\n\
|
||||
@ -1911,15 +1910,15 @@ div[data-checked=\"false\"] > .suboption-list {\n\
|
||||
}\n\
|
||||
/* overrides 4chan CSS on div.thread */\n\
|
||||
.catalog-thread.catalog-thread {\n\
|
||||
margin: 4px;\n\
|
||||
margin: 2px;\n\
|
||||
}\n\
|
||||
.catalog-small > .catalog-thread {\n\
|
||||
width: 167px;\n\
|
||||
height: 322px;\n\
|
||||
width: 165px;\n\
|
||||
height: 320px;\n\
|
||||
}\n\
|
||||
.catalog-large > .catalog-thread {\n\
|
||||
width: 272px;\n\
|
||||
height: 412px;\n\
|
||||
width: 270px;\n\
|
||||
height: 410px;\n\
|
||||
}\n\
|
||||
:root.catalog-hover-expand .catalog-thread:hover {\n\
|
||||
z-index: 1;\n\
|
||||
|
||||
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.13.0.21' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.0.22' />
|
||||
</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.13.0.21' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.0.22' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.0.21",
|
||||
"date": "2016-11-06T23:12:41.993Z"
|
||||
"version": "1.13.0.22",
|
||||
"date": "2016-11-07T05:05:35.275Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user