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**
- 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.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.7.58
// @version 1.7.59
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -24,7 +24,7 @@
// ==/UserScript==
/*
* 4chan X - Version 1.7.58 - 2014-06-14
* 4chan X - Version 1.7.59 - 2014-06-14
*
* Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
@ -374,7 +374,7 @@
doc = d.documentElement;
g = {
VERSION: '1.7.58',
VERSION: '1.7.59',
NAMESPACE: '4chan X.',
boards: {}
};
@ -1616,6 +1616,8 @@
item.prev = prev;
if (prev) {
return prev.next = item;
} else {
return this.first = item;
}
};
@ -1631,6 +1633,8 @@
item.next = next;
if (next) {
return next.prev = item;
} else {
return this.last = item;
}
};
@ -1642,7 +1646,11 @@
}
this.rmi(item);
item.next = first;
first.prev = item;
if (first) {
first.prev = item;
} else {
this.last = item;
}
this.first = item;
return delete item.prev;
};
@ -2870,23 +2878,19 @@
}
},
sortOnTop: function(match) {
var j, offset, sortedNodes, target, threadRoot;
offset = 0;
var next, sortedNodes, target, threadRoot;
sortedNodes = Index.sortedNodes;
threadRoot = sortedNodes.first;
threadRoot = target = sortedNodes.first;
while (threadRoot) {
next = threadRoot.next;
if (match(Get.threadFromRoot(threadRoot.data))) {
target = sortedNodes.first;
j = 0;
while (j++ < offset) {
if (threadRoot === target) {
target = target.next;
}
if (threadRoot !== target) {
offset++;
} else {
sortedNodes.before(target, threadRoot);
}
}
threadRoot = threadRoot.next;
threadRoot = next;
}
},
buildIndex: function() {
@ -12485,7 +12489,7 @@
Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings',
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($('.import', Settings.dialog), 'click', Settings["import"]);
@ -13330,7 +13334,7 @@
}
if (previousversion) {
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);
} else {

Binary file not shown.

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// 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.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
@ -349,7 +349,7 @@
doc = d.documentElement;
g = {
VERSION: '1.7.58',
VERSION: '1.7.59',
NAMESPACE: '4chan X.',
boards: {}
};
@ -1651,6 +1651,8 @@
item.prev = prev;
if (prev) {
return prev.next = item;
} else {
return this.first = item;
}
};
@ -1666,6 +1668,8 @@
item.next = next;
if (next) {
return next.prev = item;
} else {
return this.last = item;
}
};
@ -1677,7 +1681,11 @@
}
this.rmi(item);
item.next = first;
first.prev = item;
if (first) {
first.prev = item;
} else {
this.last = item;
}
this.first = item;
return delete item.prev;
};
@ -2905,23 +2913,19 @@
}
},
sortOnTop: function(match) {
var j, offset, sortedNodes, target, threadRoot;
offset = 0;
var next, sortedNodes, target, threadRoot;
sortedNodes = Index.sortedNodes;
threadRoot = sortedNodes.first;
threadRoot = target = sortedNodes.first;
while (threadRoot) {
next = threadRoot.next;
if (match(Get.threadFromRoot(threadRoot.data))) {
target = sortedNodes.first;
j = 0;
while (j++ < offset) {
if (threadRoot === target) {
target = target.next;
}
if (threadRoot !== target) {
offset++;
} else {
sortedNodes.before(target, threadRoot);
}
}
threadRoot = threadRoot.next;
threadRoot = next;
}
},
buildIndex: function() {
@ -12479,7 +12483,7 @@
Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings',
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($('.import', Settings.dialog), 'click', Settings["import"]);
@ -13311,7 +13315,7 @@
}
if (previousversion) {
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);
} else {

View File

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<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>
</gupdate>

View File

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

View File

@ -1,6 +1,6 @@
// 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.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
@ -349,7 +349,7 @@
doc = d.documentElement;
g = {
VERSION: '1.7.58',
VERSION: '1.7.59',
NAMESPACE: '4chan X.',
boards: {}
};
@ -1651,6 +1651,8 @@
item.prev = prev;
if (prev) {
return prev.next = item;
} else {
return this.first = item;
}
};
@ -1666,6 +1668,8 @@
item.next = next;
if (next) {
return next.prev = item;
} else {
return this.last = item;
}
};
@ -1677,7 +1681,11 @@
}
this.rmi(item);
item.next = first;
first.prev = item;
if (first) {
first.prev = item;
} else {
this.last = item;
}
this.first = item;
return delete item.prev;
};
@ -2905,23 +2913,19 @@
}
},
sortOnTop: function(match) {
var j, offset, sortedNodes, target, threadRoot;
offset = 0;
var next, sortedNodes, target, threadRoot;
sortedNodes = Index.sortedNodes;
threadRoot = sortedNodes.first;
threadRoot = target = sortedNodes.first;
while (threadRoot) {
next = threadRoot.next;
if (match(Get.threadFromRoot(threadRoot.data))) {
target = sortedNodes.first;
j = 0;
while (j++ < offset) {
if (threadRoot === target) {
target = target.next;
}
if (threadRoot !== target) {
offset++;
} else {
sortedNodes.before(target, threadRoot);
}
}
threadRoot = threadRoot.next;
threadRoot = next;
}
},
buildIndex: function() {
@ -12479,7 +12483,7 @@
Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings',
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($('.import', Settings.dialog), 'click', Settings["import"]);
@ -13311,7 +13315,7 @@
}
if (previousversion) {
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);
} else {

View File

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