Release 4chan X v1.13.14.7.

This commit is contained in:
ccd0 2017-11-15 01:19:56 -08:00
parent e6e0cb01cd
commit f39358b803
15 changed files with 86 additions and 29 deletions

View File

@ -4,6 +4,9 @@
### 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)]
- Turn 'Force Noscript Captcha for v1' off by default in GM4 due to missing frame support.
- Fix bugs related to 4chan's ads.

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.13.14.6
// @version 1.13.14.7
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.13.14.6
// @version 1.13.14.7
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -159,7 +159,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.14.6',
VERSION: '1.13.14.7',
NAMESPACE: '4chan X.',
boards: {}
};
@ -4491,10 +4491,15 @@ $ = (function() {
};
$.ajax = (function() {
var lastModified;
var lastModified, pageXHR;
lastModified = {};
if (window.wrappedJSObject && !XMLHttpRequest.wrappedJSObject) {
pageXHR = XPCNativeWrapper(window.wrappedJSObject.XMLHttpRequest);
} else {
pageXHR = XMLHttpRequest;
}
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) {
options = {};
}
@ -4511,8 +4516,7 @@ $ = (function() {
if ($.engine === 'blink' && whenModified) {
url += "?s=" + whenModified;
}
xhr = XMLHttpRequest;
r = new xhr();
r = new pageXHR();
type || (type = form && 'post' || 'get');
try {
r.open(type, url, true);
@ -24676,7 +24680,21 @@ Main = (function() {
return;
}
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) {
} else if (items.previousversion == null) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.14.6
// @version 1.13.14.7
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -159,7 +159,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.14.6',
VERSION: '1.13.14.7',
NAMESPACE: '4chan X.',
boards: {}
};
@ -4491,10 +4491,15 @@ $ = (function() {
};
$.ajax = (function() {
var lastModified;
var lastModified, pageXHR;
lastModified = {};
if (window.wrappedJSObject && !XMLHttpRequest.wrappedJSObject) {
pageXHR = XPCNativeWrapper(window.wrappedJSObject.XMLHttpRequest);
} else {
pageXHR = XMLHttpRequest;
}
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) {
options = {};
}
@ -4511,8 +4516,7 @@ $ = (function() {
if ($.engine === 'blink' && whenModified) {
url += "?s=" + whenModified;
}
xhr = XMLHttpRequest;
r = new xhr();
r = new pageXHR();
type || (type = form && 'post' || 'get');
try {
r.open(type, url, true);
@ -24676,7 +24680,21 @@ Main = (function() {
return;
}
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) {
} else if (items.previousversion == null) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.14.6
// @version 1.13.14.7
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.14.6
// @version 1.13.14.7
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -159,7 +159,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.14.6',
VERSION: '1.13.14.7',
NAMESPACE: '4chan X.',
boards: {}
};
@ -4491,10 +4491,15 @@ $ = (function() {
};
$.ajax = (function() {
var lastModified;
var lastModified, pageXHR;
lastModified = {};
if (window.wrappedJSObject && !XMLHttpRequest.wrappedJSObject) {
pageXHR = XPCNativeWrapper(window.wrappedJSObject.XMLHttpRequest);
} else {
pageXHR = XMLHttpRequest;
}
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) {
options = {};
}
@ -4511,8 +4516,7 @@ $ = (function() {
if ($.engine === 'blink' && whenModified) {
url += "?s=" + whenModified;
}
xhr = XMLHttpRequest;
r = new xhr();
r = new pageXHR();
type || (type = form && 'post' || 'get');
try {
r.open(type, url, true);
@ -24676,7 +24680,21 @@ Main = (function() {
return;
}
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) {
} else if (items.previousversion == null) {

Binary file not shown.

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": {
"updates": [
{
"version": "1.13.14.6",
"version": "1.13.14.7",
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
}
]

View File

@ -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.14.6' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.14.7' />
</app>
</gupdate>

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": {
"updates": [
{
"version": "1.13.14.6",
"version": "1.13.14.7",
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
}
]

View File

@ -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.14.6' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.14.7' />
</app>
</gupdate>

View File

@ -1,4 +1,4 @@
{
"version": "1.13.14.6",
"date": "2017-11-05T01:38:05.709Z"
"version": "1.13.14.7",
"date": "2017-11-15T09:14:52.788Z"
}