Release 4chan X v1.10.14.0.
This commit is contained in:
parent
95487fd397
commit
c744000e79
@ -2,6 +2,12 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
The links to individual versions below are to copies of the script with the update URL removed. If you want automatic updates, install the script from the links on the [main page](https://github.com/ccd0/4chan-x).
|
The links to individual versions below are to copies of the script with the update URL removed. If you want automatic updates, install the script from the links on the [main page](https://github.com/ccd0/4chan-x).
|
||||||
|
|
||||||
|
### v1.10.14
|
||||||
|
|
||||||
|
**v1.10.14.0** *(2015-06-07)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.14.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.14.0/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Based on v1.10.13.4.
|
||||||
|
- Fix board-specific filters in thread watcher (filters apply to unread posts quoting you).
|
||||||
|
|
||||||
### v1.10.13
|
### v1.10.13
|
||||||
|
|
||||||
**v1.10.13.4** *(2015-06-05)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.13.4/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.13.4/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.10.13.4** *(2015-06-05)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.13.4/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.13.4/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.10.13.4
|
// @version 1.10.14.0
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.10.13.4
|
// @version 1.10.14.0
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -396,7 +396,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.13.4',
|
VERSION: '1.10.14.0',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5012,7 +5012,7 @@
|
|||||||
Filter = {
|
Filter = {
|
||||||
filters: {},
|
filters: {},
|
||||||
init: function() {
|
init: function() {
|
||||||
var boards, err, filter, hl, k, key, len1, line, op, ref, ref1, ref2, ref3, ref4, ref5, ref6, regexp, stub, top;
|
var boards, err, filter, hl, k, key, len1, line, op, ref, ref1, ref2, ref3, ref4, ref5, regexp, stub, top;
|
||||||
if (!(((ref = g.VIEW) === 'index' || ref === 'thread') && Conf['Filter'])) {
|
if (!(((ref = g.VIEW) === 'index' || ref === 'thread') && Conf['Filter'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -5032,9 +5032,7 @@
|
|||||||
}
|
}
|
||||||
filter = line.replace(regexp[0], '');
|
filter = line.replace(regexp[0], '');
|
||||||
boards = ((ref2 = filter.match(/boards:([^;]+)/)) != null ? ref2[1].toLowerCase() : void 0) || 'global';
|
boards = ((ref2 = filter.match(/boards:([^;]+)/)) != null ? ref2[1].toLowerCase() : void 0) || 'global';
|
||||||
if (boards !== 'global' && (ref3 = g.BOARD.ID, indexOf.call(boards.split(','), ref3) < 0)) {
|
boards = boards === 'global' ? null : boards.split(',');
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (key === 'uniqueID' || key === 'MD5') {
|
if (key === 'uniqueID' || key === 'MD5') {
|
||||||
regexp = regexp[1];
|
regexp = regexp[1];
|
||||||
} else {
|
} else {
|
||||||
@ -5046,10 +5044,10 @@
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
op = ((ref4 = filter.match(/[^t]op:(yes|no|only)/)) != null ? ref4[1] : void 0) || 'yes';
|
op = ((ref3 = filter.match(/[^t]op:(yes|no|only)/)) != null ? ref3[1] : void 0) || 'yes';
|
||||||
stub = (function() {
|
stub = (function() {
|
||||||
var ref5;
|
var ref4;
|
||||||
switch ((ref5 = filter.match(/stub:(yes|no)/)) != null ? ref5[1] : void 0) {
|
switch ((ref4 = filter.match(/stub:(yes|no)/)) != null ? ref4[1] : void 0) {
|
||||||
case 'yes':
|
case 'yes':
|
||||||
return true;
|
return true;
|
||||||
case 'no':
|
case 'no':
|
||||||
@ -5059,11 +5057,11 @@
|
|||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
if (hl = /highlight/.test(filter)) {
|
if (hl = /highlight/.test(filter)) {
|
||||||
hl = ((ref5 = filter.match(/highlight:([\w-]+)/)) != null ? ref5[1] : void 0) || 'filter-highlight';
|
hl = ((ref4 = filter.match(/highlight:([\w-]+)/)) != null ? ref4[1] : void 0) || 'filter-highlight';
|
||||||
top = ((ref6 = filter.match(/top:(yes|no)/)) != null ? ref6[1] : void 0) || 'yes';
|
top = ((ref5 = filter.match(/top:(yes|no)/)) != null ? ref5[1] : void 0) || 'yes';
|
||||||
top = top === 'yes';
|
top = top === 'yes';
|
||||||
}
|
}
|
||||||
this.filters[key].push(this.createFilter(regexp, op, stub, hl, top));
|
this.filters[key].push(this.createFilter(regexp, boards, op, stub, hl, top));
|
||||||
}
|
}
|
||||||
if (!this.filters[key].length) {
|
if (!this.filters[key].length) {
|
||||||
delete this.filters[key];
|
delete this.filters[key];
|
||||||
@ -5077,7 +5075,7 @@
|
|||||||
cb: this.node
|
cb: this.node
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
createFilter: function(regexp, op, stub, hl, top) {
|
createFilter: function(regexp, boards, op, stub, hl, top) {
|
||||||
var settings, test;
|
var settings, test;
|
||||||
test = typeof regexp === 'string' ? function(value) {
|
test = typeof regexp === 'string' ? function(value) {
|
||||||
return regexp === value;
|
return regexp === value;
|
||||||
@ -5090,7 +5088,10 @@
|
|||||||
"class": hl,
|
"class": hl,
|
||||||
top: top
|
top: top
|
||||||
};
|
};
|
||||||
return function(value, isReply) {
|
return function(value, boardID, isReply) {
|
||||||
|
if (boards && indexOf.call(boards, boardID) < 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if (isReply && op === 'only' || !isReply && op === 'no') {
|
if (isReply && op === 'only' || !isReply && op === 'no') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -5110,7 +5111,7 @@
|
|||||||
ref = Filter.filters[key];
|
ref = Filter.filters[key];
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
filter = ref[k];
|
filter = ref[k];
|
||||||
if (!(result = filter(value, this.isReply))) {
|
if (!(result = filter(value, this.board.ID, this.isReply))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (result.hide && !this.isFetchedQuote) {
|
if (result.hide && !this.isFetchedQuote) {
|
||||||
@ -5141,7 +5142,7 @@
|
|||||||
ref = Filter.filters[key];
|
ref = Filter.filters[key];
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
filter = ref[k];
|
filter = ref[k];
|
||||||
if (result = filter(value, post.isReply)) {
|
if (result = filter(value, post.boardID, post.isReply)) {
|
||||||
if (result.hide) {
|
if (result.hide) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.13.4
|
// @version 1.10.14.0
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -395,7 +395,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.13.4',
|
VERSION: '1.10.14.0',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5011,7 +5011,7 @@
|
|||||||
Filter = {
|
Filter = {
|
||||||
filters: {},
|
filters: {},
|
||||||
init: function() {
|
init: function() {
|
||||||
var boards, err, filter, hl, k, key, len1, line, op, ref, ref1, ref2, ref3, ref4, ref5, ref6, regexp, stub, top;
|
var boards, err, filter, hl, k, key, len1, line, op, ref, ref1, ref2, ref3, ref4, ref5, regexp, stub, top;
|
||||||
if (!(((ref = g.VIEW) === 'index' || ref === 'thread') && Conf['Filter'])) {
|
if (!(((ref = g.VIEW) === 'index' || ref === 'thread') && Conf['Filter'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -5031,9 +5031,7 @@
|
|||||||
}
|
}
|
||||||
filter = line.replace(regexp[0], '');
|
filter = line.replace(regexp[0], '');
|
||||||
boards = ((ref2 = filter.match(/boards:([^;]+)/)) != null ? ref2[1].toLowerCase() : void 0) || 'global';
|
boards = ((ref2 = filter.match(/boards:([^;]+)/)) != null ? ref2[1].toLowerCase() : void 0) || 'global';
|
||||||
if (boards !== 'global' && (ref3 = g.BOARD.ID, indexOf.call(boards.split(','), ref3) < 0)) {
|
boards = boards === 'global' ? null : boards.split(',');
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (key === 'uniqueID' || key === 'MD5') {
|
if (key === 'uniqueID' || key === 'MD5') {
|
||||||
regexp = regexp[1];
|
regexp = regexp[1];
|
||||||
} else {
|
} else {
|
||||||
@ -5045,10 +5043,10 @@
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
op = ((ref4 = filter.match(/[^t]op:(yes|no|only)/)) != null ? ref4[1] : void 0) || 'yes';
|
op = ((ref3 = filter.match(/[^t]op:(yes|no|only)/)) != null ? ref3[1] : void 0) || 'yes';
|
||||||
stub = (function() {
|
stub = (function() {
|
||||||
var ref5;
|
var ref4;
|
||||||
switch ((ref5 = filter.match(/stub:(yes|no)/)) != null ? ref5[1] : void 0) {
|
switch ((ref4 = filter.match(/stub:(yes|no)/)) != null ? ref4[1] : void 0) {
|
||||||
case 'yes':
|
case 'yes':
|
||||||
return true;
|
return true;
|
||||||
case 'no':
|
case 'no':
|
||||||
@ -5058,11 +5056,11 @@
|
|||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
if (hl = /highlight/.test(filter)) {
|
if (hl = /highlight/.test(filter)) {
|
||||||
hl = ((ref5 = filter.match(/highlight:([\w-]+)/)) != null ? ref5[1] : void 0) || 'filter-highlight';
|
hl = ((ref4 = filter.match(/highlight:([\w-]+)/)) != null ? ref4[1] : void 0) || 'filter-highlight';
|
||||||
top = ((ref6 = filter.match(/top:(yes|no)/)) != null ? ref6[1] : void 0) || 'yes';
|
top = ((ref5 = filter.match(/top:(yes|no)/)) != null ? ref5[1] : void 0) || 'yes';
|
||||||
top = top === 'yes';
|
top = top === 'yes';
|
||||||
}
|
}
|
||||||
this.filters[key].push(this.createFilter(regexp, op, stub, hl, top));
|
this.filters[key].push(this.createFilter(regexp, boards, op, stub, hl, top));
|
||||||
}
|
}
|
||||||
if (!this.filters[key].length) {
|
if (!this.filters[key].length) {
|
||||||
delete this.filters[key];
|
delete this.filters[key];
|
||||||
@ -5076,7 +5074,7 @@
|
|||||||
cb: this.node
|
cb: this.node
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
createFilter: function(regexp, op, stub, hl, top) {
|
createFilter: function(regexp, boards, op, stub, hl, top) {
|
||||||
var settings, test;
|
var settings, test;
|
||||||
test = typeof regexp === 'string' ? function(value) {
|
test = typeof regexp === 'string' ? function(value) {
|
||||||
return regexp === value;
|
return regexp === value;
|
||||||
@ -5089,7 +5087,10 @@
|
|||||||
"class": hl,
|
"class": hl,
|
||||||
top: top
|
top: top
|
||||||
};
|
};
|
||||||
return function(value, isReply) {
|
return function(value, boardID, isReply) {
|
||||||
|
if (boards && indexOf.call(boards, boardID) < 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if (isReply && op === 'only' || !isReply && op === 'no') {
|
if (isReply && op === 'only' || !isReply && op === 'no') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -5109,7 +5110,7 @@
|
|||||||
ref = Filter.filters[key];
|
ref = Filter.filters[key];
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
filter = ref[k];
|
filter = ref[k];
|
||||||
if (!(result = filter(value, this.isReply))) {
|
if (!(result = filter(value, this.board.ID, this.isReply))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (result.hide && !this.isFetchedQuote) {
|
if (result.hide && !this.isFetchedQuote) {
|
||||||
@ -5140,7 +5141,7 @@
|
|||||||
ref = Filter.filters[key];
|
ref = Filter.filters[key];
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
filter = ref[k];
|
filter = ref[k];
|
||||||
if (result = filter(value, post.isReply)) {
|
if (result = filter(value, post.boardID, post.isReply)) {
|
||||||
if (result.hide) {
|
if (result.hide) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.13.4
|
// @version 1.10.14.0
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.13.4
|
// @version 1.10.14.0
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -396,7 +396,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.13.4',
|
VERSION: '1.10.14.0',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -5012,7 +5012,7 @@
|
|||||||
Filter = {
|
Filter = {
|
||||||
filters: {},
|
filters: {},
|
||||||
init: function() {
|
init: function() {
|
||||||
var boards, err, filter, hl, k, key, len1, line, op, ref, ref1, ref2, ref3, ref4, ref5, ref6, regexp, stub, top;
|
var boards, err, filter, hl, k, key, len1, line, op, ref, ref1, ref2, ref3, ref4, ref5, regexp, stub, top;
|
||||||
if (!(((ref = g.VIEW) === 'index' || ref === 'thread') && Conf['Filter'])) {
|
if (!(((ref = g.VIEW) === 'index' || ref === 'thread') && Conf['Filter'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -5032,9 +5032,7 @@
|
|||||||
}
|
}
|
||||||
filter = line.replace(regexp[0], '');
|
filter = line.replace(regexp[0], '');
|
||||||
boards = ((ref2 = filter.match(/boards:([^;]+)/)) != null ? ref2[1].toLowerCase() : void 0) || 'global';
|
boards = ((ref2 = filter.match(/boards:([^;]+)/)) != null ? ref2[1].toLowerCase() : void 0) || 'global';
|
||||||
if (boards !== 'global' && (ref3 = g.BOARD.ID, indexOf.call(boards.split(','), ref3) < 0)) {
|
boards = boards === 'global' ? null : boards.split(',');
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (key === 'uniqueID' || key === 'MD5') {
|
if (key === 'uniqueID' || key === 'MD5') {
|
||||||
regexp = regexp[1];
|
regexp = regexp[1];
|
||||||
} else {
|
} else {
|
||||||
@ -5046,10 +5044,10 @@
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
op = ((ref4 = filter.match(/[^t]op:(yes|no|only)/)) != null ? ref4[1] : void 0) || 'yes';
|
op = ((ref3 = filter.match(/[^t]op:(yes|no|only)/)) != null ? ref3[1] : void 0) || 'yes';
|
||||||
stub = (function() {
|
stub = (function() {
|
||||||
var ref5;
|
var ref4;
|
||||||
switch ((ref5 = filter.match(/stub:(yes|no)/)) != null ? ref5[1] : void 0) {
|
switch ((ref4 = filter.match(/stub:(yes|no)/)) != null ? ref4[1] : void 0) {
|
||||||
case 'yes':
|
case 'yes':
|
||||||
return true;
|
return true;
|
||||||
case 'no':
|
case 'no':
|
||||||
@ -5059,11 +5057,11 @@
|
|||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
if (hl = /highlight/.test(filter)) {
|
if (hl = /highlight/.test(filter)) {
|
||||||
hl = ((ref5 = filter.match(/highlight:([\w-]+)/)) != null ? ref5[1] : void 0) || 'filter-highlight';
|
hl = ((ref4 = filter.match(/highlight:([\w-]+)/)) != null ? ref4[1] : void 0) || 'filter-highlight';
|
||||||
top = ((ref6 = filter.match(/top:(yes|no)/)) != null ? ref6[1] : void 0) || 'yes';
|
top = ((ref5 = filter.match(/top:(yes|no)/)) != null ? ref5[1] : void 0) || 'yes';
|
||||||
top = top === 'yes';
|
top = top === 'yes';
|
||||||
}
|
}
|
||||||
this.filters[key].push(this.createFilter(regexp, op, stub, hl, top));
|
this.filters[key].push(this.createFilter(regexp, boards, op, stub, hl, top));
|
||||||
}
|
}
|
||||||
if (!this.filters[key].length) {
|
if (!this.filters[key].length) {
|
||||||
delete this.filters[key];
|
delete this.filters[key];
|
||||||
@ -5077,7 +5075,7 @@
|
|||||||
cb: this.node
|
cb: this.node
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
createFilter: function(regexp, op, stub, hl, top) {
|
createFilter: function(regexp, boards, op, stub, hl, top) {
|
||||||
var settings, test;
|
var settings, test;
|
||||||
test = typeof regexp === 'string' ? function(value) {
|
test = typeof regexp === 'string' ? function(value) {
|
||||||
return regexp === value;
|
return regexp === value;
|
||||||
@ -5090,7 +5088,10 @@
|
|||||||
"class": hl,
|
"class": hl,
|
||||||
top: top
|
top: top
|
||||||
};
|
};
|
||||||
return function(value, isReply) {
|
return function(value, boardID, isReply) {
|
||||||
|
if (boards && indexOf.call(boards, boardID) < 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if (isReply && op === 'only' || !isReply && op === 'no') {
|
if (isReply && op === 'only' || !isReply && op === 'no') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -5110,7 +5111,7 @@
|
|||||||
ref = Filter.filters[key];
|
ref = Filter.filters[key];
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
filter = ref[k];
|
filter = ref[k];
|
||||||
if (!(result = filter(value, this.isReply))) {
|
if (!(result = filter(value, this.board.ID, this.isReply))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (result.hide && !this.isFetchedQuote) {
|
if (result.hide && !this.isFetchedQuote) {
|
||||||
@ -5141,7 +5142,7 @@
|
|||||||
ref = Filter.filters[key];
|
ref = Filter.filters[key];
|
||||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||||
filter = ref[k];
|
filter = ref[k];
|
||||||
if (result = filter(value, post.isReply)) {
|
if (result = filter(value, post.boardID, post.isReply)) {
|
||||||
if (result.hide) {
|
if (result.hide) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -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://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.13.4' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.14.0' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -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://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.13.4' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.14.0' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,8 +3,8 @@
|
|||||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||||
"meta": {
|
"meta": {
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"version": "1.10.13.4",
|
"version": "1.10.14.0",
|
||||||
"date": "2015-06-05T22:09:56.541Z",
|
"date": "2015-06-08T05:06:07.625Z",
|
||||||
"repo": "https://github.com/ccd0/4chan-x/",
|
"repo": "https://github.com/ccd0/4chan-x/",
|
||||||
"page": "https://github.com/ccd0/4chan-x",
|
"page": "https://github.com/ccd0/4chan-x",
|
||||||
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user