Release 4chan X v1.7.10.
This commit is contained in:
parent
d5149c9ed1
commit
0bdb01e08f
@ -1,3 +1,6 @@
|
|||||||
|
### v1.7.10
|
||||||
|
*2014-04-17*
|
||||||
|
|
||||||
**ccd0**
|
**ccd0**
|
||||||
- Change Shift+arrow default keybinds Ctrl+arrow to avoid conflict with text selection
|
- Change Shift+arrow default keybinds Ctrl+arrow to avoid conflict with text selection
|
||||||
- Fix (You) in backlinks.
|
- Fix (You) in backlinks.
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* 4chan X - Version 1.7.9 - 2014-04-13
|
* 4chan X - Version 1.7.10 - 2014-04-17
|
||||||
*
|
*
|
||||||
* 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
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.7.9
|
// @version 1.7.10
|
||||||
// @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.7.9
|
// @version 1.7.10
|
||||||
// @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.9 - 2014-04-13
|
* 4chan X - Version 1.7.10 - 2014-04-17
|
||||||
*
|
*
|
||||||
* 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
|
||||||
@ -333,12 +333,12 @@
|
|||||||
'werkTyme': ['Shift+w', 'Werk Tyme'],
|
'werkTyme': ['Shift+w', 'Werk Tyme'],
|
||||||
'Front page': ['0', 'Jump to front page.'],
|
'Front page': ['0', 'Jump to front page.'],
|
||||||
'Open front page': ['Shift+0', 'Open front page in a new tab.'],
|
'Open front page': ['Shift+0', 'Open front page in a new tab.'],
|
||||||
'Next page': ['Shift+Right', 'Jump to the next page.'],
|
'Next page': ['Ctrl+Right', 'Jump to the next page.'],
|
||||||
'Previous page': ['Shift+Left', 'Jump to the previous page.'],
|
'Previous page': ['Ctrl+Left', 'Jump to the previous page.'],
|
||||||
'Open catalog': ['Shift+c', 'Open the catalog of the current board'],
|
'Open catalog': ['Shift+c', 'Open the catalog of the current board'],
|
||||||
'Search form': ['Ctrl+Alt+s', 'Focus the search field on the board index.'],
|
'Search form': ['Ctrl+Alt+s', 'Focus the search field on the board index.'],
|
||||||
'Next thread': ['Shift+Down', 'See next thread.'],
|
'Next thread': ['Ctrl+Down', 'See next thread.'],
|
||||||
'Previous thread': ['Shift+Up', 'See previous thread.'],
|
'Previous thread': ['Ctrl+Up', 'See previous thread.'],
|
||||||
'Expand thread': ['Ctrl+e', 'Expand thread.'],
|
'Expand thread': ['Ctrl+e', 'Expand thread.'],
|
||||||
'Open thread': ['o', 'Open thread in current tab.'],
|
'Open thread': ['o', 'Open thread in current tab.'],
|
||||||
'Open thread tab': ['Shift+o', 'Open thread in new tab.'],
|
'Open thread tab': ['Shift+o', 'Open thread in new tab.'],
|
||||||
@ -371,7 +371,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.7.9',
|
VERSION: '1.7.10',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -4901,14 +4901,19 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
firstNode: function() {
|
firstNode: function() {
|
||||||
var a, clone, container, containers, link, nodes, post, quote, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
|
var a, clone, container, containers, link, markYours, nodes, post, quote, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
|
||||||
if (this.isClone || !this.quotes.length) {
|
if (this.isClone || !this.quotes.length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
markYours = Conf['Quick Reply'] && Conf['Mark Quotes of You'] && QR.db.get({
|
||||||
|
boardID: this.board.ID,
|
||||||
|
threadID: this.thread.ID,
|
||||||
|
postID: this.ID
|
||||||
|
});
|
||||||
a = $.el('a', {
|
a = $.el('a', {
|
||||||
href: "/" + this.board + "/res/" + this.thread + "#p" + this,
|
href: "/" + this.board + "/res/" + this.thread + "#p" + this,
|
||||||
className: this.isHidden ? 'filtered backlink' : 'backlink',
|
className: this.isHidden ? 'filtered backlink' : 'backlink',
|
||||||
textContent: (QuoteBacklink.funk(this.ID)) + (Conf['Mark Quotes of You'] && this.info.yours ? '\u00A0(You)' : '')
|
textContent: (QuoteBacklink.funk(this.ID)) + (markYours ? '\u00A0(You)' : '')
|
||||||
});
|
});
|
||||||
_ref = this.quotes;
|
_ref = this.quotes;
|
||||||
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
||||||
|
|||||||
BIN
builds/crx.crx
BIN
builds/crx.crx
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"version": "1.7.9",
|
"version": "1.7.10",
|
||||||
"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": {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
/*
|
/*
|
||||||
* 4chan X - Version 1.7.9 - 2014-04-13
|
* 4chan X - Version 1.7.10 - 2014-04-17
|
||||||
*
|
*
|
||||||
* 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
|
||||||
@ -309,12 +309,12 @@
|
|||||||
'werkTyme': ['Shift+w', 'Werk Tyme'],
|
'werkTyme': ['Shift+w', 'Werk Tyme'],
|
||||||
'Front page': ['0', 'Jump to front page.'],
|
'Front page': ['0', 'Jump to front page.'],
|
||||||
'Open front page': ['Shift+0', 'Open front page in a new tab.'],
|
'Open front page': ['Shift+0', 'Open front page in a new tab.'],
|
||||||
'Next page': ['Shift+Right', 'Jump to the next page.'],
|
'Next page': ['Ctrl+Right', 'Jump to the next page.'],
|
||||||
'Previous page': ['Shift+Left', 'Jump to the previous page.'],
|
'Previous page': ['Ctrl+Left', 'Jump to the previous page.'],
|
||||||
'Open catalog': ['Shift+c', 'Open the catalog of the current board'],
|
'Open catalog': ['Shift+c', 'Open the catalog of the current board'],
|
||||||
'Search form': ['Ctrl+Alt+s', 'Focus the search field on the board index.'],
|
'Search form': ['Ctrl+Alt+s', 'Focus the search field on the board index.'],
|
||||||
'Next thread': ['Shift+Down', 'See next thread.'],
|
'Next thread': ['Ctrl+Down', 'See next thread.'],
|
||||||
'Previous thread': ['Shift+Up', 'See previous thread.'],
|
'Previous thread': ['Ctrl+Up', 'See previous thread.'],
|
||||||
'Expand thread': ['Ctrl+e', 'Expand thread.'],
|
'Expand thread': ['Ctrl+e', 'Expand thread.'],
|
||||||
'Open thread': ['o', 'Open thread in current tab.'],
|
'Open thread': ['o', 'Open thread in current tab.'],
|
||||||
'Open thread tab': ['Shift+o', 'Open thread in new tab.'],
|
'Open thread tab': ['Shift+o', 'Open thread in new tab.'],
|
||||||
@ -347,7 +347,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.7.9',
|
VERSION: '1.7.10',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -4935,14 +4935,19 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
firstNode: function() {
|
firstNode: function() {
|
||||||
var a, clone, container, containers, link, nodes, post, quote, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
|
var a, clone, container, containers, link, markYours, nodes, post, quote, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
|
||||||
if (this.isClone || !this.quotes.length) {
|
if (this.isClone || !this.quotes.length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
markYours = Conf['Quick Reply'] && Conf['Mark Quotes of You'] && QR.db.get({
|
||||||
|
boardID: this.board.ID,
|
||||||
|
threadID: this.thread.ID,
|
||||||
|
postID: this.ID
|
||||||
|
});
|
||||||
a = $.el('a', {
|
a = $.el('a', {
|
||||||
href: "/" + this.board + "/res/" + this.thread + "#p" + this,
|
href: "/" + this.board + "/res/" + this.thread + "#p" + this,
|
||||||
className: this.isHidden ? 'filtered backlink' : 'backlink',
|
className: this.isHidden ? 'filtered backlink' : 'backlink',
|
||||||
textContent: (QuoteBacklink.funk(this.ID)) + (Conf['Mark Quotes of You'] && this.info.yours ? '\u00A0(You)' : '')
|
textContent: (QuoteBacklink.funk(this.ID)) + (markYours ? '\u00A0(You)' : '')
|
||||||
});
|
});
|
||||||
_ref = this.quotes;
|
_ref = this.quotes;
|
||||||
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
||||||
|
|||||||
@ -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.9' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/crx.crx' version='1.7.10' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan-X",
|
"name": "4chan-X",
|
||||||
"version": "1.7.9",
|
"version": "1.7.10",
|
||||||
"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",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user