diff --git a/CHANGELOG.md b/CHANGELOG.md
index f1e63b427..8eb6d767e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx
index def1c6c38..031a5cc95 100644
Binary files a/builds/4chan-X-beta.crx and b/builds/4chan-X-beta.crx differ
diff --git a/builds/4chan-X-beta.meta.js b/builds/4chan-X-beta.meta.js
index 025392940..c8107ea4f 100644
--- a/builds/4chan-X-beta.meta.js
+++ b/builds/4chan-X-beta.meta.js
@@ -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
diff --git a/builds/4chan-X-beta.user.js b/builds/4chan-X-beta.user.js
index a30be80b0..581c370b9 100644
--- a/builds/4chan-X-beta.user.js
+++ b/builds/4chan-X-beta.user.js
@@ -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(',')
});
}
},
diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx
index 7daa68027..75e3e6b4c 100644
Binary files a/builds/4chan-X-noupdate.crx and b/builds/4chan-X-noupdate.crx differ
diff --git a/builds/4chan-X-noupdate.user.js b/builds/4chan-X-noupdate.user.js
index 2b8599524..c0e9ca8ee 100644
--- a/builds/4chan-X-noupdate.user.js
+++ b/builds/4chan-X-noupdate.user.js
@@ -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(',')
});
}
},
diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx
index 2df2d15ce..6909ed1f4 100644
Binary files a/builds/4chan-X.crx and b/builds/4chan-X.crx differ
diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js
index 20584a517..d9dad62d7 100644
--- a/builds/4chan-X.meta.js
+++ b/builds/4chan-X.meta.js
@@ -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
diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js
index 0c20ed83e..57dcd2a2a 100644
--- a/builds/4chan-X.user.js
+++ b/builds/4chan-X.user.js
@@ -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(',')
});
}
},
diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip
index f34f947ec..b98aef657 100644
Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ
diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml
index 419beb4a2..d53bca898 100644
--- a/builds/updates-beta.xml
+++ b/builds/updates-beta.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/builds/updates.xml b/builds/updates.xml
index 273f8a3b3..33d3e8298 100644
--- a/builds/updates.xml
+++ b/builds/updates.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/version.json b/version.json
index 7e4bee93a..79944aa23 100644
--- a/version.json
+++ b/version.json
@@ -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"
}
\ No newline at end of file