Merge branch 'master' into next
This commit is contained in:
commit
15b7a157b0
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.14.6
|
### 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)]
|
**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 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.
|
- 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==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.6.4
|
// @version 1.14.6.5
|
||||||
// @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.6.4
|
// @version 1.14.6.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -198,7 +198,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.6.4',
|
VERSION: '1.14.6.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -20260,12 +20260,19 @@ ThreadWatcher = (function() {
|
|||||||
})) {
|
})) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
nKilled++;
|
|
||||||
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
||||||
db["delete"]({
|
db["delete"]({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
threadID: threadID
|
threadID: threadID
|
||||||
});
|
});
|
||||||
|
nKilled++;
|
||||||
|
} else if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||||
|
ThreadWatcher.fetchStatus({
|
||||||
|
siteID: siteID,
|
||||||
|
boardID: boardID,
|
||||||
|
threadID: threadID,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
db.extend({
|
db.extend({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
@ -20274,14 +20281,7 @@ ThreadWatcher = (function() {
|
|||||||
isDead: true
|
isDead: true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
nKilled++;
|
||||||
ThreadWatcher.fetchStatus({
|
|
||||||
siteID: siteID,
|
|
||||||
boardID: boardID,
|
|
||||||
threadID: threadID,
|
|
||||||
data: data
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (nKilled) {
|
if (nKilled) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.6.4
|
// @version 1.14.6.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -198,7 +198,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.6.4',
|
VERSION: '1.14.6.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -20260,12 +20260,19 @@ ThreadWatcher = (function() {
|
|||||||
})) {
|
})) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
nKilled++;
|
|
||||||
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
||||||
db["delete"]({
|
db["delete"]({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
threadID: threadID
|
threadID: threadID
|
||||||
});
|
});
|
||||||
|
nKilled++;
|
||||||
|
} else if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||||
|
ThreadWatcher.fetchStatus({
|
||||||
|
siteID: siteID,
|
||||||
|
boardID: boardID,
|
||||||
|
threadID: threadID,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
db.extend({
|
db.extend({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
@ -20274,14 +20281,7 @@ ThreadWatcher = (function() {
|
|||||||
isDead: true
|
isDead: true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
nKilled++;
|
||||||
ThreadWatcher.fetchStatus({
|
|
||||||
siteID: siteID,
|
|
||||||
boardID: boardID,
|
|
||||||
threadID: threadID,
|
|
||||||
data: data
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (nKilled) {
|
if (nKilled) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.6.4
|
// @version 1.14.6.5
|
||||||
// @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.6.4
|
// @version 1.14.6.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -198,7 +198,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.6.4',
|
VERSION: '1.14.6.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -20260,12 +20260,19 @@ ThreadWatcher = (function() {
|
|||||||
})) {
|
})) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
nKilled++;
|
|
||||||
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
if (Conf['Auto Prune'] || !(data && typeof data === 'object')) {
|
||||||
db["delete"]({
|
db["delete"]({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
threadID: threadID
|
threadID: threadID
|
||||||
});
|
});
|
||||||
|
nKilled++;
|
||||||
|
} else if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
||||||
|
ThreadWatcher.fetchStatus({
|
||||||
|
siteID: siteID,
|
||||||
|
boardID: boardID,
|
||||||
|
threadID: threadID,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
db.extend({
|
db.extend({
|
||||||
boardID: boardID,
|
boardID: boardID,
|
||||||
@ -20274,14 +20281,7 @@ ThreadWatcher = (function() {
|
|||||||
isDead: true
|
isDead: true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (ThreadWatcher.unreadEnabled && Conf['Show Unread Count']) {
|
nKilled++;
|
||||||
ThreadWatcher.fetchStatus({
|
|
||||||
siteID: siteID,
|
|
||||||
boardID: boardID,
|
|
||||||
threadID: threadID,
|
|
||||||
data: data
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (nKilled) {
|
if (nKilled) {
|
||||||
|
|||||||
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.6.4",
|
"version": "1.14.6.5",
|
||||||
"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.6.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.6.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.6.4",
|
"version": "1.14.6.5",
|
||||||
"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.6.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.6.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -86,7 +86,7 @@ $.whenModified = (url, bucket, cb, options={}) ->
|
|||||||
params = []
|
params = []
|
||||||
# XXX https://bugs.chromium.org/p/chromium/issues/detail?id=643659
|
# XXX https://bugs.chromium.org/p/chromium/issues/detail?id=643659
|
||||||
params.push "s=#{bucket}" if $.engine is 'blink'
|
params.push "s=#{bucket}" if $.engine is 'blink'
|
||||||
params.push "t=#{Date.now()}" if Site.software is 'yotsuba'
|
params.push "t=#{Date.now()}" if url.split('/')[2] is 'a.4cdn.org'
|
||||||
url0 = url
|
url0 = url
|
||||||
url += '?' + params.join('&') if params.length
|
url += '?' + params.join('&') if params.length
|
||||||
headers = {}
|
headers = {}
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.14.6.4",
|
"version": "1.14.6.5",
|
||||||
"date": "2019-04-02T13:16:33.368Z"
|
"date": "2019-04-04T23:55:26.319Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user