Release 4chan X v1.11.26.2.
This commit is contained in:
parent
a04ae64947
commit
9ec7d6e1d4
@ -4,6 +4,10 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.26
|
### v1.11.26
|
||||||
|
|
||||||
|
**v1.11.26.2** *(2016-02-15)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.26.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.26.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Bug fixes.
|
||||||
|
- Drop StrawPoll link titles for now.
|
||||||
|
|
||||||
**v1.11.26.1** *(2016-02-14)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.26.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.26.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.26.1** *(2016-02-14)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.26.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.26.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Fix fullscreen in Dailymotion embeds.
|
- Fix fullscreen in Dailymotion embeds.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.26.1
|
// @version 1.11.26.2
|
||||||
// @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.11.26.1
|
// @version 1.11.26.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -162,7 +162,7 @@
|
|||||||
},
|
},
|
||||||
'Linkification': {
|
'Linkification': {
|
||||||
'Linkify': [true, 'Convert text into links where applicable.'],
|
'Linkify': [true, 'Convert text into links where applicable.'],
|
||||||
'Link Title': [true, 'Replace the link of a supported site with its actual title. Currently supported: YouTube, Vimeo, Dailymotion, SoundCloud, StrawPoll, and Github gists.', 1],
|
'Link Title': [true, 'Replace the link of a supported site with its actual title.', 1],
|
||||||
'Embedding': [true, 'Embed supported services. Note: Some services don\'t work on HTTPS.', 1],
|
'Embedding': [true, 'Embed supported services. Note: Some services don\'t work on HTTPS.', 1],
|
||||||
'Auto-embed': [false, 'Auto-embed Linkify Embeds.', 2],
|
'Auto-embed': [false, 'Auto-embed Linkify Embeds.', 2],
|
||||||
'Floating Embeds': [false, 'Embed content in a frame that remains in place when the page is scrolled.', 2]
|
'Floating Embeds': [false, 'Embed content in a frame that remains in place when the page is scrolled.', 2]
|
||||||
@ -439,7 +439,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.26.1',
|
VERSION: '1.11.26.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -10269,6 +10269,7 @@
|
|||||||
if (Conf['Keybinds']) {
|
if (Conf['Keybinds']) {
|
||||||
$.off(d, 'keydown', Keybinds.keydown);
|
$.off(d, 'keydown', Keybinds.keydown);
|
||||||
}
|
}
|
||||||
|
$.on(window, 'resize', Gallery.cb.setHeight);
|
||||||
ref2 = $$('.post .file');
|
ref2 = $$('.post .file');
|
||||||
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
||||||
file = ref2[q];
|
file = ref2[q];
|
||||||
@ -10569,12 +10570,13 @@
|
|||||||
if (Conf['Keybinds']) {
|
if (Conf['Keybinds']) {
|
||||||
$.on(d, 'keydown', Keybinds.keydown);
|
$.on(d, 'keydown', Keybinds.keydown);
|
||||||
}
|
}
|
||||||
|
$.off(window, 'resize', Gallery.cb.setHeight);
|
||||||
return clearTimeout(Gallery.timeoutID);
|
return clearTimeout(Gallery.timeoutID);
|
||||||
},
|
},
|
||||||
setFitness: function() {
|
setFitness: function() {
|
||||||
return (this.checked ? $.addClass : $.rmClass)(doc, "gal-" + (this.name.toLowerCase().replace(/\s+/g, '-')));
|
return (this.checked ? $.addClass : $.rmClass)(doc, "gal-" + (this.name.toLowerCase().replace(/\s+/g, '-')));
|
||||||
},
|
},
|
||||||
setHeight: function() {
|
setHeight: $.debounce(100, function() {
|
||||||
var current, dim, frame, height, minHeight, ref, ref1, ref2, style, width;
|
var current, dim, frame, height, minHeight, ref, ref1, ref2, style, width;
|
||||||
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
||||||
style = current.style;
|
style = current.style;
|
||||||
@ -10586,7 +10588,7 @@
|
|||||||
} else {
|
} else {
|
||||||
return style.minHeight = style.minWidth = null;
|
return style.minHeight = style.minWidth = null;
|
||||||
}
|
}
|
||||||
},
|
}),
|
||||||
setDelay: function() {
|
setDelay: function() {
|
||||||
return Gallery.delay = +this.value;
|
return Gallery.delay = +this.value;
|
||||||
}
|
}
|
||||||
@ -12274,14 +12276,6 @@
|
|||||||
return $.el('iframe', {
|
return $.el('iframe', {
|
||||||
src: "//strawpoll.me/embed_1/" + a.dataset.uid
|
src: "//strawpoll.me/embed_1/" + a.dataset.uid
|
||||||
});
|
});
|
||||||
},
|
|
||||||
title: {
|
|
||||||
api: function(uid) {
|
|
||||||
return "https://strawpoll.me/api/v2/polls/" + uid;
|
|
||||||
},
|
|
||||||
text: function(_) {
|
|
||||||
return _.title;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: 'TwitchTV',
|
key: 'TwitchTV',
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.26.1
|
// @version 1.11.26.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -162,7 +162,7 @@
|
|||||||
},
|
},
|
||||||
'Linkification': {
|
'Linkification': {
|
||||||
'Linkify': [true, 'Convert text into links where applicable.'],
|
'Linkify': [true, 'Convert text into links where applicable.'],
|
||||||
'Link Title': [true, 'Replace the link of a supported site with its actual title. Currently supported: YouTube, Vimeo, Dailymotion, SoundCloud, StrawPoll, and Github gists.', 1],
|
'Link Title': [true, 'Replace the link of a supported site with its actual title.', 1],
|
||||||
'Embedding': [true, 'Embed supported services. Note: Some services don\'t work on HTTPS.', 1],
|
'Embedding': [true, 'Embed supported services. Note: Some services don\'t work on HTTPS.', 1],
|
||||||
'Auto-embed': [false, 'Auto-embed Linkify Embeds.', 2],
|
'Auto-embed': [false, 'Auto-embed Linkify Embeds.', 2],
|
||||||
'Floating Embeds': [false, 'Embed content in a frame that remains in place when the page is scrolled.', 2]
|
'Floating Embeds': [false, 'Embed content in a frame that remains in place when the page is scrolled.', 2]
|
||||||
@ -439,7 +439,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.26.1',
|
VERSION: '1.11.26.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -10269,6 +10269,7 @@
|
|||||||
if (Conf['Keybinds']) {
|
if (Conf['Keybinds']) {
|
||||||
$.off(d, 'keydown', Keybinds.keydown);
|
$.off(d, 'keydown', Keybinds.keydown);
|
||||||
}
|
}
|
||||||
|
$.on(window, 'resize', Gallery.cb.setHeight);
|
||||||
ref2 = $$('.post .file');
|
ref2 = $$('.post .file');
|
||||||
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
||||||
file = ref2[q];
|
file = ref2[q];
|
||||||
@ -10569,12 +10570,13 @@
|
|||||||
if (Conf['Keybinds']) {
|
if (Conf['Keybinds']) {
|
||||||
$.on(d, 'keydown', Keybinds.keydown);
|
$.on(d, 'keydown', Keybinds.keydown);
|
||||||
}
|
}
|
||||||
|
$.off(window, 'resize', Gallery.cb.setHeight);
|
||||||
return clearTimeout(Gallery.timeoutID);
|
return clearTimeout(Gallery.timeoutID);
|
||||||
},
|
},
|
||||||
setFitness: function() {
|
setFitness: function() {
|
||||||
return (this.checked ? $.addClass : $.rmClass)(doc, "gal-" + (this.name.toLowerCase().replace(/\s+/g, '-')));
|
return (this.checked ? $.addClass : $.rmClass)(doc, "gal-" + (this.name.toLowerCase().replace(/\s+/g, '-')));
|
||||||
},
|
},
|
||||||
setHeight: function() {
|
setHeight: $.debounce(100, function() {
|
||||||
var current, dim, frame, height, minHeight, ref, ref1, ref2, style, width;
|
var current, dim, frame, height, minHeight, ref, ref1, ref2, style, width;
|
||||||
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
||||||
style = current.style;
|
style = current.style;
|
||||||
@ -10586,7 +10588,7 @@
|
|||||||
} else {
|
} else {
|
||||||
return style.minHeight = style.minWidth = null;
|
return style.minHeight = style.minWidth = null;
|
||||||
}
|
}
|
||||||
},
|
}),
|
||||||
setDelay: function() {
|
setDelay: function() {
|
||||||
return Gallery.delay = +this.value;
|
return Gallery.delay = +this.value;
|
||||||
}
|
}
|
||||||
@ -12274,14 +12276,6 @@
|
|||||||
return $.el('iframe', {
|
return $.el('iframe', {
|
||||||
src: "//strawpoll.me/embed_1/" + a.dataset.uid
|
src: "//strawpoll.me/embed_1/" + a.dataset.uid
|
||||||
});
|
});
|
||||||
},
|
|
||||||
title: {
|
|
||||||
api: function(uid) {
|
|
||||||
return "https://strawpoll.me/api/v2/polls/" + uid;
|
|
||||||
},
|
|
||||||
text: function(_) {
|
|
||||||
return _.title;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: 'TwitchTV',
|
key: 'TwitchTV',
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.26.1
|
// @version 1.11.26.2
|
||||||
// @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.11.26.1
|
// @version 1.11.26.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -162,7 +162,7 @@
|
|||||||
},
|
},
|
||||||
'Linkification': {
|
'Linkification': {
|
||||||
'Linkify': [true, 'Convert text into links where applicable.'],
|
'Linkify': [true, 'Convert text into links where applicable.'],
|
||||||
'Link Title': [true, 'Replace the link of a supported site with its actual title. Currently supported: YouTube, Vimeo, Dailymotion, SoundCloud, StrawPoll, and Github gists.', 1],
|
'Link Title': [true, 'Replace the link of a supported site with its actual title.', 1],
|
||||||
'Embedding': [true, 'Embed supported services. Note: Some services don\'t work on HTTPS.', 1],
|
'Embedding': [true, 'Embed supported services. Note: Some services don\'t work on HTTPS.', 1],
|
||||||
'Auto-embed': [false, 'Auto-embed Linkify Embeds.', 2],
|
'Auto-embed': [false, 'Auto-embed Linkify Embeds.', 2],
|
||||||
'Floating Embeds': [false, 'Embed content in a frame that remains in place when the page is scrolled.', 2]
|
'Floating Embeds': [false, 'Embed content in a frame that remains in place when the page is scrolled.', 2]
|
||||||
@ -439,7 +439,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.26.1',
|
VERSION: '1.11.26.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -10269,6 +10269,7 @@
|
|||||||
if (Conf['Keybinds']) {
|
if (Conf['Keybinds']) {
|
||||||
$.off(d, 'keydown', Keybinds.keydown);
|
$.off(d, 'keydown', Keybinds.keydown);
|
||||||
}
|
}
|
||||||
|
$.on(window, 'resize', Gallery.cb.setHeight);
|
||||||
ref2 = $$('.post .file');
|
ref2 = $$('.post .file');
|
||||||
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
||||||
file = ref2[q];
|
file = ref2[q];
|
||||||
@ -10569,12 +10570,13 @@
|
|||||||
if (Conf['Keybinds']) {
|
if (Conf['Keybinds']) {
|
||||||
$.on(d, 'keydown', Keybinds.keydown);
|
$.on(d, 'keydown', Keybinds.keydown);
|
||||||
}
|
}
|
||||||
|
$.off(window, 'resize', Gallery.cb.setHeight);
|
||||||
return clearTimeout(Gallery.timeoutID);
|
return clearTimeout(Gallery.timeoutID);
|
||||||
},
|
},
|
||||||
setFitness: function() {
|
setFitness: function() {
|
||||||
return (this.checked ? $.addClass : $.rmClass)(doc, "gal-" + (this.name.toLowerCase().replace(/\s+/g, '-')));
|
return (this.checked ? $.addClass : $.rmClass)(doc, "gal-" + (this.name.toLowerCase().replace(/\s+/g, '-')));
|
||||||
},
|
},
|
||||||
setHeight: function() {
|
setHeight: $.debounce(100, function() {
|
||||||
var current, dim, frame, height, minHeight, ref, ref1, ref2, style, width;
|
var current, dim, frame, height, minHeight, ref, ref1, ref2, style, width;
|
||||||
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
||||||
style = current.style;
|
style = current.style;
|
||||||
@ -10586,7 +10588,7 @@
|
|||||||
} else {
|
} else {
|
||||||
return style.minHeight = style.minWidth = null;
|
return style.minHeight = style.minWidth = null;
|
||||||
}
|
}
|
||||||
},
|
}),
|
||||||
setDelay: function() {
|
setDelay: function() {
|
||||||
return Gallery.delay = +this.value;
|
return Gallery.delay = +this.value;
|
||||||
}
|
}
|
||||||
@ -12274,14 +12276,6 @@
|
|||||||
return $.el('iframe', {
|
return $.el('iframe', {
|
||||||
src: "//strawpoll.me/embed_1/" + a.dataset.uid
|
src: "//strawpoll.me/embed_1/" + a.dataset.uid
|
||||||
});
|
});
|
||||||
},
|
|
||||||
title: {
|
|
||||||
api: function(uid) {
|
|
||||||
return "https://strawpoll.me/api/v2/polls/" + uid;
|
|
||||||
},
|
|
||||||
text: function(_) {
|
|
||||||
return _.title;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: 'TwitchTV',
|
key: 'TwitchTV',
|
||||||
|
|||||||
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://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.26.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.26.2' />
|
||||||
</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://www.4chan-x.net/builds/4chan-X.crx' version='1.11.26.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.26.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.26.1",
|
"version": "1.11.26.2",
|
||||||
"date": "2016-02-14T23:56:53.806Z"
|
"date": "2016-02-16T04:47:36.813Z"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user