diff --git a/CHANGELOG.md b/CHANGELOG.md index dd8cd716e..e0d9f5eff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ### v1.12.2 +**v1.12.2.1** *(2016-07-11)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.2.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.2.1/builds/4chan-X-noupdate.crx)] +- Fix frequent connection errors from timeout fetching board configuration. + **v1.12.2.0** *(2016-07-10)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.2.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.2.0/builds/4chan-X-noupdate.crx)] - Based on v1.12.1.5. - Support image pasting in Firefox 50+ without selecting paste icon in Quick Reply. diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx index e6b677959..36eec031d 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 69293d515..296f9f915 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.12.2.0 +// @version 1.12.2.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 3be121b73..45e51a4bf 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.12.2.0 +// @version 1.12.2.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.12.2.0', + VERSION: '1.12.2.1', NAMESPACE: '4chan X.', boards: {} }; @@ -7505,8 +7505,7 @@ BoardConfig = (function() { init: function() { if ((Conf['boardConfig'].lastChecked || 0) < Date.now() - 2 * $.HOUR) { return $.ajax('//a.4cdn.org/boards.json', { - onloadend: this.load, - timeout: 5 * $.SECOND + onloadend: this.load }); } else { return this.set(Conf['boardConfig'].boards); diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx index af29cdee4..b2246b713 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 8cd8a0b6a..89c432539 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.12.2.0 +// @version 1.12.2.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.12.2.0', + VERSION: '1.12.2.1', NAMESPACE: '4chan X.', boards: {} }; @@ -7505,8 +7505,7 @@ BoardConfig = (function() { init: function() { if ((Conf['boardConfig'].lastChecked || 0) < Date.now() - 2 * $.HOUR) { return $.ajax('//a.4cdn.org/boards.json', { - onloadend: this.load, - timeout: 5 * $.SECOND + onloadend: this.load }); } else { return this.set(Conf['boardConfig'].boards); diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx index b14e82f5f..e34177590 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 7498d9d11..6a853c815 100644 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.12.2.0 +// @version 1.12.2.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index dd2ecd5f9..d3789fb11 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.12.2.0 +// @version 1.12.2.1 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -136,7 +136,7 @@ docSet = function() { }; g = { - VERSION: '1.12.2.0', + VERSION: '1.12.2.1', NAMESPACE: '4chan X.', boards: {} }; @@ -7505,8 +7505,7 @@ BoardConfig = (function() { init: function() { if ((Conf['boardConfig'].lastChecked || 0) < Date.now() - 2 * $.HOUR) { return $.ajax('//a.4cdn.org/boards.json', { - onloadend: this.load, - timeout: 5 * $.SECOND + onloadend: this.load }); } else { return this.set(Conf['boardConfig'].boards); diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip index 53bee736a..0632ececf 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 611ced3bd..2241d97ab 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 253f56388..b4fdc4c58 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/version.json b/version.json index 02531b18b..11b13bb43 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "1.12.2.0", - "date": "2016-07-10T23:41:35.741Z" + "version": "1.12.2.1", + "date": "2016-07-11T04:48:28.323Z" } \ No newline at end of file