Release 4chan X v1.13.4.1.
This commit is contained in:
parent
adfc3babc9
commit
efb44b79ae
@ -4,9 +4,12 @@
|
|||||||
|
|
||||||
### v1.13.4
|
### v1.13.4
|
||||||
|
|
||||||
|
**v1.13.4.1** *(2017-01-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.4.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.4.1/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Revert Data Saver workarounds. They didn't work. This release is the same as v1.13.3.0 except for the version number. #1241
|
||||||
|
|
||||||
**v1.13.4.0** *(2017-01-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.4.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.4.0/builds/4chan-X-noupdate.crx)]
|
**v1.13.4.0** *(2017-01-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.4.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.4.0/builds/4chan-X-noupdate.crx)]
|
||||||
- Based on v1.13.3.0.
|
- Based on v1.13.3.0.
|
||||||
- Tell Chrome Data Compression Proxy not to convert images to WebP when posting images from URLs. #1241
|
- Tell Chrome Data Saver not to convert images to WebP when posting images from URLs. #1241
|
||||||
|
|
||||||
### v1.13.3
|
### v1.13.3
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.4.0
|
// @version 1.13.4.1
|
||||||
// @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.4.0
|
// @version 1.13.4.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -150,7 +150,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.4.0',
|
VERSION: '1.13.4.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5119,10 +5119,7 @@ CrossOrigin = (function() {
|
|||||||
}
|
}
|
||||||
return GM_xmlhttpRequest(options);
|
return GM_xmlhttpRequest(options);
|
||||||
},
|
},
|
||||||
file: function(url, cb, headers) {
|
file: function(url, cb) {
|
||||||
if (headers == null) {
|
|
||||||
headers = {};
|
|
||||||
}
|
|
||||||
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
||||||
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
||||||
if (data == null) {
|
if (data == null) {
|
||||||
@ -5142,7 +5139,7 @@ CrossOrigin = (function() {
|
|||||||
});
|
});
|
||||||
blob.name = name;
|
blob.name = name;
|
||||||
return cb(blob);
|
return cb(blob);
|
||||||
}, headers);
|
});
|
||||||
},
|
},
|
||||||
json: (function() {
|
json: (function() {
|
||||||
var callbacks, responses;
|
var callbacks, responses;
|
||||||
@ -21074,8 +21071,6 @@ QR = (function() {
|
|||||||
} else {
|
} else {
|
||||||
return QR.error("Can't load file.");
|
return QR.error("Can't load file.");
|
||||||
}
|
}
|
||||||
}, {
|
|
||||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleFiles: function(files) {
|
handleFiles: function(files) {
|
||||||
@ -21831,8 +21826,6 @@ QR = (function() {
|
|||||||
QR.handleFiles([blob]);
|
QR.handleFiles([blob]);
|
||||||
return QR.oekaki.edit();
|
return QR.oekaki.edit();
|
||||||
}
|
}
|
||||||
}, {
|
|
||||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.4.0
|
// @version 1.13.4.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -150,7 +150,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.4.0',
|
VERSION: '1.13.4.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5119,10 +5119,7 @@ CrossOrigin = (function() {
|
|||||||
}
|
}
|
||||||
return GM_xmlhttpRequest(options);
|
return GM_xmlhttpRequest(options);
|
||||||
},
|
},
|
||||||
file: function(url, cb, headers) {
|
file: function(url, cb) {
|
||||||
if (headers == null) {
|
|
||||||
headers = {};
|
|
||||||
}
|
|
||||||
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
||||||
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
||||||
if (data == null) {
|
if (data == null) {
|
||||||
@ -5142,7 +5139,7 @@ CrossOrigin = (function() {
|
|||||||
});
|
});
|
||||||
blob.name = name;
|
blob.name = name;
|
||||||
return cb(blob);
|
return cb(blob);
|
||||||
}, headers);
|
});
|
||||||
},
|
},
|
||||||
json: (function() {
|
json: (function() {
|
||||||
var callbacks, responses;
|
var callbacks, responses;
|
||||||
@ -21074,8 +21071,6 @@ QR = (function() {
|
|||||||
} else {
|
} else {
|
||||||
return QR.error("Can't load file.");
|
return QR.error("Can't load file.");
|
||||||
}
|
}
|
||||||
}, {
|
|
||||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleFiles: function(files) {
|
handleFiles: function(files) {
|
||||||
@ -21831,8 +21826,6 @@ QR = (function() {
|
|||||||
QR.handleFiles([blob]);
|
QR.handleFiles([blob]);
|
||||||
return QR.oekaki.edit();
|
return QR.oekaki.edit();
|
||||||
}
|
}
|
||||||
}, {
|
|
||||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.4.0
|
// @version 1.13.4.1
|
||||||
// @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.4.0
|
// @version 1.13.4.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -150,7 +150,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.4.0',
|
VERSION: '1.13.4.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5119,10 +5119,7 @@ CrossOrigin = (function() {
|
|||||||
}
|
}
|
||||||
return GM_xmlhttpRequest(options);
|
return GM_xmlhttpRequest(options);
|
||||||
},
|
},
|
||||||
file: function(url, cb, headers) {
|
file: function(url, cb) {
|
||||||
if (headers == null) {
|
|
||||||
headers = {};
|
|
||||||
}
|
|
||||||
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
||||||
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
||||||
if (data == null) {
|
if (data == null) {
|
||||||
@ -5142,7 +5139,7 @@ CrossOrigin = (function() {
|
|||||||
});
|
});
|
||||||
blob.name = name;
|
blob.name = name;
|
||||||
return cb(blob);
|
return cb(blob);
|
||||||
}, headers);
|
});
|
||||||
},
|
},
|
||||||
json: (function() {
|
json: (function() {
|
||||||
var callbacks, responses;
|
var callbacks, responses;
|
||||||
@ -21074,8 +21071,6 @@ QR = (function() {
|
|||||||
} else {
|
} else {
|
||||||
return QR.error("Can't load file.");
|
return QR.error("Can't load file.");
|
||||||
}
|
}
|
||||||
}, {
|
|
||||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleFiles: function(files) {
|
handleFiles: function(files) {
|
||||||
@ -21831,8 +21826,6 @@ QR = (function() {
|
|||||||
QR.handleFiles([blob]);
|
QR.handleFiles([blob]);
|
||||||
return QR.oekaki.edit();
|
return QR.oekaki.edit();
|
||||||
}
|
}
|
||||||
}, {
|
|
||||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
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.13.4.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.4.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.13.4.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.4.1' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.4.0",
|
"version": "1.13.4.1",
|
||||||
"date": "2017-01-07T10:06:20.105Z"
|
"date": "2017-01-07T12:12:37.975Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user