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.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)]
|
||||
- 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
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.4.0
|
||||
// @version 1.13.4.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.4.0
|
||||
// @version 1.13.4.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -150,7 +150,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.4.0',
|
||||
VERSION: '1.13.4.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -5119,10 +5119,7 @@ CrossOrigin = (function() {
|
||||
}
|
||||
return GM_xmlhttpRequest(options);
|
||||
},
|
||||
file: function(url, cb, headers) {
|
||||
if (headers == null) {
|
||||
headers = {};
|
||||
}
|
||||
file: function(url, cb) {
|
||||
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
||||
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
||||
if (data == null) {
|
||||
@ -5142,7 +5139,7 @@ CrossOrigin = (function() {
|
||||
});
|
||||
blob.name = name;
|
||||
return cb(blob);
|
||||
}, headers);
|
||||
});
|
||||
},
|
||||
json: (function() {
|
||||
var callbacks, responses;
|
||||
@ -21074,8 +21071,6 @@ QR = (function() {
|
||||
} else {
|
||||
return QR.error("Can't load file.");
|
||||
}
|
||||
}, {
|
||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
||||
});
|
||||
},
|
||||
handleFiles: function(files) {
|
||||
@ -21831,8 +21826,6 @@ QR = (function() {
|
||||
QR.handleFiles([blob]);
|
||||
return QR.oekaki.edit();
|
||||
}
|
||||
}, {
|
||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.4.0
|
||||
// @version 1.13.4.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -150,7 +150,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.4.0',
|
||||
VERSION: '1.13.4.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -5119,10 +5119,7 @@ CrossOrigin = (function() {
|
||||
}
|
||||
return GM_xmlhttpRequest(options);
|
||||
},
|
||||
file: function(url, cb, headers) {
|
||||
if (headers == null) {
|
||||
headers = {};
|
||||
}
|
||||
file: function(url, cb) {
|
||||
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
||||
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
||||
if (data == null) {
|
||||
@ -5142,7 +5139,7 @@ CrossOrigin = (function() {
|
||||
});
|
||||
blob.name = name;
|
||||
return cb(blob);
|
||||
}, headers);
|
||||
});
|
||||
},
|
||||
json: (function() {
|
||||
var callbacks, responses;
|
||||
@ -21074,8 +21071,6 @@ QR = (function() {
|
||||
} else {
|
||||
return QR.error("Can't load file.");
|
||||
}
|
||||
}, {
|
||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
||||
});
|
||||
},
|
||||
handleFiles: function(files) {
|
||||
@ -21831,8 +21826,6 @@ QR = (function() {
|
||||
QR.handleFiles([blob]);
|
||||
return QR.oekaki.edit();
|
||||
}
|
||||
}, {
|
||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.4.0
|
||||
// @version 1.13.4.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.4.0
|
||||
// @version 1.13.4.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -150,7 +150,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.4.0',
|
||||
VERSION: '1.13.4.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -5119,10 +5119,7 @@ CrossOrigin = (function() {
|
||||
}
|
||||
return GM_xmlhttpRequest(options);
|
||||
},
|
||||
file: function(url, cb, headers) {
|
||||
if (headers == null) {
|
||||
headers = {};
|
||||
}
|
||||
file: function(url, cb) {
|
||||
return CrossOrigin.binary(url, function(data, contentType, contentDisposition) {
|
||||
var blob, match, mime, name, ref, ref1, ref2, ref3;
|
||||
if (data == null) {
|
||||
@ -5142,7 +5139,7 @@ CrossOrigin = (function() {
|
||||
});
|
||||
blob.name = name;
|
||||
return cb(blob);
|
||||
}, headers);
|
||||
});
|
||||
},
|
||||
json: (function() {
|
||||
var callbacks, responses;
|
||||
@ -21074,8 +21071,6 @@ QR = (function() {
|
||||
} else {
|
||||
return QR.error("Can't load file.");
|
||||
}
|
||||
}, {
|
||||
Accept: Object.keys(QR.extensionFromType).join(',')
|
||||
});
|
||||
},
|
||||
handleFiles: function(files) {
|
||||
@ -21831,8 +21826,6 @@ QR = (function() {
|
||||
QR.handleFiles([blob]);
|
||||
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'?>
|
||||
<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.4.0' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.4.1' />
|
||||
</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.4.0' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.4.1' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.4.0",
|
||||
"date": "2017-01-07T10:06:20.105Z"
|
||||
"version": "1.13.4.1",
|
||||
"date": "2017-01-07T12:12:37.975Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user