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