Release 4chan X v1.13.12.1.
This commit is contained in:
parent
7e88c2056a
commit
83e1b610ad
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.13.12
|
### v1.13.12
|
||||||
|
|
||||||
|
**v1.13.12.1** *(2017-09-29)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.12.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.12.1/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Merge v1.13.11.5: Fix lag after settings changes.
|
||||||
|
|
||||||
**v1.13.12.0** *(2017-09-28)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.12.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.12.0/builds/4chan-X-noupdate.crx)]
|
**v1.13.12.0** *(2017-09-28)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.12.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.12.0/builds/4chan-X-noupdate.crx)]
|
||||||
- Based on v1.13.11.4.
|
- Based on v1.13.11.4.
|
||||||
- Preliminary support for Greasemonkey 4.
|
- Preliminary support for Greasemonkey 4.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.12.0
|
// @version 1.13.12.1
|
||||||
// @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.13.12.0
|
// @version 1.13.12.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -158,7 +158,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.12.0',
|
VERSION: '1.13.12.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5231,12 +5231,14 @@ $ = (function() {
|
|||||||
return cb(items);
|
return cb(items);
|
||||||
};
|
};
|
||||||
$.set = $.oneItemSugar(function(items, cb) {
|
$.set = $.oneItemSugar(function(items, cb) {
|
||||||
var key, value;
|
return $.queueTask(function() {
|
||||||
for (key in items) {
|
var key, value;
|
||||||
value = items[key];
|
for (key in items) {
|
||||||
$.setValue(g.NAMESPACE + key, JSON.stringify(value));
|
value = items[key];
|
||||||
}
|
$.setValue(g.NAMESPACE + key, JSON.stringify(value));
|
||||||
return typeof cb === "function" ? cb() : void 0;
|
}
|
||||||
|
return typeof cb === "function" ? cb() : void 0;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
$.clear = function(cb) {
|
$.clear = function(cb) {
|
||||||
$["delete"](Object.keys(Conf));
|
$["delete"](Object.keys(Conf));
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.12.0
|
// @version 1.13.12.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -158,7 +158,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.12.0',
|
VERSION: '1.13.12.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5231,12 +5231,14 @@ $ = (function() {
|
|||||||
return cb(items);
|
return cb(items);
|
||||||
};
|
};
|
||||||
$.set = $.oneItemSugar(function(items, cb) {
|
$.set = $.oneItemSugar(function(items, cb) {
|
||||||
var key, value;
|
return $.queueTask(function() {
|
||||||
for (key in items) {
|
var key, value;
|
||||||
value = items[key];
|
for (key in items) {
|
||||||
$.setValue(g.NAMESPACE + key, JSON.stringify(value));
|
value = items[key];
|
||||||
}
|
$.setValue(g.NAMESPACE + key, JSON.stringify(value));
|
||||||
return typeof cb === "function" ? cb() : void 0;
|
}
|
||||||
|
return typeof cb === "function" ? cb() : void 0;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
$.clear = function(cb) {
|
$.clear = function(cb) {
|
||||||
$["delete"](Object.keys(Conf));
|
$["delete"](Object.keys(Conf));
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.12.0
|
// @version 1.13.12.1
|
||||||
// @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.13.12.0
|
// @version 1.13.12.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -158,7 +158,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.12.0',
|
VERSION: '1.13.12.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5231,12 +5231,14 @@ $ = (function() {
|
|||||||
return cb(items);
|
return cb(items);
|
||||||
};
|
};
|
||||||
$.set = $.oneItemSugar(function(items, cb) {
|
$.set = $.oneItemSugar(function(items, cb) {
|
||||||
var key, value;
|
return $.queueTask(function() {
|
||||||
for (key in items) {
|
var key, value;
|
||||||
value = items[key];
|
for (key in items) {
|
||||||
$.setValue(g.NAMESPACE + key, JSON.stringify(value));
|
value = items[key];
|
||||||
}
|
$.setValue(g.NAMESPACE + key, JSON.stringify(value));
|
||||||
return typeof cb === "function" ? cb() : void 0;
|
}
|
||||||
|
return typeof cb === "function" ? cb() : void 0;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
$.clear = function(cb) {
|
$.clear = function(cb) {
|
||||||
$["delete"](Object.keys(Conf));
|
$["delete"](Object.keys(Conf));
|
||||||
|
|||||||
Binary file not shown.
@ -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.13.12.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.12.1' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -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.13.12.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.12.1' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.12.0",
|
"version": "1.13.12.1",
|
||||||
"date": "2017-09-28T21:33:37.956Z"
|
"date": "2017-09-29T00:42:32.947Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user