Release 4chan X v1.14.10.3.

This commit is contained in:
ccd0 2019-07-24 02:07:05 -07:00
parent a16a85ea7c
commit c8619e303d
15 changed files with 38 additions and 14 deletions

View File

@ -4,6 +4,9 @@
### v1.14.10 ### v1.14.10
**v1.14.10.3** *(2019-07-24)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.10.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.10.3/builds/4chan-X-noupdate.crx)]
- Fix bugs in gallery when rotating images with Fit Height enabled.
**v1.14.10.2** *(2019-07-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.10.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.10.2/builds/4chan-X-noupdate.crx)] **v1.14.10.2** *(2019-07-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.10.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.10.2/builds/4chan-X-noupdate.crx)]
- Limit number of autoretries on posting error to reduce likelihood of "excessive server request" bans. #1302 - Limit number of autoretries on posting error to reduce likelihood of "excessive server request" bans. #1302
- Fix bug from v1.14.10.0 causing full image and thumbnail to briefly appear simultaneously while contracting images and causing unwanted scrolling. - Fix bug from v1.14.10.0 causing full image and thumbnail to briefly appear simultaneously while contracting images and causing unwanted scrolling.

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.14.10.2 // @version 1.14.10.3
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.14.10.2 // @version 1.14.10.3
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -199,7 +199,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.14.10.2', VERSION: '1.14.10.3',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
sites: {}, sites: {},
boards: {} boards: {}
@ -3569,6 +3569,8 @@ a:only-of-type > .remove {\n\
.gal-image a {\n\ .gal-image a {\n\
display: -webkit-flex;\n\ display: -webkit-flex;\n\
display: flex;\n\ display: flex;\n\
-webkit-align-items: flex-start;\n\
align-items: flex-start;\n\
margin: auto;\n\ margin: auto;\n\
line-height: 0;\n\ line-height: 0;\n\
max-width: 100%;\n\ max-width: 100%;\n\
@ -3577,6 +3579,11 @@ a:only-of-type > .remove {\n\
width: 100%;\n\ width: 100%;\n\
height: 100%;\n\ height: 100%;\n\
}\n\ }\n\
.gal-image img,\n\
.gal-image video {\n\
-webkit-flex: none;\n\
flex: none;\n\
}\n\
.gal-fit-width .gal-image img,\n\ .gal-fit-width .gal-image img,\n\
.gal-fit-width .gal-image video {\n\ .gal-fit-width .gal-image video {\n\
max-width: 100%;\n\ max-width: 100%;\n\

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.14.10.2 // @version 1.14.10.3
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -199,7 +199,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.14.10.2', VERSION: '1.14.10.3',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
sites: {}, sites: {},
boards: {} boards: {}
@ -3569,6 +3569,8 @@ a:only-of-type > .remove {\n\
.gal-image a {\n\ .gal-image a {\n\
display: -webkit-flex;\n\ display: -webkit-flex;\n\
display: flex;\n\ display: flex;\n\
-webkit-align-items: flex-start;\n\
align-items: flex-start;\n\
margin: auto;\n\ margin: auto;\n\
line-height: 0;\n\ line-height: 0;\n\
max-width: 100%;\n\ max-width: 100%;\n\
@ -3577,6 +3579,11 @@ a:only-of-type > .remove {\n\
width: 100%;\n\ width: 100%;\n\
height: 100%;\n\ height: 100%;\n\
}\n\ }\n\
.gal-image img,\n\
.gal-image video {\n\
-webkit-flex: none;\n\
flex: none;\n\
}\n\
.gal-fit-width .gal-image img,\n\ .gal-fit-width .gal-image img,\n\
.gal-fit-width .gal-image video {\n\ .gal-fit-width .gal-image video {\n\
max-width: 100%;\n\ max-width: 100%;\n\

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.14.10.2 // @version 1.14.10.3
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.14.10.2 // @version 1.14.10.3
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -199,7 +199,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.14.10.2', VERSION: '1.14.10.3',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
sites: {}, sites: {},
boards: {} boards: {}
@ -3569,6 +3569,8 @@ a:only-of-type > .remove {\n\
.gal-image a {\n\ .gal-image a {\n\
display: -webkit-flex;\n\ display: -webkit-flex;\n\
display: flex;\n\ display: flex;\n\
-webkit-align-items: flex-start;\n\
align-items: flex-start;\n\
margin: auto;\n\ margin: auto;\n\
line-height: 0;\n\ line-height: 0;\n\
max-width: 100%;\n\ max-width: 100%;\n\
@ -3577,6 +3579,11 @@ a:only-of-type > .remove {\n\
width: 100%;\n\ width: 100%;\n\
height: 100%;\n\ height: 100%;\n\
}\n\ }\n\
.gal-image img,\n\
.gal-image video {\n\
-webkit-flex: none;\n\
flex: none;\n\
}\n\
.gal-fit-width .gal-image img,\n\ .gal-fit-width .gal-image img,\n\
.gal-fit-width .gal-image video {\n\ .gal-fit-width .gal-image video {\n\
max-width: 100%;\n\ max-width: 100%;\n\

Binary file not shown.

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": { "4chan-x@4chan-x.net": {
"updates": [ "updates": [
{ {
"version": "1.14.10.2", "version": "1.14.10.3",
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx" "update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
} }
] ]

View File

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'> <gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<app appid='lacclbnghgdicfifcamcmcnilckjamag'> <app appid='lacclbnghgdicfifcamcmcnilckjamag'>
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.10.2' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.10.3' />
</app> </app>
</gupdate> </gupdate>

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": { "4chan-x@4chan-x.net": {
"updates": [ "updates": [
{ {
"version": "1.14.10.2", "version": "1.14.10.3",
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx" "update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
} }
] ]

View File

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'> <gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<app appid='lacclbnghgdicfifcamcmcnilckjamag'> <app appid='lacclbnghgdicfifcamcmcnilckjamag'>
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.10.2' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.10.3' />
</app> </app>
</gupdate> </gupdate>

View File

@ -1,4 +1,4 @@
{ {
"version": "1.14.10.2", "version": "1.14.10.3",
"date": "2019-07-23T20:21:29.383Z" "date": "2019-07-24T09:02:34.352Z"
} }