Release 4chan X v1.13.14.7.
This commit is contained in:
parent
e6e0cb01cd
commit
f39358b803
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.13.14
|
### v1.13.14
|
||||||
|
|
||||||
|
**v1.13.14.7** *(2017-11-15)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.7/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.7/builds/4chan-X-noupdate.crx)]
|
||||||
|
- More Greasemonkey 4 related fixes.
|
||||||
|
|
||||||
**v1.13.14.6** *(2017-11-05)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.6/builds/4chan-X-noupdate.crx)]
|
**v1.13.14.6** *(2017-11-05)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.14.6/builds/4chan-X-noupdate.crx)]
|
||||||
- Turn 'Force Noscript Captcha for v1' off by default in GM4 due to missing frame support.
|
- Turn 'Force Noscript Captcha for v1' off by default in GM4 due to missing frame support.
|
||||||
- Fix bugs related to 4chan's ads.
|
- Fix bugs related to 4chan's ads.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.14.6
|
// @version 1.13.14.7
|
||||||
// @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.14.6
|
// @version 1.13.14.7
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -159,7 +159,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.14.6',
|
VERSION: '1.13.14.7',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -4491,10 +4491,15 @@ $ = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
$.ajax = (function() {
|
$.ajax = (function() {
|
||||||
var lastModified;
|
var lastModified, pageXHR;
|
||||||
lastModified = {};
|
lastModified = {};
|
||||||
|
if (window.wrappedJSObject && !XMLHttpRequest.wrappedJSObject) {
|
||||||
|
pageXHR = XPCNativeWrapper(window.wrappedJSObject.XMLHttpRequest);
|
||||||
|
} else {
|
||||||
|
pageXHR = XMLHttpRequest;
|
||||||
|
}
|
||||||
return function(url, options, extra) {
|
return function(url, options, extra) {
|
||||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified, xhr;
|
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified;
|
||||||
if (options == null) {
|
if (options == null) {
|
||||||
options = {};
|
options = {};
|
||||||
}
|
}
|
||||||
@ -4511,8 +4516,7 @@ $ = (function() {
|
|||||||
if ($.engine === 'blink' && whenModified) {
|
if ($.engine === 'blink' && whenModified) {
|
||||||
url += "?s=" + whenModified;
|
url += "?s=" + whenModified;
|
||||||
}
|
}
|
||||||
xhr = XMLHttpRequest;
|
r = new pageXHR();
|
||||||
r = new xhr();
|
|
||||||
type || (type = form && 'post' || 'get');
|
type || (type = form && 'post' || 'get');
|
||||||
try {
|
try {
|
||||||
r.open(type, url, true);
|
r.open(type, url, true);
|
||||||
@ -24676,7 +24680,21 @@ Main = (function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
return $.asap(docSet, function() {
|
return $.asap(docSet, function() {
|
||||||
var ref3, val;
|
var changes, ref3, val, val2;
|
||||||
|
if (typeof items.watchedThreads === 'string') {
|
||||||
|
changes = {};
|
||||||
|
for (key in items) {
|
||||||
|
val = items[key];
|
||||||
|
if (typeof val === 'string') {
|
||||||
|
try {
|
||||||
|
val2 = JSON.parse(val);
|
||||||
|
changes[key] = val2;
|
||||||
|
} catch (_error) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$.extend(items, changes);
|
||||||
|
$.set(changes);
|
||||||
|
}
|
||||||
if ($.cantSet) {
|
if ($.cantSet) {
|
||||||
|
|
||||||
} else if (items.previousversion == null) {
|
} else if (items.previousversion == null) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.14.6
|
// @version 1.13.14.7
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -159,7 +159,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.14.6',
|
VERSION: '1.13.14.7',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -4491,10 +4491,15 @@ $ = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
$.ajax = (function() {
|
$.ajax = (function() {
|
||||||
var lastModified;
|
var lastModified, pageXHR;
|
||||||
lastModified = {};
|
lastModified = {};
|
||||||
|
if (window.wrappedJSObject && !XMLHttpRequest.wrappedJSObject) {
|
||||||
|
pageXHR = XPCNativeWrapper(window.wrappedJSObject.XMLHttpRequest);
|
||||||
|
} else {
|
||||||
|
pageXHR = XMLHttpRequest;
|
||||||
|
}
|
||||||
return function(url, options, extra) {
|
return function(url, options, extra) {
|
||||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified, xhr;
|
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified;
|
||||||
if (options == null) {
|
if (options == null) {
|
||||||
options = {};
|
options = {};
|
||||||
}
|
}
|
||||||
@ -4511,8 +4516,7 @@ $ = (function() {
|
|||||||
if ($.engine === 'blink' && whenModified) {
|
if ($.engine === 'blink' && whenModified) {
|
||||||
url += "?s=" + whenModified;
|
url += "?s=" + whenModified;
|
||||||
}
|
}
|
||||||
xhr = XMLHttpRequest;
|
r = new pageXHR();
|
||||||
r = new xhr();
|
|
||||||
type || (type = form && 'post' || 'get');
|
type || (type = form && 'post' || 'get');
|
||||||
try {
|
try {
|
||||||
r.open(type, url, true);
|
r.open(type, url, true);
|
||||||
@ -24676,7 +24680,21 @@ Main = (function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
return $.asap(docSet, function() {
|
return $.asap(docSet, function() {
|
||||||
var ref3, val;
|
var changes, ref3, val, val2;
|
||||||
|
if (typeof items.watchedThreads === 'string') {
|
||||||
|
changes = {};
|
||||||
|
for (key in items) {
|
||||||
|
val = items[key];
|
||||||
|
if (typeof val === 'string') {
|
||||||
|
try {
|
||||||
|
val2 = JSON.parse(val);
|
||||||
|
changes[key] = val2;
|
||||||
|
} catch (_error) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$.extend(items, changes);
|
||||||
|
$.set(changes);
|
||||||
|
}
|
||||||
if ($.cantSet) {
|
if ($.cantSet) {
|
||||||
|
|
||||||
} else if (items.previousversion == null) {
|
} else if (items.previousversion == null) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.14.6
|
// @version 1.13.14.7
|
||||||
// @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.14.6
|
// @version 1.13.14.7
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -159,7 +159,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.14.6',
|
VERSION: '1.13.14.7',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -4491,10 +4491,15 @@ $ = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
$.ajax = (function() {
|
$.ajax = (function() {
|
||||||
var lastModified;
|
var lastModified, pageXHR;
|
||||||
lastModified = {};
|
lastModified = {};
|
||||||
|
if (window.wrappedJSObject && !XMLHttpRequest.wrappedJSObject) {
|
||||||
|
pageXHR = XPCNativeWrapper(window.wrappedJSObject.XMLHttpRequest);
|
||||||
|
} else {
|
||||||
|
pageXHR = XMLHttpRequest;
|
||||||
|
}
|
||||||
return function(url, options, extra) {
|
return function(url, options, extra) {
|
||||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified, xhr;
|
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified;
|
||||||
if (options == null) {
|
if (options == null) {
|
||||||
options = {};
|
options = {};
|
||||||
}
|
}
|
||||||
@ -4511,8 +4516,7 @@ $ = (function() {
|
|||||||
if ($.engine === 'blink' && whenModified) {
|
if ($.engine === 'blink' && whenModified) {
|
||||||
url += "?s=" + whenModified;
|
url += "?s=" + whenModified;
|
||||||
}
|
}
|
||||||
xhr = XMLHttpRequest;
|
r = new pageXHR();
|
||||||
r = new xhr();
|
|
||||||
type || (type = form && 'post' || 'get');
|
type || (type = form && 'post' || 'get');
|
||||||
try {
|
try {
|
||||||
r.open(type, url, true);
|
r.open(type, url, true);
|
||||||
@ -24676,7 +24680,21 @@ Main = (function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
return $.asap(docSet, function() {
|
return $.asap(docSet, function() {
|
||||||
var ref3, val;
|
var changes, ref3, val, val2;
|
||||||
|
if (typeof items.watchedThreads === 'string') {
|
||||||
|
changes = {};
|
||||||
|
for (key in items) {
|
||||||
|
val = items[key];
|
||||||
|
if (typeof val === 'string') {
|
||||||
|
try {
|
||||||
|
val2 = JSON.parse(val);
|
||||||
|
changes[key] = val2;
|
||||||
|
} catch (_error) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$.extend(items, changes);
|
||||||
|
$.set(changes);
|
||||||
|
}
|
||||||
if ($.cantSet) {
|
if ($.cantSet) {
|
||||||
|
|
||||||
} else if (items.previousversion == null) {
|
} else if (items.previousversion == null) {
|
||||||
|
|||||||
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.13.14.6",
|
"version": "1.13.14.7",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.14.6' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.14.7' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.13.14.6",
|
"version": "1.13.14.7",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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.14.6' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.14.7' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.14.6",
|
"version": "1.13.14.7",
|
||||||
"date": "2017-11-05T01:38:05.709Z"
|
"date": "2017-11-15T09:14:52.788Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user