Release 4chan X v1.13.4.0.
This commit is contained in:
parent
9e3d33ffd4
commit
8c61c77f8a
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
-Sometimes the changelog has notes (not comprehensive) acknowledging people's work. This does not mean the changes are their fault, only that their code was used. All changes to the script are chosen by and the fault of the maintainer (ccd0).
|
-Sometimes the changelog has notes (not comprehensive) acknowledging people's work. This does not mean the changes are their fault, only that their code was used. All changes to the script are chosen by and the fault of the maintainer (ccd0).
|
||||||
|
|
||||||
|
### v1.13.4
|
||||||
|
|
||||||
|
**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.
|
||||||
|
- Tell Chrome Data Compression Proxy not to convert images to WebP when posting images from URLs. #1241
|
||||||
|
|
||||||
### v1.13.3
|
### v1.13.3
|
||||||
|
|
||||||
**v1.13.3.0** *(2017-01-06)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.3.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.3.0/builds/4chan-X-noupdate.crx)]
|
**v1.13.3.0** *(2017-01-06)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.3.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.3.0/builds/4chan-X-noupdate.crx)]
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.3.0
|
// @version 1.13.4.0
|
||||||
// @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.3.0
|
// @version 1.13.4.0
|
||||||
// @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.3.0',
|
VERSION: '1.13.4.0',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5119,7 +5119,10 @@ CrossOrigin = (function() {
|
|||||||
}
|
}
|
||||||
return GM_xmlhttpRequest(options);
|
return GM_xmlhttpRequest(options);
|
||||||
},
|
},
|
||||||
file: function(url, cb) {
|
file: function(url, cb, headers) {
|
||||||
|
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) {
|
||||||
@ -5139,7 +5142,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;
|
||||||
@ -21071,6 +21074,8 @@ 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) {
|
||||||
@ -21826,6 +21831,8 @@ 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.3.0
|
// @version 1.13.4.0
|
||||||
// @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.3.0',
|
VERSION: '1.13.4.0',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5119,7 +5119,10 @@ CrossOrigin = (function() {
|
|||||||
}
|
}
|
||||||
return GM_xmlhttpRequest(options);
|
return GM_xmlhttpRequest(options);
|
||||||
},
|
},
|
||||||
file: function(url, cb) {
|
file: function(url, cb, headers) {
|
||||||
|
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) {
|
||||||
@ -5139,7 +5142,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;
|
||||||
@ -21071,6 +21074,8 @@ 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) {
|
||||||
@ -21826,6 +21831,8 @@ 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.3.0
|
// @version 1.13.4.0
|
||||||
// @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.3.0
|
// @version 1.13.4.0
|
||||||
// @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.3.0',
|
VERSION: '1.13.4.0',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5119,7 +5119,10 @@ CrossOrigin = (function() {
|
|||||||
}
|
}
|
||||||
return GM_xmlhttpRequest(options);
|
return GM_xmlhttpRequest(options);
|
||||||
},
|
},
|
||||||
file: function(url, cb) {
|
file: function(url, cb, headers) {
|
||||||
|
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) {
|
||||||
@ -5139,7 +5142,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;
|
||||||
@ -21071,6 +21074,8 @@ 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) {
|
||||||
@ -21826,6 +21831,8 @@ 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.3.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.4.0' />
|
||||||
</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.3.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.4.0' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.3.0",
|
"version": "1.13.4.0",
|
||||||
"date": "2017-01-06T06:08:38.680Z"
|
"date": "2017-01-07T10:06:20.105Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user