diff --git a/CHANGELOG.md b/CHANGELOG.md
index a6b21be92..4e54c3352 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.30
+**v1.11.30.2** *(2016-04-04)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.30.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.30.2/builds/4chan-X-noupdate.crx "Chromium version")]
+- Fix Reply Pruning bug from v1.11.30.0 causing errors in older browsers.
+
**v1.11.30.1** *(2016-04-04)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.30.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.30.1/builds/4chan-X-noupdate.crx "Chromium version")]
- Scrolling to a post hidden by `Reply Pruning` unhides the posts. This includes `Scroll to Last Read Post`.
- Opening a thread by the link to the OP turns unhides the posts hidden by `Reply Pruning`.
diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx
index ee50bd0c3..e1ba7e0a8 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 e62b3c179..0a58c8ba0 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.30.1
+// @version 1.11.30.2
// @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 5346f7c35..49e0f67b0 100644
--- a/builds/4chan-X-beta.user.js
+++ b/builds/4chan-X-beta.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X beta
-// @version 1.11.30.1
+// @version 1.11.30.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -443,7 +443,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.11.30.1',
+ VERSION: '1.11.30.2',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -13255,9 +13255,9 @@
this.container = $.frag();
this.summary = $.el('span', {
hidden: true,
- className: 'summary',
- style: 'cursor: pointer;'
+ className: 'summary'
});
+ this.summary.style.cursor = 'pointer';
$.on(this.summary, 'click', (function(_this) {
return function() {
_this.inputs.enabled.checked = !_this.inputs.enabled.checked;
@@ -18388,9 +18388,9 @@
return $.rm(Main.bgColorStyle);
} else {
div = $.el('div', {
- className: 'reply',
- style: 'position: absolute; visibility: hidden;'
+ className: 'reply'
});
+ div.style.cssText = 'position: absolute; visibility: hidden;';
$.add(d.body, div);
bgColor = window.getComputedStyle(div).backgroundColor;
$.rm(div);
diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx
index e4560eb00..859ba55dc 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 a79493511..6967d684e 100644
--- a/builds/4chan-X-noupdate.user.js
+++ b/builds/4chan-X-noupdate.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
-// @version 1.11.30.1
+// @version 1.11.30.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -443,7 +443,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.11.30.1',
+ VERSION: '1.11.30.2',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -13255,9 +13255,9 @@
this.container = $.frag();
this.summary = $.el('span', {
hidden: true,
- className: 'summary',
- style: 'cursor: pointer;'
+ className: 'summary'
});
+ this.summary.style.cursor = 'pointer';
$.on(this.summary, 'click', (function(_this) {
return function() {
_this.inputs.enabled.checked = !_this.inputs.enabled.checked;
@@ -18388,9 +18388,9 @@
return $.rm(Main.bgColorStyle);
} else {
div = $.el('div', {
- className: 'reply',
- style: 'position: absolute; visibility: hidden;'
+ className: 'reply'
});
+ div.style.cssText = 'position: absolute; visibility: hidden;';
$.add(d.body, div);
bgColor = window.getComputedStyle(div).backgroundColor;
$.rm(div);
diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx
index 9e89d8436..6778388d7 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 7f7826dbe..bf55caba0 100644
--- a/builds/4chan-X.meta.js
+++ b/builds/4chan-X.meta.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
-// @version 1.11.30.1
+// @version 1.11.30.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js
index 2a1e8da29..e4c63252b 100644
--- a/builds/4chan-X.user.js
+++ b/builds/4chan-X.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
-// @version 1.11.30.1
+// @version 1.11.30.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -443,7 +443,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.11.30.1',
+ VERSION: '1.11.30.2',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -13255,9 +13255,9 @@
this.container = $.frag();
this.summary = $.el('span', {
hidden: true,
- className: 'summary',
- style: 'cursor: pointer;'
+ className: 'summary'
});
+ this.summary.style.cursor = 'pointer';
$.on(this.summary, 'click', (function(_this) {
return function() {
_this.inputs.enabled.checked = !_this.inputs.enabled.checked;
@@ -18388,9 +18388,9 @@
return $.rm(Main.bgColorStyle);
} else {
div = $.el('div', {
- className: 'reply',
- style: 'position: absolute; visibility: hidden;'
+ className: 'reply'
});
+ div.style.cssText = 'position: absolute; visibility: hidden;';
$.add(d.body, div);
bgColor = window.getComputedStyle(div).backgroundColor;
$.rm(div);
diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip
index 2f86ebd0c..29fa2dce5 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 c0c3c22f1..42cf04ccd 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 bbeb9934f..922ad89ec 100644
--- a/builds/updates.xml
+++ b/builds/updates.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/version.json b/version.json
index 0ebbce1ce..9386a669c 100644
--- a/version.json
+++ b/version.json
@@ -1,4 +1,4 @@
{
- "version": "1.11.30.1",
- "date": "2016-04-04T07:32:48.540Z"
+ "version": "1.11.30.2",
+ "date": "2016-04-05T04:20:10.748Z"
}