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.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")]
|
||||
- Based on v1.11.22.4.
|
||||
- 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==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.23.0
|
||||
// @version 1.11.23.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.23.0
|
||||
// @version 1.11.23.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -434,7 +434,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.23.0',
|
||||
VERSION: '1.11.23.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -8663,7 +8663,32 @@
|
||||
return $.add(this.nodes.container, [iframe, div]);
|
||||
},
|
||||
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) {
|
||||
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
||||
@ -8819,7 +8844,11 @@
|
||||
this.destroy();
|
||||
return this.setup(false, true);
|
||||
} 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
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.23.0
|
||||
// @version 1.11.23.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -434,7 +434,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.23.0',
|
||||
VERSION: '1.11.23.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -8663,7 +8663,32 @@
|
||||
return $.add(this.nodes.container, [iframe, div]);
|
||||
},
|
||||
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) {
|
||||
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
||||
@ -8819,7 +8844,11 @@
|
||||
this.destroy();
|
||||
return this.setup(false, true);
|
||||
} 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==
|
||||
// @name 4chan X
|
||||
// @version 1.11.23.0
|
||||
// @version 1.11.23.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.23.0
|
||||
// @version 1.11.23.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -434,7 +434,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.23.0',
|
||||
VERSION: '1.11.23.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -8663,7 +8663,32 @@
|
||||
return $.add(this.nodes.container, [iframe, div]);
|
||||
},
|
||||
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) {
|
||||
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
|
||||
@ -8819,7 +8844,11 @@
|
||||
this.destroy();
|
||||
return this.setup(false, true);
|
||||
} 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'?>
|
||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||
<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>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||
<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>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.23.0",
|
||||
"date": "2016-01-25T04:51:14.827Z"
|
||||
"version": "1.11.23.1",
|
||||
"date": "2016-01-26T03:52:46.717Z"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user