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.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")]
|
||||
- Fix fullscreen in Dailymotion embeds.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.26.1
|
||||
// @version 1.11.26.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.26.1
|
||||
// @version 1.11.26.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -162,7 +162,7 @@
|
||||
},
|
||||
'Linkification': {
|
||||
'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],
|
||||
'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]
|
||||
@ -439,7 +439,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.26.1',
|
||||
VERSION: '1.11.26.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -10269,6 +10269,7 @@
|
||||
if (Conf['Keybinds']) {
|
||||
$.off(d, 'keydown', Keybinds.keydown);
|
||||
}
|
||||
$.on(window, 'resize', Gallery.cb.setHeight);
|
||||
ref2 = $$('.post .file');
|
||||
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
||||
file = ref2[q];
|
||||
@ -10569,12 +10570,13 @@
|
||||
if (Conf['Keybinds']) {
|
||||
$.on(d, 'keydown', Keybinds.keydown);
|
||||
}
|
||||
$.off(window, 'resize', Gallery.cb.setHeight);
|
||||
return clearTimeout(Gallery.timeoutID);
|
||||
},
|
||||
setFitness: function() {
|
||||
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;
|
||||
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
||||
style = current.style;
|
||||
@ -10586,7 +10588,7 @@
|
||||
} else {
|
||||
return style.minHeight = style.minWidth = null;
|
||||
}
|
||||
},
|
||||
}),
|
||||
setDelay: function() {
|
||||
return Gallery.delay = +this.value;
|
||||
}
|
||||
@ -12274,14 +12276,6 @@
|
||||
return $.el('iframe', {
|
||||
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',
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.26.1
|
||||
// @version 1.11.26.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -162,7 +162,7 @@
|
||||
},
|
||||
'Linkification': {
|
||||
'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],
|
||||
'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]
|
||||
@ -439,7 +439,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.26.1',
|
||||
VERSION: '1.11.26.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -10269,6 +10269,7 @@
|
||||
if (Conf['Keybinds']) {
|
||||
$.off(d, 'keydown', Keybinds.keydown);
|
||||
}
|
||||
$.on(window, 'resize', Gallery.cb.setHeight);
|
||||
ref2 = $$('.post .file');
|
||||
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
||||
file = ref2[q];
|
||||
@ -10569,12 +10570,13 @@
|
||||
if (Conf['Keybinds']) {
|
||||
$.on(d, 'keydown', Keybinds.keydown);
|
||||
}
|
||||
$.off(window, 'resize', Gallery.cb.setHeight);
|
||||
return clearTimeout(Gallery.timeoutID);
|
||||
},
|
||||
setFitness: function() {
|
||||
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;
|
||||
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
||||
style = current.style;
|
||||
@ -10586,7 +10588,7 @@
|
||||
} else {
|
||||
return style.minHeight = style.minWidth = null;
|
||||
}
|
||||
},
|
||||
}),
|
||||
setDelay: function() {
|
||||
return Gallery.delay = +this.value;
|
||||
}
|
||||
@ -12274,14 +12276,6 @@
|
||||
return $.el('iframe', {
|
||||
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',
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.26.1
|
||||
// @version 1.11.26.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.26.1
|
||||
// @version 1.11.26.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -162,7 +162,7 @@
|
||||
},
|
||||
'Linkification': {
|
||||
'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],
|
||||
'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]
|
||||
@ -439,7 +439,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.26.1',
|
||||
VERSION: '1.11.26.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -10269,6 +10269,7 @@
|
||||
if (Conf['Keybinds']) {
|
||||
$.off(d, 'keydown', Keybinds.keydown);
|
||||
}
|
||||
$.on(window, 'resize', Gallery.cb.setHeight);
|
||||
ref2 = $$('.post .file');
|
||||
for (q = 0, len2 = ref2.length; q < len2; q++) {
|
||||
file = ref2[q];
|
||||
@ -10569,12 +10570,13 @@
|
||||
if (Conf['Keybinds']) {
|
||||
$.on(d, 'keydown', Keybinds.keydown);
|
||||
}
|
||||
$.off(window, 'resize', Gallery.cb.setHeight);
|
||||
return clearTimeout(Gallery.timeoutID);
|
||||
},
|
||||
setFitness: function() {
|
||||
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;
|
||||
ref = Gallery.nodes, current = ref.current, frame = ref.frame;
|
||||
style = current.style;
|
||||
@ -10586,7 +10588,7 @@
|
||||
} else {
|
||||
return style.minHeight = style.minWidth = null;
|
||||
}
|
||||
},
|
||||
}),
|
||||
setDelay: function() {
|
||||
return Gallery.delay = +this.value;
|
||||
}
|
||||
@ -12274,14 +12276,6 @@
|
||||
return $.el('iframe', {
|
||||
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',
|
||||
|
||||
Binary file not shown.
@ -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://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>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -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://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>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.26.1",
|
||||
"date": "2016-02-14T23:56:53.806Z"
|
||||
"version": "1.11.26.2",
|
||||
"date": "2016-02-16T04:47:36.813Z"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user