Release 4chan X v1.14.6.5.
This commit is contained in:
parent
f61fc5f1ee
commit
8712b00933
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.14.6
|
||||
|
||||
**v1.14.6.5** *(2019-04-04)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.6.5/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.6.5/builds/4chan-X-noupdate.crx)]
|
||||
- Fix Thread Watcher bug that in certain circumstances caused the last check of an archived thread for new replies to be skipped.
|
||||
|
||||
**v1.14.6.4** *(2019-04-02)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.6.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.6.4/builds/4chan-X-noupdate.crx)]
|
||||
- Merge v1.14.5.16: Remove score/perks message. Fix Posting Success Notifications.
|
||||
- Merge v1.14.5.16: Remove like buttons. Continue to show like counts and scores where given in API.
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.14.6.4
|
||||
// @version 1.14.6.5
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.14.6.4
|
||||
// @version 1.14.6.5
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -198,7 +198,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.6.4',
|
||||
VERSION: '1.14.6.5',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -20260,12 +20260,19 @@ ThreadWatcher = (function() {
|
||||
})) {
|
||||
continue;
|
||||
}
|
||||
nKilled++;
|
||||
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
||||
db["delete"]({
|
||||
boardID: boardID,
|
||||
threadID: threadID
|
||||
});
|
||||
nKilled++;
|
||||
} else if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||
ThreadWatcher.fetchStatus({
|
||||
siteID: siteID,
|
||||
boardID: boardID,
|
||||
threadID: threadID,
|
||||
data: data
|
||||
});
|
||||
} else {
|
||||
db.extend({
|
||||
boardID: boardID,
|
||||
@ -20274,14 +20281,7 @@ ThreadWatcher = (function() {
|
||||
isDead: true
|
||||
}
|
||||
});
|
||||
if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||
ThreadWatcher.fetchStatus({
|
||||
siteID: siteID,
|
||||
boardID: boardID,
|
||||
threadID: threadID,
|
||||
data: data
|
||||
});
|
||||
}
|
||||
nKilled++;
|
||||
}
|
||||
}
|
||||
if (nKilled) {
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.6.4
|
||||
// @version 1.14.6.5
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -198,7 +198,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.6.4',
|
||||
VERSION: '1.14.6.5',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -20260,12 +20260,19 @@ ThreadWatcher = (function() {
|
||||
})) {
|
||||
continue;
|
||||
}
|
||||
nKilled++;
|
||||
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
||||
db["delete"]({
|
||||
boardID: boardID,
|
||||
threadID: threadID
|
||||
});
|
||||
nKilled++;
|
||||
} else if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||
ThreadWatcher.fetchStatus({
|
||||
siteID: siteID,
|
||||
boardID: boardID,
|
||||
threadID: threadID,
|
||||
data: data
|
||||
});
|
||||
} else {
|
||||
db.extend({
|
||||
boardID: boardID,
|
||||
@ -20274,14 +20281,7 @@ ThreadWatcher = (function() {
|
||||
isDead: true
|
||||
}
|
||||
});
|
||||
if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||
ThreadWatcher.fetchStatus({
|
||||
siteID: siteID,
|
||||
boardID: boardID,
|
||||
threadID: threadID,
|
||||
data: data
|
||||
});
|
||||
}
|
||||
nKilled++;
|
||||
}
|
||||
}
|
||||
if (nKilled) {
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.6.4
|
||||
// @version 1.14.6.5
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.14.6.4
|
||||
// @version 1.14.6.5
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -198,7 +198,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.14.6.4',
|
||||
VERSION: '1.14.6.5',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -20260,12 +20260,19 @@ ThreadWatcher = (function() {
|
||||
})) {
|
||||
continue;
|
||||
}
|
||||
nKilled++;
|
||||
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
||||
db["delete"]({
|
||||
boardID: boardID,
|
||||
threadID: threadID
|
||||
});
|
||||
nKilled++;
|
||||
} else if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||
ThreadWatcher.fetchStatus({
|
||||
siteID: siteID,
|
||||
boardID: boardID,
|
||||
threadID: threadID,
|
||||
data: data
|
||||
});
|
||||
} else {
|
||||
db.extend({
|
||||
boardID: boardID,
|
||||
@ -20274,14 +20281,7 @@ ThreadWatcher = (function() {
|
||||
isDead: true
|
||||
}
|
||||
});
|
||||
if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||
ThreadWatcher.fetchStatus({
|
||||
siteID: siteID,
|
||||
boardID: boardID,
|
||||
threadID: threadID,
|
||||
data: data
|
||||
});
|
||||
}
|
||||
nKilled++;
|
||||
}
|
||||
}
|
||||
if (nKilled) {
|
||||
|
||||
Binary file not shown.
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.14.6.4",
|
||||
"version": "1.14.6.5",
|
||||
"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.6.4' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.6.5' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.14.6.4",
|
||||
"version": "1.14.6.5",
|
||||
"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.6.4' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.6.5' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.14.6.4",
|
||||
"date": "2019-04-02T13:16:33.368Z"
|
||||
"version": "1.14.6.5",
|
||||
"date": "2019-04-04T23:55:26.319Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user