Release 4chan X v1.14.12.8.
This commit is contained in:
parent
53490d1d26
commit
4981ab4672
@ -4,6 +4,12 @@
|
|||||||
|
|
||||||
### v1.14.12
|
### v1.14.12
|
||||||
|
|
||||||
|
**v1.14.12.8** *(2019-08-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.8/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.8/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Fix bug from v1.14.7.0 (commit af00c711ff) causing excerpt in thread watcher to not be set. #2404
|
||||||
|
- Workaround for issue with new Chrome layout engine. #2397
|
||||||
|
- Fix workaround for Chrome CORB bug breaking posting in old versions of Chrome. #2396
|
||||||
|
- Maintain old default boardlist for people upgrading from previous versions.
|
||||||
|
|
||||||
**v1.14.12.7** *(2019-08-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.7/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.7/builds/4chan-X-noupdate.crx)]
|
**v1.14.12.7** *(2019-08-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.7/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.12.7/builds/4chan-X-noupdate.crx)]
|
||||||
- Enable 4chan X by default on more sites.
|
- Enable 4chan X by default on more sites.
|
||||||
- Add small announcement on /qa/.
|
- Add small announcement on /qa/.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.12.7
|
// @version 1.14.12.8
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.12.7
|
// @version 1.14.12.8
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -219,7 +219,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.12.7',
|
VERSION: '1.14.12.8',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -2827,6 +2827,9 @@ input[name=\"Default Volume\"] {\n\
|
|||||||
margin-right: 4px;\n\
|
margin-right: 4px;\n\
|
||||||
padding: 2px;\n\
|
padding: 2px;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
.replacedSideArrows {\n\
|
||||||
|
float: left;\n\
|
||||||
|
}\n\
|
||||||
.hide-thread-button:not(:hover),\n\
|
.hide-thread-button:not(:hover),\n\
|
||||||
.hide-reply-button:not(:hover) {\n\
|
.hide-reply-button:not(:hover) {\n\
|
||||||
opacity: 0.4;\n\
|
opacity: 0.4;\n\
|
||||||
@ -9664,7 +9667,7 @@ PostHiding = (function() {
|
|||||||
if ((sa = g.SITE.selectors.sideArrows)) {
|
if ((sa = g.SITE.selectors.sideArrows)) {
|
||||||
sideArrows = $(sa, this.nodes.root);
|
sideArrows = $(sa, this.nodes.root);
|
||||||
$.replace(sideArrows.firstChild, button);
|
$.replace(sideArrows.firstChild, button);
|
||||||
return sideArrows.removeAttribute('class');
|
return sideArrows.className = 'replacedSideArrows';
|
||||||
} else {
|
} else {
|
||||||
return $.prepend(this.nodes.root, button);
|
return $.prepend(this.nodes.root, button);
|
||||||
}
|
}
|
||||||
@ -13343,6 +13346,11 @@ Settings = (function() {
|
|||||||
set('Filter in Native Catalog', false);
|
set('Filter in Native Catalog', false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (compareString < '00001.00014.00012.00008') {
|
||||||
|
if (data['boardnav'] == null) {
|
||||||
|
set('boardnav', "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\n[external-text:\"FAQ\",\"https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions\"]");
|
||||||
|
}
|
||||||
|
}
|
||||||
return changes;
|
return changes;
|
||||||
},
|
},
|
||||||
loadSettings: function(data, cb) {
|
loadSettings: function(data, cb) {
|
||||||
@ -21518,9 +21526,7 @@ ThreadWatcher = (function() {
|
|||||||
return $.queueTask((function(_this) {
|
return $.queueTask((function(_this) {
|
||||||
return function() {
|
return function() {
|
||||||
return ThreadWatcher.update(siteID, boardID, threadID, {
|
return ThreadWatcher.update(siteID, boardID, threadID, {
|
||||||
val: {
|
|
||||||
excerpt: Get.threadExcerpt(_this.thread)
|
excerpt: Get.threadExcerpt(_this.thread)
|
||||||
}
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
})(this));
|
})(this));
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.12.7
|
// @version 1.14.12.8
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -219,7 +219,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.12.7',
|
VERSION: '1.14.12.8',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -2827,6 +2827,9 @@ input[name=\"Default Volume\"] {\n\
|
|||||||
margin-right: 4px;\n\
|
margin-right: 4px;\n\
|
||||||
padding: 2px;\n\
|
padding: 2px;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
.replacedSideArrows {\n\
|
||||||
|
float: left;\n\
|
||||||
|
}\n\
|
||||||
.hide-thread-button:not(:hover),\n\
|
.hide-thread-button:not(:hover),\n\
|
||||||
.hide-reply-button:not(:hover) {\n\
|
.hide-reply-button:not(:hover) {\n\
|
||||||
opacity: 0.4;\n\
|
opacity: 0.4;\n\
|
||||||
@ -9664,7 +9667,7 @@ PostHiding = (function() {
|
|||||||
if ((sa = g.SITE.selectors.sideArrows)) {
|
if ((sa = g.SITE.selectors.sideArrows)) {
|
||||||
sideArrows = $(sa, this.nodes.root);
|
sideArrows = $(sa, this.nodes.root);
|
||||||
$.replace(sideArrows.firstChild, button);
|
$.replace(sideArrows.firstChild, button);
|
||||||
return sideArrows.removeAttribute('class');
|
return sideArrows.className = 'replacedSideArrows';
|
||||||
} else {
|
} else {
|
||||||
return $.prepend(this.nodes.root, button);
|
return $.prepend(this.nodes.root, button);
|
||||||
}
|
}
|
||||||
@ -13343,6 +13346,11 @@ Settings = (function() {
|
|||||||
set('Filter in Native Catalog', false);
|
set('Filter in Native Catalog', false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (compareString < '00001.00014.00012.00008') {
|
||||||
|
if (data['boardnav'] == null) {
|
||||||
|
set('boardnav', "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\n[external-text:\"FAQ\",\"https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions\"]");
|
||||||
|
}
|
||||||
|
}
|
||||||
return changes;
|
return changes;
|
||||||
},
|
},
|
||||||
loadSettings: function(data, cb) {
|
loadSettings: function(data, cb) {
|
||||||
@ -21518,9 +21526,7 @@ ThreadWatcher = (function() {
|
|||||||
return $.queueTask((function(_this) {
|
return $.queueTask((function(_this) {
|
||||||
return function() {
|
return function() {
|
||||||
return ThreadWatcher.update(siteID, boardID, threadID, {
|
return ThreadWatcher.update(siteID, boardID, threadID, {
|
||||||
val: {
|
|
||||||
excerpt: Get.threadExcerpt(_this.thread)
|
excerpt: Get.threadExcerpt(_this.thread)
|
||||||
}
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
})(this));
|
})(this));
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.12.7
|
// @version 1.14.12.8
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.12.7
|
// @version 1.14.12.8
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -219,7 +219,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.12.7',
|
VERSION: '1.14.12.8',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -2827,6 +2827,9 @@ input[name=\"Default Volume\"] {\n\
|
|||||||
margin-right: 4px;\n\
|
margin-right: 4px;\n\
|
||||||
padding: 2px;\n\
|
padding: 2px;\n\
|
||||||
}\n\
|
}\n\
|
||||||
|
.replacedSideArrows {\n\
|
||||||
|
float: left;\n\
|
||||||
|
}\n\
|
||||||
.hide-thread-button:not(:hover),\n\
|
.hide-thread-button:not(:hover),\n\
|
||||||
.hide-reply-button:not(:hover) {\n\
|
.hide-reply-button:not(:hover) {\n\
|
||||||
opacity: 0.4;\n\
|
opacity: 0.4;\n\
|
||||||
@ -9664,7 +9667,7 @@ PostHiding = (function() {
|
|||||||
if ((sa = g.SITE.selectors.sideArrows)) {
|
if ((sa = g.SITE.selectors.sideArrows)) {
|
||||||
sideArrows = $(sa, this.nodes.root);
|
sideArrows = $(sa, this.nodes.root);
|
||||||
$.replace(sideArrows.firstChild, button);
|
$.replace(sideArrows.firstChild, button);
|
||||||
return sideArrows.removeAttribute('class');
|
return sideArrows.className = 'replacedSideArrows';
|
||||||
} else {
|
} else {
|
||||||
return $.prepend(this.nodes.root, button);
|
return $.prepend(this.nodes.root, button);
|
||||||
}
|
}
|
||||||
@ -13343,6 +13346,11 @@ Settings = (function() {
|
|||||||
set('Filter in Native Catalog', false);
|
set('Filter in Native Catalog', false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (compareString < '00001.00014.00012.00008') {
|
||||||
|
if (data['boardnav'] == null) {
|
||||||
|
set('boardnav', "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\n[external-text:\"FAQ\",\"https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions\"]");
|
||||||
|
}
|
||||||
|
}
|
||||||
return changes;
|
return changes;
|
||||||
},
|
},
|
||||||
loadSettings: function(data, cb) {
|
loadSettings: function(data, cb) {
|
||||||
@ -21518,9 +21526,7 @@ ThreadWatcher = (function() {
|
|||||||
return $.queueTask((function(_this) {
|
return $.queueTask((function(_this) {
|
||||||
return function() {
|
return function() {
|
||||||
return ThreadWatcher.update(siteID, boardID, threadID, {
|
return ThreadWatcher.update(siteID, boardID, threadID, {
|
||||||
val: {
|
|
||||||
excerpt: Get.threadExcerpt(_this.thread)
|
excerpt: Get.threadExcerpt(_this.thread)
|
||||||
}
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
})(this));
|
})(this));
|
||||||
|
|||||||
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.12.7",
|
"version": "1.14.12.8",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.12.7' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.12.8' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.12.7",
|
"version": "1.14.12.8",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.12.7' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.12.8' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.14.12.7",
|
"version": "1.14.12.8",
|
||||||
"date": "2019-08-18T09:05:21.798Z"
|
"date": "2019-08-18T19:07:25.095Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user