Release 4chan X v1.7.59.

This commit is contained in:
ccd0 2014-06-14 20:19:07 -07:00
parent c56b7eb9d4
commit 66d358b90a
12 changed files with 67 additions and 52 deletions

View File

@ -1,3 +1,6 @@
### v1.7.59
*2014-06-14*
**ccd0** **ccd0**
- Fix some bugs that were causing threads to disappear. - Fix some bugs that were causing threads to disappear.

View File

@ -1,5 +1,5 @@
/* /*
* 4chan X - Version 1.7.58 - 2014-06-14 * 4chan X - Version 1.7.59 - 2014-06-14
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE * https://github.com/ccd0/4chan-x/blob/master/LICENSE

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.7.58 // @version 1.7.59
// @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.7.58 // @version 1.7.59
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -24,7 +24,7 @@
// ==/UserScript== // ==/UserScript==
/* /*
* 4chan X - Version 1.7.58 - 2014-06-14 * 4chan X - Version 1.7.59 - 2014-06-14
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE * https://github.com/ccd0/4chan-x/blob/master/LICENSE
@ -374,7 +374,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.7.58', VERSION: '1.7.59',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -1616,6 +1616,8 @@
item.prev = prev; item.prev = prev;
if (prev) { if (prev) {
return prev.next = item; return prev.next = item;
} else {
return this.first = item;
} }
}; };
@ -1631,6 +1633,8 @@
item.next = next; item.next = next;
if (next) { if (next) {
return next.prev = item; return next.prev = item;
} else {
return this.last = item;
} }
}; };
@ -1642,7 +1646,11 @@
} }
this.rmi(item); this.rmi(item);
item.next = first; item.next = first;
first.prev = item; if (first) {
first.prev = item;
} else {
this.last = item;
}
this.first = item; this.first = item;
return delete item.prev; return delete item.prev;
}; };
@ -2870,23 +2878,19 @@
} }
}, },
sortOnTop: function(match) { sortOnTop: function(match) {
var j, offset, sortedNodes, target, threadRoot; var next, sortedNodes, target, threadRoot;
offset = 0;
sortedNodes = Index.sortedNodes; sortedNodes = Index.sortedNodes;
threadRoot = sortedNodes.first; threadRoot = target = sortedNodes.first;
while (threadRoot) { while (threadRoot) {
next = threadRoot.next;
if (match(Get.threadFromRoot(threadRoot.data))) { if (match(Get.threadFromRoot(threadRoot.data))) {
target = sortedNodes.first; if (threadRoot === target) {
j = 0;
while (j++ < offset) {
target = target.next; target = target.next;
} } else {
if (threadRoot !== target) {
offset++;
sortedNodes.before(target, threadRoot); sortedNodes.before(target, threadRoot);
} }
} }
threadRoot = threadRoot.next; threadRoot = next;
} }
}, },
buildIndex: function() { buildIndex: function() {
@ -12485,7 +12489,7 @@
Settings.dialog = dialog = $.el('div', { Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings', id: 'fourchanx-settings',
className: 'dialog', className: 'dialog',
innerHTML: '<nav><div class=sections-list></div><p class=\'imp-exp-result warning\'></p><div class=credits><a class=export>Export</a>&nbsp|&nbsp<a class=import>Import</a>&nbsp|&nbsp<a class=reset>Reset Settings</a>&nbsp|&nbsp<input type=file hidden><a href=\'https://github.com/ccd0/4chan-x\' target=_blank>4chan X</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md\' target=_blank>1.7.58</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/issues\' target=_blank>Issues</a>&nbsp|&nbsp<a href=javascript:; class=\'close fa fa-times\' title=Close></a></div></nav><div class=section-container><section></section></div>' innerHTML: '<nav><div class=sections-list></div><p class=\'imp-exp-result warning\'></p><div class=credits><a class=export>Export</a>&nbsp|&nbsp<a class=import>Import</a>&nbsp|&nbsp<a class=reset>Reset Settings</a>&nbsp|&nbsp<input type=file hidden><a href=\'https://github.com/ccd0/4chan-x\' target=_blank>4chan X</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md\' target=_blank>1.7.59</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/issues\' target=_blank>Issues</a>&nbsp|&nbsp<a href=javascript:; class=\'close fa fa-times\' title=Close></a></div></nav><div class=section-container><section></section></div>'
}); });
$.on($('.export', Settings.dialog), 'click', Settings["export"]); $.on($('.export', Settings.dialog), 'click', Settings["export"]);
$.on($('.import', Settings.dialog), 'click', Settings["import"]); $.on($('.import', Settings.dialog), 'click', Settings["import"]);
@ -13330,7 +13334,7 @@
} }
if (previousversion) { if (previousversion) {
el = $.el('span', { el = $.el('span', {
innerHTML: '4chan X has been updated to <a href="https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md" target="_blank">version 1.7.58</a>.' innerHTML: '4chan X has been updated to <a href="https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md" target="_blank">version 1.7.59</a>.'
}); });
new Notice('info', el, 15); new Notice('info', el, 15);
} else { } else {

Binary file not shown.

Binary file not shown.

View File

@ -1,6 +1,6 @@
{ {
"name": "4chan X", "name": "4chan X",
"version": "1.7.58", "version": "1.7.59",
"manifest_version": 2, "manifest_version": 2,
"description": "Cross-browser userscript for maximum lurking on 4chan.", "description": "Cross-browser userscript for maximum lurking on 4chan.",
"icons": { "icons": {

View File

@ -1,6 +1,6 @@
// Generated by CoffeeScript // Generated by CoffeeScript
/* /*
* 4chan X - Version 1.7.58 - 2014-06-14 * 4chan X - Version 1.7.59 - 2014-06-14
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE * https://github.com/ccd0/4chan-x/blob/master/LICENSE
@ -349,7 +349,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.7.58', VERSION: '1.7.59',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -1651,6 +1651,8 @@
item.prev = prev; item.prev = prev;
if (prev) { if (prev) {
return prev.next = item; return prev.next = item;
} else {
return this.first = item;
} }
}; };
@ -1666,6 +1668,8 @@
item.next = next; item.next = next;
if (next) { if (next) {
return next.prev = item; return next.prev = item;
} else {
return this.last = item;
} }
}; };
@ -1677,7 +1681,11 @@
} }
this.rmi(item); this.rmi(item);
item.next = first; item.next = first;
first.prev = item; if (first) {
first.prev = item;
} else {
this.last = item;
}
this.first = item; this.first = item;
return delete item.prev; return delete item.prev;
}; };
@ -2905,23 +2913,19 @@
} }
}, },
sortOnTop: function(match) { sortOnTop: function(match) {
var j, offset, sortedNodes, target, threadRoot; var next, sortedNodes, target, threadRoot;
offset = 0;
sortedNodes = Index.sortedNodes; sortedNodes = Index.sortedNodes;
threadRoot = sortedNodes.first; threadRoot = target = sortedNodes.first;
while (threadRoot) { while (threadRoot) {
next = threadRoot.next;
if (match(Get.threadFromRoot(threadRoot.data))) { if (match(Get.threadFromRoot(threadRoot.data))) {
target = sortedNodes.first; if (threadRoot === target) {
j = 0;
while (j++ < offset) {
target = target.next; target = target.next;
} } else {
if (threadRoot !== target) {
offset++;
sortedNodes.before(target, threadRoot); sortedNodes.before(target, threadRoot);
} }
} }
threadRoot = threadRoot.next; threadRoot = next;
} }
}, },
buildIndex: function() { buildIndex: function() {
@ -12479,7 +12483,7 @@
Settings.dialog = dialog = $.el('div', { Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings', id: 'fourchanx-settings',
className: 'dialog', className: 'dialog',
innerHTML: '<nav><div class=sections-list></div><p class=\'imp-exp-result warning\'></p><div class=credits><a class=export>Export</a>&nbsp|&nbsp<a class=import>Import</a>&nbsp|&nbsp<a class=reset>Reset Settings</a>&nbsp|&nbsp<input type=file hidden><a href=\'https://github.com/ccd0/4chan-x\' target=_blank>4chan X</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md\' target=_blank>1.7.58</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/issues\' target=_blank>Issues</a>&nbsp|&nbsp<a href=javascript:; class=\'close fa fa-times\' title=Close></a></div></nav><div class=section-container><section></section></div>' innerHTML: '<nav><div class=sections-list></div><p class=\'imp-exp-result warning\'></p><div class=credits><a class=export>Export</a>&nbsp|&nbsp<a class=import>Import</a>&nbsp|&nbsp<a class=reset>Reset Settings</a>&nbsp|&nbsp<input type=file hidden><a href=\'https://github.com/ccd0/4chan-x\' target=_blank>4chan X</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md\' target=_blank>1.7.59</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/issues\' target=_blank>Issues</a>&nbsp|&nbsp<a href=javascript:; class=\'close fa fa-times\' title=Close></a></div></nav><div class=section-container><section></section></div>'
}); });
$.on($('.export', Settings.dialog), 'click', Settings["export"]); $.on($('.export', Settings.dialog), 'click', Settings["export"]);
$.on($('.import', Settings.dialog), 'click', Settings["import"]); $.on($('.import', Settings.dialog), 'click', Settings["import"]);
@ -13311,7 +13315,7 @@
} }
if (previousversion) { if (previousversion) {
el = $.el('span', { el = $.el('span', {
innerHTML: '4chan X has been updated to <a href="https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md" target="_blank">version 1.7.58</a>.' innerHTML: '4chan X has been updated to <a href="https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md" target="_blank">version 1.7.59</a>.'
}); });
new Notice('info', el, 15); new Notice('info', el, 15);
} else { } else {

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://ccd0.github.io/4chan-x/builds/crx.crx' version='1.7.58' /> <updatecheck codebase='https://ccd0.github.io/4chan-x/builds/crx.crx' version='1.7.59' />
</app> </app>
</gupdate> </gupdate>

View File

@ -1,6 +1,6 @@
{ {
"name": "4chan X", "name": "4chan X",
"version": "1.7.58", "version": "1.7.59",
"manifest_version": 2, "manifest_version": 2,
"description": "Cross-browser userscript for maximum lurking on 4chan.", "description": "Cross-browser userscript for maximum lurking on 4chan.",
"icons": { "icons": {

View File

@ -1,6 +1,6 @@
// Generated by CoffeeScript // Generated by CoffeeScript
/* /*
* 4chan X - Version 1.7.58 - 2014-06-14 * 4chan X - Version 1.7.59 - 2014-06-14
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE * https://github.com/ccd0/4chan-x/blob/master/LICENSE
@ -349,7 +349,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.7.58', VERSION: '1.7.59',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -1651,6 +1651,8 @@
item.prev = prev; item.prev = prev;
if (prev) { if (prev) {
return prev.next = item; return prev.next = item;
} else {
return this.first = item;
} }
}; };
@ -1666,6 +1668,8 @@
item.next = next; item.next = next;
if (next) { if (next) {
return next.prev = item; return next.prev = item;
} else {
return this.last = item;
} }
}; };
@ -1677,7 +1681,11 @@
} }
this.rmi(item); this.rmi(item);
item.next = first; item.next = first;
first.prev = item; if (first) {
first.prev = item;
} else {
this.last = item;
}
this.first = item; this.first = item;
return delete item.prev; return delete item.prev;
}; };
@ -2905,23 +2913,19 @@
} }
}, },
sortOnTop: function(match) { sortOnTop: function(match) {
var j, offset, sortedNodes, target, threadRoot; var next, sortedNodes, target, threadRoot;
offset = 0;
sortedNodes = Index.sortedNodes; sortedNodes = Index.sortedNodes;
threadRoot = sortedNodes.first; threadRoot = target = sortedNodes.first;
while (threadRoot) { while (threadRoot) {
next = threadRoot.next;
if (match(Get.threadFromRoot(threadRoot.data))) { if (match(Get.threadFromRoot(threadRoot.data))) {
target = sortedNodes.first; if (threadRoot === target) {
j = 0;
while (j++ < offset) {
target = target.next; target = target.next;
} } else {
if (threadRoot !== target) {
offset++;
sortedNodes.before(target, threadRoot); sortedNodes.before(target, threadRoot);
} }
} }
threadRoot = threadRoot.next; threadRoot = next;
} }
}, },
buildIndex: function() { buildIndex: function() {
@ -12479,7 +12483,7 @@
Settings.dialog = dialog = $.el('div', { Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings', id: 'fourchanx-settings',
className: 'dialog', className: 'dialog',
innerHTML: '<nav><div class=sections-list></div><p class=\'imp-exp-result warning\'></p><div class=credits><a class=export>Export</a>&nbsp|&nbsp<a class=import>Import</a>&nbsp|&nbsp<a class=reset>Reset Settings</a>&nbsp|&nbsp<input type=file hidden><a href=\'https://github.com/ccd0/4chan-x\' target=_blank>4chan X</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md\' target=_blank>1.7.58</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/issues\' target=_blank>Issues</a>&nbsp|&nbsp<a href=javascript:; class=\'close fa fa-times\' title=Close></a></div></nav><div class=section-container><section></section></div>' innerHTML: '<nav><div class=sections-list></div><p class=\'imp-exp-result warning\'></p><div class=credits><a class=export>Export</a>&nbsp|&nbsp<a class=import>Import</a>&nbsp|&nbsp<a class=reset>Reset Settings</a>&nbsp|&nbsp<input type=file hidden><a href=\'https://github.com/ccd0/4chan-x\' target=_blank>4chan X</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md\' target=_blank>1.7.59</a>&nbsp|&nbsp<a href=\'https://github.com/ccd0/4chan-x/issues\' target=_blank>Issues</a>&nbsp|&nbsp<a href=javascript:; class=\'close fa fa-times\' title=Close></a></div></nav><div class=section-container><section></section></div>'
}); });
$.on($('.export', Settings.dialog), 'click', Settings["export"]); $.on($('.export', Settings.dialog), 'click', Settings["export"]);
$.on($('.import', Settings.dialog), 'click', Settings["import"]); $.on($('.import', Settings.dialog), 'click', Settings["import"]);
@ -13311,7 +13315,7 @@
} }
if (previousversion) { if (previousversion) {
el = $.el('span', { el = $.el('span', {
innerHTML: '4chan X has been updated to <a href="https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md" target="_blank">version 1.7.58</a>.' innerHTML: '4chan X has been updated to <a href="https://github.com/ccd0/4chan-x/blob/master/CHANGELOG.md" target="_blank">version 1.7.59</a>.'
}); });
new Notice('info', el, 15); new Notice('info', el, 15);
} else { } else {

View File

@ -1,6 +1,6 @@
{ {
"name": "4chan-X", "name": "4chan-X",
"version": "1.7.58", "version": "1.7.59",
"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",