Release 4chan X v1.11.23.1.
This commit is contained in:
parent
1dfa1df3b0
commit
4530c5a869
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.23
|
### v1.11.23
|
||||||
|
|
||||||
|
**v1.11.23.1** *(2016-01-25)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.23.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.23.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Show dark theme captcha in the Quick Reply if the document has the class `dark-captcha`.
|
||||||
|
|
||||||
**v1.11.23.0** *(2016-01-24)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.23.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.23.0/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.23.0** *(2016-01-24)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.23.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.23.0/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Based on v1.11.22.4.
|
- Based on v1.11.22.4.
|
||||||
- Show warnings when running multiple copies of 4chan X or the page doesn't load completely.
|
- Show warnings when running multiple copies of 4chan X or the page doesn't load completely.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.23.0
|
// @version 1.11.23.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.23.0
|
// @version 1.11.23.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -434,7 +434,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.23.0',
|
VERSION: '1.11.23.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -8663,7 +8663,32 @@
|
|||||||
return $.add(this.nodes.container, [iframe, div]);
|
return $.add(this.nodes.container, [iframe, div]);
|
||||||
},
|
},
|
||||||
setupJS: function() {
|
setupJS: function() {
|
||||||
return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: document.documentElement.classList.contains(\'tomorrow\') ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
|
return $.global(function() {
|
||||||
|
var cbNative, render;
|
||||||
|
render = function() {
|
||||||
|
var classList, container;
|
||||||
|
classList = document.documentElement.classList;
|
||||||
|
container = document.querySelector('#qr .captcha-container');
|
||||||
|
return container.dataset.widgetID = window.grecaptcha.render(container, {
|
||||||
|
sitekey: '6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc',
|
||||||
|
theme: classList.contains('tomorrow') || classList.contains('dark-captcha') ? 'dark' : 'light',
|
||||||
|
callback: function(response) {
|
||||||
|
return window.dispatchEvent(new CustomEvent('captcha:success', {
|
||||||
|
detail: response
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
if (window.grecaptcha) {
|
||||||
|
return render();
|
||||||
|
} else {
|
||||||
|
cbNative = window.onRecaptchaLoaded;
|
||||||
|
return window.onRecaptchaLoaded = function() {
|
||||||
|
render();
|
||||||
|
return cbNative();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
afterSetup: function(mutations) {
|
afterSetup: function(mutations) {
|
||||||
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
||||||
@ -8819,7 +8844,11 @@
|
|||||||
this.destroy();
|
this.destroy();
|
||||||
return this.setup(false, true);
|
return this.setup(false, true);
|
||||||
} else {
|
} else {
|
||||||
return $.globalEval('(function() {\n var container = document.querySelector("#qr .captcha-container");\n window.grecaptcha.reset(container.dataset.widgetID);\n})();');
|
return $.global(function() {
|
||||||
|
var container;
|
||||||
|
container = document.querySelector('#qr .captcha-container');
|
||||||
|
return window.grecaptcha.reset(container.dataset.widgetID);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.23.0
|
// @version 1.11.23.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -434,7 +434,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.23.0',
|
VERSION: '1.11.23.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -8663,7 +8663,32 @@
|
|||||||
return $.add(this.nodes.container, [iframe, div]);
|
return $.add(this.nodes.container, [iframe, div]);
|
||||||
},
|
},
|
||||||
setupJS: function() {
|
setupJS: function() {
|
||||||
return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: document.documentElement.classList.contains(\'tomorrow\') ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
|
return $.global(function() {
|
||||||
|
var cbNative, render;
|
||||||
|
render = function() {
|
||||||
|
var classList, container;
|
||||||
|
classList = document.documentElement.classList;
|
||||||
|
container = document.querySelector('#qr .captcha-container');
|
||||||
|
return container.dataset.widgetID = window.grecaptcha.render(container, {
|
||||||
|
sitekey: '6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc',
|
||||||
|
theme: classList.contains('tomorrow') || classList.contains('dark-captcha') ? 'dark' : 'light',
|
||||||
|
callback: function(response) {
|
||||||
|
return window.dispatchEvent(new CustomEvent('captcha:success', {
|
||||||
|
detail: response
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
if (window.grecaptcha) {
|
||||||
|
return render();
|
||||||
|
} else {
|
||||||
|
cbNative = window.onRecaptchaLoaded;
|
||||||
|
return window.onRecaptchaLoaded = function() {
|
||||||
|
render();
|
||||||
|
return cbNative();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
afterSetup: function(mutations) {
|
afterSetup: function(mutations) {
|
||||||
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
||||||
@ -8819,7 +8844,11 @@
|
|||||||
this.destroy();
|
this.destroy();
|
||||||
return this.setup(false, true);
|
return this.setup(false, true);
|
||||||
} else {
|
} else {
|
||||||
return $.globalEval('(function() {\n var container = document.querySelector("#qr .captcha-container");\n window.grecaptcha.reset(container.dataset.widgetID);\n})();');
|
return $.global(function() {
|
||||||
|
var container;
|
||||||
|
container = document.querySelector('#qr .captcha-container');
|
||||||
|
return window.grecaptcha.reset(container.dataset.widgetID);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.23.0
|
// @version 1.11.23.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.23.0
|
// @version 1.11.23.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -434,7 +434,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.23.0',
|
VERSION: '1.11.23.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -8663,7 +8663,32 @@
|
|||||||
return $.add(this.nodes.container, [iframe, div]);
|
return $.add(this.nodes.container, [iframe, div]);
|
||||||
},
|
},
|
||||||
setupJS: function() {
|
setupJS: function() {
|
||||||
return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: document.documentElement.classList.contains(\'tomorrow\') ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
|
return $.global(function() {
|
||||||
|
var cbNative, render;
|
||||||
|
render = function() {
|
||||||
|
var classList, container;
|
||||||
|
classList = document.documentElement.classList;
|
||||||
|
container = document.querySelector('#qr .captcha-container');
|
||||||
|
return container.dataset.widgetID = window.grecaptcha.render(container, {
|
||||||
|
sitekey: '6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc',
|
||||||
|
theme: classList.contains('tomorrow') || classList.contains('dark-captcha') ? 'dark' : 'light',
|
||||||
|
callback: function(response) {
|
||||||
|
return window.dispatchEvent(new CustomEvent('captcha:success', {
|
||||||
|
detail: response
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
if (window.grecaptcha) {
|
||||||
|
return render();
|
||||||
|
} else {
|
||||||
|
cbNative = window.onRecaptchaLoaded;
|
||||||
|
return window.onRecaptchaLoaded = function() {
|
||||||
|
render();
|
||||||
|
return cbNative();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
afterSetup: function(mutations) {
|
afterSetup: function(mutations) {
|
||||||
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
||||||
@ -8819,7 +8844,11 @@
|
|||||||
this.destroy();
|
this.destroy();
|
||||||
return this.setup(false, true);
|
return this.setup(false, true);
|
||||||
} else {
|
} else {
|
||||||
return $.globalEval('(function() {\n var container = document.querySelector("#qr .captcha-container");\n window.grecaptcha.reset(container.dataset.widgetID);\n})();');
|
return $.global(function() {
|
||||||
|
var container;
|
||||||
|
container = document.querySelector('#qr .captcha-container');
|
||||||
|
return window.grecaptcha.reset(container.dataset.widgetID);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
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.11.23.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.23.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.11.23.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.23.1' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.23.0",
|
"version": "1.11.23.1",
|
||||||
"date": "2016-01-25T04:51:14.827Z"
|
"date": "2016-01-26T03:52:46.717Z"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user