Release 4chan X v1.10.6.3.
This commit is contained in:
parent
b1feb2c0c2
commit
9d4d3ee258
@ -4,6 +4,9 @@ The links to individual versions below are to copies of the script with the upda
|
|||||||
|
|
||||||
### v1.10.6
|
### v1.10.6
|
||||||
|
|
||||||
|
**v1.10.6.3** *(2015-03-23)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.6.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.6.3/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Drop `Remove Original Link` option; work around DownThemAll limitations a better way.
|
||||||
|
|
||||||
**v1.10.6.2** *(2015-03-22)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.6.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.6.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.10.6.2** *(2015-03-22)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.6.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.6.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Fix conflict with 4chan imgur thumbnail script, hopefully correctly this time.
|
- Fix conflict with 4chan imgur thumbnail script, hopefully correctly this time.
|
||||||
- Add `Remove Original Link` suboption (default: off) to `File Info Formatting` to remove rather than hide the original link in the file info.
|
- Add `Remove Original Link` suboption (default: off) to `File Info Formatting` to remove rather than hide the original link in the file info.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.10.6.2
|
// @version 1.10.6.3
|
||||||
// @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.6.2
|
// @version 1.10.6.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -134,7 +134,6 @@
|
|||||||
'Relative Date Title': [true, 'Show Relative Post Date only when hovering over dates.', 1],
|
'Relative Date Title': [true, 'Show Relative Post Date only when hovering over dates.', 1],
|
||||||
'Comment Expansion': [true, 'Expand comments that are too long to display on the index. Not applicable with JSON Navigation.'],
|
'Comment Expansion': [true, 'Expand comments that are too long to display on the index. Not applicable with JSON Navigation.'],
|
||||||
'File Info Formatting': [true, 'Reformat the file information.'],
|
'File Info Formatting': [true, 'Reformat the file information.'],
|
||||||
'Remove Original Link': [false, 'Remove the original file link rather than hiding it. May cause incompatibilities with other scripts.', 1],
|
|
||||||
'Thread Expansion': [true, 'Add buttons to expand threads.'],
|
'Thread Expansion': [true, 'Add buttons to expand threads.'],
|
||||||
'Index Navigation': [false, 'Add buttons to navigate between threads.'],
|
'Index Navigation': [false, 'Add buttons to navigate between threads.'],
|
||||||
'Reply Navigation': [false, 'Add buttons to navigate to top / bottom of thread.'],
|
'Reply Navigation': [false, 'Add buttons to navigate to top / bottom of thread.'],
|
||||||
@ -396,7 +395,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.6.2',
|
VERSION: '1.10.6.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
NAME: '4chan X',
|
NAME: '4chan X',
|
||||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||||
@ -14284,29 +14283,20 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
node: function() {
|
node: function() {
|
||||||
var info, nextSibling, parentNode, wrapper;
|
var info, oldInfo;
|
||||||
if (!this.file || this.isClone) {
|
if (!this.file || this.isClone) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
oldInfo = $.el('span', {
|
||||||
|
className: 'original-file-info'
|
||||||
|
});
|
||||||
|
$.prepend(this.file.link.parentNode, oldInfo);
|
||||||
|
$.add(oldInfo, [this.file.link.previousSibling, this.file.link, this.file.link.nextSibling]);
|
||||||
info = $.el('span', {
|
info = $.el('span', {
|
||||||
className: 'file-info'
|
className: 'file-info'
|
||||||
});
|
});
|
||||||
FileInfo.format(Conf['fileInfo'], this, info);
|
FileInfo.format(Conf['fileInfo'], this, info);
|
||||||
if (Conf['Remove Original Link'] && !(this.board.ID === 'f' && Conf['Enable Native Flash Embedding'])) {
|
return $.prepend(this.file.text, info);
|
||||||
parentNode = this.file.link.parentNode;
|
|
||||||
$.rmAll(parentNode);
|
|
||||||
return $.add(parentNode, info);
|
|
||||||
} else {
|
|
||||||
this.file.link.previousSibling.nodeValue = '';
|
|
||||||
this.file.link.hidden = true;
|
|
||||||
nextSibling = this.file.link.nextSibling;
|
|
||||||
wrapper = $.el('span', {
|
|
||||||
hidden: true
|
|
||||||
});
|
|
||||||
$.replace(nextSibling, wrapper);
|
|
||||||
$.add(wrapper, nextSibling);
|
|
||||||
return $.after(wrapper, info);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
format: function(formatString, post, outputNode) {
|
format: function(formatString, post, outputNode) {
|
||||||
var output;
|
var output;
|
||||||
@ -17966,6 +17956,7 @@
|
|||||||
" clear: both;\n" +
|
" clear: both;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
"/* File */\n" +
|
"/* File */\n" +
|
||||||
|
".original-file-info,\n" +
|
||||||
".fnswitch:hover > .fntrunc,\n" +
|
".fnswitch:hover > .fntrunc,\n" +
|
||||||
".fnswitch:not(:hover) > .fnfull,\n" +
|
".fnswitch:not(:hover) > .fnfull,\n" +
|
||||||
".expanded-image > .post > .file > .fileThumb > video[data-md5],\n" +
|
".expanded-image > .post > .file > .fileThumb > video[data-md5],\n" +
|
||||||
|
|||||||
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.6.2
|
// @version 1.10.6.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -133,7 +133,6 @@
|
|||||||
'Relative Date Title': [true, 'Show Relative Post Date only when hovering over dates.', 1],
|
'Relative Date Title': [true, 'Show Relative Post Date only when hovering over dates.', 1],
|
||||||
'Comment Expansion': [true, 'Expand comments that are too long to display on the index. Not applicable with JSON Navigation.'],
|
'Comment Expansion': [true, 'Expand comments that are too long to display on the index. Not applicable with JSON Navigation.'],
|
||||||
'File Info Formatting': [true, 'Reformat the file information.'],
|
'File Info Formatting': [true, 'Reformat the file information.'],
|
||||||
'Remove Original Link': [false, 'Remove the original file link rather than hiding it. May cause incompatibilities with other scripts.', 1],
|
|
||||||
'Thread Expansion': [true, 'Add buttons to expand threads.'],
|
'Thread Expansion': [true, 'Add buttons to expand threads.'],
|
||||||
'Index Navigation': [false, 'Add buttons to navigate between threads.'],
|
'Index Navigation': [false, 'Add buttons to navigate between threads.'],
|
||||||
'Reply Navigation': [false, 'Add buttons to navigate to top / bottom of thread.'],
|
'Reply Navigation': [false, 'Add buttons to navigate to top / bottom of thread.'],
|
||||||
@ -395,7 +394,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.6.2',
|
VERSION: '1.10.6.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
NAME: '4chan X',
|
NAME: '4chan X',
|
||||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||||
@ -14283,29 +14282,20 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
node: function() {
|
node: function() {
|
||||||
var info, nextSibling, parentNode, wrapper;
|
var info, oldInfo;
|
||||||
if (!this.file || this.isClone) {
|
if (!this.file || this.isClone) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
oldInfo = $.el('span', {
|
||||||
|
className: 'original-file-info'
|
||||||
|
});
|
||||||
|
$.prepend(this.file.link.parentNode, oldInfo);
|
||||||
|
$.add(oldInfo, [this.file.link.previousSibling, this.file.link, this.file.link.nextSibling]);
|
||||||
info = $.el('span', {
|
info = $.el('span', {
|
||||||
className: 'file-info'
|
className: 'file-info'
|
||||||
});
|
});
|
||||||
FileInfo.format(Conf['fileInfo'], this, info);
|
FileInfo.format(Conf['fileInfo'], this, info);
|
||||||
if (Conf['Remove Original Link'] && !(this.board.ID === 'f' && Conf['Enable Native Flash Embedding'])) {
|
return $.prepend(this.file.text, info);
|
||||||
parentNode = this.file.link.parentNode;
|
|
||||||
$.rmAll(parentNode);
|
|
||||||
return $.add(parentNode, info);
|
|
||||||
} else {
|
|
||||||
this.file.link.previousSibling.nodeValue = '';
|
|
||||||
this.file.link.hidden = true;
|
|
||||||
nextSibling = this.file.link.nextSibling;
|
|
||||||
wrapper = $.el('span', {
|
|
||||||
hidden: true
|
|
||||||
});
|
|
||||||
$.replace(nextSibling, wrapper);
|
|
||||||
$.add(wrapper, nextSibling);
|
|
||||||
return $.after(wrapper, info);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
format: function(formatString, post, outputNode) {
|
format: function(formatString, post, outputNode) {
|
||||||
var output;
|
var output;
|
||||||
@ -17965,6 +17955,7 @@
|
|||||||
" clear: both;\n" +
|
" clear: both;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
"/* File */\n" +
|
"/* File */\n" +
|
||||||
|
".original-file-info,\n" +
|
||||||
".fnswitch:hover > .fntrunc,\n" +
|
".fnswitch:hover > .fntrunc,\n" +
|
||||||
".fnswitch:not(:hover) > .fnfull,\n" +
|
".fnswitch:not(:hover) > .fnfull,\n" +
|
||||||
".expanded-image > .post > .file > .fileThumb > video[data-md5],\n" +
|
".expanded-image > .post > .file > .fileThumb > video[data-md5],\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.10.6.2
|
// @version 1.10.6.3
|
||||||
// @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.6.2
|
// @version 1.10.6.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -134,7 +134,6 @@
|
|||||||
'Relative Date Title': [true, 'Show Relative Post Date only when hovering over dates.', 1],
|
'Relative Date Title': [true, 'Show Relative Post Date only when hovering over dates.', 1],
|
||||||
'Comment Expansion': [true, 'Expand comments that are too long to display on the index. Not applicable with JSON Navigation.'],
|
'Comment Expansion': [true, 'Expand comments that are too long to display on the index. Not applicable with JSON Navigation.'],
|
||||||
'File Info Formatting': [true, 'Reformat the file information.'],
|
'File Info Formatting': [true, 'Reformat the file information.'],
|
||||||
'Remove Original Link': [false, 'Remove the original file link rather than hiding it. May cause incompatibilities with other scripts.', 1],
|
|
||||||
'Thread Expansion': [true, 'Add buttons to expand threads.'],
|
'Thread Expansion': [true, 'Add buttons to expand threads.'],
|
||||||
'Index Navigation': [false, 'Add buttons to navigate between threads.'],
|
'Index Navigation': [false, 'Add buttons to navigate between threads.'],
|
||||||
'Reply Navigation': [false, 'Add buttons to navigate to top / bottom of thread.'],
|
'Reply Navigation': [false, 'Add buttons to navigate to top / bottom of thread.'],
|
||||||
@ -396,7 +395,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.10.6.2',
|
VERSION: '1.10.6.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
NAME: '4chan X',
|
NAME: '4chan X',
|
||||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||||
@ -14284,29 +14283,20 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
node: function() {
|
node: function() {
|
||||||
var info, nextSibling, parentNode, wrapper;
|
var info, oldInfo;
|
||||||
if (!this.file || this.isClone) {
|
if (!this.file || this.isClone) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
oldInfo = $.el('span', {
|
||||||
|
className: 'original-file-info'
|
||||||
|
});
|
||||||
|
$.prepend(this.file.link.parentNode, oldInfo);
|
||||||
|
$.add(oldInfo, [this.file.link.previousSibling, this.file.link, this.file.link.nextSibling]);
|
||||||
info = $.el('span', {
|
info = $.el('span', {
|
||||||
className: 'file-info'
|
className: 'file-info'
|
||||||
});
|
});
|
||||||
FileInfo.format(Conf['fileInfo'], this, info);
|
FileInfo.format(Conf['fileInfo'], this, info);
|
||||||
if (Conf['Remove Original Link'] && !(this.board.ID === 'f' && Conf['Enable Native Flash Embedding'])) {
|
return $.prepend(this.file.text, info);
|
||||||
parentNode = this.file.link.parentNode;
|
|
||||||
$.rmAll(parentNode);
|
|
||||||
return $.add(parentNode, info);
|
|
||||||
} else {
|
|
||||||
this.file.link.previousSibling.nodeValue = '';
|
|
||||||
this.file.link.hidden = true;
|
|
||||||
nextSibling = this.file.link.nextSibling;
|
|
||||||
wrapper = $.el('span', {
|
|
||||||
hidden: true
|
|
||||||
});
|
|
||||||
$.replace(nextSibling, wrapper);
|
|
||||||
$.add(wrapper, nextSibling);
|
|
||||||
return $.after(wrapper, info);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
format: function(formatString, post, outputNode) {
|
format: function(formatString, post, outputNode) {
|
||||||
var output;
|
var output;
|
||||||
@ -17966,6 +17956,7 @@
|
|||||||
" clear: both;\n" +
|
" clear: both;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
"/* File */\n" +
|
"/* File */\n" +
|
||||||
|
".original-file-info,\n" +
|
||||||
".fnswitch:hover > .fntrunc,\n" +
|
".fnswitch:hover > .fntrunc,\n" +
|
||||||
".fnswitch:not(:hover) > .fnfull,\n" +
|
".fnswitch:not(:hover) > .fnfull,\n" +
|
||||||
".expanded-image > .post > .file > .fileThumb > video[data-md5],\n" +
|
".expanded-image > .post > .file > .fileThumb > video[data-md5],\n" +
|
||||||
|
|||||||
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.6.2' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.10.6.3' />
|
||||||
</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.6.2' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.10.6.3' />
|
||||||
</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.6.2",
|
"version": "1.10.6.3",
|
||||||
"date": "2015-03-23T06:43:31.843Z",
|
"date": "2015-03-23T13:07:03.503Z",
|
||||||
"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