Release 4chan X v1.13.10.2.
This commit is contained in:
parent
361760f147
commit
22d812e718
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.13.10
|
### v1.13.10
|
||||||
|
|
||||||
|
**v1.13.10.2** *(2017-07-20)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.2/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Add an API for adding captchas to 4chan X's cache (`SaveCaptcha` event).
|
||||||
|
|
||||||
**v1.13.10.1** *(2017-07-16)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.1/builds/4chan-X-noupdate.crx)]
|
**v1.13.10.1** *(2017-07-16)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.1/builds/4chan-X-noupdate.crx)]
|
||||||
- Add `Redirect to HTTPS` setting and turn it on by default. #885
|
- Add `Redirect to HTTPS` setting and turn it on by default. #885
|
||||||
- Turn `Force Noscript Captcha for v1` on by default.
|
- Turn `Force Noscript Captcha for v1` on by default.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.10.1
|
// @version 1.13.10.2
|
||||||
// @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.10.1
|
// @version 1.13.10.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -153,7 +153,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.10.1',
|
VERSION: '1.13.10.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -19923,7 +19923,12 @@ Captcha = {};
|
|||||||
return _this.clear();
|
return _this.clear();
|
||||||
};
|
};
|
||||||
})(this));
|
})(this));
|
||||||
return $.sync('captchas', this.sync.bind(this));
|
$.sync('captchas', this.sync.bind(this));
|
||||||
|
return $.on(d, 'SaveCaptcha', (function(_this) {
|
||||||
|
return function(e) {
|
||||||
|
return _this.save(e.detail);
|
||||||
|
};
|
||||||
|
})(this));
|
||||||
},
|
},
|
||||||
captchas: [],
|
captchas: [],
|
||||||
getCount: function() {
|
getCount: function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.10.1
|
// @version 1.13.10.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -153,7 +153,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.10.1',
|
VERSION: '1.13.10.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -19923,7 +19923,12 @@ Captcha = {};
|
|||||||
return _this.clear();
|
return _this.clear();
|
||||||
};
|
};
|
||||||
})(this));
|
})(this));
|
||||||
return $.sync('captchas', this.sync.bind(this));
|
$.sync('captchas', this.sync.bind(this));
|
||||||
|
return $.on(d, 'SaveCaptcha', (function(_this) {
|
||||||
|
return function(e) {
|
||||||
|
return _this.save(e.detail);
|
||||||
|
};
|
||||||
|
})(this));
|
||||||
},
|
},
|
||||||
captchas: [],
|
captchas: [],
|
||||||
getCount: function() {
|
getCount: function() {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.10.1
|
// @version 1.13.10.2
|
||||||
// @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.10.1
|
// @version 1.13.10.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -153,7 +153,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.10.1',
|
VERSION: '1.13.10.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -19923,7 +19923,12 @@ Captcha = {};
|
|||||||
return _this.clear();
|
return _this.clear();
|
||||||
};
|
};
|
||||||
})(this));
|
})(this));
|
||||||
return $.sync('captchas', this.sync.bind(this));
|
$.sync('captchas', this.sync.bind(this));
|
||||||
|
return $.on(d, 'SaveCaptcha', (function(_this) {
|
||||||
|
return function(e) {
|
||||||
|
return _this.save(e.detail);
|
||||||
|
};
|
||||||
|
})(this));
|
||||||
},
|
},
|
||||||
captchas: [],
|
captchas: [],
|
||||||
getCount: function() {
|
getCount: function() {
|
||||||
|
|||||||
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.10.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.10.2' />
|
||||||
</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.10.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.10.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.10.1",
|
"version": "1.13.10.2",
|
||||||
"date": "2017-07-16T08:25:52.986Z"
|
"date": "2017-07-20T17:47:35.642Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user