Release 4chan X v1.13.10.6.
This commit is contained in:
parent
f18388c20a
commit
9b9599ab7e
@ -4,6 +4,9 @@
|
||||
|
||||
### v1.13.10
|
||||
|
||||
**v1.13.10.6** *(2017-08-10)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.6/builds/4chan-X-noupdate.crx)]
|
||||
- Disable 'Redirect to HTTPS' on platforms where we use localStorage for saving settings.
|
||||
|
||||
**v1.13.10.5** *(2017-08-04)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.5/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.10.5/builds/4chan-X-noupdate.crx)]
|
||||
- Better parsing of archive links for Quote Inlining / Hover.
|
||||
- Add Board Tips.
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.10.5
|
||||
// @version 1.13.10.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.10.5
|
||||
// @version 1.13.10.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.10.5',
|
||||
VERSION: '1.13.10.6',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4983,6 +4983,10 @@ $ = (function() {
|
||||
return GM_deleteValue(key);
|
||||
};
|
||||
|
||||
if (typeof GM_deleteValue === "undefined" || GM_deleteValue === null) {
|
||||
$.perProtocolSettings = true;
|
||||
}
|
||||
|
||||
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||
$.getValue = $.GM_getValue;
|
||||
$.listValues = function() {
|
||||
@ -11008,6 +11012,9 @@ Settings = (function() {
|
||||
if ($.engine !== 'gecko') {
|
||||
$('div[data-name="Remember QR Size"]', section).hidden = true;
|
||||
}
|
||||
if ($.perProtocolSettings) {
|
||||
$('div[data-name="Redirect to HTTPS"]', section).hidden = true;
|
||||
}
|
||||
$.get(items, function(items) {
|
||||
var val;
|
||||
for (key in items) {
|
||||
@ -24506,7 +24513,7 @@ Main = (function() {
|
||||
items['previousversion'] = void 0;
|
||||
return ($.getSync || $.get)(items, function(items) {
|
||||
var ref1;
|
||||
if (((ref1 = items['Redirect to HTTPS']) != null ? ref1 : Conf['Redirect to HTTPS']) && location.protocol !== 'https:') {
|
||||
if (!$.perProtocolSettings && ((ref1 = items['Redirect to HTTPS']) != null ? ref1 : Conf['Redirect to HTTPS']) && location.protocol !== 'https:') {
|
||||
location.replace('https:' + location.host + location.pathname + location.search + location.hash);
|
||||
return;
|
||||
}
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.10.5
|
||||
// @version 1.13.10.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.10.5',
|
||||
VERSION: '1.13.10.6',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4983,6 +4983,10 @@ $ = (function() {
|
||||
return GM_deleteValue(key);
|
||||
};
|
||||
|
||||
if (typeof GM_deleteValue === "undefined" || GM_deleteValue === null) {
|
||||
$.perProtocolSettings = true;
|
||||
}
|
||||
|
||||
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||
$.getValue = $.GM_getValue;
|
||||
$.listValues = function() {
|
||||
@ -11008,6 +11012,9 @@ Settings = (function() {
|
||||
if ($.engine !== 'gecko') {
|
||||
$('div[data-name="Remember QR Size"]', section).hidden = true;
|
||||
}
|
||||
if ($.perProtocolSettings) {
|
||||
$('div[data-name="Redirect to HTTPS"]', section).hidden = true;
|
||||
}
|
||||
$.get(items, function(items) {
|
||||
var val;
|
||||
for (key in items) {
|
||||
@ -24506,7 +24513,7 @@ Main = (function() {
|
||||
items['previousversion'] = void 0;
|
||||
return ($.getSync || $.get)(items, function(items) {
|
||||
var ref1;
|
||||
if (((ref1 = items['Redirect to HTTPS']) != null ? ref1 : Conf['Redirect to HTTPS']) && location.protocol !== 'https:') {
|
||||
if (!$.perProtocolSettings && ((ref1 = items['Redirect to HTTPS']) != null ? ref1 : Conf['Redirect to HTTPS']) && location.protocol !== 'https:') {
|
||||
location.replace('https:' + location.host + location.pathname + location.search + location.hash);
|
||||
return;
|
||||
}
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.10.5
|
||||
// @version 1.13.10.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.10.5
|
||||
// @version 1.13.10.6
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -153,7 +153,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.10.5',
|
||||
VERSION: '1.13.10.6',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4983,6 +4983,10 @@ $ = (function() {
|
||||
return GM_deleteValue(key);
|
||||
};
|
||||
|
||||
if (typeof GM_deleteValue === "undefined" || GM_deleteValue === null) {
|
||||
$.perProtocolSettings = true;
|
||||
}
|
||||
|
||||
if (typeof GM_deleteValue !== "undefined" && GM_deleteValue !== null) {
|
||||
$.getValue = $.GM_getValue;
|
||||
$.listValues = function() {
|
||||
@ -11008,6 +11012,9 @@ Settings = (function() {
|
||||
if ($.engine !== 'gecko') {
|
||||
$('div[data-name="Remember QR Size"]', section).hidden = true;
|
||||
}
|
||||
if ($.perProtocolSettings) {
|
||||
$('div[data-name="Redirect to HTTPS"]', section).hidden = true;
|
||||
}
|
||||
$.get(items, function(items) {
|
||||
var val;
|
||||
for (key in items) {
|
||||
@ -24506,7 +24513,7 @@ Main = (function() {
|
||||
items['previousversion'] = void 0;
|
||||
return ($.getSync || $.get)(items, function(items) {
|
||||
var ref1;
|
||||
if (((ref1 = items['Redirect to HTTPS']) != null ? ref1 : Conf['Redirect to HTTPS']) && location.protocol !== 'https:') {
|
||||
if (!$.perProtocolSettings && ((ref1 = items['Redirect to HTTPS']) != null ? ref1 : Conf['Redirect to HTTPS']) && location.protocol !== 'https:') {
|
||||
location.replace('https:' + location.host + location.pathname + location.search + location.hash);
|
||||
return;
|
||||
}
|
||||
|
||||
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.13.10.5' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.10.6' />
|
||||
</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.13.10.5' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.10.6' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.10.5",
|
||||
"date": "2017-08-04T04:26:25.809Z"
|
||||
"version": "1.13.10.6",
|
||||
"date": "2017-08-10T13:38:49.065Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user