Release 4chan X v1.11.30.2.

This commit is contained in:
ccd0 2016-04-04 21:22:22 -07:00
parent 4dec6a3d80
commit 48d80decd3
13 changed files with 27 additions and 24 deletions

View File

@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.30 ### 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")] **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`. - 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`. - Opening a thread by the link to the OP turns unhides the posts hidden by `Reply Pruning`.

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.11.30.1 // @version 1.11.30.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript // Generated by CoffeeScript
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.11.30.1 // @version 1.11.30.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -443,7 +443,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.11.30.1', VERSION: '1.11.30.2',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -13255,9 +13255,9 @@
this.container = $.frag(); this.container = $.frag();
this.summary = $.el('span', { this.summary = $.el('span', {
hidden: true, hidden: true,
className: 'summary', className: 'summary'
style: 'cursor: pointer;'
}); });
this.summary.style.cursor = 'pointer';
$.on(this.summary, 'click', (function(_this) { $.on(this.summary, 'click', (function(_this) {
return function() { return function() {
_this.inputs.enabled.checked = !_this.inputs.enabled.checked; _this.inputs.enabled.checked = !_this.inputs.enabled.checked;
@ -18388,9 +18388,9 @@
return $.rm(Main.bgColorStyle); return $.rm(Main.bgColorStyle);
} else { } else {
div = $.el('div', { div = $.el('div', {
className: 'reply', className: 'reply'
style: 'position: absolute; visibility: hidden;'
}); });
div.style.cssText = 'position: absolute; visibility: hidden;';
$.add(d.body, div); $.add(d.body, div);
bgColor = window.getComputedStyle(div).backgroundColor; bgColor = window.getComputedStyle(div).backgroundColor;
$.rm(div); $.rm(div);

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript // Generated by CoffeeScript
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.11.30.1 // @version 1.11.30.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -443,7 +443,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.11.30.1', VERSION: '1.11.30.2',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -13255,9 +13255,9 @@
this.container = $.frag(); this.container = $.frag();
this.summary = $.el('span', { this.summary = $.el('span', {
hidden: true, hidden: true,
className: 'summary', className: 'summary'
style: 'cursor: pointer;'
}); });
this.summary.style.cursor = 'pointer';
$.on(this.summary, 'click', (function(_this) { $.on(this.summary, 'click', (function(_this) {
return function() { return function() {
_this.inputs.enabled.checked = !_this.inputs.enabled.checked; _this.inputs.enabled.checked = !_this.inputs.enabled.checked;
@ -18388,9 +18388,9 @@
return $.rm(Main.bgColorStyle); return $.rm(Main.bgColorStyle);
} else { } else {
div = $.el('div', { div = $.el('div', {
className: 'reply', className: 'reply'
style: 'position: absolute; visibility: hidden;'
}); });
div.style.cssText = 'position: absolute; visibility: hidden;';
$.add(d.body, div); $.add(d.body, div);
bgColor = window.getComputedStyle(div).backgroundColor; bgColor = window.getComputedStyle(div).backgroundColor;
$.rm(div); $.rm(div);

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.11.30.1 // @version 1.11.30.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript // Generated by CoffeeScript
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.11.30.1 // @version 1.11.30.2
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -443,7 +443,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.11.30.1', VERSION: '1.11.30.2',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -13255,9 +13255,9 @@
this.container = $.frag(); this.container = $.frag();
this.summary = $.el('span', { this.summary = $.el('span', {
hidden: true, hidden: true,
className: 'summary', className: 'summary'
style: 'cursor: pointer;'
}); });
this.summary.style.cursor = 'pointer';
$.on(this.summary, 'click', (function(_this) { $.on(this.summary, 'click', (function(_this) {
return function() { return function() {
_this.inputs.enabled.checked = !_this.inputs.enabled.checked; _this.inputs.enabled.checked = !_this.inputs.enabled.checked;
@ -18388,9 +18388,9 @@
return $.rm(Main.bgColorStyle); return $.rm(Main.bgColorStyle);
} else { } else {
div = $.el('div', { div = $.el('div', {
className: 'reply', className: 'reply'
style: 'position: absolute; visibility: hidden;'
}); });
div.style.cssText = 'position: absolute; visibility: hidden;';
$.add(d.body, div); $.add(d.body, div);
bgColor = window.getComputedStyle(div).backgroundColor; bgColor = window.getComputedStyle(div).backgroundColor;
$.rm(div); $.rm(div);

Binary file not shown.

View File

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'> <gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<app appid='lacclbnghgdicfifcamcmcnilckjamag'> <app appid='lacclbnghgdicfifcamcmcnilckjamag'>
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.30.1' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.30.2' />
</app> </app>
</gupdate> </gupdate>

View File

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'> <gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<app appid='lacclbnghgdicfifcamcmcnilckjamag'> <app appid='lacclbnghgdicfifcamcmcnilckjamag'>
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.30.1' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.30.2' />
</app> </app>
</gupdate> </gupdate>

View File

@ -1,4 +1,4 @@
{ {
"version": "1.11.30.1", "version": "1.11.30.2",
"date": "2016-04-04T07:32:48.540Z" "date": "2016-04-05T04:20:10.748Z"
} }