Release 4chan X v1.13.9.2.
This commit is contained in:
parent
5b96d32384
commit
c5bd9bc7df
@ -4,6 +4,14 @@
|
|||||||
|
|
||||||
### v1.13.9
|
### v1.13.9
|
||||||
|
|
||||||
|
**v1.13.9.2** *(2017-04-26)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.2/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Merge branch 'bstable'
|
||||||
|
- Release 4chan X v1.13.8.6.
|
||||||
|
- Update archive list.
|
||||||
|
- Workaround for issue starting in Firefox 53.
|
||||||
|
- Fix captcha cleanup. #1341
|
||||||
|
- Workaround for issue starting in Firefox 53.
|
||||||
|
|
||||||
**v1.13.9.1** *(2017-04-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.1/builds/4chan-X-noupdate.crx)]
|
**v1.13.9.1** *(2017-04-23)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.9.1/builds/4chan-X-noupdate.crx)]
|
||||||
- Fix captcha cleanup. #1341
|
- Fix captcha cleanup. #1341
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.9.1
|
// @version 1.13.9.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.9.1
|
// @version 1.13.9.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.9.1',
|
VERSION: '1.13.9.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -4935,8 +4935,30 @@ $ = (function() {
|
|||||||
|
|
||||||
$.syncing = {};
|
$.syncing = {};
|
||||||
|
|
||||||
|
$.currentValue = {};
|
||||||
|
|
||||||
|
$.GM_getValue = function(key) {
|
||||||
|
var err;
|
||||||
|
try {
|
||||||
|
return $.currentValue[key] = GM_getValue(key);
|
||||||
|
} catch (_error) {
|
||||||
|
err = _error;
|
||||||
|
return $.currentValue[key];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$.GM_setValue = function(key, val) {
|
||||||
|
$.currentValue[key] = val;
|
||||||
|
return GM_setValue(key, val);
|
||||||
|
};
|
||||||
|
|
||||||
|
$.GM_deleteValue = function(key) {
|
||||||
|
delete $.currentValue[key];
|
||||||
|
return GM_deleteValue(key);
|
||||||
|
};
|
||||||
|
|
||||||
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||||
$.getValue = GM_getValue;
|
$.getValue = $.GM_getValue;
|
||||||
$.listValues = function() {
|
$.listValues = function() {
|
||||||
return GM_listValues();
|
return GM_listValues();
|
||||||
};
|
};
|
||||||
@ -4962,12 +4984,12 @@ $ = (function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (typeof GM_addValueChangeListener !== "undefined" && GM_addValueChangeListener !== null) {
|
if (typeof GM_addValueChangeListener !== "undefined" && GM_addValueChangeListener !== null) {
|
||||||
$.setValue = GM_setValue;
|
$.setValue = $.GM_setValue;
|
||||||
$.deleteValue = GM_deleteValue;
|
$.deleteValue = $.GM_deleteValue;
|
||||||
} else if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
} else if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||||
$.oldValue = {};
|
$.oldValue = {};
|
||||||
$.setValue = function(key, val) {
|
$.setValue = function(key, val) {
|
||||||
GM_setValue(key, val);
|
$.GM_setValue(key, val);
|
||||||
if (key in $.syncing) {
|
if (key in $.syncing) {
|
||||||
$.oldValue[key] = val;
|
$.oldValue[key] = val;
|
||||||
if ($.hasStorage) {
|
if ($.hasStorage) {
|
||||||
@ -4976,7 +4998,7 @@ $ = (function() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
$.deleteValue = function(key) {
|
$.deleteValue = function(key) {
|
||||||
GM_deleteValue(key);
|
$.GM_deleteValue(key);
|
||||||
if (key in $.syncing) {
|
if (key in $.syncing) {
|
||||||
delete $.oldValue[key];
|
delete $.oldValue[key];
|
||||||
if ($.hasStorage) {
|
if ($.hasStorage) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.9.1
|
// @version 1.13.9.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.9.1',
|
VERSION: '1.13.9.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -4935,8 +4935,30 @@ $ = (function() {
|
|||||||
|
|
||||||
$.syncing = {};
|
$.syncing = {};
|
||||||
|
|
||||||
|
$.currentValue = {};
|
||||||
|
|
||||||
|
$.GM_getValue = function(key) {
|
||||||
|
var err;
|
||||||
|
try {
|
||||||
|
return $.currentValue[key] = GM_getValue(key);
|
||||||
|
} catch (_error) {
|
||||||
|
err = _error;
|
||||||
|
return $.currentValue[key];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$.GM_setValue = function(key, val) {
|
||||||
|
$.currentValue[key] = val;
|
||||||
|
return GM_setValue(key, val);
|
||||||
|
};
|
||||||
|
|
||||||
|
$.GM_deleteValue = function(key) {
|
||||||
|
delete $.currentValue[key];
|
||||||
|
return GM_deleteValue(key);
|
||||||
|
};
|
||||||
|
|
||||||
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||||
$.getValue = GM_getValue;
|
$.getValue = $.GM_getValue;
|
||||||
$.listValues = function() {
|
$.listValues = function() {
|
||||||
return GM_listValues();
|
return GM_listValues();
|
||||||
};
|
};
|
||||||
@ -4962,12 +4984,12 @@ $ = (function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (typeof GM_addValueChangeListener !== "undefined" && GM_addValueChangeListener !== null) {
|
if (typeof GM_addValueChangeListener !== "undefined" && GM_addValueChangeListener !== null) {
|
||||||
$.setValue = GM_setValue;
|
$.setValue = $.GM_setValue;
|
||||||
$.deleteValue = GM_deleteValue;
|
$.deleteValue = $.GM_deleteValue;
|
||||||
} else if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
} else if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||||
$.oldValue = {};
|
$.oldValue = {};
|
||||||
$.setValue = function(key, val) {
|
$.setValue = function(key, val) {
|
||||||
GM_setValue(key, val);
|
$.GM_setValue(key, val);
|
||||||
if (key in $.syncing) {
|
if (key in $.syncing) {
|
||||||
$.oldValue[key] = val;
|
$.oldValue[key] = val;
|
||||||
if ($.hasStorage) {
|
if ($.hasStorage) {
|
||||||
@ -4976,7 +4998,7 @@ $ = (function() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
$.deleteValue = function(key) {
|
$.deleteValue = function(key) {
|
||||||
GM_deleteValue(key);
|
$.GM_deleteValue(key);
|
||||||
if (key in $.syncing) {
|
if (key in $.syncing) {
|
||||||
delete $.oldValue[key];
|
delete $.oldValue[key];
|
||||||
if ($.hasStorage) {
|
if ($.hasStorage) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.9.1
|
// @version 1.13.9.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.9.1
|
// @version 1.13.9.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.9.1',
|
VERSION: '1.13.9.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -4935,8 +4935,30 @@ $ = (function() {
|
|||||||
|
|
||||||
$.syncing = {};
|
$.syncing = {};
|
||||||
|
|
||||||
|
$.currentValue = {};
|
||||||
|
|
||||||
|
$.GM_getValue = function(key) {
|
||||||
|
var err;
|
||||||
|
try {
|
||||||
|
return $.currentValue[key] = GM_getValue(key);
|
||||||
|
} catch (_error) {
|
||||||
|
err = _error;
|
||||||
|
return $.currentValue[key];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$.GM_setValue = function(key, val) {
|
||||||
|
$.currentValue[key] = val;
|
||||||
|
return GM_setValue(key, val);
|
||||||
|
};
|
||||||
|
|
||||||
|
$.GM_deleteValue = function(key) {
|
||||||
|
delete $.currentValue[key];
|
||||||
|
return GM_deleteValue(key);
|
||||||
|
};
|
||||||
|
|
||||||
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||||
$.getValue = GM_getValue;
|
$.getValue = $.GM_getValue;
|
||||||
$.listValues = function() {
|
$.listValues = function() {
|
||||||
return GM_listValues();
|
return GM_listValues();
|
||||||
};
|
};
|
||||||
@ -4962,12 +4984,12 @@ $ = (function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (typeof GM_addValueChangeListener !== "undefined" && GM_addValueChangeListener !== null) {
|
if (typeof GM_addValueChangeListener !== "undefined" && GM_addValueChangeListener !== null) {
|
||||||
$.setValue = GM_setValue;
|
$.setValue = $.GM_setValue;
|
||||||
$.deleteValue = GM_deleteValue;
|
$.deleteValue = $.GM_deleteValue;
|
||||||
} else if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
} else if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||||
$.oldValue = {};
|
$.oldValue = {};
|
||||||
$.setValue = function(key, val) {
|
$.setValue = function(key, val) {
|
||||||
GM_setValue(key, val);
|
$.GM_setValue(key, val);
|
||||||
if (key in $.syncing) {
|
if (key in $.syncing) {
|
||||||
$.oldValue[key] = val;
|
$.oldValue[key] = val;
|
||||||
if ($.hasStorage) {
|
if ($.hasStorage) {
|
||||||
@ -4976,7 +4998,7 @@ $ = (function() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
$.deleteValue = function(key) {
|
$.deleteValue = function(key) {
|
||||||
GM_deleteValue(key);
|
$.GM_deleteValue(key);
|
||||||
if (key in $.syncing) {
|
if (key in $.syncing) {
|
||||||
delete $.oldValue[key];
|
delete $.oldValue[key];
|
||||||
if ($.hasStorage) {
|
if ($.hasStorage) {
|
||||||
|
|||||||
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.9.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.9.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.9.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.9.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.9.1",
|
"version": "1.13.9.2",
|
||||||
"date": "2017-04-23T01:03:49.649Z"
|
"date": "2017-04-26T06:43:39.561Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user