diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e5729e8b..be614df77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor ### v1.11.35 +**v1.11.35.3** *(2016-06-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.3/builds/4chan-X-noupdate.crx "Chromium version")] +- Make `Display Upload Progress` optional. Try disabling this option if you are having connection problems. + **v1.11.35.2** *(2016-06-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.2/builds/4chan-X-noupdate.crx "Chromium version")] - Add @connect to userscript metadata to reduce annoying permission requests in Tampermonkey. - Switch [complain] links back to https://www.4chan.org/feedback. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index f21afc20a..09e2a3f81 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 3088a0a1e..fca9ca513 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.11.35.2 +// @version 1.11.35.3 // @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 219c081ec..c5817fba2 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.11.35.2 +// @version 1.11.35.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.11.35.2', + VERSION: '1.11.35.3', NAMESPACE: '4chan X.', boards: {} }; @@ -294,6 +294,7 @@ Config = (function() { 'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1], 'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1], 'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1], + 'Show Upload Progress': [true, 'Track progress of file uploads as percentage in submit button.', 1], 'Cooldown': [true, 'Indicate the remaining time before posting again.', 1], 'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1], 'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1], @@ -20294,8 +20295,10 @@ QR = (function() { } }; extra = { - form: $.formData(formData), - upCallbacks: { + form: $.formData(formData) + }; + if (Conf['Show Upload Progress']) { + extra.upCallbacks = { onload: function() { QR.req.isUploadFinished = true; QR.req.progress = '...'; @@ -20305,8 +20308,8 @@ QR = (function() { QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%"; return QR.status(); } - } - }; + }; + } cb = function(response) { if (response != null) { if (response.challenge != null) { diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index eedf73de5..bd7da2cd4 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 3a2948e5e..9ec7a5de3 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.11.35.2 +// @version 1.11.35.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.11.35.2', + VERSION: '1.11.35.3', NAMESPACE: '4chan X.', boards: {} }; @@ -294,6 +294,7 @@ Config = (function() { 'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1], 'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1], 'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1], + 'Show Upload Progress': [true, 'Track progress of file uploads as percentage in submit button.', 1], 'Cooldown': [true, 'Indicate the remaining time before posting again.', 1], 'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1], 'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1], @@ -20294,8 +20295,10 @@ QR = (function() { } }; extra = { - form: $.formData(formData), - upCallbacks: { + form: $.formData(formData) + }; + if (Conf['Show Upload Progress']) { + extra.upCallbacks = { onload: function() { QR.req.isUploadFinished = true; QR.req.progress = '...'; @@ -20305,8 +20308,8 @@ QR = (function() { QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%"; return QR.status(); } - } - }; + }; + } cb = function(response) { if (response != null) { if (response.challenge != null) { diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index 5919f9230..c46869cfb 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 373ce3134..c952c5656 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.11.35.2 +// @version 1.11.35.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index b917e75a1..f7ed23b45 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.11.35.2 +// @version 1.11.35.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.11.35.2', + VERSION: '1.11.35.3', NAMESPACE: '4chan X.', boards: {} }; @@ -294,6 +294,7 @@ Config = (function() { 'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1], 'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1], 'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1], + 'Show Upload Progress': [true, 'Track progress of file uploads as percentage in submit button.', 1], 'Cooldown': [true, 'Indicate the remaining time before posting again.', 1], 'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1], 'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1], @@ -20294,8 +20295,10 @@ QR = (function() { } }; extra = { - form: $.formData(formData), - upCallbacks: { + form: $.formData(formData) + }; + if (Conf['Show Upload Progress']) { + extra.upCallbacks = { onload: function() { QR.req.isUploadFinished = true; QR.req.progress = '...'; @@ -20305,8 +20308,8 @@ QR = (function() { QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%"; return QR.status(); } - } - }; + }; + } cb = function(response) { if (response != null) { if (response.challenge != null) { diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 97ee8408c..e7afe3974 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 136b8eb35..1f887c57d 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 a1a96ceda..b9dd19e8e 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index 64a73a2ef..caafe1abf 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.11.35.2", - "date": "2016-06-12T04:25:29.728Z" + "version": "1.11.35.3", + "date": "2016-06-12T11:49:39.164Z" } \ No newline at end of file