Release 4chan X v1.14.21.3.
This commit is contained in:
parent
36a3e7cdcc
commit
72f35dfba5
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.14.21
|
### v1.14.21
|
||||||
|
|
||||||
|
**v1.14.21.3** *(2021-05-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.3/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Fix race condition causing unread posts tracking to malfunction.
|
||||||
|
|
||||||
**v1.14.21.2** *(2021-05-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.2/builds/4chan-X-noupdate.crx)]
|
**v1.14.21.2** *(2021-05-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.2/builds/4chan-X-noupdate.crx)]
|
||||||
- Fix bug introduced in v1.14.21.1 causing error message when menu opened.
|
- Fix bug introduced in v1.14.21.1 causing error message when menu opened.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.21.2
|
// @version 1.14.21.3
|
||||||
// @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.21.2
|
// @version 1.14.21.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -218,7 +218,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.21.2',
|
VERSION: '1.14.21.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -20695,13 +20695,23 @@ Favicon = (function() {
|
|||||||
return d.head && (Favicon.el = $('link[rel="shortcut icon"]', d.head));
|
return d.head && (Favicon.el = $('link[rel="shortcut icon"]', d.head));
|
||||||
}), Favicon.initAsap);
|
}), Favicon.initAsap);
|
||||||
},
|
},
|
||||||
|
set: function(status) {
|
||||||
|
Favicon.status = status;
|
||||||
|
if (Favicon.el) {
|
||||||
|
Favicon.el.href = Favicon[status];
|
||||||
|
return $.add(d.head, Favicon.el);
|
||||||
|
}
|
||||||
|
},
|
||||||
initAsap: function() {
|
initAsap: function() {
|
||||||
var href;
|
var href;
|
||||||
Favicon.el.type = 'image/x-icon';
|
Favicon.el.type = 'image/x-icon';
|
||||||
href = Favicon.el.href;
|
href = Favicon.el.href;
|
||||||
Favicon.isSFW = /ws\.ico$/.test(href);
|
Favicon.isSFW = /ws\.ico$/.test(href);
|
||||||
Favicon["default"] = href;
|
Favicon["default"] = href;
|
||||||
return Favicon["switch"]();
|
Favicon["switch"]();
|
||||||
|
if (Favicon.status) {
|
||||||
|
return Favicon.set(Favicon.status);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"switch": function() {
|
"switch": function() {
|
||||||
var f, i, items, t;
|
var f, i, items, t;
|
||||||
@ -22995,8 +23005,7 @@ Unread = (function() {
|
|||||||
Unread.saveThreadWatcherCount();
|
Unread.saveThreadWatcherCount();
|
||||||
if (Conf['Unread Favicon'] && g.SITE.software === 'yotsuba') {
|
if (Conf['Unread Favicon'] && g.SITE.software === 'yotsuba') {
|
||||||
isDead = Unread.thread.isDead;
|
isDead = Unread.thread.isDead;
|
||||||
Favicon.el.href = countQuotingYou ? Favicon[isDead ? 'unreadDeadY' : 'unreadY'] : count ? Favicon[isDead ? 'unreadDead' : 'unread'] : Favicon[isDead ? 'dead' : 'default'];
|
return Favicon.set((countQuotingYou ? (isDead ? 'unreadDeadY' : 'unreadY') : count ? (isDead ? 'unreadDead' : 'unread') : (isDead ? 'dead' : 'default')));
|
||||||
return $.add(d.head, Favicon.el);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
saveThreadWatcherCount: $.debounce(2 * $.SECOND, function() {
|
saveThreadWatcherCount: $.debounce(2 * $.SECOND, function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.21.2
|
// @version 1.14.21.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -218,7 +218,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.21.2',
|
VERSION: '1.14.21.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -20695,13 +20695,23 @@ Favicon = (function() {
|
|||||||
return d.head && (Favicon.el = $('link[rel="shortcut icon"]', d.head));
|
return d.head && (Favicon.el = $('link[rel="shortcut icon"]', d.head));
|
||||||
}), Favicon.initAsap);
|
}), Favicon.initAsap);
|
||||||
},
|
},
|
||||||
|
set: function(status) {
|
||||||
|
Favicon.status = status;
|
||||||
|
if (Favicon.el) {
|
||||||
|
Favicon.el.href = Favicon[status];
|
||||||
|
return $.add(d.head, Favicon.el);
|
||||||
|
}
|
||||||
|
},
|
||||||
initAsap: function() {
|
initAsap: function() {
|
||||||
var href;
|
var href;
|
||||||
Favicon.el.type = 'image/x-icon';
|
Favicon.el.type = 'image/x-icon';
|
||||||
href = Favicon.el.href;
|
href = Favicon.el.href;
|
||||||
Favicon.isSFW = /ws\.ico$/.test(href);
|
Favicon.isSFW = /ws\.ico$/.test(href);
|
||||||
Favicon["default"] = href;
|
Favicon["default"] = href;
|
||||||
return Favicon["switch"]();
|
Favicon["switch"]();
|
||||||
|
if (Favicon.status) {
|
||||||
|
return Favicon.set(Favicon.status);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"switch": function() {
|
"switch": function() {
|
||||||
var f, i, items, t;
|
var f, i, items, t;
|
||||||
@ -22995,8 +23005,7 @@ Unread = (function() {
|
|||||||
Unread.saveThreadWatcherCount();
|
Unread.saveThreadWatcherCount();
|
||||||
if (Conf['Unread Favicon'] && g.SITE.software === 'yotsuba') {
|
if (Conf['Unread Favicon'] && g.SITE.software === 'yotsuba') {
|
||||||
isDead = Unread.thread.isDead;
|
isDead = Unread.thread.isDead;
|
||||||
Favicon.el.href = countQuotingYou ? Favicon[isDead ? 'unreadDeadY' : 'unreadY'] : count ? Favicon[isDead ? 'unreadDead' : 'unread'] : Favicon[isDead ? 'dead' : 'default'];
|
return Favicon.set((countQuotingYou ? (isDead ? 'unreadDeadY' : 'unreadY') : count ? (isDead ? 'unreadDead' : 'unread') : (isDead ? 'dead' : 'default')));
|
||||||
return $.add(d.head, Favicon.el);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
saveThreadWatcherCount: $.debounce(2 * $.SECOND, function() {
|
saveThreadWatcherCount: $.debounce(2 * $.SECOND, function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.21.2
|
// @version 1.14.21.3
|
||||||
// @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.21.2
|
// @version 1.14.21.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -218,7 +218,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.21.2',
|
VERSION: '1.14.21.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -20695,13 +20695,23 @@ Favicon = (function() {
|
|||||||
return d.head && (Favicon.el = $('link[rel="shortcut icon"]', d.head));
|
return d.head && (Favicon.el = $('link[rel="shortcut icon"]', d.head));
|
||||||
}), Favicon.initAsap);
|
}), Favicon.initAsap);
|
||||||
},
|
},
|
||||||
|
set: function(status) {
|
||||||
|
Favicon.status = status;
|
||||||
|
if (Favicon.el) {
|
||||||
|
Favicon.el.href = Favicon[status];
|
||||||
|
return $.add(d.head, Favicon.el);
|
||||||
|
}
|
||||||
|
},
|
||||||
initAsap: function() {
|
initAsap: function() {
|
||||||
var href;
|
var href;
|
||||||
Favicon.el.type = 'image/x-icon';
|
Favicon.el.type = 'image/x-icon';
|
||||||
href = Favicon.el.href;
|
href = Favicon.el.href;
|
||||||
Favicon.isSFW = /ws\.ico$/.test(href);
|
Favicon.isSFW = /ws\.ico$/.test(href);
|
||||||
Favicon["default"] = href;
|
Favicon["default"] = href;
|
||||||
return Favicon["switch"]();
|
Favicon["switch"]();
|
||||||
|
if (Favicon.status) {
|
||||||
|
return Favicon.set(Favicon.status);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"switch": function() {
|
"switch": function() {
|
||||||
var f, i, items, t;
|
var f, i, items, t;
|
||||||
@ -22995,8 +23005,7 @@ Unread = (function() {
|
|||||||
Unread.saveThreadWatcherCount();
|
Unread.saveThreadWatcherCount();
|
||||||
if (Conf['Unread Favicon'] && g.SITE.software === 'yotsuba') {
|
if (Conf['Unread Favicon'] && g.SITE.software === 'yotsuba') {
|
||||||
isDead = Unread.thread.isDead;
|
isDead = Unread.thread.isDead;
|
||||||
Favicon.el.href = countQuotingYou ? Favicon[isDead ? 'unreadDeadY' : 'unreadY'] : count ? Favicon[isDead ? 'unreadDead' : 'unread'] : Favicon[isDead ? 'dead' : 'default'];
|
return Favicon.set((countQuotingYou ? (isDead ? 'unreadDeadY' : 'unreadY') : count ? (isDead ? 'unreadDead' : 'unread') : (isDead ? 'dead' : 'default')));
|
||||||
return $.add(d.head, Favicon.el);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
saveThreadWatcherCount: $.debounce(2 * $.SECOND, function() {
|
saveThreadWatcherCount: $.debounce(2 * $.SECOND, function() {
|
||||||
|
|||||||
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.21.2",
|
"version": "1.14.21.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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.21.2' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.21.3' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.21.2",
|
"version": "1.14.21.3",
|
||||||
"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.21.2' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.21.3' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.14.21.2",
|
"version": "1.14.21.3",
|
||||||
"date": "2021-05-07T02:43:56.365Z"
|
"date": "2021-05-07T07:49:08.122Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user